diff --git a/Content.Client/Cargo/Systems/ClientPriceGunSystem.cs b/Content.Client/Cargo/Systems/ClientPriceGunSystem.cs index f17393247836..35fb2112c074 100644 --- a/Content.Client/Cargo/Systems/ClientPriceGunSystem.cs +++ b/Content.Client/Cargo/Systems/ClientPriceGunSystem.cs @@ -1,3 +1,4 @@ +using Content.Shared.Cargo.Components; using Content.Shared.Timing; using Content.Shared.Cargo.Systems; @@ -10,9 +11,9 @@ public sealed class ClientPriceGunSystem : SharedPriceGunSystem { [Dependency] private readonly UseDelaySystem _useDelay = default!; - protected override bool GetPriceOrBounty(EntityUid priceGunUid, EntityUid target, EntityUid user) + protected override bool GetPriceOrBounty(Entity entity, EntityUid target, EntityUid user) { - if (!TryComp(priceGunUid, out UseDelayComponent? useDelay) || _useDelay.IsDelayed((priceGunUid, useDelay))) + if (!TryComp(entity, out UseDelayComponent? useDelay) || _useDelay.IsDelayed((entity, useDelay))) return false; // It feels worse if the cooldown is predicted but the popup isn't! So only do the cooldown reset on the server. diff --git a/Content.Client/Clothing/Systems/ChameleonClothingSystem.cs b/Content.Client/Clothing/Systems/ChameleonClothingSystem.cs index 0ea9bbac0918..330c0dfd446e 100644 --- a/Content.Client/Clothing/Systems/ChameleonClothingSystem.cs +++ b/Content.Client/Clothing/Systems/ChameleonClothingSystem.cs @@ -1,4 +1,5 @@ using System.Linq; +using Content.Client.PDA; using Content.Shared.Clothing.Components; using Content.Shared.Clothing.EntitySystems; using Content.Shared.Inventory; @@ -51,6 +52,15 @@ protected override void UpdateSprite(EntityUid uid, EntityPrototype proto) { sprite.CopyFrom(otherSprite); } + + // Edgecase for PDAs to include visuals when UI is open + if (TryComp(uid, out PdaBorderColorComponent? borderColor) + && proto.TryGetComponent(out PdaBorderColorComponent? otherBorderColor, _factory)) + { + borderColor.BorderColor = otherBorderColor.BorderColor; + borderColor.AccentHColor = otherBorderColor.AccentHColor; + borderColor.AccentVColor = otherBorderColor.AccentVColor; + } } /// diff --git a/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs b/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs index 83f6ba156629..6fafd45a5aa3 100644 --- a/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs +++ b/Content.Client/Clothing/UI/ChameleonBoundUserInterface.cs @@ -1,15 +1,21 @@ -using Content.Client.Clothing.Systems; +using Content.Client.Clothing.Systems; using Content.Shared.Clothing.Components; +using Content.Shared.Tag; +using Content.Shared.Prototypes; using JetBrains.Annotations; using Robust.Client.GameObjects; using Robust.Client.UserInterface; +using Robust.Shared.Prototypes; namespace Content.Client.Clothing.UI; [UsedImplicitly] public sealed class ChameleonBoundUserInterface : BoundUserInterface { + [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly IPrototypeManager _proto = default!; private readonly ChameleonClothingSystem _chameleon; + private readonly TagSystem _tag; [ViewVariables] private ChameleonMenu? _menu; @@ -17,6 +23,7 @@ public sealed class ChameleonBoundUserInterface : BoundUserInterface public ChameleonBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { _chameleon = EntMan.System(); + _tag = EntMan.System(); } protected override void Open() @@ -34,7 +41,24 @@ protected override void UpdateState(BoundUserInterfaceState state) return; var targets = _chameleon.GetValidTargets(st.Slot); - _menu?.UpdateState(targets, st.SelectedId); + if (st.RequiredTag != null) + { + var newTargets = new List(); + foreach (var target in targets) + { + if (string.IsNullOrEmpty(target) || !_proto.TryIndex(target, out EntityPrototype? proto)) + continue; + + if (!proto.TryGetComponent(out TagComponent? tag, _factory) || !_tag.HasTag(tag, st.RequiredTag)) + continue; + + newTargets.Add(target); + } + _menu?.UpdateState(newTargets, st.SelectedId); + } else + { + _menu?.UpdateState(targets, st.SelectedId); + } } private void OnIdSelected(string selectedId) diff --git a/Content.Client/Holopad/HolopadWindow.xaml b/Content.Client/Holopad/HolopadWindow.xaml index 9c3dfab1ea67..5a7ad05bea8c 100644 --- a/Content.Client/Holopad/HolopadWindow.xaml +++ b/Content.Client/Holopad/HolopadWindow.xaml @@ -27,7 +27,11 @@ @@ -68,18 +72,25 @@ - + - + + + + - - - + - - - + + + + + + + + diff --git a/Content.Client/Holopad/HolopadWindow.xaml.cs b/Content.Client/Holopad/HolopadWindow.xaml.cs index bcab0d43df14..25982b901c27 100644 --- a/Content.Client/Holopad/HolopadWindow.xaml.cs +++ b/Content.Client/Holopad/HolopadWindow.xaml.cs @@ -171,8 +171,10 @@ public void UpdateState(Dictionary holopads) // Caller ID text var callerId = _telephoneSystem.GetFormattedCallerIdForEntity(telephone.LastCallerId.Item1, telephone.LastCallerId.Item2, Color.LightGray, "Default", 11); + var holoapdId = _telephoneSystem.GetFormattedDeviceIdForEntity(telephone.LastCallerId.Item3, Color.LightGray, "Default", 11); CallerIdText.SetMessage(FormattedMessage.FromMarkupOrThrow(callerId)); + HolopadIdText.SetMessage(FormattedMessage.FromMarkupOrThrow(holoapdId)); LockOutIdText.SetMessage(FormattedMessage.FromMarkupOrThrow(callerId)); // Sort holopads alphabetically @@ -236,10 +238,13 @@ private void UpdateAppearance() // Make / update required children foreach (var child in ContactsList.Children) { - if (child is not HolopadContactButton) + if (child is not HolopadContactButton contactButton) continue; - var contactButton = (HolopadContactButton)child; + var passesFilter = string.IsNullOrEmpty(SearchLineEdit.Text) || + contactButton.Text?.Contains(SearchLineEdit.Text, StringComparison.CurrentCultureIgnoreCase) == true; + + contactButton.Visible = passesFilter; contactButton.Disabled = (_currentState != TelephoneState.Idle || lockButtons); } @@ -290,7 +295,7 @@ private void UpdateAppearance() FetchingAvailableHolopadsContainer.Visible = (ContactsList.ChildCount == 0); ActiveCallControlsContainer.Visible = (_currentState != TelephoneState.Idle || _currentUiKey == HolopadUiKey.AiRequestWindow); CallPlacementControlsContainer.Visible = !ActiveCallControlsContainer.Visible; - CallerIdText.Visible = (_currentState == TelephoneState.Ringing); + CallerIdContainer.Visible = (_currentState == TelephoneState.Ringing); AnswerCallButton.Visible = (_currentState == TelephoneState.Ringing); } @@ -316,6 +321,7 @@ public HolopadContactButton() HorizontalExpand = true; SetHeight = 32; Margin = new Thickness(0f, 1f, 0f, 1f); + ReservesSpace = false; } public void UpdateValues(NetEntity netEntity, string label) diff --git a/Content.Client/Lobby/LobbyState.cs b/Content.Client/Lobby/LobbyState.cs index 1361ca57cd28..4677245509e4 100644 --- a/Content.Client/Lobby/LobbyState.cs +++ b/Content.Client/Lobby/LobbyState.cs @@ -5,19 +5,21 @@ using Content.Client.Message; using Content.Client.UserInterface.Systems.Chat; using Content.Client.Voting; +using Content.Shared.CCVar; using Robust.Client; using Robust.Client.Console; using Robust.Client.ResourceManagement; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; +using Robust.Shared.Configuration; using Robust.Shared.Timing; - namespace Content.Client.Lobby { public sealed class LobbyState : Robust.Client.State.State { [Dependency] private readonly IBaseClient _baseClient = default!; + [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IClientConsoleHost _consoleHost = default!; [Dependency] private readonly IEntityManager _entityManager = default!; [Dependency] private readonly IResourceCache _resourceCache = default!; @@ -49,7 +51,17 @@ protected override void Startup() _voteManager.SetPopupContainer(Lobby.VoteContainer); LayoutContainer.SetAnchorPreset(Lobby, LayoutContainer.LayoutPreset.Wide); - Lobby.ServerName.Text = _baseClient.GameInfo?.ServerName; //The eye of refactor gazes upon you... + + var lobbyNameCvar = _cfg.GetCVar(CCVars.ServerLobbyName); + var serverName = _baseClient.GameInfo?.ServerName ?? string.Empty; + + Lobby.ServerName.Text = string.IsNullOrEmpty(lobbyNameCvar) + ? Loc.GetString("ui-lobby-title", ("serverName", serverName)) + : lobbyNameCvar; + + var width = _cfg.GetCVar(CCVars.ServerLobbyRightPanelWidth); + Lobby.RightSide.SetWidth = width; + UpdateLobbyUi(); Lobby.CharacterPreview.CharacterSetupButton.OnPressed += OnSetupPressed; diff --git a/Content.Client/Lobby/UI/LobbyGui.xaml b/Content.Client/Lobby/UI/LobbyGui.xaml index 4a3e54115cff..d336c1e74aa1 100644 --- a/Content.Client/Lobby/UI/LobbyGui.xaml +++ b/Content.Client/Lobby/UI/LobbyGui.xaml @@ -62,14 +62,12 @@ - - diff --git a/Content.Client/PDA/PdaMenu.xaml.cs b/Content.Client/PDA/PdaMenu.xaml.cs index 630861d08408..712e0cbb01a4 100644 --- a/Content.Client/PDA/PdaMenu.xaml.cs +++ b/Content.Client/PDA/PdaMenu.xaml.cs @@ -141,6 +141,11 @@ public void UpdateState(PdaUpdateState state) _pdaOwner = state.PdaOwnerInfo.ActualOwnerName; PdaOwnerLabel.SetMarkup(Loc.GetString("comp-pda-ui-owner", ("actualOwnerName", _pdaOwner))); + PdaOwnerLabel.Visible = true; + } + else + { + PdaOwnerLabel.Visible = false; } diff --git a/Content.Client/PDA/PdaSystem.cs b/Content.Client/PDA/PdaSystem.cs index 00a12ae2e696..a5fedce57955 100644 --- a/Content.Client/PDA/PdaSystem.cs +++ b/Content.Client/PDA/PdaSystem.cs @@ -1,48 +1,8 @@ using Content.Shared.PDA; -using Content.Shared.Light; -using Robust.Client.GameObjects; namespace Content.Client.PDA; public sealed class PdaSystem : SharedPdaSystem { - public override void Initialize() - { - base.Initialize(); - SubscribeLocalEvent(OnAppearanceChange); - } - - private void OnAppearanceChange(EntityUid uid, PdaComponent component, ref AppearanceChangeEvent args) - { - if (args.Sprite == null) - return; - - if (Appearance.TryGetData(uid, UnpoweredFlashlightVisuals.LightOn, out var isFlashlightOn, args.Component)) - args.Sprite.LayerSetVisible(PdaVisualLayers.Flashlight, isFlashlightOn); - - if (Appearance.TryGetData(uid, PdaVisuals.IdCardInserted, out var isCardInserted, args.Component)) - args.Sprite.LayerSetVisible(PdaVisualLayers.IdLight, isCardInserted); - } - - protected override void OnComponentInit(EntityUid uid, PdaComponent component, ComponentInit args) - { - base.OnComponentInit(uid, component, args); - - if (!TryComp(uid, out var sprite)) - return; - - if (component.State != null) - sprite.LayerSetState(PdaVisualLayers.Base, component.State); - - sprite.LayerSetVisible(PdaVisualLayers.Flashlight, component.FlashlightOn); - sprite.LayerSetVisible(PdaVisualLayers.IdLight, component.IdSlot.StartingItem != null); - } - - public enum PdaVisualLayers : byte - { - Base, - Flashlight, - IdLight - } } diff --git a/Content.Client/PDA/PdaVisualizerSystem.cs b/Content.Client/PDA/PdaVisualizerSystem.cs new file mode 100644 index 000000000000..735fcd42eb0d --- /dev/null +++ b/Content.Client/PDA/PdaVisualizerSystem.cs @@ -0,0 +1,30 @@ +using Content.Shared.Light; +using Content.Shared.PDA; +using Robust.Client.GameObjects; + +namespace Content.Client.PDA; + +public sealed class PdaVisualizerSystem : VisualizerSystem +{ + protected override void OnAppearanceChange(EntityUid uid, PdaVisualsComponent comp, ref AppearanceChangeEvent args) + { + if (args.Sprite == null) + return; + + if (AppearanceSystem.TryGetData(uid, PdaVisuals.PdaType, out var pdaType, args.Component)) + args.Sprite.LayerSetState(PdaVisualLayers.Base, pdaType); + + if (AppearanceSystem.TryGetData(uid, UnpoweredFlashlightVisuals.LightOn, out var isFlashlightOn, args.Component)) + args.Sprite.LayerSetVisible(PdaVisualLayers.Flashlight, isFlashlightOn); + + if (AppearanceSystem.TryGetData(uid, PdaVisuals.IdCardInserted, out var isCardInserted, args.Component)) + args.Sprite.LayerSetVisible(PdaVisualLayers.IdLight, isCardInserted); + } + + public enum PdaVisualLayers : byte + { + Base, + Flashlight, + IdLight + } +} diff --git a/Content.Client/PDA/PdaVisualsComponent.cs b/Content.Client/PDA/PdaVisualsComponent.cs new file mode 100644 index 000000000000..893ce5503d72 --- /dev/null +++ b/Content.Client/PDA/PdaVisualsComponent.cs @@ -0,0 +1,14 @@ +namespace Content.Client.PDA; + +/// +/// Used for visualizing PDA visuals. +/// +[RegisterComponent] +public sealed partial class PdaVisualsComponent : Component +{ + public string? BorderColor; + + public string? AccentHColor; + + public string? AccentVColor; +} diff --git a/Content.IntegrationTests/Tests/EntityTest.cs b/Content.IntegrationTests/Tests/EntityTest.cs index 42bea8989cdf..5dba8ac65830 100644 --- a/Content.IntegrationTests/Tests/EntityTest.cs +++ b/Content.IntegrationTests/Tests/EntityTest.cs @@ -2,6 +2,7 @@ using System.Linq; using System.Numerics; using Robust.Shared; +using Robust.Shared.Audio.Components; using Robust.Shared.Configuration; using Robust.Shared.GameObjects; using Robust.Shared.Log; @@ -216,14 +217,17 @@ await server.WaitPost(() => /// generally not spawn unrelated / detached entities. Any entities that do get spawned should be parented to /// the spawned entity (e.g., in a container). If an entity needs to spawn an entity somewhere in null-space, /// it should delete that entity when it is no longer required. This test mainly exists to prevent "entity leak" - /// bugs, where spawning some entity starts spawning unrelated entities in null space. + /// bugs, where spawning some entity starts spawning unrelated entities in null space that stick around after + /// the original entity is gone. + /// + /// Note that this isn't really a strict requirement, and there are probably quite a few edge cases. Its a pretty + /// crude test to try catch issues like this, and possibly should just be disabled. /// [Test] public async Task SpawnAndDeleteEntityCountTest() { var settings = new PoolSettings { Connected = true, Dirty = true }; await using var pair = await PoolManager.GetServerClient(settings); - var mapManager = pair.Server.ResolveDependency(); var mapSys = pair.Server.System(); var server = pair.Server; var client = pair.Client; @@ -261,6 +265,9 @@ await server.WaitPost(() => await pair.RunTicksSync(3); + // We consider only non-audio entities, as some entities will just play sounds when they spawn. + int Count(IEntityManager ent) => ent.EntityCount - ent.Count(); + foreach (var protoId in protoIds) { // TODO fix ninja @@ -268,8 +275,8 @@ await server.WaitPost(() => if (protoId == "MobHumanSpaceNinja") continue; - var count = server.EntMan.EntityCount; - var clientCount = client.EntMan.EntityCount; + var count = Count(server.EntMan); + var clientCount = Count(client.EntMan); EntityUid uid = default; await server.WaitPost(() => uid = server.EntMan.SpawnEntity(protoId, coords)); await pair.RunTicksSync(3); @@ -277,30 +284,30 @@ await server.WaitPost(() => // If the entity deleted itself, check that it didn't spawn other entities if (!server.EntMan.EntityExists(uid)) { - if (server.EntMan.EntityCount != count) + if (Count(server.EntMan) != count) { Assert.Fail($"Server prototype {protoId} failed on deleting itself"); } - if (client.EntMan.EntityCount != clientCount) + if (Count(client.EntMan) != clientCount) { Assert.Fail($"Client prototype {protoId} failed on deleting itself\n" + - $"Expected {clientCount} and found {client.EntMan.EntityCount}.\n" + + $"Expected {clientCount} and found {Count(client.EntMan)}.\n" + $"Server was {count}."); } continue; } // Check that the number of entities has increased. - if (server.EntMan.EntityCount <= count) + if (Count(server.EntMan) <= count) { Assert.Fail($"Server prototype {protoId} failed on spawning as entity count didn't increase"); } - if (client.EntMan.EntityCount <= clientCount) + if (Count(client.EntMan) <= clientCount) { Assert.Fail($"Client prototype {protoId} failed on spawning as entity count didn't increase" + - $"Expected at least {clientCount} and found {client.EntMan.EntityCount}. " + + $"Expected at least {clientCount} and found {Count(client.EntMan)}. " + $"Server was {count}"); } @@ -308,15 +315,15 @@ await server.WaitPost(() => await pair.RunTicksSync(3); // Check that the number of entities has gone back to the original value. - if (server.EntMan.EntityCount != count) + if (Count(server.EntMan) != count) { Assert.Fail($"Server prototype {protoId} failed on deletion count didn't reset properly"); } - if (client.EntMan.EntityCount != clientCount) + if (Count(client.EntMan) != clientCount) { Assert.Fail($"Client prototype {protoId} failed on deletion count didn't reset properly:\n" + - $"Expected {clientCount} and found {client.EntMan.EntityCount}.\n" + + $"Expected {clientCount} and found {Count(client.EntMan)}.\n" + $"Server was {count}."); } } diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index d22533927bcf..26e905ef9990 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -67,7 +67,8 @@ public sealed class PostMapInitTest "Cog", "Gate", "Amber", - "Loop" + "Loop", + "Elkridge" }; diff --git a/Content.Server/Cargo/Systems/PriceGunSystem.cs b/Content.Server/Cargo/Systems/PriceGunSystem.cs index 94f9f9cba9ed..5e7ab2306068 100644 --- a/Content.Server/Cargo/Systems/PriceGunSystem.cs +++ b/Content.Server/Cargo/Systems/PriceGunSystem.cs @@ -1,7 +1,9 @@ using Content.Server.Popups; +using Content.Shared.Cargo.Components; using Content.Shared.IdentityManagement; using Content.Shared.Timing; using Content.Shared.Cargo.Systems; +using Robust.Shared.Audio.Systems; namespace Content.Server.Cargo.Systems; @@ -11,12 +13,12 @@ public sealed class PriceGunSystem : SharedPriceGunSystem [Dependency] private readonly PricingSystem _pricingSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly CargoSystem _bountySystem = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; - protected override bool GetPriceOrBounty(EntityUid priceGunUid, EntityUid target, EntityUid user) + protected override bool GetPriceOrBounty(Entity entity, EntityUid target, EntityUid user) { - if (!TryComp(priceGunUid, out UseDelayComponent? useDelay) || _useDelay.IsDelayed((priceGunUid, useDelay))) + if (!TryComp(entity.Owner, out UseDelayComponent? useDelay) || _useDelay.IsDelayed((entity.Owner, useDelay))) return false; - // Check if we're scanning a bounty crate if (_bountySystem.IsBountyComplete(target, out _)) { @@ -25,10 +27,15 @@ protected override bool GetPriceOrBounty(EntityUid priceGunUid, EntityUid target else // Otherwise appraise the price { var price = _pricingSystem.GetPrice(target); - _popupSystem.PopupEntity(Loc.GetString("price-gun-pricing-result", ("object", Identity.Entity(target, EntityManager)), ("price", $"{price:F2}")), user, user); + _popupSystem.PopupEntity(Loc.GetString("price-gun-pricing-result", + ("object", Identity.Entity(target, EntityManager)), + ("price", $"{price:F2}")), + user, + user); } - _useDelay.TryResetDelay((priceGunUid, useDelay)); + _audio.PlayPvs(entity.Comp.AppraisalSound, entity.Owner); + _useDelay.TryResetDelay((entity.Owner, useDelay)); return true; } } diff --git a/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeSystem.cs b/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeSystem.cs index 287f68240241..1b77e63e5a99 100644 --- a/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeSystem.cs +++ b/Content.Server/CartridgeLoader/Cartridges/NotekeeperCartridgeSystem.cs @@ -1,11 +1,14 @@ +using Content.Server.Administration.Logs; using Content.Shared.CartridgeLoader; using Content.Shared.CartridgeLoader.Cartridges; +using Content.Shared.Database; namespace Content.Server.CartridgeLoader.Cartridges; public sealed class NotekeeperCartridgeSystem : EntitySystem { [Dependency] private readonly CartridgeLoaderSystem? _cartridgeLoaderSystem = default!; + [Dependency] private readonly IAdminLogManager _adminLogger = default!; public override void Initialize() { @@ -36,16 +39,19 @@ private void OnUiMessage(EntityUid uid, NotekeeperCartridgeComponent component, if (message.Action == NotekeeperUiAction.Add) { component.Notes.Add(message.Note); + _adminLogger.Add(LogType.PdaInteract, LogImpact.Low, + $"{ToPrettyString(args.Actor)} added a note to PDA: '{message.Note}' contained on: {ToPrettyString(uid)}"); } else { component.Notes.Remove(message.Note); + _adminLogger.Add(LogType.PdaInteract, LogImpact.Low, + $"{ToPrettyString(args.Actor)} removed a note from PDA: '{message.Note}' was contained on: {ToPrettyString(uid)}"); } UpdateUiState(uid, GetEntity(args.LoaderUid), component); } - private void UpdateUiState(EntityUid uid, EntityUid loaderUid, NotekeeperCartridgeComponent? component) { if (!Resolve(uid, ref component)) diff --git a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs index feb3428884ce..3700aeb549c8 100644 --- a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs +++ b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs @@ -1,4 +1,4 @@ -using Content.Server.IdentityManagement; +using Content.Server.IdentityManagement; using Content.Shared.Clothing.Components; using Content.Shared.Clothing.EntitySystems; using Content.Shared.IdentityManagement.Components; @@ -63,7 +63,7 @@ private void UpdateUi(EntityUid uid, ChameleonClothingComponent? component = nul if (!Resolve(uid, ref component)) return; - var state = new ChameleonBoundUserInterfaceState(component.Slot, component.Default); + var state = new ChameleonBoundUserInterfaceState(component.Slot, component.Default, component.RequireTag); _uiSystem.SetUiState(uid, ChameleonUiKey.Key, state); } @@ -84,7 +84,7 @@ public void SetSelectedPrototype(EntityUid uid, string? protoId, bool forceUpdat // make sure that it is valid change if (string.IsNullOrEmpty(protoId) || !_proto.TryIndex(protoId, out EntityPrototype? proto)) return; - if (!IsValidTarget(proto, component.Slot)) + if (!IsValidTarget(proto, component.Slot, component.RequireTag)) return; component.Default = protoId; diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs index 7156ca2790ec..8954cfb7b608 100644 --- a/Content.Server/Holopad/HolopadSystem.cs +++ b/Content.Server/Holopad/HolopadSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.IdentityManagement; using Content.Shared.Labels.Components; using Content.Shared.Silicons.StationAi; +using Content.Shared.Speech; using Content.Shared.Telephone; using Content.Shared.UserInterface; using Content.Shared.Verbs; @@ -179,11 +180,15 @@ private void OnHolopadStartBroadcast(Entity source, ref Holopa // AI broadcasting if (TryComp(args.Actor, out var stationAiHeld)) { + // 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 || !TryComp(stationAiCore, out var stationAiCoreHolopad)) return; + // Execute the broadcast, but have it originate from the AI core ExecuteBroadcast((stationAiCore.Value, stationAiCoreHolopad), args.Actor); // Switch the AI's perspective from free roaming to the target holopad @@ -381,7 +386,10 @@ private void OnEmote(Entity entity, ref EmoteEvent args) if (TryComp(linkedHolopad, out var linkedHolopadTelephone) && linkedHolopadTelephone.Muted) continue; - foreach (var receiver in GetLinkedHolopads(linkedHolopad)) + var receivingHolopads = GetLinkedHolopads(linkedHolopad); + var range = receivingHolopads.Count > 1 ? ChatTransmitRange.HideChat : ChatTransmitRange.GhostRangeLimit; + + foreach (var receiver in receivingHolopads) { if (receiver.Comp.Hologram == null) continue; @@ -391,7 +399,7 @@ private void OnEmote(Entity entity, ref EmoteEvent args) var name = Loc.GetString("holopad-hologram-name", ("name", ent)); // Force the emote, because if the user can do it, the hologram can too - _chatSystem.TryEmoteWithChat(receiver.Comp.Hologram.Value, args.Emote, ChatTransmitRange.Normal, false, name, true, true); + _chatSystem.TryEmoteWithChat(receiver.Comp.Hologram.Value, args.Emote, range, false, name, true, true); } } } @@ -521,16 +529,23 @@ private void GenerateHologram(Entity entity) entity.Comp.HologramProtoId == null) return; - var uid = Spawn(entity.Comp.HologramProtoId, Transform(entity).Coordinates); + var hologramUid = Spawn(entity.Comp.HologramProtoId, Transform(entity).Coordinates); // Safeguard - spawned holograms must have this component - if (!TryComp(uid, out var component)) + if (!TryComp(hologramUid, out var holopadHologram)) { - Del(uid); + Del(hologramUid); return; } - entity.Comp.Hologram = new Entity(uid, component); + entity.Comp.Hologram = new Entity(hologramUid, holopadHologram); + + // Relay speech preferentially through the hologram + if (TryComp(hologramUid, out var hologramSpeech) && + TryComp(entity, out var entityTelephone)) + { + _telephoneSystem.SetSpeakerForTelephone((entity, entityTelephone), (hologramUid, hologramSpeech)); + } } private void DeleteHologram(Entity hologram, Entity attachedHolopad) @@ -608,10 +623,25 @@ private void ShutDownHolopad(Entity entity) DeleteHologram(entity.Comp.Hologram.Value, entity); if (entity.Comp.User != null) - UnlinkHolopadFromUser(entity, entity.Comp.User.Value); + { + // 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)) + { + // Return the AI eye to free roaming + _stationAiSystem.SwitchRemoteEntityMode(stationAiCore.Value, true); - if (TryComp(entity, out var stationAiCore)) - _stationAiSystem.SwitchRemoteEntityMode((entity.Owner, stationAiCore), true); + // If the AI core is still broadcasting, end its calls + if (entity.Owner != stationAiCore.Value.Owner && + TryComp(stationAiCore, out var stationAiCoreTelephone) && + _telephoneSystem.IsTelephoneEngaged((stationAiCore.Value.Owner, stationAiCoreTelephone))) + { + _telephoneSystem.EndTelephoneCalls((stationAiCore.Value.Owner, stationAiCoreTelephone)); + } + } + + UnlinkHolopadFromUser(entity, entity.Comp.User.Value); + } Dirty(entity); } diff --git a/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs b/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs index e0a56149b3e2..7639e69bfdaa 100644 --- a/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs +++ b/Content.Server/Objectives/Systems/HelpProgressConditionSystem.cs @@ -45,10 +45,7 @@ private void OnTraitorAssigned(EntityUid uid, RandomTraitorProgressComponent com return; } - var traitors = _traitorRule.GetOtherTraitorMindsAliveAndConnected(args.Mind) - .Select(pair => pair.Item1) - .ToHashSet(); - var removeList = new List(); + var traitors = _traitorRule.GetOtherTraitorMindsAliveAndConnected(args.Mind).ToHashSet(); // cant help anyone who is tasked with helping: // 1. thats boring @@ -56,19 +53,26 @@ private void OnTraitorAssigned(EntityUid uid, RandomTraitorProgressComponent com foreach (var traitor in traitors) { // TODO: replace this with TryComp(traitor) or something when objectives are moved out of mind - if (!TryComp(traitor, out var mind)) + if (!TryComp(traitor.Id, out var mind)) continue; foreach (var objective in mind.Objectives) { if (HasComp(objective)) - removeList.Add(traitor); + traitors.RemoveWhere(x => x.Mind == mind); } } - foreach (var tot in removeList) + // Can't have multiple objectives to help/save the same person + foreach (var objective in args.Mind.Objectives) { - traitors.Remove(tot); + if (HasComp(objective) || HasComp(objective)) + { + if (TryComp(objective, out var help)) + { + traitors.RemoveWhere(x => x.Id == help.Target); + } + } } // no more helpable traitors @@ -78,7 +82,7 @@ private void OnTraitorAssigned(EntityUid uid, RandomTraitorProgressComponent com return; } - _target.SetTarget(uid, _random.Pick(traitors), target); + _target.SetTarget(uid, _random.Pick(traitors).Id, target); } private float GetProgress(EntityUid target) diff --git a/Content.Server/Objectives/Systems/KeepAliveCondition.cs b/Content.Server/Objectives/Systems/KeepAliveCondition.cs index 48df96e74251..fad8aa6d18e1 100644 --- a/Content.Server/Objectives/Systems/KeepAliveCondition.cs +++ b/Content.Server/Objectives/Systems/KeepAliveCondition.cs @@ -44,7 +44,19 @@ private void OnAssigned(EntityUid uid, RandomTraitorAliveComponent comp, ref Obj return; } - var traitors = Enumerable.ToList<(EntityUid Id, MindComponent Mind)>(_traitorRule.GetOtherTraitorMindsAliveAndConnected(args.Mind)); + var traitors = _traitorRule.GetOtherTraitorMindsAliveAndConnected(args.Mind).ToHashSet(); + + // Can't have multiple objectives to help/save the same person + foreach (var objective in args.Mind.Objectives) + { + if (HasComp(objective) || HasComp(objective)) + { + if (TryComp(objective, out var help)) + { + traitors.RemoveWhere(x => x.Id == help.Target); + } + } + } // You are the first/only traitor. if (traitors.Count == 0) diff --git a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs index f662d6a578c8..3aa4d606fc3b 100644 --- a/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs +++ b/Content.Server/Objectives/Systems/KillPersonConditionSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Objectives.Components; using Robust.Shared.Configuration; using Robust.Shared.Random; +using System.Linq; namespace Content.Server.Objectives.Systems; @@ -52,8 +53,18 @@ private void OnPersonAssigned(EntityUid uid, PickRandomPersonComponent comp, ref if (target.Target != null) return; - // no other humans to kill var allHumans = _mind.GetAliveHumans(args.MindId); + + // Can't have multiple objectives to kill the same person + foreach (var objective in args.Mind.Objectives) + { + if (HasComp(objective) && TryComp(objective, out var kill)) + { + allHumans.RemoveWhere(x => x.Owner == kill.Target); + } + } + + // no other humans to kill if (allHumans.Count == 0) { args.Cancelled = true; diff --git a/Content.Server/Objectives/Systems/StealConditionSystem.cs b/Content.Server/Objectives/Systems/StealConditionSystem.cs index 48814e7ba3c1..d61b796e42e4 100644 --- a/Content.Server/Objectives/Systems/StealConditionSystem.cs +++ b/Content.Server/Objectives/Systems/StealConditionSystem.cs @@ -29,6 +29,7 @@ public sealed class StealConditionSystem : EntitySystem private EntityQuery _containerQuery; private HashSet> _nearestEnts = new(); + private HashSet _countedItems = new(); public override void Initialize() { @@ -104,6 +105,8 @@ private float GetProgress(MindComponent mind, StealConditionComponent condition) var containerStack = new Stack(); var count = 0; + _countedItems.Clear(); + //check stealAreas if (condition.CheckStealAreas) { @@ -174,6 +177,9 @@ private void CheckEntity(EntityUid entity, StealConditionComponent condition, re private int CheckStealTarget(EntityUid entity, StealConditionComponent condition) { + if (_countedItems.Contains(entity)) + return 0; + // check if this is the target if (!TryComp(entity, out var target)) return 0; @@ -196,6 +202,8 @@ private int CheckStealTarget(EntityUid entity, StealConditionComponent condition } } + _countedItems.Add(entity); + return TryComp(entity, out var stack) ? stack.Count : 1; } } diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs index c76be2fd20c0..2efb69b28abb 100644 --- a/Content.Server/PDA/PdaSystem.cs +++ b/Content.Server/PDA/PdaSystem.cs @@ -1,3 +1,4 @@ +using Content.Server.Access.Systems; using Content.Server.AlertLevel; using Content.Server.CartridgeLoader; using Content.Server.Chat.Managers; @@ -37,6 +38,7 @@ public sealed class PdaSystem : SharedPdaSystem [Dependency] private readonly UserInterfaceSystem _ui = default!; [Dependency] private readonly UnpoweredFlashlightSystem _unpoweredFlashlight = default!; [Dependency] private readonly ContainerSystem _containerSystem = default!; + [Dependency] private readonly IdCardSystem _idCard = default!; public override void Initialize() { @@ -56,19 +58,25 @@ public override void Initialize() SubscribeLocalEvent(OnNotification); SubscribeLocalEvent(OnStationRenamed); - SubscribeLocalEvent(OnEntityRenamed); + SubscribeLocalEvent(OnEntityRenamed, after: new[] { typeof(IdCardSystem) }); SubscribeLocalEvent(OnAlertLevelChanged); } private void OnEntityRenamed(ref EntityRenamedEvent ev) { - var query = EntityQueryEnumerator(); + if (HasComp(ev.Uid)) + return; - while (query.MoveNext(out var uid, out var comp)) + if (_idCard.TryFindIdCard(ev.Uid, out var idCard)) { - if (comp.PdaOwner == ev.Uid) + var query = EntityQueryEnumerator(); + + while (query.MoveNext(out var uid, out var comp)) { - SetOwner(uid, comp, ev.Uid, ev.NewName); + if (comp.ContainedId == idCard) + { + SetOwner(uid, comp, ev.Uid, ev.NewName); + } } } } @@ -87,6 +95,9 @@ protected override void OnComponentInit(EntityUid uid, PdaComponent pda, Compone protected override void OnItemInserted(EntityUid uid, PdaComponent pda, EntInsertedIntoContainerMessage args) { base.OnItemInserted(uid, pda, args); + var id = CompOrNull(pda.ContainedId); + if (id != null) + pda.OwnerName = id.FullName; UpdatePdaUi(uid, pda); } diff --git a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs index 191a0ac57c66..3a88bf391095 100644 --- a/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs +++ b/Content.Server/Storage/EntitySystems/BluespaceLockerSystem.cs @@ -16,6 +16,7 @@ using Robust.Shared.Random; using Robust.Shared.Timing; using Robust.Shared.Prototypes; +using Content.Server.Shuttles.Components; namespace Content.Server.Storage.EntitySystems; @@ -47,6 +48,8 @@ private void OnStartup(EntityUid uid, BluespaceLockerComponent component, Compon if (component.BehaviorProperties.BluespaceEffectOnInit) BluespaceEffect(uid, component, component, true); + + EnsureComp(uid); // To stop people getting to arrivals terminal } public void BluespaceEffect(EntityUid effectTargetUid, BluespaceLockerComponent effectSourceComponent, BluespaceLockerComponent? effectTargetComponent, bool bypassLimit = false) diff --git a/Content.Server/Telephone/TelephoneSystem.cs b/Content.Server/Telephone/TelephoneSystem.cs index d4398c76d3f4..dd068612f75a 100644 --- a/Content.Server/Telephone/TelephoneSystem.cs +++ b/Content.Server/Telephone/TelephoneSystem.cs @@ -7,8 +7,11 @@ using Content.Server.Speech.Components; using Content.Shared.Chat; using Content.Shared.Database; +using Content.Shared.Labels.Components; using Content.Shared.Mind.Components; using Content.Shared.Power; +using Content.Shared.Silicons.StationAi; +using Content.Shared.Silicons.Borgs.Components; using Content.Shared.Speech; using Content.Shared.Telephone; using Robust.Server.GameObjects; @@ -19,8 +22,6 @@ using Robust.Shared.Random; using Robust.Shared.Replays; using System.Linq; -using Content.Shared.Silicons.StationAi; -using Content.Shared.Silicons.Borgs.Components; namespace Content.Server.Telephone; @@ -104,12 +105,17 @@ private void OnTelephoneMessageReceived(Entity entity, ref T var nameEv = new TransformSpeakerNameEvent(args.MessageSource, Name(args.MessageSource)); RaiseLocalEvent(args.MessageSource, nameEv); - var name = Loc.GetString("speech-name-relay", - ("speaker", Name(entity)), - ("originalName", nameEv.VoiceName)); + // Determine if speech should be relayed via the telephone itself or a designated speaker + var speaker = entity.Comp.Speaker != null ? entity.Comp.Speaker.Value.Owner : entity.Owner; + + var name = Loc.GetString("chat-telephone-name-relay", + ("originalName", nameEv.VoiceName), + ("speaker", Name(speaker))); + var range = args.TelephoneSource.Comp.LinkedTelephones.Count > 1 ? ChatTransmitRange.HideChat : ChatTransmitRange.GhostRangeLimit; var volume = entity.Comp.SpeakerVolume == TelephoneVolume.Speak ? InGameICChatType.Speak : InGameICChatType.Whisper; - _chat.TrySendInGameICMessage(entity, args.Message, volume, ChatTransmitRange.GhostRangeLimit, nameOverride: name, checkRadioPrefix: false); + + _chat.TrySendInGameICMessage(speaker, args.Message, volume, range, nameOverride: name, checkRadioPrefix: false); } #endregion @@ -151,7 +157,7 @@ public override void Update(float frameTime) break; - // Try to hang up if their has been no recent in-call activity + // Try to hang up if there has been no recent in-call activity case TelephoneState.InCall: if (_timing.CurTime > telephone.StateStartTime + TimeSpan.FromSeconds(telephone.IdlingTimeout)) EndTelephoneCalls(entity); @@ -214,7 +220,15 @@ private bool TryCallTelephone(Entity source, Entity(source, out var label)) + deviceName = label.CurrentLabel; + + receiver.Comp.LastCallerId = (callerInfo.Item1, callerInfo.Item2, deviceName); // This will be networked when the state changes receiver.Comp.LinkedTelephones.Add(source); receiver.Comp.Muted = options?.MuteReceiver == true; @@ -401,6 +415,11 @@ private void SetTelephoneMicrophoneState(Entity entity, bool } } + public void SetSpeakerForTelephone(Entity entity, Entity? speaker) + { + entity.Comp.Speaker = speaker; + } + private (string?, string?) GetNameAndJobOfCallingEntity(EntityUid uid) { string? presumedName = null; diff --git a/Content.Shared.Database/LogType.cs b/Content.Shared.Database/LogType.cs index dd5091fbcfd7..1bbaa962231e 100644 --- a/Content.Shared.Database/LogType.cs +++ b/Content.Shared.Database/LogType.cs @@ -439,4 +439,9 @@ public enum LogType /// A ghost warped to an entity through the ghost warp menu. /// GhostWarp = 95, + + /// + /// A player interacted with a PDA or its cartridge component + /// + PdaInteract = 96, } diff --git a/Content.Shared/CCVar/CCVars.Server.cs b/Content.Shared/CCVar/CCVars.Server.cs index 2c861584afc9..88e7b251ba07 100644 --- a/Content.Shared/CCVar/CCVars.Server.cs +++ b/Content.Shared/CCVar/CCVars.Server.cs @@ -40,4 +40,17 @@ public sealed partial class CCVars /// public static readonly CVarDef ServerUptimeRestartMinutes = CVarDef.Create("server.uptime_restart_minutes", 0, CVar.SERVERONLY); + + /// + /// This will be the title shown in the lobby + /// If empty, the title will be {ui-lobby-title} + the server's full name from the hub + /// + public static readonly CVarDef ServerLobbyName = + CVarDef.Create("server.lobby_name", "", CVar.REPLICATED | CVar.SERVER); + + /// + /// The width of the right side (chat) panel in the lobby + /// + public static readonly CVarDef ServerLobbyRightPanelWidth = + CVarDef.Create("server.lobby_right_panel_width", 650, CVar.REPLICATED | CVar.SERVER); } diff --git a/Content.Shared/Cargo/Components/PriceGunComponent.cs b/Content.Shared/Cargo/Components/PriceGunComponent.cs index 7024f1195afd..6577c52c1e71 100644 --- a/Content.Shared/Cargo/Components/PriceGunComponent.cs +++ b/Content.Shared/Cargo/Components/PriceGunComponent.cs @@ -1,3 +1,4 @@ +using Robust.Shared.Audio; using Robust.Shared.GameStates; namespace Content.Shared.Cargo.Components; @@ -8,4 +9,9 @@ namespace Content.Shared.Cargo.Components; [RegisterComponent, NetworkedComponent] public sealed partial class PriceGunComponent : Component { + /// + /// The sound that plays when the price gun appraises an object. + /// + [DataField] + public SoundSpecifier AppraisalSound = new SoundPathSpecifier("/Audio/Items/appraiser.ogg"); } diff --git a/Content.Shared/Cargo/SharedPriceGunSystem.cs b/Content.Shared/Cargo/SharedPriceGunSystem.cs index 779d55055aa2..b5e312772b75 100644 --- a/Content.Shared/Cargo/SharedPriceGunSystem.cs +++ b/Content.Shared/Cargo/SharedPriceGunSystem.cs @@ -26,7 +26,7 @@ private void OnUtilityVerb(EntityUid uid, PriceGunComponent component, GetVerbsE { Act = () => { - GetPriceOrBounty(uid, args.Target, args.User); + GetPriceOrBounty((uid, component), args.Target, args.User); }, Text = Loc.GetString("price-gun-verb-text"), Message = Loc.GetString("price-gun-verb-message", ("object", Identity.Entity(args.Target, EntityManager))) @@ -51,5 +51,5 @@ private void OnAfterInteract(Entity entity, ref AfterInteract /// This is abstract for prediction. When the bounty system / cargo systems that are necessary are moved to shared, /// combine all the server, client, and shared stuff into one non abstract file. /// - protected abstract bool GetPriceOrBounty(EntityUid priceGunUid, EntityUid target, EntityUid user); + protected abstract bool GetPriceOrBounty(Entity entity, EntityUid target, EntityUid user); } diff --git a/Content.Shared/Clothing/Components/ChameleonClothingComponent.cs b/Content.Shared/Clothing/Components/ChameleonClothingComponent.cs index def4254304f0..8fa2f19fa2ff 100644 --- a/Content.Shared/Clothing/Components/ChameleonClothingComponent.cs +++ b/Content.Shared/Clothing/Components/ChameleonClothingComponent.cs @@ -32,6 +32,12 @@ public sealed partial class ChameleonClothingComponent : Component /// [ViewVariables] public EntityUid? User; + + /// + /// Filter possible chameleon options by a tag in addition to WhitelistChameleon. + /// + [DataField] + public string? RequireTag; } [Serializable, NetSerializable] @@ -39,11 +45,13 @@ public sealed class ChameleonBoundUserInterfaceState : BoundUserInterfaceState { public readonly SlotFlags Slot; public readonly string? SelectedId; + public readonly string? RequiredTag; - public ChameleonBoundUserInterfaceState(SlotFlags slot, string? selectedId) + public ChameleonBoundUserInterfaceState(SlotFlags slot, string? selectedId, string? requiredTag) { Slot = slot; SelectedId = selectedId; + RequiredTag = requiredTag; } } diff --git a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs index 2b10b41fee8d..488b7a5b641c 100644 --- a/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs +++ b/Content.Shared/Clothing/EntitySystems/SharedChameleonClothingSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Item; using Content.Shared.Tag; using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.Manager; namespace Content.Shared.Clothing.EntitySystems; @@ -13,10 +14,12 @@ public abstract class SharedChameleonClothingSystem : EntitySystem { [Dependency] private readonly IComponentFactory _factory = default!; [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly ISerializationManager _serialization = default!; [Dependency] private readonly ClothingSystem _clothingSystem = default!; [Dependency] private readonly ContrabandSystem _contraband = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; [Dependency] private readonly SharedItemSystem _itemSystem = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly TagSystem _tag = default!; public override void Initialize() @@ -71,6 +74,14 @@ protected void UpdateVisuals(EntityUid uid, ChameleonClothingComponent component _clothingSystem.CopyVisuals(uid, otherClothing, clothing); } + // appearance data logic + if (TryComp(uid, out AppearanceComponent? appearance) && + proto.TryGetComponent("Appearance", out AppearanceComponent? appearanceOther)) + { + _appearance.AppendData(appearanceOther, uid); + Dirty(uid, appearance); + } + // properly mark contraband if (proto.TryGetComponent("Contraband", out ContrabandComponent? contra)) { @@ -88,7 +99,7 @@ protected virtual void UpdateSprite(EntityUid uid, EntityPrototype proto) { } /// /// Check if this entity prototype is valid target for chameleon item. /// - public bool IsValidTarget(EntityPrototype proto, SlotFlags chameleonSlot = SlotFlags.NONE) + public bool IsValidTarget(EntityPrototype proto, SlotFlags chameleonSlot = SlotFlags.NONE, string? requiredTag = null) { // check if entity is valid if (proto.Abstract || proto.HideSpawnMenu) @@ -98,6 +109,9 @@ public bool IsValidTarget(EntityPrototype proto, SlotFlags chameleonSlot = SlotF if (!proto.TryGetComponent(out TagComponent? tag, _factory) || !_tag.HasTag(tag, "WhitelistChameleon")) return false; + if (requiredTag != null && !_tag.HasTag(tag, requiredTag)) + return false; + // check if it's valid clothing if (!proto.TryGetComponent("Clothing", out ClothingComponent? clothing)) return false; diff --git a/Content.Shared/Cuffs/SharedCuffableSystem.cs b/Content.Shared/Cuffs/SharedCuffableSystem.cs index b323dc6dd186..0e8b51137f8c 100644 --- a/Content.Shared/Cuffs/SharedCuffableSystem.cs +++ b/Content.Shared/Cuffs/SharedCuffableSystem.cs @@ -534,7 +534,7 @@ public bool TryCuffing(EntityUid user, EntityUid target, EntityUid handcuff, Han { _popup.PopupClient(Loc.GetString("handcuff-component-start-cuffing-target-message", ("targetName", Identity.Name(target, EntityManager, user))), user, user); - _popup.PopupClient(Loc.GetString("handcuff-component-start-cuffing-by-other-message", + _popup.PopupEntity(Loc.GetString("handcuff-component-start-cuffing-by-other-message", ("otherName", Identity.Name(user, EntityManager, target))), target, target); } @@ -642,10 +642,14 @@ public void TryUncuff(EntityUid target, EntityUid user, EntityUid? cuffsToRemove _adminLog.Add(LogType.Action, LogImpact.Low, $"{ToPrettyString(user)} is trying to uncuff {ToPrettyString(target)}"); - _popup.PopupEntity(Loc.GetString("cuffable-component-start-uncuffing-observer", - ("user", Identity.Name(user, EntityManager)), ("target", Identity.Name(target, EntityManager))), - target, Filter.Pvs(target, entityManager: EntityManager) - .RemoveWhere(e => e.AttachedEntity == target || e.AttachedEntity == user), true); + _popup.PopupEntity( + Loc.GetString("cuffable-component-start-uncuffing-observer", + ("user", Identity.Name(user, EntityManager)), + ("target", Identity.Name(target, EntityManager))), + target, + Filter.Pvs(target, entityManager: EntityManager) + .RemoveWhere(e => e.AttachedEntity == target || e.AttachedEntity == user), + true); if (target == user) { @@ -654,9 +658,13 @@ public void TryUncuff(EntityUid target, EntityUid user, EntityUid? cuffsToRemove else { _popup.PopupClient(Loc.GetString("cuffable-component-start-uncuffing-target-message", - ("targetName", Identity.Name(target, EntityManager, user))), user, user); - _popup.PopupClient(Loc.GetString("cuffable-component-start-uncuffing-by-other-message", - ("otherName", Identity.Name(user, EntityManager, target))), target, target); + ("targetName", Identity.Name(target, EntityManager, user))), + user, + user); + _popup.PopupEntity(Loc.GetString("cuffable-component-start-uncuffing-by-other-message", + ("otherName", Identity.Name(user, EntityManager, target))), + target, + target); } _audio.PlayPredicted(isOwner ? cuff.StartBreakoutSound : cuff.StartUncuffSound, target, user); diff --git a/Content.Shared/PDA/PdaComponent.cs b/Content.Shared/PDA/PdaComponent.cs index 6aeb245e27d1..cdfeffa2c1cc 100644 --- a/Content.Shared/PDA/PdaComponent.cs +++ b/Content.Shared/PDA/PdaComponent.cs @@ -13,12 +13,6 @@ public sealed partial class PdaComponent : Component public const string PdaPenSlotId = "PDA-pen"; public const string PdaPaiSlotId = "PDA-pai"; - /// - /// The base PDA sprite state, eg. "pda", "pda-clown" - /// - [DataField("state")] - public string? State; - [DataField("idSlot")] public ItemSlot IdSlot = new(); diff --git a/Content.Shared/PDA/PdaVisuals.cs b/Content.Shared/PDA/PdaVisuals.cs index 56039cf0d291..e3daa8e575ed 100644 --- a/Content.Shared/PDA/PdaVisuals.cs +++ b/Content.Shared/PDA/PdaVisuals.cs @@ -5,7 +5,8 @@ namespace Content.Shared.PDA [Serializable, NetSerializable] public enum PdaVisuals { - IdCardInserted + IdCardInserted, + PdaType } [Serializable, NetSerializable] diff --git a/Content.Shared/Telephone/SharedTelephoneSystem.cs b/Content.Shared/Telephone/SharedTelephoneSystem.cs index ab423623cb5e..78a72d59a555 100644 --- a/Content.Shared/Telephone/SharedTelephoneSystem.cs +++ b/Content.Shared/Telephone/SharedTelephoneSystem.cs @@ -36,4 +36,21 @@ public string GetFormattedCallerIdForEntity(string? presumedName, string? presum return callerId; } + + public string GetFormattedDeviceIdForEntity(string? deviceName, Color fontColor, string fontType = "Default", int fontSize = 12) + { + if (deviceName == null) + { + return Loc.GetString("chat-telephone-unknown-device", + ("color", fontColor), + ("fontType", fontType), + ("fontSize", fontSize)); + } + + return Loc.GetString("chat-telephone-device-id", + ("deviceName", deviceName), + ("color", fontColor), + ("fontType", fontType), + ("fontSize", fontSize)); + } } diff --git a/Content.Shared/Telephone/TelephoneComponent.cs b/Content.Shared/Telephone/TelephoneComponent.cs index 530748f4d374..c24840ce01a4 100644 --- a/Content.Shared/Telephone/TelephoneComponent.cs +++ b/Content.Shared/Telephone/TelephoneComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Chat; +using Content.Shared.Speech; using Robust.Shared.Audio; using Robust.Shared.GameStates; using Robust.Shared.Serialization; @@ -92,6 +93,12 @@ public sealed partial class TelephoneComponent : Component [DataField] public bool UnlistedNumber = false; + /// + /// Speech is relayed through this entity instead of the telephone + /// + [ViewVariables(VVAccess.ReadOnly)] + public Entity? Speaker = null; + /// /// Telephone number for this device /// @@ -127,9 +134,10 @@ public sealed partial class TelephoneComponent : Component /// /// The presumed name and/or job of the last person to call this telephone + /// and the name of the device that they used to do so /// [ViewVariables, AutoNetworkedField] - public (string?, string?) LastCallerId; + public (string?, string?, string?) LastCallerId; } #region: Telephone events @@ -182,7 +190,7 @@ public record struct TelephoneCallEndedEvent(); public struct TelephoneCallOptions { public bool IgnoreRange; // The source can always reach its target - public bool ForceConnect; // The source immediately starts a call with the receiver, potentially interrupting a call that is already in progress + public bool ForceConnect; // The source immediately starts a call with the receiver, potentially interrupting a call that is already in progress public bool ForceJoin; // The source smoothly joins a call in progress, or starts a normal call with the receiver if there is none public bool MuteSource; // Chatter from the source is not transmitted - could be used for eavesdropping when combined with 'ForceJoin' public bool MuteReceiver; // Chatter from the receiver is not transmitted - useful for broadcasting messages to multiple receivers @@ -214,7 +222,7 @@ public enum TelephoneVolume : byte [Serializable, NetSerializable] public enum TelephoneRange : byte { - Grid, // Can only reach telephones that are on the same grid + Grid, // Can only reach telephones that are on the same grid Map, // Can reach any telephone that is on the same map Unlimited, // Can reach any telephone, across any distance } diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs index 044f75dbc909..f92c5ed3a2f0 100644 --- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs +++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.Ballistic.cs @@ -14,6 +14,7 @@ namespace Content.Shared.Weapons.Ranged.Systems; public abstract partial class SharedGunSystem { [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; + [Dependency] private readonly SharedInteractionSystem _interaction = default!; protected virtual void InitializeBallistic() @@ -117,8 +118,8 @@ private void OnBallisticAmmoFillDoAfter(EntityUid uid, BallisticAmmoProviderComp void SimulateInsertAmmo(EntityUid ammo, EntityUid ammoProvider, EntityCoordinates coordinates) { - var evInsert = new InteractUsingEvent(args.User, ammo, ammoProvider, coordinates); - RaiseLocalEvent(ammoProvider, evInsert); + // We call SharedInteractionSystem to raise contact events. Checks are already done by this point. + _interaction.InteractUsing(args.User, ammo, ammoProvider, coordinates, checkCanInteract: false, checkCanUse: false); } List<(EntityUid? Entity, IShootable Shootable)> ammo = new(); diff --git a/Content.Shared/Wieldable/BeforeUnwieldEvent.cs b/Content.Shared/Wieldable/BeforeUnwieldEvent.cs deleted file mode 100644 index 4328ba50c41e..000000000000 --- a/Content.Shared/Wieldable/BeforeUnwieldEvent.cs +++ /dev/null @@ -1,5 +0,0 @@ -namespace Content.Shared.Wieldable; - -public sealed class BeforeUnwieldEvent : CancellableEntityEventArgs -{ -} \ No newline at end of file diff --git a/Content.Shared/Wieldable/BeforeWieldEvent.cs b/Content.Shared/Wieldable/BeforeWieldEvent.cs deleted file mode 100644 index 744a009f9cdd..000000000000 --- a/Content.Shared/Wieldable/BeforeWieldEvent.cs +++ /dev/null @@ -1,5 +0,0 @@ -namespace Content.Shared.Wieldable; - -public sealed class BeforeWieldEvent : CancellableEntityEventArgs -{ -} \ No newline at end of file diff --git a/Content.Shared/Wieldable/Events.cs b/Content.Shared/Wieldable/Events.cs new file mode 100644 index 000000000000..fe7e084c0273 --- /dev/null +++ b/Content.Shared/Wieldable/Events.cs @@ -0,0 +1,43 @@ +namespace Content.Shared.Wieldable; + +/// +/// Raised directed on an item when it is wielded. +/// +[ByRefEvent] +public readonly record struct ItemWieldedEvent(EntityUid User); + +/// +/// Raised directed on an item that has been unwielded. +/// Force is whether the item is being forced to be unwielded, or if the player chose to unwield it themselves. +/// +[ByRefEvent] +public readonly record struct ItemUnwieldedEvent(EntityUid User, bool Force); + +/// +/// Raised directed on an item before a user tries to wield it. +/// If this event is cancelled wielding will not happen. +/// +[ByRefEvent] +public record struct WieldAttemptEvent(EntityUid User, bool Cancelled = false) +{ + public void Cancel() + { + Cancelled = true; + } +} + +/// +/// Raised directed on an item before a user tries to stop wielding it willingly. +/// If this event is cancelled unwielding will not happen. +/// +/// +/// This event is not raised if the user is forced to unwield the item. +/// +[ByRefEvent] +public record struct UnwieldAttemptEvent(EntityUid User, bool Cancelled = false) +{ + public void Cancel() + { + Cancelled = true; + } +} diff --git a/Content.Shared/Wieldable/ItemUnwieldedEvent.cs b/Content.Shared/Wieldable/ItemUnwieldedEvent.cs deleted file mode 100644 index f980d4580209..000000000000 --- a/Content.Shared/Wieldable/ItemUnwieldedEvent.cs +++ /dev/null @@ -1,23 +0,0 @@ -namespace Content.Shared.Wieldable; - -#region Events - -/// -/// Raised on the item that has been unwielded. -/// -public sealed class ItemUnwieldedEvent : EntityEventArgs -{ - public EntityUid? User; - /// - /// Whether the item is being forced to be unwielded, or if the player chose to unwield it themselves. - /// - public bool Force; - - public ItemUnwieldedEvent(EntityUid? user = null, bool force=false) - { - User = user; - Force = force; - } -} - -#endregion diff --git a/Content.Shared/Wieldable/ItemWieldedEvent.cs b/Content.Shared/Wieldable/ItemWieldedEvent.cs deleted file mode 100644 index 15e204728a94..000000000000 --- a/Content.Shared/Wieldable/ItemWieldedEvent.cs +++ /dev/null @@ -1,7 +0,0 @@ -namespace Content.Shared.Wieldable; - -/// -/// Raised directed on an entity when it is wielded. -/// -[ByRefEvent] -public readonly record struct ItemWieldedEvent; diff --git a/Content.Shared/Wieldable/WieldableDoAfterEvent.cs b/Content.Shared/Wieldable/WieldableDoAfterEvent.cs deleted file mode 100644 index 8431de9b2682..000000000000 --- a/Content.Shared/Wieldable/WieldableDoAfterEvent.cs +++ /dev/null @@ -1,9 +0,0 @@ -using Content.Shared.DoAfter; -using Robust.Shared.Serialization; - -namespace Content.Shared.Wieldable; - -[Serializable, NetSerializable] -public sealed partial class WieldableDoAfterEvent : SimpleDoAfterEvent -{ -} diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/WieldableSystem.cs index 0a193576bfdf..200a50d28f73 100644 --- a/Content.Shared/Wieldable/WieldableSystem.cs +++ b/Content.Shared/Wieldable/WieldableSystem.cs @@ -25,16 +25,16 @@ namespace Content.Shared.Wieldable; public sealed class WieldableSystem : EntitySystem { - [Dependency] private readonly SharedVirtualItemSystem _virtualItemSystem = default!; - [Dependency] private readonly SharedHandsSystem _handsSystem = default!; - [Dependency] private readonly SharedItemSystem _itemSystem = default!; - [Dependency] private readonly SharedPopupSystem _popupSystem = default!; - [Dependency] private readonly SharedAudioSystem _audioSystem = default!; - [Dependency] private readonly SharedAppearanceSystem _appearance = default!; - [Dependency] private readonly UseDelaySystem _delay = default!; - [Dependency] private readonly SharedGunSystem _gun = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly INetManager _netManager = default!; + [Dependency] private readonly SharedAppearanceSystem _appearance = default!; + [Dependency] private readonly SharedAudioSystem _audio = default!; + [Dependency] private readonly SharedGunSystem _gun = default!; + [Dependency] private readonly SharedHandsSystem _hands = default!; + [Dependency] private readonly SharedItemSystem _item = default!; + [Dependency] private readonly SharedPopupSystem _popup = default!; + [Dependency] private readonly SharedVirtualItemSystem _virtualItem = default!; + [Dependency] private readonly UseDelaySystem _delay = default!; public override void Initialize() { @@ -82,7 +82,7 @@ private void OnShootAttempt(EntityUid uid, GunRequiresWieldComponent component, { component.LastPopup = time; var message = Loc.GetString("wieldable-component-requires", ("item", uid)); - _popupSystem.PopupClient(message, args.Used, args.User); + _popup.PopupClient(message, args.Used, args.User); } } } @@ -99,8 +99,7 @@ private void OnGunWielded(EntityUid uid, GunWieldBonusComponent component, ref I private void OnDeselectWieldable(EntityUid uid, WieldableComponent component, HandDeselectedEvent args) { - if (!component.Wielded || - _handsSystem.EnumerateHands(args.User).Count() > 2) + if (_hands.EnumerateHands(args.User).Count() > 2) return; TryUnwield(uid, component, args.User); @@ -138,7 +137,7 @@ private void AddToggleWieldVerb(EntityUid uid, WieldableComponent component, Get if (args.Hands == null || !args.CanAccess || !args.CanInteract) return; - if (!_handsSystem.IsHolding(args.User, uid, out _, args.Hands)) + if (!_hands.IsHolding(args.User, uid, out _, args.Hands)) return; // TODO VERB TOOLTIPS Make CanWield or some other function return string, set as verb tooltip and disable @@ -170,28 +169,28 @@ private void OnUseInHand(EntityUid uid, WieldableComponent component, UseInHandE public bool CanWield(EntityUid uid, WieldableComponent component, EntityUid user, bool quiet = false) { // Do they have enough hands free? - if (!EntityManager.TryGetComponent(user, out var hands)) + if (!TryComp(user, out var hands)) { if (!quiet) - _popupSystem.PopupClient(Loc.GetString("wieldable-component-no-hands"), user, user); + _popup.PopupClient(Loc.GetString("wieldable-component-no-hands"), user, user); return false; } // Is it.. actually in one of their hands? - if (!_handsSystem.IsHolding(user, uid, out _, hands)) + if (!_hands.IsHolding(user, uid, out _, hands)) { if (!quiet) - _popupSystem.PopupClient(Loc.GetString("wieldable-component-not-in-hands", ("item", uid)), user, user); + _popup.PopupClient(Loc.GetString("wieldable-component-not-in-hands", ("item", uid)), user, user); return false; } - if (_handsSystem.CountFreeableHands((user, hands)) < component.FreeHandsRequired) + if (_hands.CountFreeableHands((user, hands)) < component.FreeHandsRequired) { if (!quiet) { var message = Loc.GetString("wieldable-component-not-enough-free-hands", ("number", component.FreeHandsRequired), ("item", uid)); - _popupSystem.PopupClient(message, user, user); + _popup.PopupClient(message, user, user); } return false; } @@ -209,22 +208,26 @@ public bool TryWield(EntityUid used, WieldableComponent component, EntityUid use if (!CanWield(used, component, user)) return false; - var ev = new BeforeWieldEvent(); - RaiseLocalEvent(used, ev); + if (TryComp(used, out UseDelayComponent? useDelay) + && !_delay.TryResetDelay((used, useDelay), true)) + return false; + + var attemptEv = new WieldAttemptEvent(user); + RaiseLocalEvent(used, ref attemptEv); - if (ev.Cancelled) + if (attemptEv.Cancelled) return false; if (TryComp(used, out var item)) { component.OldInhandPrefix = item.HeldPrefix; - _itemSystem.SetHeldPrefix(used, component.WieldedInhandPrefix, component: item); + _item.SetHeldPrefix(used, component.WieldedInhandPrefix, component: item); } - component.Wielded = true; + SetWielded((used, component), true); if (component.WieldSound != null) - _audioSystem.PlayPredicted(component.WieldSound, used, user); + _audio.PlayPredicted(component.WieldSound, used, user); //This section handles spawning the virtual item(s) to occupy the required additional hand(s). //Since the client can't currently predict entity spawning, only do this if this is running serverside. @@ -234,7 +237,7 @@ public bool TryWield(EntityUid used, WieldableComponent component, EntityUid use var virtuals = new List(); for (var i = 0; i < component.FreeHandsRequired; i++) { - if (_virtualItemSystem.TrySpawnVirtualItemInHand(used, user, out var virtualItem, true)) + if (_virtualItem.TrySpawnVirtualItemInHand(used, user, out var virtualItem, true)) { virtuals.Add(virtualItem.Value); continue; @@ -249,78 +252,79 @@ public bool TryWield(EntityUid used, WieldableComponent component, EntityUid use } } - if (TryComp(used, out UseDelayComponent? useDelay) - && !_delay.TryResetDelay((used, useDelay), true)) - return false; - var selfMessage = Loc.GetString("wieldable-component-successful-wield", ("item", used)); var othersMessage = Loc.GetString("wieldable-component-successful-wield-other", ("user", Identity.Entity(user, EntityManager)), ("item", used)); - _popupSystem.PopupPredicted(selfMessage, othersMessage, user, user); + _popup.PopupPredicted(selfMessage, othersMessage, user, user); - var targEv = new ItemWieldedEvent(); - RaiseLocalEvent(used, ref targEv); + var ev = new ItemWieldedEvent(user); + RaiseLocalEvent(used, ref ev); - Dirty(used, component); return true; } /// - /// Attempts to unwield an item, with no DoAfter. + /// Attempts to unwield an item, with no use delay. /// /// True if the attempt wasn't blocked. - public bool TryUnwield(EntityUid used, WieldableComponent component, EntityUid user) + public bool TryUnwield(EntityUid used, WieldableComponent component, EntityUid user, bool force = false) { - var ev = new BeforeUnwieldEvent(); - RaiseLocalEvent(used, ev); + if (!component.Wielded) + return false; // already unwielded - if (ev.Cancelled) - return false; + if (!force) + { + var attemptEv = new UnwieldAttemptEvent(user); + RaiseLocalEvent(used, ref attemptEv); + + if (attemptEv.Cancelled) + return false; + } - component.Wielded = false; - var targEv = new ItemUnwieldedEvent(user); + SetWielded((used, component), false); - RaiseLocalEvent(used, targEv); + var ev = new ItemUnwieldedEvent(user, force); + RaiseLocalEvent(used, ref ev); return true; } + /// + /// Sets wielded without doing any checks. + /// + private void SetWielded(Entity ent, bool wielded) + { + ent.Comp.Wielded = wielded; + Dirty(ent); + _appearance.SetData(ent, WieldableVisuals.Wielded, wielded); + } + private void OnItemUnwielded(EntityUid uid, WieldableComponent component, ItemUnwieldedEvent args) { - if (args.User == null) - return; + _item.SetHeldPrefix(uid, component.OldInhandPrefix); - if (TryComp(uid, out var item)) - { - _itemSystem.SetHeldPrefix(uid, component.OldInhandPrefix, component: item); - } + var user = args.User; + _virtualItem.DeleteInHandsMatching(user, uid); if (!args.Force) // don't play sound/popup if this was a forced unwield { if (component.UnwieldSound != null) - _audioSystem.PlayPredicted(component.UnwieldSound, uid, args.User); + _audio.PlayPredicted(component.UnwieldSound, uid, user); var selfMessage = Loc.GetString("wieldable-component-failed-wield", ("item", uid)); - var othersMessage = Loc.GetString("wieldable-component-failed-wield-other", ("user", Identity.Entity(args.User.Value, EntityManager)), ("item", uid)); - _popupSystem.PopupPredicted(selfMessage, othersMessage, args.User.Value, args.User.Value); + var othersMessage = Loc.GetString("wieldable-component-failed-wield-other", ("user", Identity.Entity(args.User, EntityManager)), ("item", uid)); + _popup.PopupPredicted(selfMessage, othersMessage, user, user); } - - _appearance.SetData(uid, WieldableVisuals.Wielded, false); - - Dirty(uid, component); - _virtualItemSystem.DeleteInHandsMatching(args.User.Value, uid); } private void OnItemLeaveHand(EntityUid uid, WieldableComponent component, GotUnequippedHandEvent args) { - if (!component.Wielded || uid != args.Unequipped) - return; - - RaiseLocalEvent(uid, new ItemUnwieldedEvent(args.User, force: true), true); + if (uid == args.Unequipped) + TryUnwield(uid, component, args.User, force: true); } private void OnVirtualItemDeleted(EntityUid uid, WieldableComponent component, VirtualItemDeletedEvent args) { - if (args.BlockingEntity == uid && component.Wielded) - TryUnwield(args.BlockingEntity, component, args.User); + if (args.BlockingEntity == uid) + TryUnwield(uid, component, args.User, force: true); } private void OnGetMeleeDamage(EntityUid uid, IncreaseDamageOnWieldComponent component, ref GetMeleeDamageEvent args) diff --git a/Resources/Audio/Items/appraiser.ogg b/Resources/Audio/Items/appraiser.ogg new file mode 100644 index 000000000000..18c0a83b7fa3 Binary files /dev/null and b/Resources/Audio/Items/appraiser.ogg differ diff --git a/Resources/Audio/Items/attributions.yml b/Resources/Audio/Items/attributions.yml index 6a2d579b700c..41866b5d3010 100644 --- a/Resources/Audio/Items/attributions.yml +++ b/Resources/Audio/Items/attributions.yml @@ -138,4 +138,9 @@ - files: ["pen_click.ogg"] license: "CC0-1.0" copyright: "Created by dslrguide, converted to ogg and mono by Themias" - source: "https://freesound.org/people/dslrguide/sounds/321484" \ No newline at end of file + source: "https://freesound.org/people/dslrguide/sounds/321484" + +- files: [ "appraiser.ogg" ] + license: "CC0-1.0" + copyright: "Original sound by vestibule-door on freesound.org, processed by DylanWhittingham" + source: "https://freesound.org/people/vestibule-door/sounds/668985/" diff --git a/Resources/Audio/StationEvents/attributions.yml b/Resources/Audio/StationEvents/attributions.yml index 1cfe9a8d5304..8fc93d43e5b8 100644 --- a/Resources/Audio/StationEvents/attributions.yml +++ b/Resources/Audio/StationEvents/attributions.yml @@ -8,11 +8,6 @@ copyright: "Created by Donchan" source: "https://www.youtube.com/watch?v=4nUpeYLKUns" -- files: ["nukemass.ogg"] - license: "CC-BY-3.0" - copyright: "Created by mrjajkes" - source: "https://www.youtube.com/watch?v=gLSyt7AaqQM" - - files: ["countdown.ogg"] license: "CC-BY-SA-3.0" copyright: "Created by qwertyquerty" diff --git a/Resources/Audio/StationEvents/nukemass.ogg b/Resources/Audio/StationEvents/nukemass.ogg deleted file mode 100644 index 2a20fb44241f..000000000000 Binary files a/Resources/Audio/StationEvents/nukemass.ogg and /dev/null differ diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml index 504fea848f6e..c23b6f09b632 100644 --- a/Resources/Changelog/Admin.yml +++ b/Resources/Changelog/Admin.yml @@ -664,5 +664,12 @@ Entries: id: 82 time: '2024-12-24T02:25:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34001 +- author: DylanWhittingham + changes: + - message: Players using the notekeeper PDA program is now logged. + type: Add + id: 83 + time: '2025-01-02T16:16:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34118 Name: Admin Order: 1 diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index c0e8eb839bfd..ae1bc428c6d1 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,268 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Fix AI eye getting deleted by singulo. - type: Fix - id: 7253 - time: '2024-08-31T08:24:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31556 -- author: slarticodefast - changes: - - message: Fixed toggleable pointlights for the toy sword, lighters, welders and - arabian lamp. - type: Fix - id: 7254 - time: '2024-08-31T08:28:36.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31655 -- author: juliangiebel - changes: - - message: Adds the station anchor. It anchors stations in space and prevents them - from moving. - type: Add - id: 7255 - time: '2024-08-31T14:40:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/26098 -- author: Moomoobeef - changes: - - message: medibelts are found in the medidrobe instead of in lockers. - type: Tweak - id: 7256 - time: '2024-08-31T23:22:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31470 -- author: EmoGarbage404 - changes: - - message: Removed the reclaimer shuttle. - type: Remove - - message: Removed fultons and fulton beacons from the autolathe - type: Remove - - message: Adjusted equipment inside salvage lockers and vendors. - type: Tweak - id: 7257 - time: '2024-08-31T23:39:32.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31333 -- author: Moomoobeef - changes: - - message: Added flavors to an array of previously indescribable things. - type: Add - id: 7258 - time: '2024-09-01T00:03:30.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31685 -- author: Ilya246 - changes: - - message: Fixed tip 26 being misinformation about the tesla. It now displays truthful - information. - type: Fix - id: 7259 - time: '2024-09-01T11:03:23.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31705 -- author: yuitop - changes: - - message: space dragon fire breath ability now has cursor indicator - type: Tweak - id: 7260 - time: '2024-09-01T19:28:12.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31725 -- author: EmoGarbage404 - changes: - - message: The grappling gun is now available inside the salvage vendor. Additional - ones can be scavenged in space. - type: Add - - message: Removed the grappling gun from science research and lathes. - type: Remove - - message: Fixed issue that made the rope from the grappling gun not appear. - type: Fix - id: 7261 - time: '2024-09-02T04:33:25.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31737 -- author: yuitop - changes: - - message: added in-hand sprite for Smile the Slime - type: Add - id: 7262 - time: '2024-09-02T04:36:05.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31731 -- author: EmoGarbage404 - changes: - - message: Space Carp and Sharkminnows are a bit weaker overall. - type: Tweak - - message: The magnet now pulls in debris a bit closer. - type: Tweak - - message: Space debris now has slightly better loot. - type: Tweak - id: 7263 - time: '2024-09-02T04:36:28.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31726 -- author: Errant - changes: - - message: Replacement Crew Monitor Servers, as well as the Crew Monitor Server - on the dev map, now work properly. - type: Fix - id: 7264 - time: '2024-09-02T04:37:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31677 -- author: poeMota - changes: - - message: Now the time played on ERT roles and midround borgs will be saved to - the player's stats - type: Tweak - id: 7265 - time: '2024-09-02T05:32:49.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31629 -- author: themias - changes: - - message: The Donk Co. microwave can cook baguette swords and throwing croissants. - type: Tweak - - message: The Combat Bakery Kit now has a Donk Co. microwave board and costs 6 - TC. - type: Tweak - id: 7266 - time: '2024-09-02T13:49:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31239 -- author: yuitop - changes: - - message: actions bar now resize dynamically - type: Tweak - id: 7267 - time: '2024-09-02T19:12:11.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31759 -- author: yuitop - changes: - - message: space ninja throwing star ability now spawns a throwing star - type: Fix - id: 7268 - time: '2024-09-03T00:50:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31684 -- author: Errant - changes: - - message: Vox sounds are now less unbearable. - type: Tweak - id: 7269 - time: '2024-09-03T07:23:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31679 -- author: Just_Art - changes: - - message: Added Classic Long 2 and Classic Long 3 hairstyles! - type: Add - id: 7270 - time: '2024-09-03T08:29:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30963 -- author: ScarKy0 - changes: - - message: Plenty of old silicon laws can now be rolled as ion laws. - type: Add - id: 7271 - time: '2024-09-03T09:45:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31664 -- author: IProduceWidgets - changes: - - message: Escargot and snails! Hopefully you don't encounter that one snail... - type: Add - id: 7272 - time: '2024-09-03T10:33:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30765 -- author: Fildrance - changes: - - message: When research is unlocked in console the approver of the research is - named. - type: Add - - message: Borgs door access is getting logged now (and is accessible in Log Probe - Cartridge) - type: Add - - message: e-magged research and cargo consoles are not radio-ing any messages on - research/buy confimation (for anyone) - type: Add - id: 7273 - time: '2024-09-03T13:01:38.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31170 -- author: Lyroth001 - changes: - - message: added a new artifact node for medical chems - type: Add - id: 7274 - time: '2024-09-03T15:11:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30873 -- author: DieselMohawk - changes: - - message: Added Red Neck Gaiter to Secdrobe - type: Add - id: 7275 - time: '2024-09-03T15:16:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30106 -- author: ScarKy0 - changes: - - message: Fixed typos in antimov. - type: Fix - id: 7276 - time: '2024-09-03T21:56:34.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31811 -- author: ScarKy0 - changes: - - message: Station AI's name now correctly displays in announcements. - type: Fix - id: 7277 - time: '2024-09-03T22:05:02.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31802 -- author: Ilya246 - changes: - - message: Fixed many entities not taking structural damage, including girders, - firelocks, and machines. - type: Fix - id: 7278 - time: '2024-09-04T13:37:06.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30790 -- author: lzk228 - changes: - - message: Reduced walk speed of some small mobs (mice, cockroaches, bees etc.) - type: Tweak - id: 7279 - time: '2024-09-04T14:10:58.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31360 -- author: qwerltaz - changes: - - message: Made tesla a lot brighter. - type: Tweak - id: 7280 - time: '2024-09-04T14:47:41.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31357 -- author: Allen - changes: - - message: Magboots and Science Magboots are no longer contraband. Advanced Magboots - and Blood-Red Magboots now have appropriate contraband types (Grand Theft and - Syndie Contraband respectively) - type: Fix - id: 7281 - time: '2024-09-04T15:04:50.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30960 -- author: Blackern5000 - changes: - - message: Zombie outbreaks are now SIGNIFICANTLY rarer - type: Tweak - id: 7282 - time: '2024-09-04T15:57:42.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30266 -- author: yuitop - changes: - - message: Going into portals while pulling no more crashes the game - type: Fix - id: 7283 - time: '2024-09-04T16:44:10.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/31787 -- author: Ilya246 - changes: - - message: The syndicate stealth box will no longer make a loud sound upon being - opened. - type: Tweak - id: 7284 - time: '2024-09-04T22:42:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/30741 -- author: chromiumboy - changes: - - message: The atmospheric alert computers are now functional! Use them to locate - active air and fire alarms on the station. - type: Add - id: 7285 - time: '2024-09-05T01:13:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25938 - author: ScarKy0 changes: - message: A lot more electronics can now be used by the AI. @@ -3938,3 +3674,261 @@ id: 7752 time: '2024-12-24T02:25:04.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/34001 +- author: ArtisticRoomba + changes: + - message: Reinforced tables now require welding to construct and deconstruct. + type: Tweak + id: 7753 + time: '2024-12-26T22:47:23.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33992 +- author: crazybrain + changes: + - message: Bluespace lockers and quantum spin inverters can no longer go on the + arrivals shuttle. + type: Tweak + id: 7754 + time: '2024-12-27T12:34:31.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34072 +- author: Plykiya + changes: + - message: You now see a popup when being cuffed or uncuffed again. + type: Fix + id: 7755 + time: '2024-12-27T13:34:32.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33639 +- author: Alpaccalypse + changes: + - message: Power monitoring computer boards can no longer be researched or printed, + as originally intended. + type: Remove + id: 7756 + time: '2024-12-28T10:13:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34078 +- author: psykana + changes: + - message: Traitor can no longer get multiple objectives to save/help/kill the same + person + type: Fix + id: 7757 + time: '2024-12-28T14:49:03.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33704 +- author: chromiumboy + changes: + - message: The holoapd UI has been updated to include a text-based filter for the + contacts list, and also to specify the name of the holopad that incoming calls + originate from + type: Tweak + id: 7758 + time: '2024-12-28T23:33:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34055 +- author: zHonys + changes: + - message: Smile can now use hats + type: Add + id: 7759 + time: '2024-12-29T01:49:05.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33924 +- author: ewokswagger + changes: + - message: Pizza deliveries are now guaranteed to have at least one cotton pizza. + type: Tweak + id: 7760 + time: '2024-12-29T01:50:49.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33997 +- author: ArtisticRoomba, JuneSzalkowska + changes: + - message: New cotton dough slices and cotton dough rolls. + type: Add + - message: New cotton baguette, cotton crostini, cotton chevre-chaud, cotton bagel, + and cotton croissant recipes. You can make them by following the recipes for + regular baguettes, bagels, etc, but use cotton dough instead. + type: Add + - message: Slicing dough into thirds now divides the nutriment value into thirds. + Previously you could slice dough to triple your nutriment. + type: Fix + id: 7761 + time: '2024-12-29T02:02:25.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33508 +- author: Velcroboy + changes: + - message: Rolling joints no longer requires a cigarette filter. + type: Tweak + id: 7762 + time: '2024-12-29T03:25:40.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34106 +- author: DreamlyJack + changes: + - message: Added Hair Pulato + type: Add + id: 7763 + time: '2024-12-31T10:29:39.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34117 +- author: chromiumboy + changes: + - message: Chat messages from holopads during emergency broadcasts will no longer + be logged in the chat window to prevent message spam. This is a temporary change + until a proper fix can be made to the chat system + type: Tweak + id: 7764 + time: '2024-12-31T10:52:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34114 +- author: PopGamer46 + changes: + - message: Fixed borgs not being able to check their laws in crit + type: Fix + id: 7765 + time: '2024-12-31T11:10:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34133 +- author: amatwiedle + changes: + - message: The A/V Communication technology now unlocks holopad circuit boards. + type: Add + id: 7766 + time: '2024-12-31T13:20:07.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34150 +- author: justdie12 + changes: + - message: Flipped signal disposal routers sprite + type: Fix + id: 7767 + time: '2024-12-31T13:25:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34139 +- author: ArtisticRoomba + changes: + - message: Shotgun crate now comes with 4 lethal shell boxes. + type: Tweak + - message: Enforcer gun safe now comes with 4 lethal shell boxes. + type: Tweak + - message: Kammerer gun safe now comes with 2 lethal shell boxes. + type: Tweak + id: 7768 + time: '2024-12-31T23:08:26.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34156 +- author: Booblesnoot42 + changes: + - message: Tarantulas spawned in vents will now be hostile to the crew. + type: Fix + id: 7769 + time: '2025-01-01T16:18:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34153 +- author: Booblesnoot42 + changes: + - message: The RCD no longer has a cooldown when opened or closed. + type: Fix + id: 7770 + time: '2025-01-01T16:19:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34149 +- author: lzk228 + changes: + - message: Decreased HP for rusted wall variants + type: Tweak + id: 7771 + time: '2025-01-01T16:23:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34043 +- author: ReeZii + changes: + - message: Fixed thief beacon, which can doubled steal target's + type: Fix + id: 7772 + time: '2025-01-01T16:25:48.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33750 +- author: Errant + changes: + - message: Removed seasonal nuke song "Nukemass". + type: Remove + id: 7773 + time: '2025-01-01T16:27:50.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34066 +- author: Alpaccalypse + changes: + - message: '"Irish Car Bomb" renamed to "Irish Slammer".' + type: Tweak + id: 7774 + time: '2025-01-02T09:46:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34107 +- author: DylanWhittingham + changes: + - message: Added appraisal tool sound. + type: Add + id: 7775 + time: '2025-01-02T16:46:13.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34119 +- author: ps3moira + changes: + - message: Changed tables and counter iconsmoothing + type: Tweak + id: 7776 + time: '2025-01-02T16:49:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32673 +- author: SlamBamActionman + changes: + - message: Added Chameleon PDA, found in the Thief & Uplink Chameleon Kit! + type: Add + - message: The PDA "owner" field now updates upon having a new ID inserted. + type: Tweak + id: 7777 + time: '2025-01-02T18:23:29.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/30514 +- author: FairlySadPanda + changes: + - message: Added a few new actions that a scrambled borg can encounter via an ion + storm. + type: Add + id: 7778 + time: '2025-01-02T18:55:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34180 +- author: Deerstop + changes: + - message: Map rotation now includes Elkridge Depot + type: Tweak + id: 7779 + time: '2025-01-04T00:40:54.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34206 +- author: themias + changes: + - message: Forensics are now applied to bullets when loading using an ammo box. + type: Fix + id: 7780 + time: '2025-01-04T13:41:45.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32280 +- author: deltanedas + changes: + - message: Fixed wielding use delay not working properly. + type: Fix + - message: Fixed bow sprite not updating when wielded. + type: Fix + id: 7781 + time: '2025-01-05T19:06:10.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/32188 +- author: Errant + changes: + - message: Lobby chat width is no longer dependent on the server's name. + type: Tweak + - message: Lobby title of a server can now be different from the Hub listing's name. + type: Tweak + id: 7782 + time: '2025-01-05T20:56:02.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/33783 +- author: SpaceRox1244 + changes: + - message: Station lights can now be destroyed by bullets. + type: Add + id: 7783 + time: '2025-01-05T22:11:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34070 +- author: ArtisticRoomba + changes: + - message: You can no longer get stuck when trying to walk between a station anchor + and a wall. + type: Fix + id: 7784 + time: '2025-01-06T12:32:42.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34217 +- author: ArtisticRoomba + changes: + - message: Kessler Syndrome and Zombeteors are removed from the possible gamemodes + in the Secret pool. + type: Remove + id: 7785 + time: '2025-01-07T00:18:56.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/34051 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index 9a85185c3ec9..237dad881c20 100644 --- a/Resources/Credits/GitHub.txt +++ b/Resources/Credits/GitHub.txt @@ -1 +1 @@ -0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpha-Two, AlphaQwerty, Altoids1, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, FL-OZ, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, LetterN, lettern, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex +0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, d4kii, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, nox, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex diff --git a/Resources/Locale/en-US/accessories/human-hair.ftl b/Resources/Locale/en-US/accessories/human-hair.ftl index 58314f9bb2e3..af80aaef5c7c 100644 --- a/Resources/Locale/en-US/accessories/human-hair.ftl +++ b/Resources/Locale/en-US/accessories/human-hair.ftl @@ -146,6 +146,7 @@ marking-HumanHairSidetail3 = Ponytail (Side) 3 marking-HumanHairSidetail4 = Ponytail (Side) 4 marking-HumanHairSpikyponytail = Ponytail (Spiky) marking-HumanHairPoofy = Poofy +marking-HumanHairPulato = Pulato marking-HumanHairQuiff = Quiff marking-HumanHairRonin = Ronin marking-HumanHairShaped = Shaped diff --git a/Resources/Locale/en-US/actions/actions/wagging.ftl b/Resources/Locale/en-US/actions/actions/wagging.ftl deleted file mode 100644 index da0cfa0f27b8..000000000000 --- a/Resources/Locale/en-US/actions/actions/wagging.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-toggle-wagging = Wagging Tail -action-description-toggle-wagging = Start or stop wagging tail. diff --git a/Resources/Locale/en-US/advertisements/vending/gibb.ftl b/Resources/Locale/en-US/advertisements/vending/gibb.ftl new file mode 100644 index 000000000000..b4360d8e4a86 --- /dev/null +++ b/Resources/Locale/en-US/advertisements/vending/gibb.ftl @@ -0,0 +1,12 @@ +advertisement-gibb-1 = Delicious! +advertisement-gibb-2 = Recommended by at least one doctor! +advertisement-gibb-3 = Over 1 million drinks sold! +advertisement-gibb-4 = Dr. Gibb, what's the worst that could happen? +advertisement-gibb-5 = Dr. Gibb, the flavor explosion! +advertisement-gibb-6 = Trust me, I'm a doctor! +advertisement-gibb-7 = The best sugar infusion in the galaxy! +advertisement-gibb-8 = Space Cola can get Gibbed! +thankyou-gibb-1 = The Dr. is in... your belly! +thankyou-gibb-2 = Prognosis: flavor! +thankyou-gibb-3 = Enjoy the 42 flavors! +thankyou-gibb-4 = Enjoy the syrupy goodness! diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index 196886319797..57d95562cb3c 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -259,7 +259,7 @@ flavor-complex-xeno-basher = like killing bugs flavor-complex-budget-insuls-drink = like door hacking flavor-complex-watermelon-wakeup = like a sweet wakeup call flavor-complex-rubberneck = like synthetics -flavor-complex-irish-car-bomb = like a spiked cola float +flavor-complex-irish-slammer = like a spiked cola float flavor-complex-themartinez = like violets and lemon vodka flavor-complex-cogchamp = like brass flavor-complex-white-gilgamesh = like lightly carbonated cream diff --git a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl index bf0983280019..ccf78c703f98 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -44,7 +44,7 @@ ghost-role-information-snailspeed-description = A little snail with snailborn th ghost-role-information-snoth-name = Snoth ghost-role-information-snoth-description = A little snoth who doesn't mind a bit of space. Just stay on grid! -ghost-role-information-giant-spider-name = Giant spider +ghost-role-information-giant-spider-name = Giant Spider ghost-role-information-giant-spider-description = This station's inhabitants look mighty tasty, and your sticky web is perfect to catch them! ghost-role-information-giant-spider-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with all other giant spiders. @@ -53,7 +53,7 @@ ghost-role-information-cognizine-description = Made conscious with the magic of ghost-role-information-hamster-name = Hamster ghost-role-information-hamster-description = A grumpy little ball of fluff. -ghost-role-information-hamlet-name = Hamlet the hamster. +ghost-role-information-hamlet-name = Hamlet the Hamster ghost-role-information-hamlet-description = Lives in the station bridge, has a bit of a temper and is always hungry. ghost-role-information-slimes-name = Slime @@ -64,7 +64,7 @@ ghost-role-information-angry-slimes-description = Everyone around you irritates ghost-role-information-angry-slimes-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with all other angry slimes. ghost-role-information-smile-name = Smile the Slime -ghost-role-information-smile-description = The sweetest creature in the world. Smile Slime! +ghost-role-information-smile-description = The sweetest creature in the world. Smile slime! ghost-role-information-punpun-name = Pun Pun ghost-role-information-punpun-description = An honorable member of the monkey society in charge of the bar and helping the bartenders in any way he can. @@ -92,14 +92,14 @@ ghost-role-information-rat-king-description = You are the Rat King, your interes ghost-role-information-rat-servant-name = Rat Servant ghost-role-information-rat-servant-description = You are a Rat Servant. You must follow your king's orders. -ghost-role-information-salvage-carp-name = Space carp on salvage wreck +ghost-role-information-salvage-carp-name = Space Carp on Salvage Wreck ghost-role-information-salvage-carp-description = Defend the loot inside the salvage wreck! ghost-role-information-sentient-carp-name = Sentient Carp ghost-role-information-sentient-carp-description = Help the dragon flood the station with carps! -ghost-role-information-willow-name = Willow the kangaroo -ghost-role-information-willow-description = You're a kangaroo named willow! Willow likes to box. +ghost-role-information-willow-name = Willow the Kangaroo +ghost-role-information-willow-description = You're a kangaroo named Willow! Willow likes to box. ghost-role-information-honkbot-name = Honkbot ghost-role-information-honkbot-description = An artificial being of pure evil. @@ -113,7 +113,7 @@ ghost-role-information-mimebot-description = A Mimebot, act like a mime but don' ghost-role-information-supplybot-name = SupplyBot ghost-role-information-supplybot-description = Deliver goods around the station. -ghost-role-information-space-bear-name = Space bear +ghost-role-information-space-bear-name = Space Bear ghost-role-information-space-bear-description = Your tummy rumbles, and these people look really yummy... What a feast! # Still exists as a commented out reference for Tropico. Keeping it around. -TsjipTsjip, 2024-06-20 @@ -132,7 +132,7 @@ ghost-role-information-holoclown-description = Listen to your owner. Utilize you ghost-role-information-ifrit-name = Ifrit ghost-role-information-ifrit-description = Listen to your owner. Don't tank damage. Punch people hard. -ghost-role-information-space-dragon-name = Space dragon +ghost-role-information-space-dragon-name = Space Dragon ghost-role-information-space-dragon-description = Call in 3 carp rifts and take over this quadrant! You have only 5 minutes in between each rift before you will disappear. ghost-role-information-space-dragon-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with all your summoned carp. ghost-role-information-space-dragon-summoned-carp-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with your dragon and its allies. @@ -152,7 +152,7 @@ ghost-role-information-skeleton-biker-description = Ride around on your sweet ri ghost-role-information-closet-skeleton-name = Closet Skeleton ghost-role-information-closet-skeleton-description = You are arguably one of the oldest members of the station! Get your old job back, or cause chaos! The world is yours to shape. -ghost-role-information-remilia-name = Remilia, the chaplain's familiar +ghost-role-information-remilia-name = Remilia, the Chaplain's Familiar ghost-role-information-remilia-description = Follow and obey the chaplain. Eat fruit. Screech loudly into people's ears and write it off as echolocation. ghost-role-information-cerberus-name = Cerberus, Evil Familiar @@ -179,7 +179,7 @@ ghost-role-information-ert-medical-description = Assist with medical efforts to ghost-role-information-cburn-agent-name = CBURN Agent ghost-role-information-cburn-agent-description = A highly trained CentComm agent, capable of dealing with various threats. -ghost-role-information-centcom-official-name = CentComm official +ghost-role-information-centcom-official-name = CentComm Official ghost-role-information-centcom-official-description = Perform CentComm related duties such as inspect the station, jotting down performance reviews for heads of staff, and managing the fax machine. ghost-role-information-nukeop-rules = You are a [color=red][bold]Team Antagonist[/bold][/color] with all other nuclear operatives. Covert syndicate agents are not guaranteed to help you. @@ -296,7 +296,7 @@ ghost-role-information-syndie-soldier-teamlead-description = You are the fire te ghost-role-information-blackmarketeer-name = Black Market Trader ghost-role-information-blackmarketeer-description = Make trades or take odd jobs to collect the most interesting items by the end of the shift. -ghost-role-information-cossack-name = Ancient traveler +ghost-role-information-cossack-name = Ancient Traveler ghost-role-information-cossack-description = From a history lost to time, you find yourself cast into this day and age. ghost-role-information-pirate-name = Space Pirate @@ -308,8 +308,8 @@ ghost-role-information-pirate-captain-description = Argh matey! You are in charg ghost-role-information-artifact-name = Sentient Artifact ghost-role-information-artifact-description = Enact your eldritch whims. Forcibly activate your nodes for good or for evil. -ghost-role-information-tomatokiller-name = Tomato killer -ghost-role-information-tomatokiller-description = This little tomato will serve the botanist for the rest of his life... that is, a couple of minutes +ghost-role-information-tomatokiller-name = Tomato Killer +ghost-role-information-tomatokiller-description = This little tomato will serve the botanist for the rest of his life... that is, a couple of minutes. ghost-role-information-gingerbread-name = Gingerbread Man ghost-role-information-gingerbread-description = A being of pure holiday spirit. diff --git a/Resources/Locale/en-US/holopad/holopad.ftl b/Resources/Locale/en-US/holopad/holopad.ftl index fbb7a78531e2..a843b6a0e4db 100644 --- a/Resources/Locale/en-US/holopad/holopad.ftl +++ b/Resources/Locale/en-US/holopad/holopad.ftl @@ -6,6 +6,7 @@ holopad-window-options = [color=darkgray][font size=10][italic]Please select an # Call status holopad-window-no-calls-in-progress = No holo-calls in progress holopad-window-incoming-call = Incoming holo-call from: +holopad-window-relay-label = Originating at: holopad-window-outgoing-call = Attempting to establish a connection... holopad-window-call-in-progress = Holo-call in progress holopad-window-call-ending = Disconnecting... @@ -28,6 +29,7 @@ holopad-window-access-denied = Access denied holopad-window-select-contact-from-list = Select a contact to initiate a holo-call holopad-window-fetching-contacts-list = No holopads are currently contactable holopad-window-contact-label = {CAPITALIZE($label)} +holopad-window-filter-line-placeholder = Search for a contact # Flavor holopad-window-flavor-left = ⚠ Do not enter while projector is active @@ -87,6 +89,7 @@ holopad-medical-paramedic = Medical - Paramedic holopad-medical-virology = Medical - Virology holopad-medical-front = Medical - Front holopad-medical-breakroom = Medical - Breakroom +holopad-medical-clinic = Medical - Clinic # Cargo holopad-cargo-front = Cargo - Front diff --git a/Resources/Locale/en-US/lobby/lobby-gui.ftl b/Resources/Locale/en-US/lobby/lobby-gui.ftl index e7f131e93b02..14cc85a5a999 100644 --- a/Resources/Locale/en-US/lobby/lobby-gui.ftl +++ b/Resources/Locale/en-US/lobby/lobby-gui.ftl @@ -1,4 +1,4 @@ -ui-lobby-title = Lobby +ui-lobby-title = Lobby: {$serverName} ui-lobby-ahelp-button = AHelp ui-lobby-options-button = Options ui-lobby-leave-button = Leave diff --git a/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl b/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl index a2664a44ca81..89b4266ddc5d 100644 --- a/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl +++ b/Resources/Locale/en-US/navmap-beacons/station-beacons.ftl @@ -9,6 +9,7 @@ station-beacon-hop = HOP station-beacon-security = Security station-beacon-brig = Brig +station-beacon-brig-med = Brig Med station-beacon-warden = Warden station-beacon-hos = HOS station-beacon-armory = Armory @@ -25,6 +26,8 @@ station-beacon-cryonics = Cryopods station-beacon-cmo = CMO station-beacon-morgue = Morgue station-beacon-surgery = Surgery +station-beacon-psychology = Psychology +station-beacon-clinic = Clinic station-beacon-science = Science station-beacon-research-and-development = Research @@ -62,12 +65,16 @@ station-beacon-janitor = Janitor station-beacon-ai = AI station-beacon-ai-sat = AI Sat station-beacon-ai-core = AI Core +station-beacon-ai-upload = AI Upload +station-beacon-ai-power = AI Power station-beacon-arrivals = Arrivals station-beacon-evac = Evac +station-beacon-docking-arm = Docking Arm station-beacon-eva-storage = EVA Storage station-beacon-chapel = Chapel station-beacon-library = Library +station-beacon-reporter = Reporter station-beacon-dorms = Dorms station-beacon-theater = Theater station-beacon-tools = Tools diff --git a/Resources/Locale/en-US/pai/pai-system.ftl b/Resources/Locale/en-US/pai/pai-system.ftl index d64d7f56234c..5462f5d0bc83 100644 --- a/Resources/Locale/en-US/pai/pai-system.ftl +++ b/Resources/Locale/en-US/pai/pai-system.ftl @@ -3,13 +3,13 @@ pai-system-off = No pAI is installed. pai-system-still-searching = Still searching for a pAI. pai-system-searching = Now searching for a pAI... -pai-system-role-name = personal ai +pai-system-role-name = Personal AI pai-system-role-description = Be someone's electronic pal! (Memories *not* included.) -pai-system-role-name-syndicate = Syndicate personal ai +pai-system-role-name-syndicate = Syndicate Personal AI pai-system-role-description-syndicate = Be someone's Syndicate pal! (Memories *not* included.) -pai-system-role-name-potato = potato artificial intelligence +pai-system-role-name-potato = Potato Artificial Intelligence pai-system-role-description-potato = It's a toy for children. And now you live in it. pai-system-wipe-device-verb-text = Remove pAI diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl index 27e0cb2a8124..c384c0c9366c 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl @@ -157,8 +157,8 @@ reagent-desc-hooch = Either someone's failure at cocktail making or attempt in a reagent-name-iced-beer = iced beer reagent-desc-iced-beer = A beer which is so cold the air around it freezes. -reagent-name-irish-car-bomb = irish car bomb -reagent-desc-irish-car-bomb = A troubling mixture of irish cream and ale. +reagent-name-irish-slammer = irish slammer +reagent-desc-irish-slammer = An unconventional mixture of irish cream and stout. reagent-name-irish-cream = irish cream reagent-desc-irish-cream = Whiskey-imbued cream. What else could you expect from the Irish. diff --git a/Resources/Locale/en-US/robotics/mmi.ftl b/Resources/Locale/en-US/robotics/mmi.ftl index 7917eebf8cce..db58f0091b07 100644 --- a/Resources/Locale/en-US/robotics/mmi.ftl +++ b/Resources/Locale/en-US/robotics/mmi.ftl @@ -3,7 +3,7 @@ positronic-brain-off = No neural activity detected. positronic-brain-still-searching = Synthetic neuron descrambling in progress... positronic-brain-searching = Beginning synthetic neuron descrambling... -positronic-brain-role-name = positronic brain +positronic-brain-role-name = Positronic Brain positronic-brain-role-description = Serve the station crew. positronic-brain-wipe-device-verb-text = Wipe Brain diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl index c07e04b0a7d5..dac611287658 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/actions/types.ftl @@ -50,7 +50,5 @@ ent-ActionFireStarter = Ignite .desc = Ignites enemies in a radius around you. ent-ActionToggleEyes = Open/Close eyes .desc = Close your eyes to protect your peepers, or open your eyes to enjoy the pretty lights. -ent-ActionToggleWagging = action-name-toggle-wagging - .desc = action-description-toggle-wagging -ent-ActionWoundLicking = Lick Wound - .desc = Stop bleeding by licking your wounds. +ent-ActionToggleWagging = Wagging Tail + .desc = Start or stop wagging your tail. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl similarity index 100% rename from Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl rename to Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl new file mode 100644 index 000000000000..9bf34c4e5559 --- /dev/null +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl @@ -0,0 +1,8 @@ +ent-LootSpawnerScienceMinor = science supplies spawner + .suffix = Minor, 80% + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerScienceMajor = science supplies spawner + .suffix = Major + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerRoboticsBorgModule = robotics board spawner + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl similarity index 100% rename from Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl rename to Resources/Locale/en-US/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl index fcd08745cdbf..bfa3b12817ec 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl @@ -108,8 +108,8 @@ ent-MobSpiderAngryBase = { ent-MobSpiderBase } .desc = { ent-MobSpiderBase.desc } ent-MobGiantSpider = tarantula .desc = Widely recognized to be the literal worst thing in existence. -ent-MobGiantSpiderAngry = { ent-MobGiantSpider } - .desc = { ent-MobGiantSpider.desc } +ent-MobGiantSpiderAngry = { ent-MobSpiderAngryBase } + .desc = { ent-MobSpiderAngryBase.desc } ent-MobClownSpider = clown spider .desc = Combines the two most terrifying things in existence, spiders and clowns. ent-MobGiantSpiderWizard = wizard spider diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl index a8102be6a75e..5729a23d6dde 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl @@ -189,8 +189,8 @@ ent-DrinkIceCreamGlass = { ent-DrinkGlass } ent-IrishBoolGlass = { ent-DrinkGlass } .suffix = irish bool .desc = { ent-DrinkGlass.desc } -ent-DrinkIrishCarBomb = { ent-DrinkGlass } - .suffix = irish car bomb +ent-DrinkIrishSlammer = { ent-DrinkGlass } + .suffix = irish slammer .desc = { ent-DrinkGlass.desc } ent-DrinkIrishCoffeeGlass = { ent-DrinkGlass } .suffix = irish coffee diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl index 5306b66ebf37..7b3b3277c041 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl @@ -4,3 +4,5 @@ ent-FoodBagel = bagel .desc = { ent-FoodBagelBase.desc } ent-FoodBagelPoppy = poppy seed bagel .desc = A delicious bagel topped with bicaridine-infused poppy seeds. +ent-FoodBagelCotton = cotton bagel + .desc = A delicious bagel made with cotton dough. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl index 2eed79e7dd7b..cff6e381f2b1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl @@ -52,8 +52,12 @@ ent-FoodBreadMeatXenoSlice = xeno meat bread slice .desc = A slice of xeno scum. ent-FoodBreadBaguette = baguette .desc = Bon appétit! +ent-FoodBreadBaguetteCotton = cotton baguette + .desc = Bon azzétit! ent-FoodBreadBaguetteSlice = crostini .desc = Bon ap-petite! +ent-FoodBreadBaguetteCottonSlice = cotton crostini + .desc = Bon az-zetite! ent-FoodBreadButteredToast = buttered toast .desc = Crunchy. ent-FoodBreadButterDog = butter dog diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl index 78741c6d9589..e855542a92ac 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl @@ -50,6 +50,8 @@ ent-FoodBakedDumplings = dumplings .desc = Average recipe for meat in doughs. ent-FoodBakedChevreChaud = chèvre chaud .desc = A disk of slightly melted chèvre flopped on top of a crostini, and toasted all-round. +ent-FoodBakedChevreChaudCotton = cotton chèvre chaud + .desc = A disk of slightly melted chèvre flopped on top of a... cotton crostini, and toasted all-round. ent-FoodBakedBrownieBatch = brownies .desc = A pan of brownies. ent-FoodBakedBrownie = brownie @@ -63,3 +65,5 @@ ent-FoodOnionRings = onion rings .desc = You can eat it or propose to your loved ones. ent-FoodBakedCroissant = croissant .desc = Buttery, flaky goodness. +ent-FoodBakedCroissantCotton = cotton croissant + .desc = Buttery, flaky, fibery goodness. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl index f7b7583297af..86adc22f0d6d 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl @@ -10,6 +10,9 @@ ent-FoodBoxPizza = pizza box ent-FoodBoxPizzaFilled = pizza box .suffix = Filled .desc = { ent-FoodBoxPizza.desc } +ent-FoodBoxPizzaCotton = pizza box + .suffix = Cotton Pizza + .desc = { ent-FoodBoxPizzaFilled.desc } ent-FoodBoxNugget = chicken nuggets .desc = You suddenly have an urge to trade on the intergalactic stock market. ent-FoodBoxDonkpocket = box of donk-pockets diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl index 3fcd400cb8c6..ebb7d371e638 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl @@ -44,6 +44,10 @@ ent-FoodDoughTortillaFlat = flattened tortilla dough .desc = A flattened slice of tortilla dough, cook this to get a taco shell. ent-FoodDoughCotton = cotton dough .desc = A piece of fabric dough. +ent-FoodDoughCottonSlice = cotton dough slice + .desc = A slice of cotton dough. +ent-FoodDoughCottonRope = dough rope + .desc = A thin noodle of cotton dough. Can be cooked into a cotton bagel. ent-FoodDoughPastryBaseRaw = raw pastry base .desc = Must be cooked before use. ent-FoodDoughPastryBase = pastry base @@ -82,3 +86,5 @@ ent-FoodCocoaBeans = cocoa beans .desc = You can never have too much chocolate! ent-FoodCroissantRaw = raw croissant .desc = Buttery, flaky goodness waiting to happen. +ent-FoodCroissantRawCotton = raw cotton croissant + .desc = Buttery, flaky, fibery goodness waiting to happen. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl index 6d69594fa396..a1587f598338 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl @@ -1,5 +1,5 @@ ent-HandTeleporter = hand teleporter .desc = A Nanotrasen signature item--only the finest bluespace tech. Instructions: Use once to create a portal which teleports at random. Use again to link it to a portal at your current location. Use again to clear all portals. ent-HandTeleporterAdmeme = interdimensional teleporter - .desc = allows you to open stable portal gates that are not limited by distance + .desc = Allows you to open stable portal gates that are not limited by distance. .suffix = Admeme diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl index 31fc08a69ef6..e806b5b6610c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/pda.ftl @@ -148,4 +148,7 @@ ent-SeniorOfficerPDA = senior officer PDA ent-PiratePDA = pirate PDA .desc = Yargh! ent-SyndiAgentPDA = syndicate agent PDA - .desc = For those days when healing normal syndicates aren't enough, try healing nuclear operatives instead! \ No newline at end of file + .desc = For those days when healing normal syndicates aren't enough, try healing nuclear operatives instead! +ent-ChameleonPDA = assistant PDA + .desc = Why isn't it gray? + .suffix = Chameleon diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl index 9dabde400172..cb6bd1073e23 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl @@ -30,6 +30,9 @@ ent-DefaultStationBeaconSecurity = { ent-DefaultStationBeacon } ent-DefaultStationBeaconBrig = { ent-DefaultStationBeaconSecurity } .suffix = Brig .desc = { ent-DefaultStationBeaconSecurity.desc } +ent-DefaultStationBeaconBrigMed = { ent-DefaultStationBeaconSecurity } + .suffix = Brig Med + .desc = { ent-DefaultStationBeaconSecurity.desc } ent-DefaultStationBeaconWardensOffice = { ent-DefaultStationBeaconSecurity } .suffix = Warden's Office .desc = { ent-DefaultStationBeaconSecurity.desc } @@ -75,6 +78,12 @@ ent-DefaultStationBeaconMorgue = { ent-DefaultStationBeaconMedical } ent-DefaultStationBeaconSurgery = { ent-DefaultStationBeaconMedical } .suffix = Surgery .desc = { ent-DefaultStationBeaconMedical.desc } +ent-DefaultStationBeaconPsychology = { ent-DefaultStationBeaconMedical } + .suffix = Psychology + .desc = { ent-DefaultStationBeaconMedical.desc } +ent-DefaultStationBeaconClinic = { ent-DefaultStationBeaconMedical } + .suffix = Clinic + .desc = { ent-DefaultStationBeaconMedical.desc } ent-DefaultStationBeaconScience = { ent-DefaultStationBeacon } .suffix = Science .desc = { ent-DefaultStationBeacon.desc } @@ -171,12 +180,21 @@ ent-DefaultStationBeaconAISatellite = { ent-DefaultStationBeaconAI } ent-DefaultStationBeaconAICore = { ent-DefaultStationBeaconAI } .suffix = AI Core .desc = { ent-DefaultStationBeaconAI.desc } +ent-DefaultStationBeaconAIUpload = { ent-DefaultStationBeaconAI } + .suffix = AI Upload + .desc = { ent-DefaultStationBeaconAI.desc } +ent-DefaultStationBeaconAIPower = { ent-DefaultStationBeaconAI } + .suffix = AI Power + .desc = { ent-DefaultStationBeaconAI.desc } ent-DefaultStationBeaconArrivals = { ent-DefaultStationBeacon } .suffix = Arrivals .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEvac = { ent-DefaultStationBeacon } .suffix = Evac .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconDockingArm = { ent-DefaultStationBeacon } + .suffix = Docking Arm + .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEVAStorage = { ent-DefaultStationBeacon } .suffix = EVA Storage .desc = { ent-DefaultStationBeacon.desc } @@ -186,6 +204,9 @@ ent-DefaultStationBeaconChapel = { ent-DefaultStationBeacon } ent-DefaultStationBeaconLibrary = { ent-DefaultStationBeacon } .suffix = Library .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconReporter = { ent-DefaultStationBeacon } + .suffix = Reporter + .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconTheater = { ent-DefaultStationBeacon } .suffix = Theater .desc = { ent-DefaultStationBeacon.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl similarity index 100% rename from Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryopod.ftl rename to Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl index 435af487410a..6fd93ed539d5 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl @@ -313,6 +313,9 @@ ent-AirlockMaintTheatreLocked = { ent-AirlockMaintServiceLocked } ent-AirlockMaintKitchenLocked = { ent-AirlockMaintServiceLocked } .suffix = Kitchen, Locked .desc = { ent-AirlockMaintServiceLocked.desc } +ent-AirlockMaintKitchenHydroLocked = { ent-AirlockMaintServiceLocked } + .suffix = Kitchen/Hydroponics, Locked + .desc = { ent-AirlockMaintServiceLocked.desc } ent-AirlockMaintIntLocked = { ent-AirlockMaint } .suffix = Interior, Locked .desc = { ent-AirlockMaint.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/holopad.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/holopad.ftl index 1b10303315e5..dae20c321b16 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/holopad.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/machines/holopad.ftl @@ -7,7 +7,7 @@ ent-HolopadUnlimitedRange = quantum entangling holopad ent-HolopadBluespace = bluespace holopad .desc = An experimental floor-mounted device for projecting holographic images via bluespace. .suffix = Unrestricted range -ent-HolopadHologram = { "" } +ent-HolopadHologram = hologram .suffix = DO NOT MAP .desc = { "" } ent-HolopadGeneralTools = { ent-Holopad } @@ -124,6 +124,9 @@ ent-HolopadMedicalFront = { ent-Holopad } ent-HolopadMedicalBreakroom = { ent-Holopad } .suffix = Med Breakroom .desc = { ent-Holopad.desc } +ent-HolopadMedicalClinic = { ent-Holopad } + .suffix = Med Clinic + .desc = { ent-Holopad.desc } ent-HolopadCargoFront = { ent-Holopad } .suffix = Cargo Front .desc = { ent-Holopad.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl index 340c01e1b863..3699fd525635 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/walls/walls.ftl @@ -36,7 +36,7 @@ ent-WallPlastitaniumDiagonalIndestructible = plastitanium wall .suffix = diagonal, indestructible ent-WallReinforced = reinforced wall .desc = { ent-BaseWall.desc } -ent-WallReinforcedRust = reinforced wall +ent-WallReinforcedRust = { ent-WallReinforced } .suffix = rusted .desc = { ent-WallReinforced.desc } ent-WallReinforcedDiagonal = reinforced wall @@ -62,7 +62,7 @@ ent-WallSolid = solid wall ent-WallSolidDiagonal = solid wall .suffix = diagonal .desc = { ent-WallShuttleDiagonal.desc } -ent-WallSolidRust = solid wall +ent-WallSolidRust = { ent-WallSolid } .suffix = rusted .desc = { ent-WallSolid.desc } ent-WallUranium = uranium wall diff --git a/Resources/Locale/en-US/telephone/telephone.ftl b/Resources/Locale/en-US/telephone/telephone.ftl index 915d54843ff1..b279111d2370 100644 --- a/Resources/Locale/en-US/telephone/telephone.ftl +++ b/Resources/Locale/en-US/telephone/telephone.ftl @@ -5,4 +5,9 @@ chat-telephone-message-wrap-bold = [color={$color}][bold]{$name}[/bold] {$verb}, # Caller ID chat-telephone-unknown-caller = [color={$color}][font={$fontType} size={$fontSize}][bolditalic]Unknown caller[/bolditalic][/font][/color] chat-telephone-caller-id-with-job = [color={$color}][font={$fontType} size={$fontSize}][bold]{CAPITALIZE($callerName)} ({CAPITALIZE($callerJob)})[/bold][/font][/color] -chat-telephone-caller-id-without-job = [color={$color}][font={$fontType} size={$fontSize}][bold]{CAPITALIZE($callerName)}[/bold][/font][/color] \ No newline at end of file +chat-telephone-caller-id-without-job = [color={$color}][font={$fontType} size={$fontSize}][bold]{CAPITALIZE($callerName)}[/bold][/font][/color] +chat-telephone-unknown-device = [color={$color}][font={$fontType} size={$fontSize}][bolditalic]Unknown source[/bolditalic][/font][/color] +chat-telephone-device-id = [color={$color}][font={$fontType} size={$fontSize}][bold]{CAPITALIZE($deviceName)}[/bold][/font][/color] + +# Chat text +chat-telephone-name-relay = {$originalName} ({$speaker}) \ No newline at end of file diff --git a/Resources/Locale/en-US/ventriloquist/ventriloquist.ftl b/Resources/Locale/en-US/ventriloquist/ventriloquist.ftl index 5b46e25456b2..d6f53abfd9f2 100644 --- a/Resources/Locale/en-US/ventriloquist/ventriloquist.ftl +++ b/Resources/Locale/en-US/ventriloquist/ventriloquist.ftl @@ -4,5 +4,5 @@ ventriloquist-puppet-remove-hand = You remove your hand from the puppet. ventriloquist-puppet-cant-speak = You cannot speak without a helping hand. ventriloquist-puppet-inserted-hand = You have a helping hand. ventriloquist-puppet-removed-hand = you have lost your helping hand. -ventriloquist-puppet-role-name = A dummy +ventriloquist-puppet-role-name = A Dummy ventriloquist-puppet-role-description = Become a dummy, dummy! diff --git a/Resources/Locale/ru-RU/accent/italian.ftl b/Resources/Locale/ru-RU/accent/italian.ftl index aeded95417fd..11d3b58630c9 100644 --- a/Resources/Locale/ru-RU/accent/italian.ftl +++ b/Resources/Locale/ru-RU/accent/italian.ftl @@ -1,6 +1,7 @@ # This should probably use the same prefix system as the mobster accent. # For the record, these do not work right now - even when uncommented. + # accent-italian-prefix-1 = Ravioli, ravioli, give me the formuoli! # accent-italian-prefix-2 = Mamma-mia! # accent-italian-prefix-3 = Mamma-mia! That's a spicy meat-ball! diff --git a/Resources/Locale/ru-RU/accessories/human-hair.ftl b/Resources/Locale/ru-RU/accessories/human-hair.ftl index ea0a8e466459..c00bf0599ebc 100644 --- a/Resources/Locale/ru-RU/accessories/human-hair.ftl +++ b/Resources/Locale/ru-RU/accessories/human-hair.ftl @@ -146,6 +146,7 @@ marking-HumanHairSidetail3 = Хвостик (Сбоку) 3 marking-HumanHairSidetail4 = Хвостик (Сбоку) 4 marking-HumanHairSpikyponytail = Хвостик (Шипастый) marking-HumanHairPoofy = Пышная +marking-HumanHairPulato = Pulato marking-HumanHairQuiff = Квифф marking-HumanHairRonin = Ронин marking-HumanHairShaped = Уложенная diff --git a/Resources/Locale/ru-RU/actions/actions/actions-commands.ftl b/Resources/Locale/ru-RU/actions/actions/actions-commands.ftl index f41f4812acd8..6475e7dadf3d 100644 --- a/Resources/Locale/ru-RU/actions/actions/actions-commands.ftl +++ b/Resources/Locale/ru-RU/actions/actions/actions-commands.ftl @@ -1,5 +1,6 @@ ## Actions Commands loc + ## Upgradeaction command loc upgradeaction-command-need-one-argument = upgradeaction требует как минимум один аргумент - uid действующей сущности. Вторым необязательным аргументом является указанный уровень. diff --git a/Resources/Locale/ru-RU/actions/actions/wagging.ftl b/Resources/Locale/ru-RU/actions/actions/wagging.ftl deleted file mode 100644 index 5ab4122454ab..000000000000 --- a/Resources/Locale/ru-RU/actions/actions/wagging.ftl +++ /dev/null @@ -1,2 +0,0 @@ -action-name-toggle-wagging = Вилять хвостом -action-description-toggle-wagging = Начать или прекратить вилять хвостом. diff --git a/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl b/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl new file mode 100644 index 000000000000..c59803e5e98c --- /dev/null +++ b/Resources/Locale/ru-RU/advertisements/vending/gibb.ftl @@ -0,0 +1,12 @@ +advertisement-gibb-1 = Вкуснятина! +advertisement-gibb-2 = Рекомендовано как минимум одним врачом! +advertisement-gibb-3 = Продано более 1 миллиона напитков! +advertisement-gibb-4 = Доктор Гибб, что самое худшее может случиться? +advertisement-gibb-5 = Доктор Гибб, взрыв вкуса! +advertisement-gibb-6 = Поверьте мне, я доктор! +advertisement-gibb-7 = Лучший сахарный настой в галактике! +advertisement-gibb-8 = Космическая кола может гиббнуться! +thankyou-gibb-1 = Доктор находится в... вашем животе! +thankyou-gibb-2 = Прогноз: вкус! +thankyou-gibb-3 = Наслаждайтесь 42 вкусами! +thankyou-gibb-4 = Наслаждайтесь сиропообразным совершенством! diff --git a/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl b/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl index 7680d4a9e307..ea09dd589167 100644 --- a/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl +++ b/Resources/Locale/ru-RU/atmos/air-alarm-ui.ftl @@ -1,5 +1,6 @@ # UI + ## Window air-alarm-ui-access-denied = Недостаточный уровень доступа! @@ -30,6 +31,7 @@ air-alarm-ui-mode-none = Нет ## Widgets + ### General air-alarm-ui-widget-enable = Включено diff --git a/Resources/Locale/ru-RU/atmos/gas-canister-component.ftl b/Resources/Locale/ru-RU/atmos/gas-canister-component.ftl index 772d1d1a927e..99c0ad00b913 100644 --- a/Resources/Locale/ru-RU/atmos/gas-canister-component.ftl +++ b/Resources/Locale/ru-RU/atmos/gas-canister-component.ftl @@ -1,5 +1,6 @@ ## UI + # Bound Interface gas-canister-bound-user-interface-title = Газовый баллон diff --git a/Resources/Locale/ru-RU/barsign/barsign-component.ftl b/Resources/Locale/ru-RU/barsign/barsign-component.ftl index ea7bfe87abec..8b367388dec1 100644 --- a/Resources/Locale/ru-RU/barsign/barsign-component.ftl +++ b/Resources/Locale/ru-RU/barsign/barsign-component.ftl @@ -4,6 +4,7 @@ barsign-ui-set-label = Установить вывеску: # Bar signs prototypes + ## The Harmbaton barsign-prototype-name-harmbaton = Хармбатон diff --git a/Resources/Locale/ru-RU/climbing/glass-table-component.ftl b/Resources/Locale/ru-RU/climbing/glass-table-component.ftl index 5056cc13de98..e22123a96985 100644 --- a/Resources/Locale/ru-RU/climbing/glass-table-component.ftl +++ b/Resources/Locale/ru-RU/climbing/glass-table-component.ftl @@ -1,5 +1,6 @@ ### Tables which take damage when a user is dragged onto them + ## Showed to users other than the climber glass-table-shattered-others = { CAPITALIZE($table) } ломается под весом { $climber }! diff --git a/Resources/Locale/ru-RU/clothing/components/magboots-component.ftl b/Resources/Locale/ru-RU/clothing/components/magboots-component.ftl deleted file mode 100644 index 78e0d51c099b..000000000000 --- a/Resources/Locale/ru-RU/clothing/components/magboots-component.ftl +++ /dev/null @@ -1 +0,0 @@ -toggle-magboots-verb-get-data-text = Переключить Магнитные сапоги diff --git a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl index dcf76d44c3d4..3355e10540fe 100644 --- a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl +++ b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl @@ -65,19 +65,22 @@ flavor-complex-ketchunaise = как помидоры и майонез flavor-complex-mayonnaise = как майонез flavor-complex-mustard = как горчица - # Food-specific flavors. + ## Food chemicals. In case you get something that has this inside. + flavor-complex-nutriment = как питательные вещества flavor-complex-vitamin = как витамины flavor-complex-protein = как протеины ## Generic food taste. This should be replaced with an actual flavor profile, ## if you have food that looks like this. + flavor-complex-food = как еда ## Basic foodstuffs (ingredients, generic flavors) + flavor-complex-bun = как булочка flavor-complex-bread = как хлеб flavor-complex-batter = как тесто для торта @@ -126,8 +129,10 @@ flavor-complex-nettles = как крапива flavor-complex-jungle = как джунгли flavor-complex-vegetables = как овощи flavor-complex-cherry = как вишня + # use it when there multiple types of veggies + ## Complex foodstuffs (cooked foods, joke flavors, etc) flavor-complex-pink = как розовый @@ -183,13 +188,16 @@ flavor-complex-compressed-meat = как спрессованное мясо # Drink-specific flavors. + ## Generic alcohol/soda taste. This should be replaced with an actual flavor profile. + flavor-complex-alcohol = как алкоголь flavor-complex-soda = как газировка flavor-complex-juice = как сок flavor-complex-rocksandstones = как скалы и камни ## Basic drinks + flavor-complex-water = как вода flavor-complex-beer = как моча flavor-complex-cognac = как сухой пряный алкоголь @@ -227,6 +235,7 @@ flavor-complex-mopwata = как застоявшаяся грязная вода flavor-complex-gin = как забродившее зерно с ягодами можжевельника ## Cocktails + flavor-complex-arnold-palmer = как попадание в лунку с первого удара flavor-complex-blue-hawaiian = как тропики flavor-complex-cosmopolitan = сладко и терпко @@ -259,7 +268,7 @@ flavor-complex-xeno-basher = как уничтожение жуков flavor-complex-budget-insuls-drink = как взлом шлюза flavor-complex-watermelon-wakeup = как сладкое пробуждение flavor-complex-rubberneck = как синтетика -flavor-complex-irish-car-bomb = как шипучая пенка колы +flavor-complex-irish-slammer = как шипучая пенка колы flavor-complex-themartinez = как фиалки и лимонная водка flavor-complex-cogchamp = как латунь flavor-complex-white-gilgamesh = как слегка газированные сливки @@ -303,13 +312,15 @@ flavor-complex-vodka-tonic = освежающе горький flavor-complex-coconut-rum = как ореховый забродивший сахар ### This is exactly what pilk tastes like. I'm not even joking. I might've been a little drunk though + flavor-complex-pilk = как сладкое молоко # Medicine/chemical-specific flavors. + ## Generic flavors. -flavor-complex-medicine = как лекарство +flavor-complex-medicine = как лекарство flavor-complex-carpet = как горсть шерсти flavor-complex-bee = беспчеловечно flavor-complex-sax = как джаз diff --git a/Resources/Locale/ru-RU/gravity/gravity-generator-component.ftl b/Resources/Locale/ru-RU/gravity/gravity-generator-component.ftl index 48e571d333cb..22190b51ea19 100644 --- a/Resources/Locale/ru-RU/gravity/gravity-generator-component.ftl +++ b/Resources/Locale/ru-RU/gravity/gravity-generator-component.ftl @@ -1,5 +1,6 @@ ### Gravity Generator + ## UI gravity-generator-window-title = Генератор гравитации diff --git a/Resources/Locale/ru-RU/holopad/holopad.ftl b/Resources/Locale/ru-RU/holopad/holopad.ftl index ce1cf0c4a9c1..b801272813ed 100644 --- a/Resources/Locale/ru-RU/holopad/holopad.ftl +++ b/Resources/Locale/ru-RU/holopad/holopad.ftl @@ -5,6 +5,7 @@ holopad-window-options = [color=darkgray][font size=10][italic]Пожалуйс # Call status holopad-window-no-calls-in-progress = Голозвонки не ведутся holopad-window-incoming-call = Входящий голозвонок от: +holopad-window-relay-label = Originating at: holopad-window-outgoing-call = Попытка установить связь... holopad-window-call-in-progress = Ведётся голозвонок holopad-window-call-ending = Разъединение... @@ -25,6 +26,7 @@ holopad-window-access-denied = Доступ запрещён holopad-window-select-contact-from-list = Выберите контакт для инициирования голозвонка holopad-window-fetching-contacts-list = В настоящее время ни с одним голопадом нельзя связаться holopad-window-contact-label = { CAPITALIZE($label) } +holopad-window-filter-line-placeholder = Search for a contact # Flavor holopad-window-flavor-left = ⚠ Не входите, пока проектор активен holopad-window-flavor-right = v3.0.9 @@ -77,6 +79,7 @@ holopad-medical-paramedic = Medical - Paramedic holopad-medical-virology = Medical - Virology holopad-medical-front = Medical - Front holopad-medical-breakroom = Medical - Breakroom +holopad-medical-clinic = Medical - Clinic # Cargo holopad-cargo-front = Cargo - Front holopad-cargo-bay = Cargo - Cargo Bay diff --git a/Resources/Locale/ru-RU/info/info-window.ftl b/Resources/Locale/ru-RU/info/info-window.ftl index 722956d5dad4..4d45a42bde06 100644 --- a/Resources/Locale/ru-RU/info/info-window.ftl +++ b/Resources/Locale/ru-RU/info/info-window.ftl @@ -1,5 +1,6 @@ ### Info Window + ## General stuff ui-info-title = Информация diff --git a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl index a688b6ab63dc..633892fb8a23 100644 --- a/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl +++ b/Resources/Locale/ru-RU/interaction/interaction-popup-component.ftl @@ -1,5 +1,6 @@ ### Interaction Popup component + ## Petting animals petting-success-generic = Вы гладите { $target } по голове. diff --git a/Resources/Locale/ru-RU/lobby/lobby-gui.ftl b/Resources/Locale/ru-RU/lobby/lobby-gui.ftl index 299e0faa91eb..f848dc040369 100644 --- a/Resources/Locale/ru-RU/lobby/lobby-gui.ftl +++ b/Resources/Locale/ru-RU/lobby/lobby-gui.ftl @@ -1,4 +1,4 @@ -ui-lobby-title = Лобби +ui-lobby-title = Лобби { $serverName } ui-lobby-ahelp-button = AHelp ui-lobby-options-button = Настройки ui-lobby-leave-button = Выйти diff --git a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl index c73e06b854ce..0cd2733db80a 100644 --- a/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl +++ b/Resources/Locale/ru-RU/navmap-beacons/station-beacons.ftl @@ -7,6 +7,7 @@ station-beacon-captain = Капитан station-beacon-hop = Кабинет ГП station-beacon-security = Служба безопасности station-beacon-brig = Бриг +station-beacon-brig-med = Brig Med station-beacon-warden = Смотритель station-beacon-hos = Кабинет ГСБ station-beacon-armory = Оружейная @@ -22,6 +23,8 @@ station-beacon-cryonics = Криокапсулы station-beacon-cmo = Кабинет главрача station-beacon-morgue = Морг station-beacon-surgery = Операционная +station-beacon-psychology = Psychology +station-beacon-clinic = Clinic station-beacon-science = Научный отдел station-beacon-research-and-development = РНД station-beacon-research-server = Серверная @@ -54,11 +57,15 @@ station-beacon-janitor = Коморка уборщика station-beacon-ai = ИИ station-beacon-ai-sat = Спутник ИИ station-beacon-ai-core = Ядро ИИ +station-beacon-ai-upload = AI Upload +station-beacon-ai-power = AI Power station-beacon-arrivals = Зал прибытия station-beacon-evac = Зал эвакуации +station-beacon-docking-arm = Docking Arm station-beacon-eva-storage = Хранилище EVA station-beacon-chapel = Церковь station-beacon-library = Библиотека +station-beacon-reporter = Reporter station-beacon-dorms = Жилой отсек station-beacon-theater = Театр station-beacon-tools = Хранилище инструментов diff --git a/Resources/Locale/ru-RU/pai/pai-system.ftl b/Resources/Locale/ru-RU/pai/pai-system.ftl index 72b99f9ea1e8..df3d2619e08d 100644 --- a/Resources/Locale/ru-RU/pai/pai-system.ftl +++ b/Resources/Locale/ru-RU/pai/pai-system.ftl @@ -2,7 +2,7 @@ pai-system-pai-installed = пИИ установлен. pai-system-off = пИИ не установлен. pai-system-still-searching = Всё ещё ищем пИИ... pai-system-searching = Ищем пИИ... -pai-system-role-name = персональный ИИ +pai-system-role-name = Персональный ИИ pai-system-role-description = Станьте чьим-то персональным Искуственным Интеллектом! (Воспоминания *не* прилагаются.) @@ -10,7 +10,7 @@ pai-system-role-name-syndicate = Персональный ИИ Синдикат pai-system-role-description-syndicate = Станьте чьим-то Синдикатовским приятелем! (Воспоминания *не* прилагаются.) -pai-system-role-name-potato = картофельный искусственный интеллект +pai-system-role-name-potato = Картофельный искусственный интеллект pai-system-role-description-potato = Это игрушка для детей. А теперь вы в ней живете. pai-system-wipe-device-verb-text = Удалить пИИ pai-system-wiped-device = пИИ был удалён. diff --git a/Resources/Locale/ru-RU/pda/Ringer/ringer-component.ftl b/Resources/Locale/ru-RU/pda/Ringer/ringer-component.ftl index 4545eaa6af36..fb86e7211ae7 100644 --- a/Resources/Locale/ru-RU/pda/Ringer/ringer-component.ftl +++ b/Resources/Locale/ru-RU/pda/Ringer/ringer-component.ftl @@ -1,5 +1,6 @@ ### UI + # For the PDA Ringer screen comp-ringer-vibration-popup = КПК вибрирует diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl index ff1e313c33e2..4c6491fec9ed 100644 --- a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl @@ -104,8 +104,8 @@ reagent-name-hooch = суррогат reagent-desc-hooch = Либо чья-то неудача в приготовлении коктейля, либо чья-то попытка производства алкоголя. В любом случае, Вы действительно хотите это выпить? reagent-name-iced-beer = пиво со льдом reagent-desc-iced-beer = Пиво настолько морозное, что воздух вокруг него замерзает. -reagent-name-irish-car-bomb = ирландская автомобильная бомба -reagent-desc-irish-car-bomb = Тревожная смесь крема айриш и эля. +reagent-name-irish-slammer = ирландская тюряга +reagent-desc-irish-slammer = Необычная смесь ирландских сливок и стаута. reagent-name-irish-cream = ирландские сливки reagent-desc-irish-cream = Сливки с добавлением виски. Что еще можно ожидать от ирландцев. reagent-name-irish-coffee = ирландский кофе diff --git a/Resources/Locale/ru-RU/robotics/mmi.ftl b/Resources/Locale/ru-RU/robotics/mmi.ftl index 610f9268ed47..1e7d914b2386 100644 --- a/Resources/Locale/ru-RU/robotics/mmi.ftl +++ b/Resources/Locale/ru-RU/robotics/mmi.ftl @@ -2,7 +2,7 @@ positronic-brain-installed = Обнаружена нейронная актив positronic-brain-off = Нейронная активность не обнаружена. positronic-brain-still-searching = Идёт процесс декодирования синтетических нейронов... positronic-brain-searching = Запуск синтетического декодирования нейронов... -positronic-brain-role-name = позитронный мозг +positronic-brain-role-name = Позитронный мозг positronic-brain-role-description = Служите экипажу станции. positronic-brain-wipe-device-verb-text = Стереть Мозг positronic-brain-wiped-device = Нейронная активность была прекращена. diff --git a/Resources/Locale/ru-RU/robust-toolbox/commands.ftl b/Resources/Locale/ru-RU/robust-toolbox/commands.ftl index df9d135edd32..476fc5af55ed 100644 --- a/Resources/Locale/ru-RU/robust-toolbox/commands.ftl +++ b/Resources/Locale/ru-RU/robust-toolbox/commands.ftl @@ -1,5 +1,6 @@ ### Localization for engine console commands + ## generic command errors cmd-invalid-arg-number-error = Недопустимое число аргументов. @@ -184,6 +185,7 @@ cmd-hint-savebp-id = ## 'flushcookies' command + # Примечание: команда flushcookies взята из Robust.Client.WebView, её нет в коде основного движка. cmd-flushcookies-desc = Сброс хранилища CEF-cookie на диск diff --git a/Resources/Locale/ru-RU/sandbox/sandbox-manager.ftl b/Resources/Locale/ru-RU/sandbox/sandbox-manager.ftl index 43accfccc627..e5ea01127f2d 100644 --- a/Resources/Locale/ru-RU/sandbox/sandbox-manager.ftl +++ b/Resources/Locale/ru-RU/sandbox/sandbox-manager.ftl @@ -17,4 +17,3 @@ sandbox-window-toggle-suicide-button = Самоубийство sandbox-window-show-spawns-button = Показать спавны sandbox-window-show-bb-button = Показать BB sandbox-window-show-npc-button = Показать NPC -sandbox-window-link-machines-button = Связать устройства diff --git a/Resources/Locale/ru-RU/shell.ftl b/Resources/Locale/ru-RU/shell.ftl index eabfed34ce01..ceaba54a95cb 100644 --- a/Resources/Locale/ru-RU/shell.ftl +++ b/Resources/Locale/ru-RU/shell.ftl @@ -1,5 +1,6 @@ ### for technical and/or system messages + ## General shell-command-success = Команда выполнена. diff --git a/Resources/Locale/ru-RU/shuttles/emergency.ftl b/Resources/Locale/ru-RU/shuttles/emergency.ftl index 2c8c9046987c..daaec7258546 100644 --- a/Resources/Locale/ru-RU/shuttles/emergency.ftl +++ b/Resources/Locale/ru-RU/shuttles/emergency.ftl @@ -1,5 +1,6 @@ # Commands + ## Delay shuttle round end emergency-shuttle-command-round-desc = Останавливает таймер окончания раунда, когда эвакуационный шаттл покидает гиперпространство. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/types.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/types.ftl index 113f883e8a27..0cb3a32bd8ee 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/types.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/actions/types.ftl @@ -50,7 +50,5 @@ ent-ActionFireStarter = Поджечь .desc = Поджигает врагов в радиусе вокруг вас. ent-ActionToggleEyes = Открыть/Закрыть глаза .desc = Закройте глаза, чтобы защитить своё зрение, или откройте, чтобы насладиться красивыми огоньками. -ent-ActionToggleWagging = action-name-toggle-wagging - .desc = action-description-toggle-wagging -ent-ActionWoundLicking = Зализать рану - .desc = Остановить кровотечение, зализывав раны. +ent-ActionToggleWagging = Вилять хвостом + .desc = Начать или прекратить вилять хвостом. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl similarity index 100% rename from Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/medical.ftl rename to Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/medical.ftl diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl new file mode 100644 index 000000000000..82c0a4ac2c77 --- /dev/null +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/science.ftl @@ -0,0 +1,8 @@ +ent-LootSpawnerScienceMinor = спавнер научных припасов + .suffix = Мало, 80% + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerScienceMajor = спавнер научных припасов + .suffix = Много + .desc = { ent-MarkerBase.desc } +ent-LootSpawnerRoboticsBorgModule = спавнер платы робототехники + .desc = { ent-MarkerBase.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl similarity index 100% rename from Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/security.ftl rename to Resources/Locale/ru-RU/ss14-ru/prototypes/entities/markers/spawners/random/department/security.ftl diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl index e69ed46f433d..5a7cd0f2e917 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/npcs/animals.ftl @@ -110,8 +110,8 @@ ent-MobGiantSpider = тарантул .desc = Общепризнанно, что это буквально худшее существо на свете. ent-MobClownSpider = паук-клоун .desc = Сочетает в себе две самые страшные вещи на свете - пауков и клоунов. -ent-MobGiantSpiderAngry = { ent-MobGiantSpider } - .desc = { ent-MobGiantSpider.desc } +ent-MobGiantSpiderAngry = { ent-MobSpiderAngryBase } + .desc = { ent-MobSpiderAngryBase.desc } .suffix = Злой ent-MobGiantSpiderWizard = паук-волшебник .desc = Этот паук выглядит немного магическим. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl index 49b0a0ce0836..42f36cc188f0 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl @@ -189,8 +189,8 @@ ent-DrinkIceCreamGlass = { ent-DrinkGlass } ent-IrishBoolGlass = { ent-DrinkGlass } .suffix = Ирландский булеан .desc = { ent-DrinkGlass.desc } -ent-DrinkIrishCarBomb = { ent-DrinkGlass } - .suffix = Ирландская автомобильная бомба +ent-DrinkIrishSlammer = { ent-DrinkGlass } + .suffix = Ирландская тюряга .desc = { ent-DrinkGlass.desc } ent-DrinkIrishCoffeeGlass = { ent-DrinkGlass } .suffix = Ирландские кофе diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl index 0947bc20e88d..91a08b926c70 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bagel.ftl @@ -3,4 +3,6 @@ ent-FoodBagelBase = { ent-FoodInjectableBase } ent-FoodBagel = бейгл .desc = { ent-FoodBagelBase.desc } ent-FoodBagelPoppy = бейгл с маком - .desc = Вкусный бейгл, посыпанный маком, настоянным на бикаридине. + .desc = Вкуснейший бейгл, посыпанный маком, настоянным на бикаридине. +ent-FoodBagelCotton = хлопковый бейгл + .desc = Вкуснейший бейгл из хлопкового теста. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl index b43a2f3ecd17..bbb868127d48 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/bread.ftl @@ -52,8 +52,12 @@ ent-FoodBreadMimanaSlice = ломтик хлеба мимана .desc = Кусочек тишины! ent-FoodBreadMoldySlice = заплесневелый кусок хлеба .desc = Целые станции были разорваны на части из-за споров о том, можно ли это есть. +ent-FoodBreadBaguetteCotton = хлопковый багет + .desc = Bon azzétit! ent-FoodBreadBaguetteSlice = кростини .desc = Бон ап-петит! +ent-FoodBreadBaguetteCottonSlice = хлопковые кростини + .desc = Бон аз-зетит! ent-FoodBreadBaguette = багет .desc = Bon appétit! ent-FoodBreadFrenchToast = французкий тост diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl index e2f6777cd41d..c701da21f35d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/baked/misc.ftl @@ -50,6 +50,8 @@ ent-FoodBakedDumplings = пельмени .desc = Обычный рецепт мяса в тесте. ent-FoodBakedChevreChaud = шевре-шо .desc = Диск слегка подтаявшего козьего сыра выкладывается на кростини и поджаривается со всех сторон. +ent-FoodBakedChevreChaudCotton = хлопковый шевре-шо + .desc = Диск слегка подтаявшего козьего сыра выкладывается на... хлопковый кростини и поджаривается со всех сторон. ent-FoodBakedBrownieBatch = брауни .desc = Несколько брауни. ent-FoodBakedBrownie = брауни @@ -63,3 +65,5 @@ ent-FoodOnionRings = луковые кольца .desc = Вы можете съесть их или сделать предложение своим близким. ent-FoodBakedCroissant = круассан .desc = Маслянистое, слоистое лакомство. +ent-FoodBakedCroissantCotton = хлопковый круассан + .desc = Маслянистое, слоистое, волокнистое лакомство. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl index f1e3fb0f7f0e..82421c957838 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/containers/box.ftl @@ -10,6 +10,9 @@ ent-FoodBoxPizza = коробка пиццы ent-FoodBoxPizzaFilled = коробка пиццы .suffix = Заполненная .desc = { ent-FoodBoxPizza.desc } +ent-FoodBoxPizzaCotton = коробка пиццы + .suffix = Хлопковая + .desc = { ent-FoodBoxPizzaFilled.desc } ent-FoodBoxNugget = куриные наггетсы .desc = У вас внезапно возникло желание торговать на межгалактическом фондовом рынке. ent-FoodBoxDonkpocket = коробка донк-покетов diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl index 4dce2bba5e06..3fe3fe4b57c4 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/food/ingredients.ftl @@ -44,6 +44,10 @@ ent-FoodDoughTortillaFlat = плоское тесто тортильи .desc = Расплющенный кусок теста тортильи. Приготовьте его, чтобы получить лепёшку тако. ent-FoodDoughCotton = хлопковое тесто .desc = Кусок ткани из хлопка. +ent-FoodDoughCottonSlice = кусок хлопкового теста + .desc = Кусок хлопкового теста. +ent-FoodDoughCottonRope = верёвка из хлопкового теста + .desc = Тонкая лапша из хлопкового теста. Из нее можно сделать хлопковый бейгл. ent-FoodDoughPastryBaseRaw = сырая основа для выпечки .desc = Перед использованием необходимо приготовить. ent-FoodDoughPastryBase = основа для выпечки @@ -82,3 +86,5 @@ ent-FoodCocoaBeans = какао-бобы .desc = Шоколада много не бывает! ent-FoodCroissantRaw = сырой круассан .desc = Маслянистая, слоистая вкуснятина, ожидающая своего часа. +ent-FoodCroissantRawCotton = raw cotton croissant + .desc = Buttery, flaky, fibery goodness waiting to happen. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl index 3f81d3643bcf..104cf0ce1a17 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/hand_teleporter.ftl @@ -1,5 +1,5 @@ ent-HandTeleporter = ручной телепортер .desc = Фирменный предмет Nanotrasen — лучшая технология блюспейс. Инструкция: Используйте один раз, чтобы создать портал, который телепортируется случайным образом. Используйте еще раз, чтобы связать его с порталом в вашем текущем местоположении. Используйте снова, чтобы очистить все порталы. ent-HandTeleporterAdmeme = межпространственный телепортер - .desc = позволяет Открывать стабильные портальные ворота, не ограниченные расстоянием + .desc = Позволяет Открывать стабильные портальные ворота, не ограниченные расстоянием. .suffix = Адмемы diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl index 70aa86adfa52..c9dfb3f6b553 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/pda.ftl @@ -148,4 +148,7 @@ ent-SeniorOfficerPDA = КПК офицера-инструктора ent-PiratePDA = КПК пирата .desc = Яррр! ent-SyndiAgentPDA = КПК агента синдиката - .desc = В те дни, когда лечение обычных агентов Синдиката недостаточно, попробуйте лечить Ядерных оперативников! \ No newline at end of file + .desc = В те дни, когда лечение обычных агентов Синдиката недостаточно, попробуйте лечить Ядерных оперативников! +ent-ChameleonPDA = КПК ассистента + .desc = Почему он не серый? + .suffix = Хамелеон diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl index b4fbca8b6b36..d1ec080d2a3b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/station_beacon.ftl @@ -30,6 +30,9 @@ ent-DefaultStationBeaconSecurity = { ent-DefaultStationBeacon } ent-DefaultStationBeaconBrig = { ent-DefaultStationBeaconSecurity } .suffix = Бриг .desc = { ent-DefaultStationBeaconSecurity.desc } +ent-DefaultStationBeaconBrigMed = { ent-DefaultStationBeaconSecurity } + .suffix = Бриг мед + .desc = { ent-DefaultStationBeaconSecurity.desc } ent-DefaultStationBeaconWardensOffice = { ent-DefaultStationBeaconSecurity } .suffix = Офис смотрителя .desc = { ent-DefaultStationBeaconSecurity.desc } @@ -75,6 +78,12 @@ ent-DefaultStationBeaconMorgue = { ent-DefaultStationBeaconMedical } ent-DefaultStationBeaconSurgery = { ent-DefaultStationBeaconMedical } .suffix = Операционная .desc = { ent-DefaultStationBeaconMedical.desc } +ent-DefaultStationBeaconPsychology = { ent-DefaultStationBeaconMedical } + .suffix = Психология + .desc = { ent-DefaultStationBeaconMedical.desc } +ent-DefaultStationBeaconClinic = { ent-DefaultStationBeaconMedical } + .suffix = Клиника + .desc = { ent-DefaultStationBeaconMedical.desc } ent-DefaultStationBeaconScience = { ent-DefaultStationBeacon } .suffix = Научный отдел .desc = { ent-DefaultStationBeacon.desc } @@ -171,12 +180,21 @@ ent-DefaultStationBeaconAISatellite = { ent-DefaultStationBeaconAI } ent-DefaultStationBeaconAICore = { ent-DefaultStationBeaconAI } .suffix = Ядро ИИ .desc = { ent-DefaultStationBeaconAI.desc } +ent-DefaultStationBeaconAIUpload = { ent-DefaultStationBeaconAI } + .suffix = Загрузка ИИ + .desc = { ent-DefaultStationBeaconAI.desc } +ent-DefaultStationBeaconAIPower = { ent-DefaultStationBeaconAI } + .suffix = Питание ИИ + .desc = { ent-DefaultStationBeaconAI.desc } ent-DefaultStationBeaconArrivals = { ent-DefaultStationBeacon } .suffix = Прибытие .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEvac = { ent-DefaultStationBeacon } .suffix = Эвакуация .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconDockingArm = { ent-DefaultStationBeacon } + .suffix = Стыковочный рукав + .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconEVAStorage = { ent-DefaultStationBeacon } .suffix = Хранилище EVA .desc = { ent-DefaultStationBeacon.desc } @@ -186,6 +204,9 @@ ent-DefaultStationBeaconChapel = { ent-DefaultStationBeacon } ent-DefaultStationBeaconLibrary = { ent-DefaultStationBeacon } .suffix = Библиотека .desc = { ent-DefaultStationBeacon.desc } +ent-DefaultStationBeaconReporter = { ent-DefaultStationBeacon } + .suffix = Репортёр + .desc = { ent-DefaultStationBeacon.desc } ent-DefaultStationBeaconTheater = { ent-DefaultStationBeacon } .suffix = Театр .desc = { ent-DefaultStationBeacon.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryopod.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl similarity index 100% rename from Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryopod.ftl rename to Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/cryogenic_sleep_unit.ftl diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl index 4d209793c43b..3c85b9f57677 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/doors/airlocks/access.ftl @@ -346,6 +346,9 @@ ent-AirlockMaintTheatreLocked = { ent-AirlockMaint } ent-AirlockMaintKitchenLocked = { ent-AirlockMaint } .suffix = Кухня, Закрыт .desc = { ent-AirlockMaint.desc } +ent-AirlockMaintKitchenHydroLocked = { ent-AirlockMaintServiceLocked } + .suffix = Кухня/Гидропоника, Закрыт + .desc = { ent-AirlockMaintServiceLocked.desc } ent-AirlockMaintIntLocked = { ent-AirlockMaint } .suffix = Интерьер, Закрыт .desc = { ent-AirlockMaint.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl index 6b903ec5876b..8b29a46663d3 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/machines/holopad.ftl @@ -7,7 +7,7 @@ ent-HolopadUnlimitedRange = квантово-запутывающий голоп ent-HolopadBluespace = блюспейс голопад .desc = Экспериментальное напольное устройство для проецирования голографических изображений через блюспейс. .suffix = Неограниченный диапазон -ent-HolopadHologram = { "" } +ent-HolopadHologram = голограмма .suffix = НЕ МАППИТЬ .desc = { "" } ent-HolopadGeneralTools = { ent-Holopad } @@ -124,6 +124,9 @@ ent-HolopadMedicalFront = { ent-Holopad } ent-HolopadMedicalBreakroom = { ent-Holopad } .suffix = Медицинская комната отдыха .desc = { ent-Holopad.desc } +ent-HolopadMedicalClinic = { ent-Holopad } + .suffix = Медклиника + .desc = { ent-Holopad.desc } ent-HolopadCargoFront = { ent-Holopad } .suffix = Карго перед .desc = { ent-Holopad.desc } diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl index 72542f24d2ba..4539514995bb 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/structures/walls/walls.ftl @@ -36,7 +36,7 @@ ent-WallPlastitaniumDiagonalIndestructible = пластитановая стен .suffix = diagonal, indestructible ent-WallReinforced = укреплённая стена .desc = { ent-BaseWall.desc } -ent-WallReinforcedRust = укреплённая стена +ent-WallReinforcedRust = { ent-WallReinforced } .suffix = Ржавая .desc = { ent-WallReinforced.desc } ent-WallReinforcedDiagonal = укреплённая стена @@ -57,7 +57,7 @@ ent-WallShuttle = стена шаттла ent-WallShuttleInterior = стена шаттла .suffix = Внутренняя .desc = { ent-BaseWall.desc } -ent-WallSolidRust = обычная стена +ent-WallSolidRust = { ent-WallSolid } .suffix = Ржавая .desc = { ent-WallSolid.desc } ent-WallSolidDiagonal = обычная стена diff --git a/Resources/Locale/ru-RU/starshine/ss14-ru/actions/types.ftl b/Resources/Locale/ru-RU/starshine/ss14-ru/actions/types.ftl new file mode 100644 index 000000000000..3c2164a6ac4f --- /dev/null +++ b/Resources/Locale/ru-RU/starshine/ss14-ru/actions/types.ftl @@ -0,0 +1,2 @@ +ent-ActionWoundLicking = Зализать рану + .desc = Остановить кровотечение, зализывав раны. diff --git a/Resources/Locale/ru-RU/telephone/telephone.ftl b/Resources/Locale/ru-RU/telephone/telephone.ftl index 9e042a8ca61e..16b577a20941 100644 --- a/Resources/Locale/ru-RU/telephone/telephone.ftl +++ b/Resources/Locale/ru-RU/telephone/telephone.ftl @@ -2,6 +2,10 @@ chat-telephone-message-wrap = [color={ $color }][bold]{ $name }[/bold] { $verb }, [font={ $fontType } size={ $fontSize }]"{ $message }"[/font][/color] chat-telephone-message-wrap-bold = [color={ $color }][bold]{ $name }[/bold] { $verb }, [font={ $fontType } size={ $fontSize }][bold]"{ $message }"[/bold][/font][/color] # Caller ID -chat-telephone-unknown-caller = [color={ $color }][font={ $fontType } size={ $fontSize }][bolditalic]Unknown caller[/bolditalic][/font][/color] +chat-telephone-unknown-caller = [color={ $color }][font={ $fontType } size={ $fontSize }][bolditalic]Неизвестный абонент[/bolditalic][/font][/color] chat-telephone-caller-id-with-job = [color={ $color }][font={ $fontType } size={ $fontSize }][bold]{ CAPITALIZE($callerName) } ({ CAPITALIZE($callerJob) })[/bold][/font][/color] chat-telephone-caller-id-without-job = [color={ $color }][font={ $fontType } size={ $fontSize }][bold]{ CAPITALIZE($callerName) }[/bold][/font][/color] +chat-telephone-unknown-device = [color={ $color }][font={ $fontType } size={ $fontSize }][bolditalic]Неизвестный источник[/bolditalic][/font][/color] +chat-telephone-device-id = [color={ $color }][font={ $fontType } size={ $fontSize }][bold]{ CAPITALIZE($deviceName) }[/bold][/font][/color] +# Chat text +chat-telephone-name-relay = { $originalName } ({ $speaker }) diff --git a/Resources/Locale/ru-RU/ui/transfer-amount.ftl b/Resources/Locale/ru-RU/ui/transfer-amount.ftl index 4864b4deb3bf..2b786d323dfe 100644 --- a/Resources/Locale/ru-RU/ui/transfer-amount.ftl +++ b/Resources/Locale/ru-RU/ui/transfer-amount.ftl @@ -1,5 +1,6 @@ ### Loc for the transfer amount eui window + ## Title ui-transfer-amount-title = Изменить перемещаемое количество diff --git a/Resources/Locale/ru-RU/verbs/invoke-verb-command.ftl b/Resources/Locale/ru-RU/verbs/invoke-verb-command.ftl index e8d06c3ae582..b748505059b4 100644 --- a/Resources/Locale/ru-RU/verbs/invoke-verb-command.ftl +++ b/Resources/Locale/ru-RU/verbs/invoke-verb-command.ftl @@ -1,5 +1,6 @@ ### Localization used for the invoke verb command. + # Mostly help + error messages. invoke-verb-command-description = Вызывает verb с заданным именем на сущности, с сущностью игрока diff --git a/Resources/Locale/ru-RU/verbs/list-verbs-command.ftl b/Resources/Locale/ru-RU/verbs/list-verbs-command.ftl index 7811b4b3e5e8..fc2330408ffc 100644 --- a/Resources/Locale/ru-RU/verbs/list-verbs-command.ftl +++ b/Resources/Locale/ru-RU/verbs/list-verbs-command.ftl @@ -1,5 +1,6 @@ ### Localization used for the list verbs command. + # Mostly help + error messages. list-verbs-command-description = Перечисляет все verbs, которые игрок может использовать на данной сущности. diff --git a/Resources/Locale/ru-RU/voting/vote-commands.ftl b/Resources/Locale/ru-RU/voting/vote-commands.ftl index 53c9dfb672fd..3f8f7553ca69 100644 --- a/Resources/Locale/ru-RU/voting/vote-commands.ftl +++ b/Resources/Locale/ru-RU/voting/vote-commands.ftl @@ -1,5 +1,6 @@ ### Voting system related console commands + ## 'createvote' command cmd-createvote-desc = Создает голосование diff --git a/Resources/Maps/Shuttles/cargo_elkridge.yml b/Resources/Maps/Shuttles/cargo_elkridge.yml new file mode 100644 index 000000000000..975f46795d12 --- /dev/null +++ b/Resources/Maps/Shuttles/cargo_elkridge.yml @@ -0,0 +1,1315 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 98: FloorSteel + 112: FloorTechMaint + 113: FloorTechMaint2 + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Cargo shuttle + - type: Transform + pos: -0.453125,-0.53125 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: YgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAcQAAAAAAggAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAcQAAAAAAggAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAcQAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAggAAAAAAYgAAAAAAggAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 4: 1,5 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 5: -2,5 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 6: 1,-4 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 7: -2,-4 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 16: 1,4 + 17: 1,3 + 19: 1,0 + 21: 1,-3 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 0: -1,5 + 1: 0,5 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 2: -1,-4 + 3: 0,-4 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 8: -2,-3 + 9: -2,-2 + 10: -2,-1 + 11: -2,0 + 12: -2,1 + 13: -2,2 + 14: -2,3 + 15: -2,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 45: -2,-4 + 46: 1,-2 + 47: -2,-1 + 48: -2,2 + 49: -1,4 + 50: 0,6 + 51: 1,5 + 52: 0,-6 + 53: -1,-5 + 54: -4,-3 + 55: -4,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 70: -2,4 + 71: 1,4 + 72: -1,0 + 73: 1,0 + 74: -4,-1 + 75: -1,-4 + 76: 0,-5 + 77: -1,-6 + 78: 1,-3 + 79: -2,0 + 80: -1,5 + 85: 2,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 81: 0,5 + 82: 1,1 + 83: -2,-2 + 84: -3,-2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 56: -4,-2 + 57: 0,-4 + 58: -2,-3 + 59: 1,-1 + 60: 0,0 + 61: -2,1 + 62: -2,3 + 63: 0,4 + 64: 1,3 + 65: 2,2 + 66: 2,-1 + 67: 1,-4 + 68: -1,6 + 69: -2,5 + - node: + color: '#D4D4D496' + id: WarnLineE + decals: + 38: 1,1 + 39: 1,-1 + - node: + color: '#D4D4D496' + id: WarnLineGreyscaleN + decals: + 40: -1,-5 + 41: 0,-5 + - node: + color: '#D4D4D496' + id: WarnLineGreyscaleS + decals: + 42: -1,6 + 43: 0,6 + 44: -4,0 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 13171 + 0,-1: + 0: 29491 + -1,0: + 0: 52429 + 0,1: + 0: 307 + 1: 16384 + -1,1: + 0: 2252 + 1: 8192 + -1,-1: + 0: 57308 + 0,-2: + 0: 4352 + 1: 1088 + -1,-2: + 0: 34816 + 1: 544 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: CargoShuttle +- proto: AirAlarm + entities: + - uid: 87 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - type: DeviceList + devices: + - 170 + - 154 + - 155 +- proto: AirCanister + entities: + - uid: 148 + components: + - type: Transform + anchored: True + pos: -0.5,6.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockCargoLocked + entities: + - uid: 44 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 170 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 87 +- proto: APCBasic + entities: + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 171 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 3 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 99 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: -1.5,4.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 +- proto: CableHV + entities: + - uid: 90 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: CableMV + entities: + - uid: 92 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: CargoPallet + entities: + - uid: 12 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 13 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 62 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,5.5 + parent: 1 +- proto: ComputerShuttleCargo + entities: + - uid: 70 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 159 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 164 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 165 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 166 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 167 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 168 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 169 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 151 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 163 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 87 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 87 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 85 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 86 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 +- proto: Grille + entities: + - uid: 25 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 36 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 84 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 2 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 33 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 153 + components: + - type: Transform + anchored: True + pos: 0.5,6.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: SubstationBasic + entities: + - uid: 89 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 75 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 +- proto: Thruster + entities: + - uid: 78 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 18 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 10: + - Left: Forward + - Right: Reverse + - Middle: Off + 11: + - Left: Forward + - Right: Reverse + - Middle: Off + 6: + - Left: Open + - Right: Open + - Middle: Close + - uid: 27 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 8: + - Left: Forward + - Right: Reverse + - Middle: Off + 9: + - Left: Forward + - Right: Reverse + - Middle: Off + 3: + - Left: Open + - Right: Open + - Middle: Close +- proto: WallShuttle + entities: + - uid: 14 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 17 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 38 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 39 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 40 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 45 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 63 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 +... diff --git a/Resources/Maps/Shuttles/emergency_amber.yml b/Resources/Maps/Shuttles/emergency_amber.yml index 63b5b8fc64bc..df0a4573b053 100644 --- a/Resources/Maps/Shuttles/emergency_amber.yml +++ b/Resources/Maps/Shuttles/emergency_amber.yml @@ -17,7 +17,7 @@ entities: - uid: 1 components: - type: MetaData - name: NT Evac Box + name: NT Evac Brick - type: Transform parent: invalid - type: MapGrid @@ -47,6 +47,11 @@ entities: bodyType: Dynamic - type: Fixtures fixtures: {} + - type: DeviceNetwork + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer + deviceNetId: Wireless - type: OccluderTree - type: SpreaderGrid - type: Shuttle diff --git a/Resources/Maps/Shuttles/emergency_crimson.yml b/Resources/Maps/Shuttles/emergency_crimson.yml new file mode 100644 index 000000000000..3a507b0ddc34 --- /dev/null +++ b/Resources/Maps/Shuttles/emergency_crimson.yml @@ -0,0 +1,3418 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 31: FloorDark + 1: FloorDarkMono + 3: FloorGrass + 79: FloorReinforced + 93: FloorSteel + 108: FloorTechMaint + 112: FloorWhite + 2: FloorWhiteMono + 125: Lattice + 126: Plating +entities: +- proto: "" + entities: + - uid: 410 + components: + - type: MetaData + name: NT Evac Crimson + - type: Transform + pos: 0.5,0.5 + parent: invalid + - type: MapGrid + chunks: + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABHwAAAAABfgAAAAAAHwAAAAABXQAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABHwAAAAADAwAAAAAAHwAAAAAAXQAAAAABHwAAAAACAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACHwAAAAABAwAAAAAAHwAAAAACXQAAAAAAHwAAAAACAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADHwAAAAADAwAAAAAAHwAAAAABXQAAAAADHwAAAAABAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAHwAAAAADXQAAAAABHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAQAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAcAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAcAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,0: + ind: 0,0 + tiles: HwAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: DeviceNetwork + deviceNetId: Wireless + configurators: [] + deviceLists: [] + transmitFrequencyId: ShuttleTimer + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 543: -6,2 + 544: -4,2 + 546: 0,2 + 563: -2,2 + - node: + zIndex: 3 + color: '#FFFFFFFF' + id: Bot + decals: + 344: 0,0 + 345: 0,1 + 347: 0,3 + 348: 0,4 + 349: -2,4 + 350: -2,3 + 352: -2,1 + 353: -2,0 + 354: -4,0 + 355: -4,1 + 357: -4,3 + 358: -4,4 + 359: -6,4 + 360: -6,3 + 362: -6,1 + 363: -6,0 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 399: -3,13 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 88: 0,13 + 89: 1,11 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNe + decals: + 443: -3,9 + 444: -2,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 397: -6,13 + 398: -7,11 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 87: -1,13 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerNw + decals: + 442: -4,9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSe + decals: + 401: -6,9 + 449: -3,11 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 84: 1,9 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSe + decals: + 440: -2,7 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerSw + decals: + 402: -7,9 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 85: 0,9 + 448: -1,10 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteCornerSw + decals: + 79: -4,7 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 95: 0,11 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 445: -3,8 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 412: -6,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 454: -6,11 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 94: 0,10 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 450: -3,12 + 453: -6,10 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 90: 1,10 + 91: 0,12 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 405: -5,13 + 406: -4,13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 451: -4,11 + 452: -5,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 403: -7,10 + 404: -6,12 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 93: -1,12 + 447: -1,11 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineW + decals: + 446: -4,8 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 186: 1.5347023,-1.9726338 + 187: 1.5347023,6.027366 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Caution + decals: + 470: -7.5562744,-2.0020132 + 471: -7.537044,6.0062428 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 557: -5,3 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 559: -1,2 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 556: -5,1 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 562: -1,3 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 561: -5,2 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 560: -1,1 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 413: -6,8 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 552: -5,2 + - node: + color: '#FFFFFFFF' + id: Grassc2 + decals: + 553: -1,1 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 551: -5,3 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 550: -5,1 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 555: -1,3 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 554: -1,2 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 174: -7,-3 + 463: -7,7 + - node: + zIndex: 3 + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 197: -7,5 + 198: -7,-1 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 182: 1,-3 + - node: + zIndex: 3 + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 194: 1,7 + 195: 1,-1 + 196: 1,5 + - node: + color: '#52B4E996' + id: MonoOverlay + decals: + 419: 0,8 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 457: 0,7 + - node: + zIndex: 2 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 192: 1,7 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 504: -7,0 + 505: -7,1 + 506: -7,2 + 507: -7,3 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 441: -2,5 + - node: + zIndex: 3 + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 199: -1,5 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 508: 1,1 + 509: 1,2 + 510: 1,3 + 511: 1,4 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 522: -5,-1 + 523: -4,-1 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale270 + decals: + 500: -7,4 + 501: -7,3 + 502: -7,2 + 503: -7,1 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 436: -2,-1 + - node: + zIndex: 3 + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 203: -1,-1 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 461: -7,7 + 462: -6,7 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale90 + decals: + 496: 1,0 + 497: 1,1 + 498: 1,2 + 499: 1,3 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 423: -4,5 + 424: -5,5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 569: -4,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 565: -4,-3 + 566: -4,-4 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 437: -3,5 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 438: -3,7 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 525: -3,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 567: -3,-5 + 568: -2,-5 + - type: GridAtmosphere + version: 2 + data: + tiles: + -2,-1: + 0: 63088 + -2,0: + 0: 26214 + -2,1: + 0: 30454 + -2,2: + 0: 58980 + -2,3: + 1: 272 + 0: 204 + -1,0: + 0: 30583 + -1,1: + 0: 29431 + -1,2: + 0: 47159 + -1,3: + 0: 187 + -1,-1: + 0: 62071 + 0,0: + 0: 13107 + 0,1: + 0: 29555 + 0,2: + 0: 13105 + 0,3: + 0: 17 + 1: 1088 + -2,-2: + 1: 20736 + 0: 32768 + -1,-2: + 0: 61440 + 0,-2: + 0: 4096 + 1: 17408 + 0,-1: + 0: 29552 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: OccluderTree + - type: Shuttle + - type: RadiationGridResistance + - type: GravityShake + shakeTimes: 10 + - type: GasTileOverlay + - type: SpreaderGrid + - type: GridPathfinding + - type: NavMap +- proto: AirAlarm + entities: + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 410 + - type: DeviceList + devices: + - 285 + - 244 + - 312 + - uid: 305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 410 + - type: DeviceList + devices: + - 420 + - 418 + - 357 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 410 + - type: DeviceList + devices: + - 382 + - 435 + - 389 +- proto: AirCanister + entities: + - uid: 119 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 410 +- proto: AirlockCommandGlassLocked + entities: + - uid: 76 + components: + - type: Transform + pos: -5.5,8.5 + parent: 410 +- proto: AirlockEngineeringLocked + entities: + - uid: 52 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 410 +- proto: AirlockGlassShuttle + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 410 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 410 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 410 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 410 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 410 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 410 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 410 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 410 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 132 + components: + - type: Transform + pos: 0.5,8.5 + parent: 410 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 410 +- proto: AirSensor + entities: + - uid: 285 + components: + - type: Transform + pos: -2.5,2.5 + parent: 410 + - type: DeviceNetwork + deviceLists: + - 220 + - uid: 418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,10.5 + parent: 410 + deviceLists: + - 305 + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 410 + - type: DeviceNetwork + deviceLists: + - 434 +- proto: APCHyperCapacity + entities: + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 410 + - uid: 254 + components: + - type: Transform + pos: -4.5,6.5 + parent: 410 +- proto: Ashtray + entities: + - uid: 130 + components: + - type: Transform + pos: -6.411743,10.477377 + parent: 410 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 410 + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 410 + - uid: 397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,5.5 + parent: 410 + - uid: 398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 410 + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 410 + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 410 + - uid: 401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 410 + - uid: 402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,7.5 + parent: 410 +- proto: BedsheetMedical + entities: + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 410 + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 410 +- proto: BoxFolderBlue + entities: + - uid: 451 + components: + - type: Transform + pos: -2.6054893,13.562216 + parent: 410 +- proto: BoxInflatable + entities: + - uid: 181 + components: + - type: Transform + pos: -2.14584,-3.2177773 + parent: 410 +- proto: CableApcExtension + entities: + - uid: 13 + components: + - type: Transform + pos: -2.5,6.5 + parent: 410 + - uid: 17 + components: + - type: Transform + pos: 1.5,6.5 + parent: 410 + - uid: 22 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 410 + - uid: 26 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 410 + - uid: 29 + components: + - type: Transform + pos: -5.5,14.5 + parent: 410 + - uid: 34 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 410 + - uid: 35 + components: + - type: Transform + pos: -6.5,12.5 + parent: 410 + - uid: 36 + components: + - type: Transform + pos: -5.5,7.5 + parent: 410 + - uid: 38 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 410 + - uid: 49 + components: + - type: Transform + pos: -3.5,14.5 + parent: 410 + - uid: 50 + components: + - type: Transform + pos: -2.5,14.5 + parent: 410 + - uid: 51 + components: + - type: Transform + pos: -6.5,11.5 + parent: 410 + - uid: 54 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 410 + - uid: 65 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 410 + - uid: 66 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 410 + - uid: 68 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 410 + - uid: 74 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 410 + - uid: 75 + components: + - type: Transform + pos: -4.5,5.5 + parent: 410 + - uid: 83 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 410 + - uid: 91 + components: + - type: Transform + pos: 0.5,11.5 + parent: 410 + - uid: 111 + components: + - type: Transform + pos: -4.5,11.5 + parent: 410 + - uid: 114 + components: + - type: Transform + pos: -5.5,8.5 + parent: 410 + - uid: 125 + components: + - type: Transform + pos: -5.5,5.5 + parent: 410 + - uid: 126 + components: + - type: Transform + pos: -4.5,14.5 + parent: 410 + - uid: 134 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 410 + - uid: 137 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 410 + - uid: 156 + components: + - type: Transform + pos: -4.5,6.5 + parent: 410 + - uid: 160 + components: + - type: Transform + pos: -0.5,5.5 + parent: 410 + - uid: 161 + components: + - type: Transform + pos: 0.5,5.5 + parent: 410 + - uid: 162 + components: + - type: Transform + pos: 1.5,7.5 + parent: 410 + - uid: 163 + components: + - type: Transform + pos: -2.5,5.5 + parent: 410 + - uid: 164 + components: + - type: Transform + pos: -3.5,5.5 + parent: 410 + - uid: 165 + components: + - type: Transform + pos: -1.5,5.5 + parent: 410 + - uid: 177 + components: + - type: Transform + pos: 0.5,8.5 + parent: 410 + - uid: 178 + components: + - type: Transform + pos: 0.5,7.5 + parent: 410 + - uid: 186 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 410 + - uid: 189 + components: + - type: Transform + pos: -6.5,6.5 + parent: 410 + - uid: 196 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 410 + - uid: 200 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 410 + - uid: 204 + components: + - type: Transform + pos: -3.5,11.5 + parent: 410 + - uid: 206 + components: + - type: Transform + pos: 2.5,11.5 + parent: 410 + - uid: 208 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 410 + - uid: 210 + components: + - type: Transform + pos: 0.5,9.5 + parent: 410 + - uid: 212 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 410 + - uid: 215 + components: + - type: Transform + pos: -6.5,4.5 + parent: 410 + - uid: 218 + components: + - type: Transform + pos: -6.5,13.5 + parent: 410 + - uid: 221 + components: + - type: Transform + pos: 2.5,9.5 + parent: 410 + - uid: 222 + components: + - type: Transform + pos: 2.5,10.5 + parent: 410 + - uid: 223 + components: + - type: Transform + pos: -6.5,14.5 + parent: 410 + - uid: 225 + components: + - type: Transform + pos: 0.5,12.5 + parent: 410 + - uid: 235 + components: + - type: Transform + pos: 1.5,9.5 + parent: 410 + - uid: 242 + components: + - type: Transform + pos: 1.5,3.5 + parent: 410 + - uid: 275 + components: + - type: Transform + pos: 0.5,10.5 + parent: 410 + - uid: 294 + components: + - type: Transform + pos: -5.5,11.5 + parent: 410 + - uid: 319 + components: + - type: Transform + pos: -5.5,9.5 + parent: 410 + - uid: 326 + components: + - type: Transform + pos: -5.5,10.5 + parent: 410 + - uid: 380 + components: + - type: Transform + pos: -2.5,7.5 + parent: 410 + - uid: 383 + components: + - type: Transform + pos: -2.5,8.5 + parent: 410 + - uid: 431 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 410 + - uid: 433 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 410 + - uid: 457 + components: + - type: Transform + pos: -6.5,5.5 + parent: 410 + - uid: 458 + components: + - type: Transform + pos: -6.5,7.5 + parent: 410 + - uid: 459 + components: + - type: Transform + pos: -6.5,3.5 + parent: 410 + - uid: 460 + components: + - type: Transform + pos: -6.5,0.5 + parent: 410 + - uid: 461 + components: + - type: Transform + pos: -6.5,1.5 + parent: 410 + - uid: 462 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 410 + - uid: 463 + components: + - type: Transform + pos: 1.5,0.5 + parent: 410 + - uid: 464 + components: + - type: Transform + pos: 1.5,1.5 + parent: 410 + - uid: 465 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 410 + - uid: 466 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 410 + - uid: 467 + components: + - type: Transform + pos: 1.5,4.5 + parent: 410 + - uid: 468 + components: + - type: Transform + pos: 1.5,5.5 + parent: 410 + - uid: 469 + components: + - type: Transform + pos: -2.5,4.5 + parent: 410 + - uid: 470 + components: + - type: Transform + pos: -2.5,3.5 + parent: 410 + - uid: 471 + components: + - type: Transform + pos: -2.5,0.5 + parent: 410 + - uid: 472 + components: + - type: Transform + pos: -2.5,1.5 + parent: 410 +- proto: CableHV + entities: + - uid: 23 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 410 + - uid: 48 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 410 + - uid: 234 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 410 + - uid: 236 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 410 + - uid: 323 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 410 + - uid: 438 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 410 + - uid: 439 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 410 +- proto: CableMV + entities: + - uid: 5 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 410 + - uid: 24 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 410 + - uid: 40 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 410 + - uid: 42 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 410 + - uid: 43 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 410 + - uid: 56 + components: + - type: Transform + pos: -6.5,3.5 + parent: 410 + - uid: 61 + components: + - type: Transform + pos: -6.5,1.5 + parent: 410 + - uid: 82 + components: + - type: Transform + pos: -6.5,4.5 + parent: 410 + - uid: 84 + components: + - type: Transform + pos: -6.5,0.5 + parent: 410 + - uid: 89 + components: + - type: Transform + pos: -6.5,2.5 + parent: 410 + - uid: 96 + components: + - type: Transform + pos: -6.5,5.5 + parent: 410 + - uid: 97 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 410 + - uid: 103 + components: + - type: Transform + pos: -5.5,5.5 + parent: 410 + - uid: 115 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 410 + - uid: 122 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 410 + - uid: 227 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 410 + - uid: 228 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 410 + - uid: 229 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 410 + - uid: 266 + components: + - type: Transform + pos: -4.5,6.5 + parent: 410 + - uid: 314 + components: + - type: Transform + pos: -4.5,5.5 + parent: 410 + - uid: 322 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 410 + - uid: 378 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 410 +- proto: CableTerminal + entities: + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 410 +- proto: Catwalk + entities: + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 410 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,13.5 + parent: 410 + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 410 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 410 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 410 + - uid: 317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 410 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 410 + - uid: 384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 410 + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 410 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 410 +- proto: Chair + entities: + - uid: 450 + components: + - type: Transform + pos: -1.5,8.5 + parent: 410 +- proto: ChairOfficeLight + entities: + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5779216,10.282177 + parent: 410 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.48648357,13.089132 + parent: 410 +- proto: ChairPilotSeat + entities: + - uid: 1 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 410 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 410 + - uid: 55 + components: + - type: Transform + pos: -6.5,11.5 + parent: 410 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 410 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 410 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 410 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 410 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 410 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 410 + - uid: 241 + components: + - type: Transform + pos: -2.5,9.5 + parent: 410 + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 410 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 410 + - uid: 253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,7.5 + parent: 410 + - uid: 258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 410 + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,4.5 + parent: 410 + - uid: 298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 410 + - uid: 302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 410 + - uid: 306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 410 + - uid: 310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 410 + - uid: 311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 410 + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 410 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 410 + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 410 + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 410 + - uid: 330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 410 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 410 + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 410 + - uid: 341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,4.5 + parent: 410 + - uid: 445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 410 + - uid: 452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 410 +- proto: CigarGold + entities: + - uid: 20 + components: + - type: Transform + pos: -6.620076,10.550344 + parent: 410 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 19 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 410 + - uid: 71 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 410 + - uid: 278 + components: + - type: Transform + pos: 1.5,6.5 + parent: 410 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 277 + components: + - type: Transform + pos: -6.5,6.5 + parent: 410 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 135 + components: + - type: Transform + pos: 0.5,14.5 + parent: 410 + - uid: 274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 410 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 410 + - uid: 381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 410 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 410 + - uid: 209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 410 + - uid: 251 + components: + - type: Transform + pos: -0.5,14.5 + parent: 410 +- proto: ComputerComms + entities: + - uid: 63 + components: + - type: Transform + pos: -5.5,13.5 + parent: 410 +- proto: ComputerEmergencyShuttle + entities: + - uid: 45 + components: + - type: Transform + pos: -4.5,13.5 + parent: 410 +- proto: ComputerRadar + entities: + - uid: 79 + components: + - type: Transform + pos: -3.5,13.5 + parent: 410 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 353 + components: + - type: Transform + pos: 1.5,12.5 + parent: 410 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 455 + components: + - type: Transform + pos: -6.338826,10.977726 + parent: 410 +- proto: DrinkGlass + entities: + - uid: 456 + components: + - type: Transform + pos: -6.661743,10.842215 + parent: 410 +- proto: EmergencyLight + entities: + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 410 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 410 + - uid: 423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 410 +- proto: FireAxeCabinetFilled + entities: + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 410 +- proto: GasOutletInjector + entities: + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 410 +- proto: GasPassiveVent + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-4.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 188 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 201 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 362 + components: + - type: Transform + pos: 1.5,9.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,11.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 148 + components: + - type: Transform + pos: -2.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 110 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 116 + components: + - type: Transform + pos: -2.5,0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 117 + components: + - type: Transform + pos: -3.5,0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 123 + components: + - type: Transform + pos: 0.5,6.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 127 + components: + - type: Transform + pos: -5.5,3.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 128 + components: + - type: Transform + pos: -5.5,1.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 133 + components: + - type: Transform + pos: -5.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 151 + components: + - type: Transform + pos: -3.5,2.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 157 + components: + - type: Transform + pos: 0.5,2.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 158 + components: + - type: Transform + pos: 0.5,0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 159 + components: + - type: Transform + pos: -3.5,4.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 167 + components: + - type: Transform + pos: -5.5,4.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 168 + components: + - type: Transform + pos: -3.5,3.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 175 + components: + - type: Transform + pos: 0.5,3.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 180 + components: + - type: Transform + pos: -6.5,4.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 182 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 183 + components: + - type: Transform + pos: -6.5,2.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 185 + components: + - type: Transform + pos: 0.5,4.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 191 + components: + - type: Transform + pos: -5.5,0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,10.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 193 + components: + - type: Transform + pos: -6.5,1.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 199 + components: + - type: Transform + pos: -3.5,1.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 207 + components: + - type: Transform + pos: 0.5,7.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 213 + components: + - type: Transform + pos: 0.5,1.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 217 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,10.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 321 + components: + - type: Transform + pos: -2.5,4.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 358 + components: + - type: Transform + pos: -6.5,0.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 390 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 391 + components: + - type: Transform + pos: -6.5,3.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 413 + components: + - type: Transform + pos: 1.5,6.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 415 + components: + - type: Transform + pos: 1.5,7.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 416 + components: + - type: Transform + pos: 1.5,8.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 426 + components: + - type: Transform + pos: -6.5,10.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 427 + components: + - type: Transform + pos: -6.5,9.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 428 + components: + - type: Transform + pos: -6.5,8.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 429 + components: + - type: Transform + pos: -6.5,7.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 430 + components: + - type: Transform + pos: -6.5,6.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 443 + components: + - type: Transform + pos: -5.5,2.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,5.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 410 +- proto: GasVentPump + entities: + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 410 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 244 + components: + - type: Transform + pos: -2.5,1.5 + parent: 410 + - type: DeviceNetwork + deviceLists: + - 220 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 357 + components: + - type: Transform + pos: 0.5,11.5 + parent: 410 + deviceLists: + - 305 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 410 + - type: DeviceNetwork + deviceLists: + - 434 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 410 + - type: DeviceNetwork + deviceLists: + - 220 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 347 + components: + - type: Transform + pos: -2.5,7.5 + parent: 410 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 410 + - type: DeviceNetwork + deviceLists: + - 434 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,9.5 + parent: 410 + deviceLists: + - 305 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 203 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 410 + - uid: 224 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 410 +- proto: GeneratorWallmountAPU + entities: + - uid: 440 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 410 + - uid: 441 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 410 +- proto: GravityGeneratorMini + entities: + - uid: 345 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 410 +- proto: Grille + entities: + - uid: 44 + components: + - type: Transform + pos: 2.5,10.5 + parent: 410 + - uid: 95 + components: + - type: Transform + pos: -2.5,14.5 + parent: 410 + - uid: 101 + components: + - type: Transform + pos: 2.5,3.5 + parent: 410 + - uid: 104 + components: + - type: Transform + pos: -6.5,14.5 + parent: 410 + - uid: 124 + components: + - type: Transform + pos: -6.5,8.5 + parent: 410 + - uid: 138 + components: + - type: Transform + pos: 2.5,9.5 + parent: 410 + - uid: 155 + components: + - type: Transform + pos: 2.5,1.5 + parent: 410 + - uid: 169 + components: + - type: Transform + pos: 2.5,11.5 + parent: 410 + - uid: 171 + components: + - type: Transform + pos: -7.5,1.5 + parent: 410 + - uid: 173 + components: + - type: Transform + pos: -7.5,3.5 + parent: 410 + - uid: 237 + components: + - type: Transform + pos: 1.5,8.5 + parent: 410 + - uid: 260 + components: + - type: Transform + pos: -5.5,14.5 + parent: 410 + - uid: 261 + components: + - type: Transform + pos: -6.5,13.5 + parent: 410 + - uid: 263 + components: + - type: Transform + pos: 2.5,2.5 + parent: 410 + - uid: 281 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 410 + - uid: 288 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 410 + - uid: 295 + components: + - type: Transform + pos: -7.5,2.5 + parent: 410 + - uid: 296 + components: + - type: Transform + pos: -4.5,14.5 + parent: 410 + - uid: 297 + components: + - type: Transform + pos: -3.5,14.5 + parent: 410 + - uid: 301 + components: + - type: Transform + pos: -3.5,6.5 + parent: 410 + - uid: 308 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 410 + - uid: 344 + components: + - type: Transform + pos: -7.5,6.5 + parent: 410 + - uid: 346 + components: + - type: Transform + pos: 2.5,6.5 + parent: 410 + - uid: 350 + components: + - type: Transform + pos: -1.5,6.5 + parent: 410 + - uid: 356 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 410 + - uid: 449 + components: + - type: Transform + pos: -6.5,12.5 + parent: 410 + - uid: 473 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 410 +- proto: Gyroscope + entities: + - uid: 352 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 410 +- proto: HandheldHealthAnalyzerUnpowered + entities: + - uid: 370 + components: + - type: Transform + pos: 1.5254471,10.577127 + parent: 410 +- proto: HolofanProjector + entities: + - uid: 303 + components: + - type: Transform + pos: -2.61459,-2.4521523 + parent: 410 +- proto: LockerEvidence + entities: + - uid: 424 + components: + - type: Transform + pos: -3.5,9.5 + parent: 410 +- proto: LockerMedicineFilled + entities: + - uid: 140 + components: + - type: Transform + pos: -0.5,11.5 + parent: 410 +- proto: MedicalBed + entities: + - uid: 365 + components: + - type: Transform + pos: 1.5,9.5 + parent: 410 + - uid: 407 + components: + - type: Transform + pos: -0.5,13.5 + parent: 410 +- proto: MedkitFilled + entities: + - uid: 37 + components: + - type: Transform + pos: -0.4916364,12.55368 + parent: 410 +- proto: Paper + entities: + - uid: 70 + components: + - type: Transform + pos: -2.3867393,13.229256 + parent: 410 + - uid: 304 + components: + - type: Transform + pos: -2.5273643,13.057381 + parent: 410 +- proto: PottedPlant10 + entities: + - uid: 243 + components: + - type: Transform + pos: -2.5,11.5 + parent: 410 +- proto: Poweredlight + entities: + - uid: 47 + components: + - type: Transform + pos: -0.5,5.5 + parent: 410 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 410 + - uid: 264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 410 + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 410 + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 410 + - uid: 316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 410 + - uid: 355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,12.5 + parent: 410 + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 410 + - uid: 387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,8.5 + parent: 410 + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 410 + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 410 + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 410 + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 410 +- proto: Screen + entities: + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 410 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,4.5 + parent: 410 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,11.5 + parent: 410 +- proto: ShuttleWindow + entities: + - uid: 21 + components: + - type: Transform + pos: 2.5,3.5 + parent: 410 + - uid: 25 + components: + - type: Transform + pos: -0.5,3.5 + parent: 410 + - uid: 27 + components: + - type: Transform + pos: -1.5,6.5 + parent: 410 + - uid: 60 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 410 + - uid: 73 + components: + - type: Transform + pos: -3.5,6.5 + parent: 410 + - uid: 80 + components: + - type: Transform + pos: -4.5,1.5 + parent: 410 + - uid: 81 + components: + - type: Transform + pos: -7.5,2.5 + parent: 410 + - uid: 88 + components: + - type: Transform + pos: 2.5,1.5 + parent: 410 + - uid: 105 + components: + - type: Transform + pos: -3.5,14.5 + parent: 410 + - uid: 112 + components: + - type: Transform + pos: 2.5,2.5 + parent: 410 + - uid: 147 + components: + - type: Transform + pos: -7.5,1.5 + parent: 410 + - uid: 198 + components: + - type: Transform + pos: -7.5,3.5 + parent: 410 + - uid: 230 + components: + - type: Transform + pos: -5.5,14.5 + parent: 410 + - uid: 231 + components: + - type: Transform + pos: -6.5,14.5 + parent: 410 + - uid: 232 + components: + - type: Transform + pos: -6.5,13.5 + parent: 410 + - uid: 252 + components: + - type: Transform + pos: -6.5,8.5 + parent: 410 + - uid: 257 + components: + - type: Transform + pos: 1.5,8.5 + parent: 410 + - uid: 262 + components: + - type: Transform + pos: -4.5,14.5 + parent: 410 + - uid: 265 + components: + - type: Transform + pos: -7.5,6.5 + parent: 410 + - uid: 270 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 410 + - uid: 272 + components: + - type: Transform + pos: -0.5,2.5 + parent: 410 + - uid: 282 + components: + - type: Transform + pos: 2.5,9.5 + parent: 410 + - uid: 283 + components: + - type: Transform + pos: 2.5,10.5 + parent: 410 + - uid: 284 + components: + - type: Transform + pos: 2.5,11.5 + parent: 410 + - uid: 286 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 410 + - uid: 287 + components: + - type: Transform + pos: -0.5,1.5 + parent: 410 + - uid: 290 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 410 + - uid: 307 + components: + - type: Transform + pos: -2.5,14.5 + parent: 410 + - uid: 324 + components: + - type: Transform + pos: -4.5,2.5 + parent: 410 + - uid: 342 + components: + - type: Transform + pos: -4.5,3.5 + parent: 410 + - uid: 364 + components: + - type: Transform + pos: -7.5,-1.5 + parent: 410 + - uid: 409 + components: + - type: Transform + pos: -6.5,12.5 + parent: 410 + - uid: 421 + components: + - type: Transform + pos: 2.5,6.5 + parent: 410 +- proto: SignBridge + entities: + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 410 +- proto: SignEngineering + entities: + - uid: 444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 410 +- proto: SignMedical + entities: + - uid: 113 + components: + - type: Transform + pos: 1.5,8.5 + parent: 410 +- proto: SignSecurity + entities: + - uid: 190 + components: + - type: Transform + pos: -1.5,6.5 + parent: 410 +- proto: SMESBasic + entities: + - uid: 292 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 410 +- proto: StasisBed + entities: + - uid: 320 + components: + - type: Transform + pos: 1.5,11.5 + parent: 410 +- proto: SubstationWallBasic + entities: + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 410 +- proto: TableGlass + entities: + - uid: 86 + components: + - type: Transform + pos: 1.5,10.5 + parent: 410 + - uid: 374 + components: + - type: Transform + pos: -0.5,12.5 + parent: 410 +- proto: TableReinforced + entities: + - uid: 46 + components: + - type: Transform + pos: -2.5,12.5 + parent: 410 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 410 +- proto: TableWood + entities: + - uid: 16 + components: + - type: Transform + pos: -6.5,10.5 + parent: 410 +- proto: Thruster + entities: + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 410 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 410 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 410 + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 410 + - uid: 334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 410 + - uid: 335 + components: + - type: Transform + pos: -7.5,14.5 + parent: 410 + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 410 + - uid: 360 + components: + - type: Transform + pos: 2.5,14.5 + parent: 410 +- proto: VendingMachineMedical + entities: + - uid: 379 + components: + - type: Transform + pos: -0.5,10.5 + parent: 410 +- proto: VendingMachineWallMedical + entities: + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 410 +- proto: WallShuttle + entities: + - uid: 3 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 410 + - uid: 7 + components: + - type: Transform + pos: -7.5,0.5 + parent: 410 + - uid: 8 + components: + - type: Transform + pos: -4.5,4.5 + parent: 410 + - uid: 9 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 410 + - uid: 10 + components: + - type: Transform + pos: 2.5,4.5 + parent: 410 + - uid: 11 + components: + - type: Transform + pos: -7.5,4.5 + parent: 410 + - uid: 15 + components: + - type: Transform + pos: -7.5,8.5 + parent: 410 + - uid: 28 + components: + - type: Transform + pos: -0.5,9.5 + parent: 410 + - uid: 31 + components: + - type: Transform + pos: 0.5,14.5 + parent: 410 + - uid: 39 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 410 + - uid: 41 + components: + - type: Transform + pos: 2.5,0.5 + parent: 410 + - uid: 59 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 410 + - uid: 69 + components: + - type: Transform + pos: -0.5,14.5 + parent: 410 + - uid: 72 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 410 + - uid: 78 + components: + - type: Transform + pos: -1.5,13.5 + parent: 410 + - uid: 85 + components: + - type: Transform + pos: -1.5,12.5 + parent: 410 + - uid: 92 + components: + - type: Transform + pos: -1.5,14.5 + parent: 410 + - uid: 93 + components: + - type: Transform + pos: -4.5,8.5 + parent: 410 + - uid: 94 + components: + - type: Transform + pos: -4.5,6.5 + parent: 410 + - uid: 98 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 410 + - uid: 131 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 410 + - uid: 143 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 410 + - uid: 144 + components: + - type: Transform + pos: 2.5,8.5 + parent: 410 + - uid: 153 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 410 + - uid: 154 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 410 + - uid: 170 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 410 + - uid: 187 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 410 + - uid: 216 + components: + - type: Transform + pos: 1.5,12.5 + parent: 410 + - uid: 256 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 410 + - uid: 259 + components: + - type: Transform + pos: -0.5,6.5 + parent: 410 + - uid: 267 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 410 + - uid: 269 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 410 + - uid: 276 + components: + - type: Transform + pos: -0.5,0.5 + parent: 410 + - uid: 293 + components: + - type: Transform + pos: -1.5,11.5 + parent: 410 + - uid: 325 + components: + - type: Transform + pos: -3.5,10.5 + parent: 410 + - uid: 327 + components: + - type: Transform + pos: 2.5,12.5 + parent: 410 + - uid: 331 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 410 + - uid: 332 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 410 + - uid: 333 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 410 + - uid: 336 + components: + - type: Transform + pos: 1.5,14.5 + parent: 410 + - uid: 339 + components: + - type: Transform + pos: -4.5,0.5 + parent: 410 + - uid: 361 + components: + - type: Transform + pos: -4.5,10.5 + parent: 410 + - uid: 363 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 410 + - uid: 367 + components: + - type: Transform + pos: -0.5,8.5 + parent: 410 + - uid: 368 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 410 + - uid: 369 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 410 + - uid: 371 + components: + - type: Transform + pos: -7.5,10.5 + parent: 410 + - uid: 372 + components: + - type: Transform + pos: -1.5,9.5 + parent: 410 + - uid: 375 + components: + - type: Transform + pos: -1.5,10.5 + parent: 410 + - uid: 377 + components: + - type: Transform + pos: -4.5,7.5 + parent: 410 + - uid: 385 + components: + - type: Transform + pos: -4.5,9.5 + parent: 410 + - uid: 386 + components: + - type: Transform + pos: 1.5,13.5 + parent: 410 + - uid: 405 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 410 + - uid: 412 + components: + - type: Transform + pos: -7.5,9.5 + parent: 410 + - uid: 414 + components: + - type: Transform + pos: -7.5,11.5 + parent: 410 + - uid: 417 + components: + - type: Transform + pos: -2.5,10.5 + parent: 410 + - uid: 425 + components: + - type: Transform + pos: -0.5,7.5 + parent: 410 + - uid: 446 + components: + - type: Transform + pos: -7.5,12.5 + parent: 410 + - uid: 453 + components: + - type: Transform + pos: -0.5,4.5 + parent: 410 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 410 +- proto: WeaponCapacitorRecharger + entities: + - uid: 273 + components: + - type: Transform + pos: -2.5,12.5 + parent: 410 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 410 +- proto: WindowReinforcedDirectional + entities: + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 410 + - uid: 403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 410 + - uid: 448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,8.5 + parent: 410 +- proto: Wrench + entities: + - uid: 343 + components: + - type: Transform + pos: -2.4217896,-3.4986176 + parent: 410 +... diff --git a/Resources/Maps/Shuttles/emergency_elkridge.yml b/Resources/Maps/Shuttles/emergency_elkridge.yml new file mode 100644 index 000000000000..7e1cc2c67362 --- /dev/null +++ b/Resources/Maps/Shuttles/emergency_elkridge.yml @@ -0,0 +1,4908 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 32: FloorDark + 98: FloorSteel + 112: FloorTechMaint + 113: FloorTechMaint2 + 116: FloorWhite + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: NT Evac Log + - type: Transform + pos: -0.42093527,-0.86894274 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: IAAAAAAAIAAAAAAAIAAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAcQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAcQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAcAAAAAAAYgAAAAAAYgAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAcAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAcQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAYgAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAdAAAAAAAdAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAdAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAcQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAIAAAAAAAIAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#334E6DC8' + id: BrickTileSteelCornerNe + decals: + 61: 3,12 + 62: 4,10 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerNe + decals: + 110: 1,2 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNe + decals: + 76: -1,10 + - node: + color: '#334E6DC8' + id: BrickTileSteelCornerNw + decals: + 63: 1,12 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerNw + decals: + 112: -1,2 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNw + decals: + 75: -4,10 + - node: + color: '#334E6DC8' + id: BrickTileSteelCornerSe + decals: + 71: 4,8 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerSe + decals: + 113: 1,-2 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerSe + decals: + 81: -1,8 + - node: + color: '#334E6DC8' + id: BrickTileSteelCornerSw + decals: + 70: 1,8 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerSw + decals: + 114: -1,-2 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerSw + decals: + 82: -4,8 + - node: + color: '#334E6DC8' + id: BrickTileSteelInnerNe + decals: + 74: 3,10 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 65: 3,11 + 66: 4,9 + - node: + color: '#9FED5896' + id: BrickTileSteelLineE + decals: + 117: 1,1 + 118: 1,0 + 169: 1,-1 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineE + decals: + 79: -1,9 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineN + decals: + 64: 2,12 + - node: + color: '#9FED5896' + id: BrickTileSteelLineN + decals: + 116: 0,2 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineN + decals: + 77: -3,10 + 78: -2,10 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineS + decals: + 72: 2,8 + 73: 3,8 + - node: + color: '#9FED5896' + id: BrickTileSteelLineS + decals: + 115: 0,-2 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineS + decals: + 83: -3,8 + 84: -2,8 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineW + decals: + 67: 1,11 + 68: 1,10 + 69: 1,9 + - node: + color: '#9FED5896' + id: BrickTileSteelLineW + decals: + 120: -1,1 + 121: -1,0 + 122: -1,-1 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineW + decals: + 80: -4,9 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 98: -1,-8 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 86: 4,-8 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 99: -4,-8 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 85: 1,-8 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 100: -2,-12 + 101: -1,-11 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 89: 3,-12 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 102: -4,-10 + 103: -3,-12 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 87: 1,-11 + 88: 2,-12 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 105: -2,-11 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSe + decals: + 92: 3,-10 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 104: -3,-10 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSw + decals: + 90: 2,-11 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 108: -1,-9 + 109: -1,-10 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 91: 3,-11 + 93: 4,-9 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 96: -3,-8 + 97: -2,-8 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 94: 2,-8 + 95: 3,-8 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 106: -4,-9 + 107: -3,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 170: 0,-2 + 171: -1,-1 + 172: 0,0 + 173: -1,2 + 174: 1,2 + 175: -4,3 + 176: -3,1 + 177: -4,0 + 178: -3,-3 + 179: -4,-5 + 180: -3,-6 + 181: -1,-4 + 182: 1,-6 + 183: 4,-6 + 184: 2,-4 + 185: 4,-3 + 186: 3,-1 + 188: 4,2 + 189: 3,3 + 190: 3,6 + 192: 0,4 + 193: -4,5 + 194: -2,6 + 195: -2,4 + 196: -3,8 + 197: -4,9 + 198: -3,11 + 199: -1,12 + 200: -1,9 + 201: 2,8 + 202: 1,9 + 203: 1,12 + 204: 3,10 + 205: 3,12 + 206: 4,8 + 207: 1,-8 + 208: 3,-12 + 209: 1,-11 + 210: 3,-10 + 211: 4,-8 + 212: -2,-8 + 213: -4,-9 + 214: -2,-12 + 215: -1,-11 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 249: -3,10 + 250: -2,12 + 251: -2,8 + 252: -3,6 + 253: 0,5 + 254: 2,5 + 255: 4,-2 + 256: 3,-6 + 257: 0,-5 + 258: -3,-5 + 259: -4,-3 + 260: -4,1 + 261: -3,2 + 262: 0,1 + 263: -1,1 + 264: -3,-9 + 265: -2,-10 + 266: 2,-11 + 267: 3,-8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 268: -2,-9 + 269: -3,-11 + 270: 2,-8 + 271: 2,-6 + 272: 1,-5 + 273: -2,-5 + 274: -4,-1 + 275: -3,4 + 276: 1,5 + 277: 3,5 + 278: 4,3 + 279: 3,-2 + 280: 3,-4 + 281: 1,1 + 282: 1,-1 + 283: 3,9 + 284: -2,11 + 285: -3,9 + 286: -2,10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 216: -3,-12 + 217: -3,-10 + 218: -2,-11 + 219: -3,-8 + 220: 3,-11 + 221: 2,-9 + 222: 3,-5 + 223: -1,-5 + 224: -3,-4 + 225: -4,-2 + 226: -3,-1 + 227: -4,2 + 228: -3,3 + 229: -4,6 + 230: -2,5 + 231: -1,6 + 232: 1,6 + 233: 2,4 + 234: 4,5 + 235: 3,2 + 236: 4,1 + 237: 4,-1 + 238: 3,-3 + 239: 4,-5 + 240: 2,-5 + 241: 0,-1 + 242: 1,-2 + 243: 0,2 + 244: 2,0 + 245: -2,-1 + 246: -2,1 + 247: 2,10 + 248: 3,8 + - node: + color: '#D4D4D428' + id: MiniTileCornerOverlayNE + decals: + 161: -1,12 + - node: + color: '#D4D4D428' + id: MiniTileCornerOverlayNW + decals: + 162: -3,12 + - node: + color: '#D4D4D428' + id: MiniTileCornerOverlaySE + decals: + 163: -1,11 + - node: + color: '#D4D4D428' + id: MiniTileCornerOverlaySW + decals: + 164: -3,11 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerNe + decals: + 158: -1,12 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerNw + decals: + 154: -3,12 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSe + decals: + 159: -1,11 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkCornerSw + decals: + 155: -3,11 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineN + decals: + 157: -2,12 + - node: + color: '#FFFFFFFF' + id: MiniTileDarkLineS + decals: + 156: -2,11 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlayNE + decals: + 147: 2,6 + - node: + color: '#79150096' + id: MiniTileInnerOverlayNE + decals: + 148: -4,6 + - node: + color: '#334E6DC8' + id: MiniTileInnerOverlayNW + decals: + 146: 4,6 + - node: + color: '#79150096' + id: MiniTileInnerOverlayNW + decals: + 149: -2,6 + - node: + color: '#52B4E996' + id: MiniTileInnerOverlaySE + decals: + 143: -4,-6 + - node: + color: '#EFB34196' + id: MiniTileInnerOverlaySE + decals: + 144: 2,-6 + - node: + color: '#52B4E996' + id: MiniTileInnerOverlaySW + decals: + 142: -2,-6 + - node: + color: '#334E6DC8' + id: MiniTileLineOverlayN + decals: + 136: 3,6 + - node: + color: '#79150096' + id: MiniTileLineOverlayN + decals: + 139: -3,6 + - node: + color: '#D4D4D428' + id: MiniTileLineOverlayN + decals: + 160: -2,12 + - node: + color: '#52B4E996' + id: MiniTileLineOverlayS + decals: + 134: -3,-6 + - node: + color: '#D4D4D428' + id: MiniTileLineOverlayS + decals: + 165: -2,11 + - node: + color: '#EFB34196' + id: MiniTileLineOverlayS + decals: + 135: 3,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNe + decals: + 18: 4,6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerNw + decals: + 7: -4,6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSe + decals: + 37: 4,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelCornerSw + decals: + 38: -4,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNe + decals: + 33: -3,-4 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNw + decals: + 34: 3,-4 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSe + decals: + 35: -3,4 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSw + decals: + 36: 3,4 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineE + decals: + 19: 4,4 + 20: 4,2 + 21: 4,1 + 22: 4,0 + 23: 4,-1 + 24: 4,-2 + 25: 4,-4 + 26: -3,-3 + 27: -3,-2 + 28: -3,-1 + 29: -3,0 + 30: -3,1 + 31: -3,2 + 32: -3,3 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineN + decals: + 8: -2,6 + 9: -1,6 + 10: 0,6 + 11: 1,6 + 12: 2,6 + 13: -2,-4 + 14: -1,-4 + 15: 0,-4 + 16: 1,-4 + 17: 2,-4 + 131: 3,6 + 138: -3,6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineS + decals: + 40: -1,-6 + 41: 0,-6 + 42: 1,-6 + 43: 2,-6 + 44: -2,4 + 45: -1,4 + 46: 1,4 + 47: 2,4 + 132: -3,-6 + 133: 3,-6 + 141: -2,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelLineW + decals: + 0: -4,-4 + 1: -4,-2 + 2: -4,-1 + 3: -4,0 + 4: -4,1 + 5: -4,2 + 6: -4,4 + 123: 3,3 + 124: 3,2 + 125: 3,1 + 126: 3,0 + 127: 3,-1 + 128: 3,-2 + 129: 3,-3 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerSw + decals: + 145: 4,-6 + - node: + color: '#D4D4D496' + id: WarnLineE + decals: + 48: 4,5 + 49: 4,3 + 50: 4,-3 + 51: 4,-5 + - node: + color: '#9FED5896' + id: WarnLineGreyscaleS + decals: + 60: 0,4 + - node: + color: '#D4D4D496' + id: WarnLineS + decals: + 52: -4,-5 + 53: -4,-3 + 54: -4,3 + 55: -4,5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 287: -2,-5 + 288: 1,2 + 289: -4,-8 + 290: 2,-10 + 291: 3,4 + 292: 2,11 + 293: -2,11 + 298: -1,-10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 296: -4,-6 + 297: -4,-10 + 302: 1,-9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 295: 4,6 + 299: 4,-9 + 300: 4,-10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 294: -1,8 + 301: 1,-10 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 39935 + 0,-1: + 0: 64399 + -1,0: + 0: 15359 + 0,1: + 0: 36863 + -1,1: + 0: 12287 + 0,2: + 0: 61166 + -1,2: + 0: 61439 + 0,3: + 0: 14 + -1,3: + 0: 14 + 1,0: + 0: 12561 + 1,1: + 0: 305 + 1,2: + 0: 273 + 1,-1: + 0: 4401 + 1,3: + 1: 34 + -2,0: + 0: 32768 + -2,1: + 0: 128 + -2,3: + 1: 136 + -1,-1: + 0: 64319 + 0,-4: + 1: 4096 + 0,-3: + 0: 61164 + -1,-3: + 0: 65510 + 0,-2: + 0: 65422 + -1,-2: + 0: 65327 + 1,-3: + 1: 258 + 0: 4096 + 1,-2: + 0: 12545 + 1,-4: + 1: 8192 + -2,-4: + 1: 32768 + -2,-3: + 1: 8 + -2,-2: + 0: 32768 + -2,-1: + 0: 128 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AirAlarm + entities: + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 444 + - 574 + - 445 + - 434 + - 435 + - 436 + - 437 + - 438 + - 439 + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 441 + - 576 + - 453 + - 267 + - 266 + - 268 + - 269 + - uid: 579 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - type: DeviceList + devices: + - 452 + - 572 + - 440 + - 262 + - 263 + - 265 + - 264 + - uid: 580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 443 + - 573 + - 446 + - 268 + - 269 + - 437 + - 438 + - 439 + - 265 + - 264 + - uid: 581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 442 + - 575 + - 447 + - 262 + - 263 + - 434 + - 435 + - 436 + - 267 + - 266 + - uid: 584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 432 + - 450 + - 571 + - uid: 585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - type: DeviceList + devices: + - 570 + - 451 + - 433 + - uid: 586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - type: DeviceList + devices: + - 569 + - 449 + - 430 + - uid: 587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + - type: DeviceList + devices: + - 431 + - 448 + - 568 +- proto: AirCanister + entities: + - uid: 174 + components: + - type: Transform + anchored: True + pos: 1.5,-10.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockCommand + entities: + - uid: 112 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 +- proto: AirlockEngineeringLocked + entities: + - uid: 113 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 2 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 8 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 1 +- proto: AirlockMedicalLocked + entities: + - uid: 114 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 +- proto: AirlockSecurityLocked + entities: + - uid: 115 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 +- proto: AirlockServiceLocked + entities: + - uid: 116 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 568 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 587 + - uid: 569 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 586 + - uid: 570 + components: + - type: Transform + pos: 2.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 585 + - uid: 571 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 584 + - uid: 572 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 579 + - uid: 573 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 580 + - uid: 574 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 577 + - uid: 575 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - uid: 576 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 578 +- proto: APCBasic + entities: + - uid: 16 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 615 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 621 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 +- proto: BaseComputer + entities: + - uid: 190 + components: + - type: Transform + pos: 1.5,12.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,8.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 595 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 +- proto: BoozeDispenser + entities: + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 +- proto: BoxFolderBlue + entities: + - uid: 203 + components: + - type: Transform + pos: 4.4821362,9.53582 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 270 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 283 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 290 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 291 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 292 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 293 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 295 + components: + - type: Transform + pos: -4.5,-12.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 299 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -2.5,10.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -2.5,12.5 + parent: 1 + - uid: 304 + components: + - type: Transform + pos: -3.5,12.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 5.5,12.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 4.5,12.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 322 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 327 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 1 + - uid: 332 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 333 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 344 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 345 + components: + - type: Transform + pos: -3.5,5.5 + parent: 1 + - uid: 346 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 347 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -3.5,2.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 352 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 +- proto: CableHV + entities: + - uid: 426 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 428 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 429 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 +- proto: CableMV + entities: + - uid: 363 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 367 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 368 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 369 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - uid: 370 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 371 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 374 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - uid: 376 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 377 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 381 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 382 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 383 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 384 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 385 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 386 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - uid: 387 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 390 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 391 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 392 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: -2.5,6.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 422 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 423 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 +- proto: Chair + entities: + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 1 + - uid: 213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 1 + - uid: 216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 1 + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 1 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 1 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 228 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 229 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 230 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 256 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 +- proto: ClosetFireFilled + entities: + - uid: 254 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 +- proto: ComputerEmergencyShuttle + entities: + - uid: 189 + components: + - type: Transform + pos: 2.5,12.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 +- proto: DogBed + entities: + - uid: 202 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 +- proto: DrinkGlass + entities: + - uid: 582 + components: + - type: Transform + pos: -1.618008,1.7341247 + parent: 1 + - uid: 588 + components: + - type: Transform + pos: -1.305508,1.7341247 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: -1.477383,1.4841247 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 597 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 262 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - 579 + - uid: 263 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - 579 + - uid: 264 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 580 + - 579 + - uid: 265 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 580 + - 579 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - 578 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - 578 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 578 + - 580 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 578 + - 580 + - uid: 434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - 577 + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - 577 + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - 577 + - uid: 437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 580 + - 577 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 580 + - 577 + - uid: 439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 580 + - 577 +- proto: GasOutletInjector + entities: + - uid: 167 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPassiveVent + entities: + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBend + entities: + - uid: 454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 467 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 474 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 550 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 475 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 476 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 477 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 478 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 479 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 480 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 481 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 482 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 483 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 484 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 485 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 486 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 487 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 488 + components: + - type: Transform + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 489 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 490 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 491 + components: + - type: Transform + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 492 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 493 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 494 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 495 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 496 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 497 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 498 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 514 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 539 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 540 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 542 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 543 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 544 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 556 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 558 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 559 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 227 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 460 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 461 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 499 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 502 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 534 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 586 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 587 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 432 + components: + - type: Transform + pos: -2.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 584 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 433 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 585 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 579 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 441 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 578 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 442 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 443 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 580 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 577 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 577 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 580 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 581 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 587 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 586 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 450 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 584 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 451 + components: + - type: Transform + pos: 2.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 585 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 452 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 579 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 578 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GeneratorBasic15kW + entities: + - uid: 160 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 +- proto: GeneratorWallmountAPU + entities: + - uid: 161 + components: + - type: Transform + pos: 2.5,-12.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 159 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 +- proto: Grille + entities: + - uid: 117 + components: + - type: Transform + pos: -4.5,1.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -4.5,0.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 2.5,13.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 1.5,13.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: -1.5,13.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -2.5,13.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 +- proto: InflatableDoorStack + entities: + - uid: 614 + components: + - type: Transform + pos: 4.488226,-8.493198 + parent: 1 +- proto: InflatableWallStack + entities: + - uid: 248 + components: + - type: Transform + pos: 4.4941244,-8.313961 + parent: 1 +- proto: LockerMedicineFilled + entities: + - uid: 180 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 +- proto: LootSpawnerMedicalMinor + entities: + - uid: 186 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 +- proto: LootSpawnerSecurity + entities: + - uid: 583 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 176 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 1 +- proto: MedkitAdvancedFilled + entities: + - uid: 185 + components: + - type: Transform + pos: -0.3584627,-10.354177 + parent: 1 +- proto: Paper + entities: + - uid: 204 + components: + - type: Transform + pos: 4.6696362,9.395195 + parent: 1 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,4.5 + parent: 1 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1 + - uid: 635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1 + - uid: 636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,9.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 + - uid: 626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 1 + - uid: 633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 590 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 591 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: RandomFoodMeal + entities: + - uid: 592 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 +- proto: Screen + entities: + - uid: 606 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 609 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 610 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 70 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1 +- proto: SignBar + entities: + - uid: 604 + components: + - type: Transform + pos: -1.5,2.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 603 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 600 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 +- proto: SignKitchen + entities: + - uid: 605 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 601 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 +- proto: SignSecurity + entities: + - uid: 602 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 +- proto: SodaDispenser + entities: + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 +- proto: StasisBed + entities: + - uid: 178 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 +- proto: SubstationWallBasic + entities: + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 139 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 +- proto: TableCounterWood + entities: + - uid: 136 + components: + - type: Transform + pos: -1.5,1.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 +- proto: TableGlass + entities: + - uid: 182 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 200 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: -3.5,9.5 + parent: 1 +- proto: Thruster + entities: + - uid: 150 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 1 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-12.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,12.5 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 145 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 +- proto: VendingMachineChefvend + entities: + - uid: 148 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: VendingMachineCondiments + entities: + - uid: 149 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: VendingMachineMedical + entities: + - uid: 179 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 +- proto: VendingMachineSec + entities: + - uid: 209 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 17 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,7.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 1 + - uid: 52 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 1 + - uid: 53 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,11.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,13.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,10.5 + parent: 1 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1 + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1 + - uid: 95 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 205 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 212 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 210 + components: + - type: Transform + pos: -2.5,11.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 +... diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml index 039ad828f079..4623da4f8026 100644 --- a/Resources/Maps/amber.yml +++ b/Resources/Maps/amber.yml @@ -14,10 +14,13 @@ tilemap: 50: FloorCarpetClown 63: FloorCarpetOffice 28: FloorDark + 7: FloorDarkDiagonal 65: FloorDarkDiagonalMini 3: FloorDarkMono 64: FloorDarkPavement 61: FloorDarkPavementVertical + 6: FloorDarkPlastic + 10: FloorEighties 29: FloorFreezer 73: FloorGlass 66: FloorGold @@ -26,11 +29,14 @@ tilemap: 2: FloorKitchen 36: FloorLino 62: FloorMime + 8: FloorMowedAstroGrass 15: FloorRGlass 69: FloorReinforced + 5: FloorShuttleGrey 9: FloorSteel 70: FloorSteelCheckerDark 56: FloorSteelCheckerLight + 4: FloorSteelDamaged 33: FloorSteelDiagonal 26: FloorSteelMini 47: FloorSteelPavement @@ -67,7 +73,7 @@ entities: - type: MetaData name: grid - type: Transform - pos: 0.53697205,0.547603 + pos: -1.5,9.5 parent: 1 - type: BecomesStation id: Amber @@ -75,91 +81,91 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: CQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABDwAAAAADDwAAAAADDwAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAABDwAAAAABDwAAAAADDwAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABGgAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADwAAAAACDwAAAAABDwAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAAAGgAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDwAAAAABDwAAAAACDwAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDwAAAAAADwAAAAABDwAAAAADCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAADGgAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADDwAAAAAADwAAAAAADwAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAABGgAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: CQAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAADCQAAAAADCQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAACCQAAAAABCQAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAACCQAAAAAACQAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: IwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADIwAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABIwAAAAACIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHAAAAAABHAAAAAABIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAGgAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAABIwAAAAAAIwAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADHAAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAIIwAAAAADIwAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAIwAAAAAAIwAAAAABAAAAAAAAAAAAAAAAIwAAAAACIwAAAAABHAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAAHAAAAAABIwAAAAACIwAAAAAAAAAAAAAAAAAAAAAAIwAAAAADIwAAAAAAHAAAAAACKQAAAAAAKwAAAAABKwAAAAAAKwAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAAHAAAAAABIwAAAAABIwAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAAAHAAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAB + tiles: IwAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAGgAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAAACQAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABIwAAAAABIwAAAAADIwAAAAADIwAAAAADIwAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAABHAAAAAAASQAAAAACSQAAAAACHAAAAAAAHAAAAAACSQAAAAABSQAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAADKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADKQAAAAAAKwAAAAACKwAAAAACKwAAAAABDgAAAAAACQAAAAABHAAAAAAADgAAAAAAHAAAAAACSQAAAAABSQAAAAAAHAAAAAABHAAAAAACSQAAAAABSQAAAAAAHAAAAAABDgAAAAAAKwAAAAAAKwAAAAADKwAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAADCQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAB version: 6 -1,-4: ind: -1,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAIwAAAAABIwAAAAACDgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAADIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAB + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADAQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAABIwAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAACIwAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAAIwAAAAADIwAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADIwAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACIwAAAAADIwAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAABDgAAAAAAIwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADIwAAAAABIwAAAAAAIwAAAAAAIwAAAAADIwAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAB version: 6 -1,-5: ind: -1,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: CQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAMAAAAAAAMAAAAAAEMAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABHAAAAAADHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACLwAAAAABLwAAAAACLwAAAAABLwAAAAABLwAAAAABLwAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAACLwAAAAADAAAAAAAHLwAAAAABLwAAAAACLwAAAAADAAAAAAABAAAAAAAAAAAAAAAALwAAAAAALwAAAAABDgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABAAAAAAAALwAAAAACLwAAAAACLwAAAAACAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAALwAAAAAALwAAAAAALwAAAAAAAAAAAAAAAAAAAAADDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAAAAAAAKLwAAAAACLwAAAAACLwAAAAADAAAAAAAIAAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAMAAAAAAAMAAAAAAIMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAHAAAAAABHAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADHAAAAAABHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAAACQAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAAALwAAAAACLwAAAAACLwAAAAAALwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAADAQAAAAADLwAAAAABLwAAAAAALwAAAAACAQAAAAACAQAAAAABAQAAAAAALwAAAAADLwAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABAQAAAAABLwAAAAACLwAAAAACLwAAAAAAAQAAAAADAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAALwAAAAACLwAAAAADLwAAAAABAQAAAAACAQAAAAACDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAADLwAAAAADLwAAAAABLwAAAAABAQAAAAACAQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: AAAAAAAALwAAAAADLwAAAAACLwAAAAACAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACAAAAAAACLwAAAAABLwAAAAADLwAAAAABAAAAAAAAAAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAAHAAAAAAACQAAAAACCQAAAAABDgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAAAMQAAAAABMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAADCQAAAAAACQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAAALwAAAAADLwAAAAACLwAAAAACAQAAAAABAQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAAQAAAAAALwAAAAABLwAAAAACLwAAAAABAQAAAAACAQAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAALwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAAACQAAAAADCQAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAMQAAAAACMQAAAAABMQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: LAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAADLgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAALAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACLAAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAACCQAAAAABHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADCQAAAAACCQAAAAACCQAAAAADHAAAAAADHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAACQAAAAAC + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAACQAAAAABCQAAAAAACQAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAACDgAAAAAACQAAAAAACQAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAAACQAAAAAC version: 6 -2,-2: ind: -2,-2 - tiles: MwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAANwAAAAAANwAAAAABNwAAAAACNwAAAAACCQAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAABMwAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAANwAAAAADNwAAAAADNwAAAAAANwAAAAABDgAAAAAADgAAAAAAMwAAAAACDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAABOAAAAAACDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAAOAAAAAABOAAAAAADOAAAAAABOAAAAAAAOAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAADOAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAABOAAAAAACHAAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAAA + tiles: MwAAAAABMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAADCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAADMwAAAAACMwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAADMwAAAAACCQAAAAAACQAAAAADCQAAAAACDgAAAAAANwAAAAACNwAAAAABNwAAAAAANwAAAAADDgAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAAAOAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAAOAAAAAADOAAAAAAAOAAAAAADOAAAAAACOAAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABOAAAAAABOAAAAAABOAAAAAADOAAAAAACOAAAAAABHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAAOAAAAAADOAAAAAAAOAAAAAABOAAAAAABOAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAADHAAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: DgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABIwAAAAABIwAAAAACIwAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAAIwAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAACDgAAAAAAHAAAAAACIwAAAAAAIwAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAACDgAAAAAAHAAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAACQAAAAACHAAAAAAAHAAAAAAAHAAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAAAMwAAAAADCQAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAADCQAAAAABHAAAAAABHAAAAAAAHAAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAAD + tiles: DgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADIwAAAAACIwAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAHAAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADDgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAABMwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAAHAAAAAADHAAAAAADHAAAAAABMwAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACHAAAAAADHAAAAAAAHAAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAAAHAAAAAABHAAAAAABHAAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAACMwAAAAABMwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHAAAAAABCQAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAAHAAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAABMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAABCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAC version: 6 -2,-4: ind: -2,-4 - tiles: CQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAOQAAAAADOQAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAAIwAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAHAAAAAACHAAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAACIwAAAAACIwAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAACIwAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAIwAAAAADIwAAAAAD + tiles: DgAAAAAAHAAAAAABHAAAAAAAOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAADHAAAAAAAHAAAAAABOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAACDgAAAAAAOQAAAAACOQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAABCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAAIwAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAAHAAAAAADHAAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAAAIwAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAAIwAAAAAAIwAAAAAC version: 6 -2,-5: ind: -2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: CQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: DgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAACMwAAAAABMwAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAACHAAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAAAMwAAAAADMwAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAIwAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAF + tiles: DgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAACMwAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAABIwAAAAADIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAABHAAAAAADHAAAAAABHAAAAAACHAAAAAABDgAAAAAAIwAAAAAAIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAALwAAAAADDgAAAAAADgAAAAAAMwAAAAACMwAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAIwAAAAACIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAMAAAAAAAAAAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAAAAQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAABAQAAAAABDgAAAAAADgAAAAAA version: 6 -2,2: ind: -2,2 - tiles: LAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAAHAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAADCQAAAAAACQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAAAHAAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAABHAAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAABHAAAAAACHAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAADCQAAAAAACQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAACLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAADLgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAAADgAAAAAAHAAAAAACLgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACDgAAAAAAHAAAAAABLgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAACMwAAAAABMwAAAAABDgAAAAAAHAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAADLAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: CQAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAABDgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADMwAAAAAAMwAAAAACDgAAAAAACQAAAAABDgAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAADMwAAAAACMwAAAAABDgAAAAAACQAAAAACMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAADMwAAAAAAMwAAAAABCQAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAADMwAAAAADMwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAABDgAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAACHAAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: LgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAADLgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAACDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAMwAAAAADMwAAAAAADgAAAAAAMwAAAAADMwAAAAABAAAAAAAAAAAAAAAAKQAAAAAAKQAAAAAAAAAAAAAMMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABAAAAAAAHAAAAAAAEAAAAAAAAAAAAAAAEAAAAAAAAMwAAAAADMwAAAAADDgAAAAAAMQAAAAABMQAAAAAAMQAAAAABLgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAADDgAAAAAAMwAAAAACMwAAAAADMwAAAAABLgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAMwAAAAABMwAAAAACMwAAAAAADgAAAAAAMwAAAAAAMwAAAAACMwAAAAABLgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAAMwAAAAACMwAAAAADMwAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAACLgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABMwAAAAADMwAAAAADMwAAAAADDgAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAABDgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAABMwAAAAACDgAAAAAACQAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAAAMwAAAAAD version: 6 -3,-4: ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABGgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAADIwAAAAABIwAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAADIwAAAAAAIwAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAADMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAAB version: 6 -3,-5: ind: -3,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAA version: 6 -3,0: ind: -3,0 - tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAACDgAAAAAAMwAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAADMQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAABDgAAAAAAMwAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMQAAAAABMQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 -3,2: ind: -3,2 @@ -167,159 +173,155 @@ entities: version: 6 -4,-1: ind: -4,-1 - tiles: HAAAAAADDgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HAAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAACLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAACCQAAAAABDgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADLgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAD version: 6 -4,-4: ind: -4,-4 - tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -5,-2: ind: -5,-2 tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 - -5,-3: - ind: -5,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + -6,-4: + ind: -6,-4 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAA + tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADDgAAAAAAPAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAFPAAAAAACIwAAAAABPAAAAAAGDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADHAAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAMAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAAAAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAAAAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMAAAAAAADgAAAAAAHAAAAAADPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAMAAAAAACDgAAAAAAHAAAAAAAPQAAAAAB + tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAACAQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAABAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAADAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: IQAAAAAAIQAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADwAAAAADDwAAAAADDwAAAAAACQAAAAABHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAACCQAAAAADDwAAAAABMgAAAAAADwAAAAADCQAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADwAAAAABDwAAAAACDwAAAAADCQAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: IQAAAAACIQAAAAAADgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADwAAAAABDwAAAAAADwAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAABCQAAAAAACQAAAAACDwAAAAACMgAAAAAADwAAAAABCQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDwAAAAABDwAAAAABDwAAAAABCQAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: CQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAACIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADAAAAAAAAAAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAAAAAAAAADgAAAAAADgAAAAAAIwAAAAADGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAACIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIQAAAAACIQAAAAADDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAIQAAAAADIQAAAAACDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADIQAAAAADIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAB + tiles: CQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACAQAAAAABDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACGwAAAAAADgAAAAAAGwAAAAAAAQAAAAADAQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAABGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABAQAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABAQAAAAACDgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAIwAAAAABIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIQAAAAACIQAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIQAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADIQAAAAACIQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAC version: 6 0,-4: ind: 0,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAAMQAAAAAAMQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAMQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAC + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAMQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAAAIwAAAAADAQAAAAABAQAAAAADAQAAAAAAAQAAAAABAQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAAAAQAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAQAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADDgAAAAAAAQAAAAACAQAAAAADAQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAAC version: 6 0,-5: ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,0: ind: 0,0 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAKMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACPQAAAAACLAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAAMAAAAAAADgAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACOwAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABOwAAAAAAOwAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAALMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADPQAAAAACLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADLwAAAAADLwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAAALwAAAAADLwAAAAABLwAAAAADLwAAAAABCQAAAAAALwAAAAABLwAAAAAALwAAAAADDgAAAAAALwAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAALLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALAAAAAAAMAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABLwAAAAACLwAAAAAALwAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAABLwAAAAABLwAAAAADLwAAAAADLwAAAAADLwAAAAACDgAAAAAALwAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAA version: 6 0,1: ind: 0,1 - tiles: CQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: CQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA version: 6 0,2: ind: 0,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABHgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACAAAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABAAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAAAHAAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADHAAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAADCQAAAAADHAAAAAACDgAAAAAACQAAAAAB + tiles: HgAAAAAADgAAAAAASgAAAAADHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAASgAAAAADSgAAAAAASgAAAAAASgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAAHAAAAAADHAAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADGwAAAAAADgAAAAAADgAAAAAAAwAAAAACHAAAAAACHAAAAAABHAAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAACCQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: CQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAABHAAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAACDwAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAAACQAAAAACDwAAAAACCQAAAAADCQAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACHAAAAAABDgAAAAAAHAAAAAACCQAAAAACCQAAAAAACQAAAAABHAAAAAADDgAAAAAAHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAAA + tiles: CQAAAAACCQAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAADCQAAAAACDwAAAAABCQAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABCQAAAAADDwAAAAACCQAAAAAACQAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACHAAAAAACDgAAAAAAHAAAAAACCQAAAAADCQAAAAADCQAAAAADHAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAC version: 6 1,-3: ind: 1,-3 - tiles: DgAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABIwAAAAACIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAABIwAAAAADIwAAAAADIwAAAAADIwAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAADIwAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAADIwAAAAABIwAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAA + tiles: DgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAADIwAAAAAAIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAACIwAAAAACIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAIwAAAAADIwAAAAADIwAAAAABIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAAMwAAAAABMwAAAAADDgAAAAAAQQAAAAAAQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAAMwAAAAABMwAAAAABDgAAAAAAQQAAAAADQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACMQAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAAIwAAAAACIwAAAAABDgAAAAAAMwAAAAACMwAAAAABDgAAAAAAQQAAAAABQQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAAIwAAAAABIwAAAAADDgAAAAAAMwAAAAACMwAAAAADDgAAAAAAQQAAAAACQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAACIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAQgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAQgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA version: 6 1,0: ind: 1,0 - tiles: DgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAADHAAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAAAHAAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAACQAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAACQAAAAACHAAAAAACHAAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADQAAAAAABDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABLwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAAB + tiles: DgAAAAAADgAAAAAAAwAAAAABAwAAAAADHAAAAAACHAAAAAABHAAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAAwAAAAADAwAAAAACHAAAAAACHAAAAAABHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAACQAAAAADCQAAAAACGwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACDgAAAAAACQAAAAABHAAAAAAAHAAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAADHAAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAALwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAD version: 6 1,1: ind: 1,1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAAMAAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMAAAAAAAMAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAMAAAAAAADgAAAAAAMAAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAADQwAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAACQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAQwAAAAAAQwAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAACBAAAAAAACQAAAAABCQAAAAAACQAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAABRwAAAAAARwAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAABAAAAAADCQAAAAABCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,2: ind: 1,2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: CQAAAAAADgAAAAAAQAAAAAADQAAAAAADDwAAAAACQAAAAAAAQAAAAAACQAAAAAABQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAAQAAAAAADQAAAAAACDwAAAAADQAAAAAABQAAAAAAADgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAABDwAAAAAAQAAAAAABQAAAAAACQAAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAQAAAAAADQAAAAAABQAAAAAACQAAAAAAAQAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAABIwAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAQwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAAADgAAAAAAQAAAAAAAQAAAAAACDwAAAAADQAAAAAABQAAAAAACQAAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAADDgAAAAAAQAAAAAAAQAAAAAAADwAAAAADQAAAAAAAQAAAAAABDgAAAAAAQAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAQAAAAAACQAAAAAAADwAAAAADQAAAAAACQAAAAAADQAAAAAABQAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAQAAAAAADQAAAAAACQAAAAAACQAAAAAACQAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAABIwAAAAADIwAAAAADIwAAAAACDgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAACIwAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADCQAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAACCAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: CQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAAOQAAAAABOQAAAAAAOQAAAAADOQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAACOQAAAAAAOQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABOQAAAAADOQAAAAACOQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACGgAAAAAALwAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABGgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADGgAAAAABLwAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABGgAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADGgAAAAABLwAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACGgAAAAABDgAAAAAACQAAAAACDgAAAAAAQAAAAAACQAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAADGgAAAAADLwAAAAAACQAAAAAADgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAACQAAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAABDwAAAAADQAAAAAABQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAB + tiles: CQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAAOQAAAAACOQAAAAADOQAAAAADOQAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAAAOQAAAAADOQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADOQAAAAABOQAAAAAAOQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAACQAAAAABRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAAAHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACGgAAAAACLwAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAAGgAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAAGgAAAAAALwAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAACGgAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAABGgAAAAABLwAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADGgAAAAACDgAAAAAACQAAAAABDgAAAAAAQAAAAAADQAAAAAADQAAAAAACQAAAAAADQAAAAAACQAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAAGgAAAAACLwAAAAADCQAAAAADDgAAAAAAQAAAAAADQAAAAAAAQAAAAAACQAAAAAACQAAAAAABQAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAAQAAAAAADQAAAAAACDwAAAAAAQAAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAC version: 6 2,-3: ind: 2,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAAHAAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAADIQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACDgAAAAAAHAAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAAAIQAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAAAwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA + tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAABLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABRwAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADDgAAAAAA version: 6 2,0: ind: 2,0 - tiles: QwAAAAADCQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAQwAAAAABCQAAAAABCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAQwAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAAIwAAAAABDgAAAAAAIwAAAAACDgAAAAAADgAAAAAAQwAAAAACCQAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAQwAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQwAAAAACCQAAAAACCQAAAAACDgAAAAAAMAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAAMAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAA + tiles: CQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAAIwAAAAACDgAAAAAAIwAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA version: 6 2,1: ind: 2,1 - tiles: QwAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAAQwAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAQwAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQwAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA - version: 6 - 2,2: - ind: 2,2 - tiles: CQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: CQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAAACQAAAAACBAAAAAACCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAARwAAAAACGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAABDgAAAAAADgAAAAAARwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: CQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA + tiles: CQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAAAGgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAADDgAAAAAAGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAAALwAAAAAALwAAAAABGgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACGgAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAAAGgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAGgAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAABLwAAAAACLwAAAAADGgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAADLwAAAAABGgAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAABGgAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABGgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAAALwAAAAACLwAAAAAALwAAAAAAGgAAAAACCQAAAAABCQAAAAADCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAAALwAAAAABLwAAAAACLwAAAAABGgAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAASAAAAAAASAAAAAACSAAAAAABDgAAAAAAHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAABLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSAAAAAABSAAAAAAASAAAAAACHAAAAAABHAAAAAAADgAAAAAAHAAAAAACSQAAAAACSQAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAASAAAAAACSAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAASAAAAAABSAAAAAABSAAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAAHAAAAAACLAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAABSAAAAAADSAAAAAAASAAAAAACHAAAAAADHAAAAAAADgAAAAAAHAAAAAADSQAAAAABSQAAAAACLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAADSAAAAAABSAAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAADLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAHAAAAAADDgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAACDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAAADgAAAAAARgAAAAACRgAAAAADDgAAAAAARgAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA + tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAACRgAAAAAAGwAAAAAARgAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAMwAAAAACDgAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA version: 6 3,-5: ind: 3,-5 - tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAADLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAARwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAAELAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 3,0: ind: 3,0 - tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 3,1: ind: 3,1 - tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-1: ind: 4,-1 @@ -327,35 +329,35 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAAQAAAAAACQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAAAQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAADRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAACDgAAAAAADgAAAAAADgAAAAAAQAAAAAABDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAABDgAAAAAAQAAAAAADQAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAADQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAADDgAAAAAAQAAAAAADQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAAAQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAACDgAAAAAAMwAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAADQAAAAAACDgAAAAAAQAAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAA version: 6 4,0: ind: 4,0 tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 - -4,-5: - ind: -4,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAA + -5,-5: + ind: -5,-5 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAA version: 6 6,-2: ind: 6,-2 - tiles: QAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: QAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAALAAAAAAARwAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABHAAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAACMwAAAAABMwAAAAACRwAAAAACMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAAAMwAAAAACMwAAAAACMwAAAAADDgAAAAAAMwAAAAAAMwAAAAABDgAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAACDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAALAAAAAAASQAAAAADHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAADMwAAAAACMwAAAAACLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAACRwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABLgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAABDgAAAAAAMwAAAAABLgAAAAAALgAAAAAARwAAAAABMwAAAAABMwAAAAABRwAAAAAAMwAAAAADDgAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAADDgAAAAAAMwAAAAABMwAAAAAADgAAAAAARwAAAAABLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABLAAAAAAASQAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAACSQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAACSQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAAECQAAAAABCQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALgAAAAAARwAAAAAACQAAAAABDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAADgAAAAAABAAAAAABBAAAAAADDgAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAADRwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,2: ind: -4,2 @@ -375,11 +377,11 @@ entities: version: 6 0,-6: ind: 0,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAARwAAAAACLgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAACBAAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAABAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAABPAAAAAADIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAACPAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA version: 6 6,-3: ind: 6,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 -4,1: ind: -4,1 @@ -387,39 +389,67 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAACMwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAABQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAACDgAAAAAAQAAAAAADDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAACDgAAAAAADgAAAAAAQAAAAAACDgAAAAAA + tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAAADgAAAAAAQAAAAAABDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAABDgAAAAAADgAAAAAAQAAAAAABDgAAAAAA version: 6 - -5,-5: - ind: -5,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAA + -6,-5: + ind: -6,-5 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAA version: 6 3,-6: ind: 3,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAACSgAAAAABSgAAAAABSgAAAAACSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAACSQAAAAACHAAAAAABHAAAAAABSgAAAAACSgAAAAAASgAAAAABSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADSQAAAAACSQAAAAADSQAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAAHAAAAAADSgAAAAABSgAAAAAASgAAAAAASgAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABLgAAAAAASQAAAAAASQAAAAADHAAAAAABHAAAAAACSgAAAAACSgAAAAADSgAAAAADSgAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABSQAAAAAASQAAAAABSQAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-5: ind: 4,-5 - tiles: PAAAAAABIwAAAAABDgAAAAAALAAAAAAAPAAAAAAFDgAAAAAAIwAAAAABIwAAAAABIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADRwAAAAACLAAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAACPAAAAAAEIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAAPAAAAAAAPAAAAAAEDgAAAAAADgAAAAAADgAAAAAAPAAAAAACIwAAAAAAIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGPAAAAAAEIwAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADPAAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSgAAAAADDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAADSgAAAAADDgAAAAAASgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: PAAAAAAAIwAAAAADDgAAAAAALAAAAAAAPAAAAAABDgAAAAAAIwAAAAABIwAAAAADIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADRwAAAAABLAAAAAAADgAAAAAAIwAAAAADDgAAAAAAIwAAAAAAPAAAAAAGIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACPAAAAAAEPAAAAAABDgAAAAAADgAAAAAADgAAAAAAPAAAAAAEIwAAAAACIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAADPAAAAAAGIwAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABRwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADPAAAAAAEDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAACIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAAASgAAAAADDgAAAAAADgAAAAAASgAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAALAAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAACSgAAAAADDgAAAAAASgAAAAABSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 4,-6: ind: 4,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAADgAAAAAAPAAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAADDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAACDgAAAAAADgAAAAAAIwAAAAADPAAAAAACDgAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADDgAAAAAAPAAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAGIwAAAAABDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGDgAAAAAADgAAAAAAIwAAAAADPAAAAAABDgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAARwAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAARwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAACDgAAAAAARwAAAAABDgAAAAAARwAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAABDgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 5,-4: ind: 5,-4 tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 + -1,-7: + ind: -1,-7 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + version: 6 + 0,-7: + ind: 0,-7 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + version: 6 + 1,-7: + ind: 1,-7 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + version: 6 + -3,-6: + ind: -3,-6 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAB + version: 6 -2,-6: ind: -2,-6 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + version: 6 + -4,-5: + ind: -4,-5 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + version: 6 + -5,-3: + ind: -5,-3 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + version: 6 + -6,-3: + ind: -6,-3 + tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 - type: Broadphase - type: Physics @@ -461,18 +491,6 @@ entities: id: Arrows decals: 4235: -52,-13 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 11180: -1,-10 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: ArrowsGreyscale - decals: - 11179: 1,-8 - node: zIndex: 1 color: '#DE3A3A96' @@ -508,6 +526,22 @@ entities: 10826: 1,26 10827: 7,26 10828: 7,16 + 15952: -36,-32 + 15955: -36,-29 + 18617: 28,-5 + 18618: 27,-5 + 18619: 26,-5 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bot + decals: + 15805: -34,-6 + 15806: -34,-4 + 15807: -34,-3 + 17694: -16,-17 + 18555: 28,2 + 18556: 28,1 - node: color: '#D381C996' id: BotGreyscale @@ -522,6 +556,11 @@ entities: id: BotGreyscale decals: 9810: 34,-28 + - node: + color: '#D4D4D496' + id: BotGreyscale + decals: + 18583: 18,0 - node: color: '#FBB2FFFF' id: BotGreyscale @@ -534,76 +573,51 @@ entities: color: '#FFFFFFFF' id: BotGreyscale decals: - 1688: 23,-12 - 1689: 22,-12 - 1690: 22,-13 - 1691: 23,-13 - 1692: 24,-13 - 1693: 24,-12 - 1696: 23,-11 - 3071: -41,-46 - 3072: -41,-47 - 3073: -41,-49 - 3074: -39,-49 - 3075: -39,-48 - 3076: -39,-47 + 15945: -47,-47 + 15946: -47,-45 + 15947: -47,-44 + 15948: -45,-44 + 15949: -45,-45 + 15950: -45,-46 + 15951: -45,-47 - node: + zIndex: 1 color: '#FFFFFFFF' - id: BotLeftGreyscale + id: BotGreyscale decals: - 1694: 24,-11 + 15902: 25,-7 + 15903: 25,-8 + 15904: 26,-8 + 15905: 26,-9 + 15906: 25,-9 + 15907: 24,-9 + 15908: 24,-8 - node: + zIndex: 1 color: '#FFFFFFFF' - id: BotRightGreyscale + id: BotLeftGreyscale decals: - 1695: 22,-11 + 15901: 26,-7 + 17847: 20,-3 + 17848: 21,-3 - node: - color: '#334E6DC8' - id: BrickBoxOverlay + zIndex: 1 + color: '#FFFFFFFF' + id: BotRightGreyscale decals: - 1365: 20,-1 - 1378: 5,-18 + 15900: 24,-7 - node: color: '#52B4E996' - id: BrickBoxOverlay - decals: - 1362: 20,3 - 1377: 7,-18 - - node: - color: '#9FED5896' - id: BrickBoxOverlay - decals: - 1368: 22,-1 - 1374: 6,-20 - - node: - color: '#A4610696' - id: BrickBoxOverlay - decals: - 1370: 22,3 - 1379: 9,-20 - - node: - color: '#D381C996' - id: BrickBoxOverlay - decals: - 1369: 22,2 - 1380: 8,-20 - - node: - color: '#D4D4D428' - id: BrickBoxOverlay + id: BrickLineOverlayE decals: - 1372: 22,0 - 1373: 5,-20 + 18580: 22,1 + 18581: 22,2 - node: - color: '#DE3A3A96' - id: BrickBoxOverlay - decals: - 1375: 9,-18 - - node: - color: '#EFB34196' - id: BrickBoxOverlay + color: '#52B4E996' + id: BrickLineOverlayN decals: - 1363: 20,2 - 1376: 8,-18 + 18584: 21,3 + 18585: 20,3 - node: zIndex: 1 color: '#FFFFFFFF' @@ -611,24 +625,21 @@ entities: decals: 4120: -2,-41 12339: -6,-37 - 15018: -7,-38 - node: zIndex: 2 color: '#FFFFFFFF' id: BrickTileDarkCornerNe decals: 12350: -4,-42 - - node: - color: '#FFFFFFFF' - id: BrickTileDarkCornerNw - decals: - 1419: -12,-38 - node: zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkCornerNw decals: 4135: -13,-37 + 17687: -38,-53 + 17780: 33,0 + 19536: -8,-42 - node: zIndex: 1 color: '#FFFFFFFF' @@ -636,41 +647,44 @@ entities: decals: 4127: -2,-42 - node: + zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkCornerSw decals: - 1423: -12,-42 - 1435: -9,-45 + 19588: -8,-45 - node: + zIndex: 1 color: '#FFFFFFFF' - id: BrickTileDarkInnerNe + id: BrickTileDarkEndE decals: - 1449: -7,-42 - 14878: 12,-10 - 15001: -6,-41 + 19605: -7,-41 + 19606: -7,-38 + 19625: -11,-41 + 19626: -11,-38 - node: + zIndex: 1 color: '#FFFFFFFF' - id: BrickTileDarkInnerNw + id: BrickTileDarkEndW decals: - 14877: 14,-10 + 19603: -12,-38 + 19623: -8,-41 + 19624: -8,-38 + 19730: -12,-41 - node: - zIndex: 1 color: '#FFFFFFFF' - id: BrickTileDarkInnerNw + id: BrickTileDarkInnerNe decals: - 14364: -13,-41 + 15001: -6,-41 - node: + zIndex: 1 color: '#FFFFFFFF' - id: BrickTileDarkInnerSw + id: BrickTileDarkInnerNw decals: - 1426: -9,-42 + 17688: -38,-54 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE decals: - 1441: -7,-41 - 1442: -7,-40 - 14874: 12,-9 15002: -6,-40 15003: -6,-39 - node: @@ -679,17 +693,12 @@ entities: id: BrickTileDarkLineE decals: 12341: -6,-38 - 15019: -7,-39 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: 1438: -5,-42 1439: -6,-42 - 1444: -11,-38 - 1445: -10,-38 - 1446: -9,-38 - 14875: 13,-10 - node: zIndex: 1 color: '#FFFFFFFF' @@ -704,69 +713,110 @@ entities: 4132: -10,-37 4133: -11,-37 4134: -12,-37 - 14365: -14,-41 - 14366: -15,-41 - 14367: -16,-41 - 14368: -17,-41 - 14369: -18,-41 - 14370: -19,-41 - 14371: -20,-41 - 14372: -21,-41 - 14373: -22,-41 - 15020: -8,-38 + 17685: -37,-53 + 17693: -39,-54 + 19371: 14,26 + 19372: 13,26 + 19373: 12,26 + 19374: 11,26 + 19535: -7,-42 - node: + zIndex: 1 color: '#FFFFFFFF' id: BrickTileDarkLineS decals: - 1424: -11,-42 - 1425: -10,-42 + 4128: -3,-42 + 19503: -36,-40 + 19506: -33,-40 + 19522: -35,-40 + 19523: -34,-40 - node: zIndex: 1 color: '#FFFFFFFF' - id: BrickTileDarkLineS + id: BrickTileDarkLineW decals: - 4128: -3,-42 + 4136: -13,-38 + 4137: -13,-39 + 17781: 33,-1 + 17783: 33,-3 + 17784: 33,-4 + 17960: 33,-2 + 19537: -8,-43 + 19538: -8,-44 + 19642: -13,-40 - node: zIndex: 2 color: '#FFFFFFFF' - id: BrickTileDarkLineS + id: BrickTileDarkLineW decals: - 12351: -8,-45 + 17968: 33,-5 - node: - color: '#FFFFFFFF' - id: BrickTileDarkLineW + zIndex: 1 + color: '#95171093' + id: BrickTileSteelBox decals: - 1420: -12,-39 - 1421: -12,-40 - 1422: -12,-41 - 1427: -9,-43 - 10356: -9,-44 - 14876: 14,-9 + 17735: -47,-57 + - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelCornerSe + decals: + 17736: -46,-58 + - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelCornerSw + decals: + 17737: -48,-58 + - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelLineE + decals: + 17738: -46,-57 - node: zIndex: 1 color: '#FFFFFFFF' - id: BrickTileDarkLineW + id: BrickTileSteelLineE decals: - 4136: -13,-38 - 4137: -13,-39 - 4138: -13,-40 + 18565: 27,2 + 18566: 27,1 - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelLineS + decals: + 17739: -47,-58 + - node: + zIndex: 1 color: '#FFFFFFFF' - id: BrickTileSteelBox + id: BrickTileSteelLineS decals: - 9261: 5,-19 + 19367: 14,26 + 19368: 13,26 + 19369: 12,26 + 19370: 11,26 - node: + zIndex: 1 + color: '#95171093' + id: BrickTileSteelLineW + decals: + 17740: -48,-57 + - node: + zIndex: 1 color: '#3EB38896' id: BrickTileWhiteBox decals: - 12153: 34,-8 - 12154: 29,-10 - 12155: 29,-11 + 17185: 29,-9 + 17186: 29,-8 + 17187: 29,-7 - node: - color: '#52B4E996' + zIndex: 1 + color: '#A4610696' id: BrickTileWhiteBox decals: - 9241: 20,1 + 17176: 11,-20 + 17177: 11,-19 - node: zIndex: 1 color: '#D381C996' @@ -775,21 +825,28 @@ entities: 9613: 35,-47 9614: 35,-45 - node: - color: '#DE3A3A96' + zIndex: 1 + color: '#D4D4D496' id: BrickTileWhiteBox decals: - 9242: 20,0 + 17180: 15,-20 + 17181: 15,-19 + 17184: 14,-20 - node: zIndex: 1 color: '#DE3A3A96' id: BrickTileWhiteBox decals: 9418: -31,3 + 17182: 17,-19 + 17183: 17,-18 - node: - color: '#FF000093' + zIndex: 1 + color: '#EFB34196' id: BrickTileWhiteBox decals: - 14879: 13,-9 + 17178: 13,-20 + 17179: 13,-19 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe @@ -801,7 +858,7 @@ entities: id: BrickTileWhiteCornerNe decals: 12370: -20,-47 - 14860: -24,-16 + 15787: -37,-15 - node: zIndex: 1 color: '#52B4E996' @@ -814,6 +871,13 @@ entities: id: BrickTileWhiteCornerNe decals: 14941: -34,17 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteCornerNe + decals: + 15139: -9,-92 + 15141: -7,-93 - node: color: '#D381C996' id: BrickTileWhiteCornerNe @@ -825,24 +889,40 @@ entities: id: BrickTileWhiteCornerNe decals: 10881: -8,-18 - 11039: -1,-18 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteCornerNe decals: 2236: -8,-11 + 15881: -1,-18 + 17192: 10,-16 + 17211: 10,-19 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: 11357: -25,-45 + - node: + zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 15788: -39,-15 - node: zIndex: 1 color: '#606C5B93' id: BrickTileWhiteCornerNw decals: 14940: -35,17 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteCornerNw + decals: + 15143: -12,-92 + 15155: 9,-93 + 15156: 11,-92 - node: color: '#D381C996' id: BrickTileWhiteCornerNw @@ -863,6 +943,8 @@ entities: decals: 2232: -14,-11 11031: -6,-18 + 17189: 3,-19 + 17191: 8,-16 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe @@ -873,7 +955,19 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 14859: -24,-17 + 15786: -37,-16 + - node: + zIndex: 1 + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 17577: 22,-1 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteCornerSe + decals: + 15153: -7,-96 - node: color: '#D381C996' id: BrickTileWhiteCornerSe @@ -884,14 +978,14 @@ entities: id: BrickTileWhiteCornerSe decals: 10892: -8,-22 - 11053: -1,-16 - 11940: -1,-22 11941: -4,-22 - node: - color: '#FF000093' + zIndex: 1 + color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 14881: 14,-10 + 15885: -1,-22 + 17210: 10,-20 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -899,16 +993,16 @@ entities: 11354: -25,-49 - node: zIndex: 1 - color: '#334E6DC8' + color: '#606C5B93' id: BrickTileWhiteCornerSw decals: - 14858: -25,-17 + 14939: -35,16 - node: zIndex: 1 - color: '#606C5B93' + color: '#A4610693' id: BrickTileWhiteCornerSw decals: - 14939: -35,16 + 15154: 9,-96 - node: color: '#D381C996' id: BrickTileWhiteCornerSw @@ -929,34 +1023,67 @@ entities: id: BrickTileWhiteCornerSw decals: 2226: -14,-16 + 17188: 3,-20 - node: - color: '#FF000093' - id: BrickTileWhiteCornerSw + zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteEndE decals: - 14880: 12,-10 + 17767: -30,-51 - node: zIndex: 1 color: '#D381C996' id: BrickTileWhiteEndE decals: 9611: 36,-47 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteEndE + decals: + 17193: 12,-17 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteEndN + decals: + 15887: 1,-19 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteEndS + decals: + 15888: 1,-22 - node: zIndex: 1 color: '#334E6DC8' id: BrickTileWhiteEndW decals: - 14854: -26,-16 + 15785: -40,-16 + 17766: -32,-51 - node: zIndex: 1 color: '#D381C996' id: BrickTileWhiteEndW decals: 9612: 36,-45 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteEndW + decals: + 17190: 3,-17 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: 11365: -24,-47 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteInnerNe + decals: + 15140: -9,-93 - node: zIndex: 1 color: '#DE3A3A96' @@ -967,14 +1094,25 @@ entities: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 11090: -8,-16 11098: -14,-14 - node: zIndex: 1 color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 12386: -8,-13 + 17223: 10,-17 + - node: + zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 15789: -39,-16 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteInnerNw + decals: + 15163: 11,-93 - node: zIndex: 1 color: '#DE3A3A96' @@ -987,7 +1125,12 @@ entities: decals: 10868: -13,-19 11043: -10,-14 - 11089: -3,-16 + - node: + zIndex: 1 + color: '#EFB34196' + id: BrickTileWhiteInnerNw + decals: + 17225: 8,-17 - node: zIndex: 1 color: '#DE3A3A96' @@ -1001,20 +1144,12 @@ entities: decals: 2247: -12,-14 2257: -14,-11 - 12387: -8,-13 - - node: - zIndex: 1 - color: '#334E6DC8' - id: BrickTileWhiteInnerSw - decals: - 14857: -25,-16 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw decals: 10869: -13,-21 11044: -10,-14 - 11087: -3,-13 11095: -10,-11 - node: color: '#334E6DC8' @@ -1022,6 +1157,12 @@ entities: decals: 11355: -20,-48 11364: -24,-46 + - node: + zIndex: 1 + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 17578: 22,0 - node: zIndex: 1 color: '#9FED5896' @@ -1029,6 +1170,13 @@ entities: decals: 13771: -21,-8 13772: -21,-9 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteLineE + decals: + 15147: -7,-94 + 15152: -7,-95 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -1067,13 +1215,6 @@ entities: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 11020: -1,-19 - 11021: -1,-20 - 11022: -1,-21 - 11050: -1,-13 - 11051: -1,-14 - 11052: -1,-15 - 11086: -8,-15 11099: -14,-13 11100: -14,-12 - node: @@ -1083,22 +1224,20 @@ entities: decals: 2222: -8,-12 2223: -12,-15 - 12388: -8,-14 14243: -8,-21 14244: -8,-20 14245: -8,-19 - - node: - color: '#FF000093' - id: BrickTileWhiteLineE - decals: - 14884: 14,-9 + 15882: -1,-19 + 15883: -1,-20 + 15884: -1,-21 + 15891: 1,-21 + 15892: 1,-20 + 17228: 0,-15 + 17229: 0,-16 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 11117: -22,-15 - 11119: -21,-15 - 11121: -20,-15 11361: -21,-47 11362: -22,-47 11363: -23,-47 @@ -1107,7 +1246,18 @@ entities: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 14861: -25,-16 + 15792: -39,-15 + 15793: -38,-15 + 17769: -31,-51 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteLineN + decals: + 15144: -11,-92 + 15145: -10,-92 + 15161: 12,-92 + 15162: 10,-93 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -1137,12 +1287,6 @@ entities: 10879: -10,-18 10880: -9,-18 11040: -5,-18 - 11049: -6,-13 - 11073: -6,-16 - 11074: -5,-16 - 11076: -7,-16 - 11077: -4,-16 - 11080: -7,-13 11096: -10,-11 11097: -9,-11 - node: @@ -1156,17 +1300,34 @@ entities: 2261: -13,-14 2262: -12,-14 2263: -11,-14 + 17212: 9,-19 + 17213: 8,-19 + 17214: 7,-19 + 17215: 6,-19 + 17216: 5,-19 + 17217: 4,-19 + 17218: 4,-17 + 17219: 5,-17 + 17220: 6,-17 + 17221: 7,-17 + 17222: 11,-17 + 17224: 9,-16 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 11118: -21,-16 - 11120: -20,-16 - 11124: -22,-16 11366: -21,-49 11367: -22,-49 11368: -23,-49 11370: -24,-49 + - node: + zIndex: 1 + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 15790: -39,-16 + 15791: -38,-16 + 17768: -31,-51 - node: zIndex: 1 color: '#334E6DFF' @@ -1175,6 +1336,22 @@ entities: 4075: -19,-55 4076: -18,-55 4077: -17,-55 + - node: + zIndex: 1 + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 17571: 19,2 + 17572: 21,-1 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteLineS + decals: + 15150: -9,-96 + 15151: -8,-96 + 15159: 10,-96 + 15160: 11,-96 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -1204,17 +1381,6 @@ entities: 10890: -10,-22 10891: -9,-22 11054: -9,-16 - 11055: -8,-16 - 11057: -6,-16 - 11058: -5,-16 - 11060: -3,-16 - 11061: -2,-16 - 11069: -6,-13 - 11070: -5,-13 - 11078: -7,-13 - 11079: -4,-13 - 11081: -7,-16 - 11082: -4,-16 11943: -5,-22 - node: zIndex: 1 @@ -1226,11 +1392,20 @@ entities: 2264: -13,-11 2265: -12,-11 2266: -11,-11 - - node: - color: '#FF000093' - id: BrickTileWhiteLineS - decals: - 14882: 13,-10 + 17194: 11,-17 + 17195: 10,-17 + 17196: 9,-17 + 17197: 8,-17 + 17198: 7,-17 + 17199: 6,-17 + 17200: 5,-17 + 17201: 4,-17 + 17202: 4,-20 + 17203: 5,-20 + 17204: 6,-20 + 17205: 7,-20 + 17206: 8,-20 + 17207: 9,-20 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1254,6 +1429,7 @@ entities: id: BrickTileWhiteLineW decals: 14937: -39,17 + 17574: 20,0 - node: zIndex: 1 color: '#9FED5896' @@ -1261,6 +1437,14 @@ entities: decals: 13773: -22,-8 13774: -22,-9 + - node: + zIndex: 1 + color: '#A4610693' + id: BrickTileWhiteLineW + decals: + 15148: -12,-93 + 15157: 9,-94 + 15158: 9,-95 - node: color: '#D381C996' id: BrickTileWhiteLineW @@ -1295,8 +1479,6 @@ entities: 11035: -6,-19 11036: -6,-20 11037: -6,-21 - 11083: -3,-15 - 11084: -3,-14 11094: -10,-15 11101: -14,-12 11102: -14,-13 @@ -1309,53 +1491,77 @@ entities: 2249: -14,-15 2253: -10,-13 2254: -10,-12 + 15889: 1,-21 + 15890: 1,-20 + 17226: -4,-15 + 17227: -4,-16 - node: - color: '#FF000093' - id: BrickTileWhiteLineW + cleanable: True + zIndex: 3 + angle: 3.141592653589793 rad + color: '#FF00007E' + id: BushCOne decals: - 14883: 12,-9 + 15121: 20.005093,-53.971985 - node: - color: '#FFFFFFFF' - id: BushAOne + cleanable: True + zIndex: 3 + angle: 3.141592653589793 rad + color: '#FF00003F' + id: BushCTwo decals: - 1600: 12.928376,-7.0316486 + 15119: 20.484497,-53.96156 + 15120: 19.36936,-53.899017 - node: + zIndex: 1 color: '#FFFFFFFF' - id: BushDThree + id: BushDOne decals: - 9843: -18.699919,29.106472 + 15623: -1.8747854,-52.058655 + 15624: -5.9705667,-52.45476 + 18315: -11.886084,12.918579 - node: + zIndex: 1 color: '#FFFFFFFF' - id: BushDTwo + id: BushDThree decals: - 9844: -19.033417,28.825027 + 18314: -17.209408,12.720526 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Busha1 + id: BushDTwo decals: - 1602: 12.990907,-5.999682 + 18313: -17.178143,12.188906 + 18317: -11.0210705,12.845613 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushc1 + id: Bushd1 decals: - 9890: -17.08512,14.31797 + 15614: 7.348914,-51.72509 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushd4 + id: Bushd2 decals: - 9894: -11.957956,14.819774 + 15615: 4.7642984,-51.339405 + 15616: 4.0035048,-54.07047 - node: - cleanable: True + zIndex: 1 color: '#FFFFFFFF' - id: Bushf1 + id: Bushd3 decals: - 10041: 13.947853,-4.296533 + 15617: 7.9039936,-54.060047 + 15619: 5.4926233,-51.047535 + 15620: -2.8335946,-51.047535 + 15621: -2.8231728,-54.080894 - node: + zIndex: 1 color: '#FFFFFFFF' - id: Bushf2 + id: Bushd4 decals: - 9882: -10.14693,12.1271715 - 9888: -17.097357,12.139411 + 15625: -4.6991034,-51.641697 + 18316: -11.448366,13.179177 - node: color: '#FFFFFFFF' id: Bushg2 @@ -1372,38 +1578,127 @@ entities: decals: 321: -4.978131,-38.875713 - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushg4 + decals: + 18318: -11.647733,14.357079 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi1 + decals: + 15645: -4.580308,-53.828274 + 15653: -4.264282,-52.553818 + 15654: -3.7223463,-51.980503 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Bushi1 + decals: + 17962: 33.222042,-2.3265424 + - node: + zIndex: 3 + color: '#FFFFFFFF' + id: Bushi1 + decals: + 15637: 3.8748503,-53.025635 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi2 + decals: + 18320: -16.03246,13.673138 + 18321: -11.905412,15.490874 + - node: + zIndex: 2 color: '#FFFFFFFF' id: Bushi2 decals: - 9878: -11.79888,15.260381 + 15646: -5.0076036,-54.109722 + 15647: -4.257231,-54.18269 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 1606: 13.655601,-5.8224754 12158: -1.7835784,-39.817196 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi3 + decals: + 15627: 7.3632383,-54.21396 + 15628: 7.873908,-53.630222 + 15629: -3.5804038,-51.034668 + 15630: -4.1640263,-51.62883 + 18319: -16.053303,14.444507 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 9880: -16.155132,15.480683 12159: -2.3776236,-40.025677 - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushi4 + decals: + 15631: -4.1640263,-51.13891 + 15648: -5.9038815,-51.9207 + 15649: -5.5599613,-52.681644 + 15650: -1.9610562,-53.09586 + 15651: -2.075696,-53.585785 + 15652: -3.6493936,-52.678905 + 17796: 33.100418,-3.2685184 + 18322: -11.936677,17.16912 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Bushi4 + decals: + 15635: 3.9999118,-52.58783 + 17961: 32.93023,-1.607293 + - node: + zIndex: 3 + color: '#FFFFFFFF' + id: Bushi4 + decals: + 15636: 4.2917233,-52.93182 + - node: + zIndex: 4 + color: '#FFFFFFFF' + id: Bushi4 + decals: + 15638: 4.1770835,-53.463436 + - node: + zIndex: 1 color: '#FFFFFFFF' id: Bushl1 decals: - 9889: -11.419543,14.832012 + 15639: 6.2718725,-51.701797 + 15640: 5.5631876,-51.19103 - node: color: '#FFFFFFFF' - id: Bushl4 + id: Bushm1 decals: - 9883: -9.657462,12.188368 - 9884: -11.933483,14.207818 + 15801: 49.53584,-23.971285 + 15804: 49.44209,-19.898706 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 9886: -17.244196,12.788083 + 15800: 48.57913,-23.83066 + - node: + color: '#FFFFFFFF' + id: Bushm4 + decals: + 15802: 47.78584,-19.945581 + 15803: 48.25459,-19.867456 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bushn1 + decals: + 15641: 6.0217485,-51.38908 - node: zIndex: 1 color: '#3EB38896' @@ -1431,154 +1726,11 @@ entities: 14235: -9,-6 14236: -9,-10 14237: -10,-10 - - node: - color: '#43990996' - id: CheckerNESW - decals: - 14159: -4,-49 - 14160: -3,-49 - 14161: -2,-49 - 14162: -1,-49 - 14163: 0,-49 - 14164: 1,-49 - 14165: 2,-49 - 14166: 3,-49 - 14167: 4,-49 - 14168: 5,-49 - 14169: 6,-49 - 14170: -38,-31 - 14171: -37,-31 - 14172: -36,-31 - 14173: -35,-31 - 14174: -34,-31 - 14175: -33,-31 - 14176: -32,-31 - 14177: -31,-31 - 14178: -30,-31 - 14179: -29,-31 - 14203: -24,-38 - 14204: -24,-37 - 14205: -24,-36 - 14206: -24,-35 - 14207: -24,-34 - 14208: -24,-33 - 14209: -24,-32 - 14210: -24,-31 - 14211: -24,-30 - 14212: -24,-29 - 14213: -24,-28 - 14214: -24,-27 - 14215: -24,-26 - 14216: -24,-25 - 14217: -24,-24 - - node: - zIndex: 1 - color: '#43990996' - id: CheckerNESW - decals: - 13986: -22,-42 - 13987: -21,-42 - 13988: -20,-42 - 13989: -19,-42 - 13990: -18,-42 - 13991: -17,-42 - 13992: -16,-42 - 13993: -15,-42 - 13994: -14,-42 - 13995: -24,-20 - 13996: -23,-20 - 13997: -22,-20 - 13998: -21,-20 - 13999: -20,-20 - 14000: -19,-20 - 14001: -18,-20 - 14002: -17,-20 - 14015: 3,12 - 14016: 3,13 - 14017: 5,13 - 14018: 5,12 - 14019: 4,17 - 14020: 3,17 - 14021: 2,17 - 14022: 1,17 - 14023: 5,17 - 14024: 6,17 - 14025: 7,17 - 14026: 8,17 - 14027: 9,17 - 14028: 0,17 - 14029: -1,17 - 14052: -1,25 - 14053: 0,25 - 14054: 1,25 - 14055: 2,25 - 14056: 3,25 - 14057: 4,25 - 14058: 5,25 - 14059: 6,25 - 14060: 7,25 - 14061: 8,25 - 14063: 20,-4 - 14064: 21,-4 - 14065: 22,-4 - 14066: 23,-4 - 14067: 24,-4 - 14068: 25,-4 - 14069: 26,-4 - 14070: 27,-4 - 14071: 28,-4 - 14072: 29,-4 - 14073: 30,-4 - 14074: 31,-4 - 14075: 32,-4 - 14095: 47,-22 - 14096: 48,-22 - 14097: 49,-22 - 14098: 50,-22 - 14099: 51,-22 - 14100: 29,-22 - 14101: 28,-22 - 14102: 27,-22 - 14103: 26,-22 - 14104: 30,-22 - 14105: 31,-22 - 14106: 32,-22 - 14107: 33,-22 - 14108: 34,-22 - 14109: 35,-22 - 14110: 36,-22 - 14111: 37,-22 - 14112: 38,-22 - 14113: 39,-22 - 14114: 40,-22 - 14115: 41,-22 - 14116: 42,-22 - 14139: 20,-22 - 14140: 21,-22 - 14141: 22,-22 - 14142: 23,-22 - 14143: 24,-22 - 14144: 15,-33 - 14145: 11,-33 - - node: - color: '#52B4E996' - id: CheckerNESW - decals: - 10382: -38,-28 - 10383: -40,-26 - node: color: '#639137FF' id: CheckerNESW decals: 2475: -22,-38 - - node: - color: '#9FED5896' - id: CheckerNESW - decals: - 8786: 28,-1 - 8787: 27,-1 - 8788: 28,0 - 8789: 27,0 - node: zIndex: 1 color: '#9FED5896' @@ -1590,6 +1742,13 @@ entities: 12964: 62,-78 12965: 62,-79 12966: 62,-80 + 17825: 27,4 + 17826: 28,4 + - node: + color: '#FA750096' + id: CheckerNESW + decals: + 16044: -34,-34 - node: color: '#334E6DC8' id: CheckerNWSE @@ -1620,6 +1779,31 @@ entities: 14432: -20,-53 14433: -16,-52 14434: -15,-52 + 17741: -31,-49 + 17742: -30,-49 + 17743: -29,-49 + 17744: -28,-49 + 17745: -27,-49 + 17746: -27,-48 + 17747: -27,-47 + 17748: -27,-46 + 17749: -27,-45 + 17750: -28,-45 + 17751: -28,-46 + 17752: -28,-47 + 17753: -28,-48 + 17754: -29,-48 + 17755: -29,-47 + 17756: -29,-46 + 17757: -29,-45 + 17758: -30,-45 + 17759: -30,-46 + 17760: -30,-47 + 17761: -30,-48 + 17762: -31,-48 + 17763: -31,-47 + 17764: -31,-46 + 17765: -31,-45 - node: zIndex: 1 color: '#43990996' @@ -1635,39 +1819,38 @@ entities: color: '#52B4E996' id: CheckerNWSE decals: - 10384: -38,-26 - 10385: -40,-28 - 10806: -43,-34 - 10807: -42,-34 - 10808: -41,-34 - 10809: -41,-35 - 10810: -42,-35 - 10811: -43,-35 - 10812: -43,-36 - 10813: -42,-36 - 10814: -41,-36 - 10815: -41,-37 - 10816: -42,-37 - 10817: -43,-37 - 10818: -42,-38 - 10819: -42,-39 - 10820: -43,-39 - 10821: -41,-39 - 10822: -42,-40 - 10823: -40,-34 + 16036: -34,-27 - node: + zIndex: 1 color: '#8C347F96' id: CheckerNWSE decals: - 8777: 27,-1 - 8778: 28,-1 - 8779: 28,0 - 8780: 27,0 - 8781: 27,1 - 8782: 28,1 - 8783: 27,2 - 8784: 28,2 - 8785: 29,2 + 17550: 26,-1 + 17551: 27,-1 + 17556: 28,-1 + 17809: 25,-1 + 17810: 24,-1 + 17811: 24,0 + 17812: 24,1 + 17813: 24,2 + 17814: 24,3 + 17815: 25,3 + 17823: 28,4 + 17824: 27,4 + - node: + zIndex: 1 + color: '#8D1C9996' + id: CheckerNWSE + decals: + 19375: 11,27 + 19376: 12,27 + 19377: 13,27 + 19378: 14,27 + 19379: 14,28 + 19380: 13,28 + 19381: 12,28 + 19382: 11,28 + 19383: 10,28 - node: color: '#9FED5896' id: CheckerNWSE @@ -1722,42 +1905,6 @@ entities: 11216: -18,-1 11217: -22,-1 11218: -22,-2 - 14148: -3,-49 - 14149: -2,-49 - 14150: -1,-49 - 14151: 0,-49 - 14152: 1,-49 - 14153: 2,-49 - 14154: 3,-49 - 14155: 4,-49 - 14156: 5,-49 - 14157: -4,-49 - 14158: 6,-49 - 14180: -38,-31 - 14181: -37,-31 - 14182: -36,-31 - 14183: -35,-31 - 14184: -34,-31 - 14185: -33,-31 - 14186: -32,-31 - 14187: -31,-31 - 14188: -30,-31 - 14189: -29,-31 - 14190: -24,-26 - 14191: -24,-27 - 14192: -24,-28 - 14193: -24,-29 - 14194: -24,-30 - 14195: -24,-31 - 14196: -24,-32 - 14197: -24,-33 - 14198: -24,-34 - 14199: -24,-35 - 14200: -24,-36 - 14201: -24,-37 - 14202: -24,-38 - 14218: -24,-24 - 14219: -24,-25 - node: zIndex: 1 color: '#DE3A3A96' @@ -1766,93 +1913,6 @@ entities: 13010: -31,-4 13011: -30,-4 13012: -29,-4 - 13977: -14,-42 - 13978: -15,-42 - 13979: -16,-42 - 13980: -17,-42 - 13981: -18,-42 - 13982: -19,-42 - 13983: -20,-42 - 13984: -21,-42 - 13985: -22,-42 - 14003: -24,-20 - 14004: -23,-20 - 14005: -22,-20 - 14006: -21,-20 - 14007: -20,-20 - 14008: -19,-20 - 14009: -18,-20 - 14010: -17,-20 - 14011: 5,12 - 14012: 5,13 - 14013: 3,13 - 14014: 3,12 - 14030: -1,17 - 14031: 0,17 - 14032: 1,17 - 14033: 2,17 - 14034: 3,17 - 14035: 4,17 - 14036: 5,17 - 14037: 6,17 - 14038: 7,17 - 14039: 8,17 - 14040: 9,17 - 14041: -1,25 - 14042: 0,25 - 14043: 1,25 - 14044: 2,25 - 14045: 3,25 - 14046: 4,25 - 14047: 5,25 - 14048: 6,25 - 14049: 7,25 - 14050: 8,25 - 14051: 9,25 - 14076: 20,-4 - 14077: 21,-4 - 14078: 22,-4 - 14079: 23,-4 - 14080: 24,-4 - 14081: 25,-4 - 14082: 26,-4 - 14083: 27,-4 - 14084: 28,-4 - 14085: 29,-4 - 14086: 30,-4 - 14087: 31,-4 - 14088: 32,-4 - 14089: 47,-22 - 14090: 48,-22 - 14091: 49,-22 - 14092: 50,-22 - 14094: 51,-22 - 14117: 42,-22 - 14118: 41,-22 - 14119: 40,-22 - 14120: 39,-22 - 14121: 38,-22 - 14122: 37,-22 - 14123: 36,-22 - 14124: 35,-22 - 14125: 34,-22 - 14126: 33,-22 - 14127: 32,-22 - 14128: 31,-22 - 14129: 30,-22 - 14130: 29,-22 - 14131: 28,-22 - 14132: 27,-22 - 14133: 26,-22 - 14134: 24,-22 - 14135: 23,-22 - 14136: 22,-22 - 14137: 21,-22 - 14138: 20,-22 - 14146: 11,-33 - 14147: 15,-33 - 15033: -33,-4 - 15034: -32,-4 15035: -31,-6 15036: -30,-6 15037: -29,-6 @@ -1885,6 +1945,13 @@ entities: 14323: -9,-36 14324: -8,-36 14325: -7,-36 + - node: + cleanable: True + zIndex: 5 + color: '#3AB3DAFF' + id: Clandestine + decals: + 19307: 34,24 - node: cleanable: True color: '#52B4E9FF' @@ -1909,22 +1976,9 @@ entities: id: Delivery decals: 1409: -14,-45 - 2152: -26,-41 - 2153: -26,-42 - 2154: -26,-43 - 2155: -25,-40 - 2156: -24,-40 - 2157: -23,-40 - 2158: -30,-63 - 2159: -31,-63 - 2168: -8,-58 - 2169: -9,-58 2183: 16,8 2184: 15,8 2185: 14,8 - 2194: 33,21 - 2195: 32,21 - 2196: 31,21 2203: 25,-23 2204: 25,-22 2205: 25,-21 @@ -1936,18 +1990,45 @@ entities: 9908: -7,10 9910: 4,14 9933: 5,24 - 9934: 3,24 9935: 3,18 - 9936: 5,18 10360: -7,11 - 11944: -18,-18 - 11945: -17,-18 - 11946: -16,-18 11947: -18,-6 11948: -17,-6 11949: -16,-6 - 14593: -30,-51 - 14594: -31,-51 + 16323: -23,-40 + 16324: -24,-40 + 16325: -25,-40 + 16326: -23,-22 + 16327: -24,-22 + 16328: -25,-22 + 16329: -27,-43 + 16330: -27,-42 + 16333: -27,-41 + 16334: -33,-47 + 16335: -34,-47 + 16336: -35,-47 + 19429: -35,-67 + 19430: -34,-67 + 19431: -33,-67 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Delivery + decals: + 15688: 5,18 + 15689: 3,24 + 18341: 30,-16 + 18342: 31,-16 + 18343: 32,-16 + 18344: 32,-6 + 18345: 31,-6 + 18346: 30,-6 + 18347: 26,6 + 18348: 26,7 + 18349: 26,8 + 18350: 33,16 + 18351: 32,16 + 18352: 31,16 - node: cleanable: True zIndex: 1 @@ -1974,7 +2055,7 @@ entities: - node: cleanable: True zIndex: 5 - color: '#FFFFFF7F' + color: '#0000007F' id: Dirt decals: 1162: 21,-55 @@ -1986,30 +2067,15 @@ entities: 1168: 19,-53 1169: 20,-53 1170: 19,-55 - 3293: 18,5 - 3294: 19,5 4798: 43,-8 4799: 43,-7 4800: 48,-6 4801: 47,-6 4802: 47,-5 4803: 48,-5 - 10046: 14,0 - 10047: 14,-12 - 10048: 16,-13 - 10346: 13,-13 - 10347: 12,-13 - 10348: 12,-12 - 10349: 16,-12 - 10350: 16,-11 - 10351: 15,-12 11503: 26,-40 11775: -27,-22 - 11776: -30,-20 11777: -29,-22 - 11778: -31,-24 - 11779: -33,-22 - 11804: -39,-27 11824: 18,12 11825: 16,15 11866: -32,14 @@ -2056,12 +2122,9 @@ entities: 14395: -10,-48 14400: 15,-53 14401: 13,-52 - 14429: 11,-12 - 14430: 10,-12 14435: -18,-52 14467: 34,-23 14468: 48,-27 - 14503: 33,-5 14514: 34,15 14527: -28,4 14539: -25,2 @@ -2083,16 +2146,107 @@ entities: 14815: -14,21 14816: -7,21 14817: 21,12 - 14818: 21,1 - 14862: -25,-17 - 14885: 13,-10 - 14886: 13,-12 14898: -34,19 14942: 40,11 14966: 39,5 14967: 37,9 14972: 33,2 - 15059: 30,25 + 15168: -4,-94 + 15169: -3,-94 + 15170: -2,-93 + 15171: -4,-89 + 15172: -5,-89 + 15173: -10,-89 + 15174: -10,-90 + 15175: -8,-96 + 15176: -8,-95 + 15177: -8,-94 + 15178: 4,-99 + 15179: 6,-99 + 15180: 6,-100 + 15181: 9,-95 + 15182: 11,-94 + 15183: 9,-93 + 15184: 8,-90 + 15185: 7,-90 + 15186: 9,-90 + 15187: 5,-93 + 15188: 6,-93 + 15189: 6,-94 + 15452: -10,-62 + 15500: 13,-61 + 15501: 16,-60 + 16408: -41,-45 + 16409: -38,-46 + 16410: -40,-49 + 16411: -47,-50 + 16412: -46,-49 + 16502: -34,-49 + 16989: -31,-8 + 16990: -31,-9 + 16991: -31,-10 + 16998: -32,-26 + 17120: -36,-63 + 17149: -37,-68 + 17283: 27,-18 + 17314: 30,7 + 17590: 18,0 + 17620: 25,1 + 17856: 17,-5 + 17858: 23,-5 + 17971: 31,15 + 18054: 37,13 + 18131: -13,7 + 18439: 17,-39 + 18440: 17,-40 + 18441: 17,-41 + 18442: 18,-41 + 18443: 18,-40 + 18444: 17,-37 + 18445: 18,-37 + 18446: 17,-36 + 18447: 17,-38 + 18448: 14,-38 + 18449: 15,-38 + 18450: 15,-37 + 18451: 19,-43 + 18452: 19,-44 + 18453: 18,-45 + 18454: 17,-44 + 18455: 17,-43 + 18456: 18,-43 + 18457: 18,-44 + 18557: 28,1 + 18631: -58,-54 + 18632: -59,-53 + 18633: -54,-54 + 18844: -36,-53 + 18845: -37,-56 + 18846: -39,-56 + 18847: -39,-55 + 18848: -42,-55 + 18849: -39,-50 + 18903: 38,17 + 18904: 37,17 + 18905: 33,17 + 18906: 33,15 + 18908: 28,21 + 18909: 33,24 + 18910: 34,24 + 18911: 36,24 + 18913: 47,22 + 18914: 45,22 + 18915: 41,21 + 18916: 39,22 + 18917: 37,21 + 18918: 45,20 + 18919: 33,18 + 18920: 31,20 + 18921: 37,20 + 19343: 32,22 + 19385: 14,27 + 19455: -44,-38 + 19683: -10,-42 - node: cleanable: True zIndex: 5 @@ -2102,8 +2256,6 @@ entities: 3283: 17,7 3284: 18,8 3285: 19,8 - 3286: 19,7 - 3287: 19,6 3916: 50,-47 3917: 50,-46 3918: 50,-45 @@ -2118,15 +2270,10 @@ entities: 4333: 27,-58 4334: 28,-58 4335: 23,-55 - 4337: 4,-50 - 4339: -3,-49 - 4341: -4,-50 4343: -8,-53 4344: -9,-54 4345: -9,-48 - 4346: -9,-43 4347: -13,-37 - 4348: -19,-42 4782: 36,-11 4783: 36,-8 4784: 37,-7 @@ -2166,16 +2313,7 @@ entities: 4824: 40,-11 4825: 42,-10 4832: 31,-8 - 4865: 21,-3 - 4866: 23,-5 - 4867: 22,-5 - 4868: 18,-5 - 4869: 18,-4 - 4870: 19,-4 4871: 19,-5 - 4873: 14,-4 - 4874: 14,-3 - 4875: 15,-3 4925: 0,10 4926: 0,11 4927: -3,10 @@ -2187,11 +2325,8 @@ entities: 5187: 2,-17 5188: 3,-17 5189: 2,-18 - 5190: 2,-19 5191: 2,-20 5192: 3,-20 - 5193: 3,-19 - 5194: 3,-19 5195: 3,-18 5196: 3,-17 5197: 2,-17 @@ -2208,7 +2343,6 @@ entities: 5277: 16,-45 5278: 19,-45 5279: 19,-43 - 5280: 18,-43 5281: 18,-45 5282: 15,-43 5283: 14,-43 @@ -2227,25 +2361,14 @@ entities: 5511: -24,-52 5512: -25,-52 5517: -31,-49 - 5518: -30,-47 - 5519: -30,-47 - 5520: -32,-44 - 5521: -32,-44 5522: -32,-45 5523: -32,-47 5524: -33,-47 5525: -34,-46 5526: -33,-45 - 5527: -34,-44 5528: -35,-44 5529: -35,-46 - 5699: -51,-42 - 5700: -52,-44 - 5701: -52,-42 - 6067: -21,-20 6068: -22,-19 - 6069: -22,-20 - 6070: -17,-20 6071: -18,-19 6072: -16,-19 6073: -16,-20 @@ -2263,7 +2386,6 @@ entities: 6260: -22,-39 6261: -22,-38 6262: -24,-39 - 6268: -24,-37 6269: -25,-38 6270: -25,-39 6271: -25,-37 @@ -2276,60 +2398,11 @@ entities: 6793: 14,7 6795: 16,7 6797: 14,6 - 6798: 18,7 - 6799: 18,6 - 6800: 18,5 - 6801: 19,5 - 6802: 19,6 - 6803: 19,7 6804: 19,8 6805: 18,8 - 6806: 18,7 - 6807: 19,7 - 6808: 18,6 - 6809: 19,6 - 6810: 19,5 - 6838: 11,5 - 6839: 11,5 - 6840: 10,6 - 6841: 9,6 - 6842: 8,6 - 6843: 8,4 6844: 10,3 6845: 10,3 - 6846: 14,-1 - 6847: 14,0 - 6848: 14,1 - 6849: 15,0 - 6850: 15,-1 - 6851: 15,1 - 6852: 14,1 - 6853: 15,1 - 6854: 14,0 - 6855: 14,0 - 6856: 15,-1 - 6857: 15,0 - 6858: 16,0 - 6859: 14,0 - 6860: 14,-1 - 6861: 15,-1 - 6862: 16,0 - 6863: 16,-1 - 6864: 14,-2 - 6865: 15,-2 - 6866: 16,-2 - 6867: 15,-3 - 6868: 14,-3 - 6871: 15,2 - 6872: 14,2 - 6873: 14,3 - 6874: 15,3 - 6894: 17,-37 6896: 19,-38 - 6897: 19,-39 - 6898: 19,-41 - 6901: 17,-37 - 6903: 19,-39 6905: 14,-39 6906: 15,-38 6907: 14,-37 @@ -2338,9 +2411,6 @@ entities: 6911: 15,-40 6912: 15,-38 6913: 16,-38 - 6914: 17,-37 - 6917: 17,-44 - 6918: 18,-44 6919: 19,-44 6920: 22,-43 6921: 23,-43 @@ -2453,9 +2523,6 @@ entities: 7196: 37,-27 7197: 38,-27 7198: 39,-26 - 7215: 36,-22 - 7220: 33,-22 - 7221: 35,-22 7223: 36,-23 7224: 37,-23 7225: 38,-23 @@ -2465,7 +2532,6 @@ entities: 7232: 35,-18 7233: 34,-18 7234: 42,-21 - 7235: 42,-22 7236: 42,-23 7237: 41,-23 7238: 46,-29 @@ -2593,23 +2659,10 @@ entities: 7460: 47,7 7461: 45,7 7462: 45,7 - 7508: 28,3 - 7509: 27,3 - 7510: 27,4 - 7511: 28,4 - 7512: 29,4 - 7513: 29,3 - 7559: 24,5 7560: 25,5 - 7561: 24,5 7562: 22,5 7563: 23,6 - 7564: 23,5 - 7565: 23,5 7566: 27,6 - 7567: 28,6 - 7568: 29,6 - 7569: 29,6 7570: 27,10 7571: 27,11 7572: 28,10 @@ -2635,97 +2688,15 @@ entities: 7604: 28,19 7605: 29,19 7606: 29,19 - 7607: 35,27 - 7608: 35,27 - 7609: 35,29 - 7610: 35,29 - 7611: 34,29 - 7612: 34,29 - 7613: 34,27 - 7614: 36,27 - 7615: 36,29 - 7616: 34,35 - 7617: 35,35 - 7618: 36,35 - 7619: 36,37 - 7620: 35,37 - 7621: 34,37 - 7622: 33,32 - 7623: 32,32 - 7624: 32,31 - 7625: 31,32 - 7626: 31,31 - 7627: 31,33 - 7628: 31,35 - 7629: 32,39 - 7630: 33,41 - 7631: 31,42 - 7632: 31,41 - 7633: 33,43 - 7634: 31,43 - 7635: 31,44 - 7636: 33,44 - 7637: 33,45 - 7638: 31,45 7639: 23,-15 7640: 23,-15 - 7641: 22,-15 - 7642: 22,-15 - 7645: 20,-15 - 7646: 20,-15 - 7647: 19,-15 - 7648: 19,-14 - 7649: 20,-14 7664: 17,-17 - 7668: 16,-14 - 7669: 13,-14 - 7671: 10,-14 - 7672: 10,-13 - 7673: 10,-12 - 7676: 12,-11 - 7678: 14,-10 - 7679: 13,-9 - 7680: 12,-9 - 7681: 14,-11 - 7684: 17,-11 - 7685: 17,-11 - 7686: 16,-10 - 7687: 16,-10 - 7688: 16,-9 - 7689: 16,-9 - 7690: 19,-9 - 7691: 19,-10 - 7692: 19,-10 - 7693: 19,-11 - 7694: 19,-11 - 7695: 19,-12 - 7696: 19,-12 - 7697: 19,-9 7698: 18,-7 - 7700: 18,-4 - 7701: 18,-3 7702: 17,-3 - 7704: 20,2 - 7705: 20,3 - 7706: 22,3 - 7707: 22,2 - 7709: 20,-1 - 7710: 22,-1 - 7711: 22,0 - 7712: 18,5 - 7713: 19,5 - 7714: 19,6 7715: 15,5 7716: 14,4 7717: 13,5 7718: 13,5 - 7719: 12,5 - 7720: 12,5 - 7721: 8,4 - 7722: 9,4 - 7723: 10,4 - 7724: 10,5 - 7725: 9,5 7726: 11,11 7727: 10,11 7728: 9,10 @@ -2737,22 +2708,15 @@ entities: 7736: -18,-12 7737: -17,-14 7738: -18,-16 - 7740: -19,-20 7741: -19,-21 7743: -7,-27 7744: -6,-27 7745: -15,-35 7746: -14,-35 - 7752: -13,-40 - 7753: -13,-42 - 7754: -4,-50 7758: -5,-53 7759: -4,-53 - 7760: -5,-52 - 7761: -6,-52 7762: -5,-56 7763: -8,-57 - 7764: -9,-58 7765: -8,-60 7767: -8,-63 7771: -6,-69 @@ -2784,13 +2748,6 @@ entities: 7807: 22,-60 7808: 22,-60 7809: 22,-59 - 7810: 24,-60 - 7811: 24,-60 - 7812: 24,-59 - 7813: 25,-59 - 7814: 25,-59 - 7815: 25,-60 - 7816: 24,-59 7817: 19,-59 7818: 18,-59 7819: 18,-60 @@ -2827,10 +2784,6 @@ entities: 7853: 11,-48 7854: 10,-49 7855: 9,-49 - 7856: 13,-44 - 7857: 13,-43 - 7858: 13,-42 - 7860: 17,-38 7879: 37,-37 7880: 36,-36 7881: 36,-35 @@ -2843,41 +2796,27 @@ entities: 7942: 18,-28 7943: 18,-26 7944: 18,-25 - 7945: 20,-22 7946: 21,-21 7947: 21,-20 7948: 21,-20 7949: 20,-20 7950: 20,-20 7951: 19,-20 - 7952: 19,-19 - 7953: 20,-19 - 7954: 21,-19 - 7955: 21,-19 - 7956: 20,-19 - 7957: 20,-18 - 7958: 20,-19 7959: 20,-20 7960: 19,-20 7961: 21,-20 7962: 20,-21 - 7963: 20,-22 7965: 18,-23 7966: 18,-23 7970: 20,-23 7971: 19,-23 7974: 21,-23 7975: 19,-23 - 7976: 19,-22 7977: 21,-23 7978: 22,-23 7980: 23,-23 - 7981: 24,-22 7982: 27,-23 - 7983: 28,-22 - 7984: 28,-22 7985: 27,-21 - 7986: 26,-21 7994: 26,-18 8000: 26,-18 8004: 31,-19 @@ -2903,7 +2842,6 @@ entities: 8025: 34,-21 8026: 33,-21 8027: 31,-21 - 8028: 31,-22 8029: 30,-21 8030: 31,-23 8032: 44,-23 @@ -2919,45 +2857,12 @@ entities: 8045: 43,-7 8049: 33,8 8050: 33,11 - 8051: 32,17 - 8052: 32,17 8053: 32,12 8054: 32,11 - 8055: 31,6 8056: 32,2 - 8057: 31,0 - 8058: 27,-5 - 8059: 26,-5 - 8060: 25,-5 - 8061: 24,-4 - 8062: 23,-3 - 8063: 22,-3 - 8064: 23,-4 - 8065: 24,-5 - 8066: 26,-4 - 8067: 25,-3 - 8068: 26,-3 - 8069: 27,-3 8070: 28,-5 - 8071: 25,-4 - 8072: 24,-4 - 8073: 23,-4 - 8075: 21,-5 - 8076: 21,-5 - 8077: 23,-5 - 8079: 15,2 8080: 14,5 - 8082: 1,-12 8083: 1,-13 - 8086: 1,-12 - 8087: 1,-15 - 8088: 2,-15 - 8089: 2,-15 - 8090: 3,-15 - 8091: 4,-15 - 8092: 5,-15 - 8093: 6,-15 - 8094: 6,-15 8095: 3,-18 8096: -2,-27 8097: -1,-26 @@ -3028,36 +2933,18 @@ entities: 8162: 1,-22 8163: 1,-20 8164: 1,-19 - 8165: 1,-18 - 8166: 1,-15 8167: 5,-16 8168: 7,-16 - 8169: 8,-16 - 8170: 9,-16 - 8171: 7,-15 - 8172: 6,-15 8173: 12,-19 8174: 12,-18 - 8175: 18,-17 - 8176: 18,-17 8177: 17,-17 - 8178: 20,-14 - 8179: 19,-14 - 8180: 20,-14 - 8181: 19,-14 - 8182: 21,-16 8183: 26,-23 8185: 30,-23 - 8186: 30,-22 - 8187: 29,-22 8188: 28,-23 8190: 30,-23 8192: 28,-23 - 8193: 28,-22 8194: 29,-21 - 8195: 30,-22 8196: 28,-23 - 8197: 27,-22 8215: 29,-23 8257: -42,-56 8258: -40,-56 @@ -3067,21 +2954,10 @@ entities: 8262: -36,-56 8263: -36,-55 8264: -36,-54 - 8265: -41,-53 8266: -42,-53 8267: -42,-54 8268: -41,-54 - 8269: -40,-54 - 8270: -40,-53 - 8271: -40,-52 - 8272: -39,-52 - 8273: -38,-52 - 8274: -38,-52 - 8275: -38,-54 - 8276: -39,-54 8277: -38,-55 - 8278: -38,-52 - 8279: -41,-52 8280: -42,-52 8281: -42,-51 8282: -44,-51 @@ -3090,39 +2966,12 @@ entities: 8285: -42,-52 8286: -42,-53 8287: -42,-53 - 8290: -43,-47 - 8302: -40,-49 - 8303: -40,-49 - 8304: -40,-47 - 8305: -40,-47 - 8306: -40,-46 - 8307: -41,-46 - 8308: -41,-48 - 8309: -41,-49 - 8310: -39,-49 - 8311: -39,-47 - 8333: -46,-23 - 8346: -31,-20 - 8347: -30,-20 - 8348: -28,-20 - 8349: -29,-19 - 8350: -28,-19 - 8351: -28,-19 - 8352: -27,-19 8353: -28,-21 - 8354: -28,-20 - 8355: -29,-20 - 8357: -30,-20 - 8358: -31,-20 8359: -25,-21 8360: -25,-20 8361: -25,-19 8362: -23,-19 - 8366: -31,-24 - 8370: -30,-20 - 8371: -28,-20 8372: -28,-21 - 8373: -28,-19 8374: -16,-26 8377: -18,-30 8378: -19,-30 @@ -3131,10 +2980,7 @@ entities: 8381: -20,-30 8382: -21,-30 8383: -21,-31 - 8384: -24,-34 8387: -22,-33 - 8388: -23,-40 - 8389: -24,-40 8390: -25,-38 8391: -25,-39 8392: -24,-39 @@ -3143,7 +2989,6 @@ entities: 8395: -26,-37 8399: -28,-41 8400: -27,-42 - 8401: -28,-43 8402: -22,-44 8403: -21,-44 8404: -20,-44 @@ -3155,7 +3000,6 @@ entities: 8410: -16,-45 8411: -14,-45 8412: -13,-45 - 8419: -15,-42 8423: -14,-48 8424: -13,-48 8428: -13,-48 @@ -3169,8 +3013,6 @@ entities: 8464: -7,-37 8465: -8,-37 8466: -9,-37 - 8467: -9,-38 - 8469: -8,-42 8507: 2,-42 8508: 2,-43 8509: 2,-44 @@ -3253,18 +3095,12 @@ entities: 8751: 0,-9 8753: 4,-9 8754: 2,-11 - 8755: 0,-11 8757: -5,-11 - 8758: 5,-11 - 8759: 5,-11 8760: 5,-9 8761: 5,-7 8762: 3,-8 8763: 3,-9 - 8773: 5,-13 8774: 4,-13 - 8775: 6,-15 - 8776: 5,-15 8868: -11,10 9034: -66,-14 9035: -66,-13 @@ -3272,15 +3108,8 @@ entities: 9054: -21,-24 9055: -21,-19 9056: -24,-21 - 9058: -36,-31 - 9068: -24,-38 - 9069: -24,-35 - 9072: -31,-31 9100: -29,-36 9101: -30,-36 - 9181: 49,-22 - 9182: 48,-22 - 9183: 47,-22 9185: 47,-19 9419: -26,0 9420: -26,-2 @@ -3306,45 +3135,21 @@ entities: 9578: -16,-1 9579: -17,-3 9585: -19,-10 - 10049: 13,-12 - 10050: 13,-11 - 10051: 17,-12 - 10052: 16,-11 - 10053: 17,-11 - 10070: 3,12 10071: 2,14 - 10072: 3,17 - 10073: 4,17 - 10074: 4,18 10075: 4,19 - 10076: 5,17 10077: 4,16 10078: 5,16 - 10079: 1,17 - 10080: 0,17 10081: -2,18 10082: -3,19 10083: -2,22 10084: -2,24 - 10085: -1,25 - 10087: 4,25 - 10088: 5,25 10089: 4,24 10090: 4,23 - 10091: 7,25 - 10092: 9,25 10093: 12,23 10094: 12,23 - 10095: 12,24 10096: 13,24 10099: 14,24 10100: 14,23 - 10101: 15,21 - 10102: 14,20 - 10103: 15,19 - 10104: 15,18 - 10105: 14,18 - 10106: 15,17 10107: 11,19 10108: 11,20 10109: 10,18 @@ -3353,7 +3158,6 @@ entities: 10168: -14,13 10169: -14,17 10170: -13,16 - 10253: -33,-36 10254: -32,-36 10255: -31,-36 10256: -30,-36 @@ -3364,22 +3168,6 @@ entities: 10688: -16,-32 10691: -21,-37 10692: -21,-38 - 10772: -43,-41 - 10773: -39,-41 - 10774: -38,-40 - 10775: -38,-39 - 10776: -38,-38 - 10777: -38,-33 - 10778: -39,-33 - 10779: -39,-27 - 10780: -39,-26 - 10781: -43,-23 - 10782: -51,-31 - 10783: -52,-31 - 10784: -51,-28 - 10785: -52,-28 - 10786: -52,-29 - 10787: -51,-29 11455: 29,-39 11456: 30,-39 11457: 30,-38 @@ -3423,25 +3211,15 @@ entities: 11523: 40,-46 11525: 30,-9 11526: 30,-8 - 11527: 30,-7 11528: 33,-8 - 11529: 33,-5 - 11530: 18,-3 - 11531: 8,17 - 11532: 6,17 - 11533: 4,17 11534: -3,19 11535: -2,20 11536: 4,20 11537: 4,23 11538: 12,19 - 11539: 15,18 - 11540: 15,19 - 11541: 15,21 11542: 16,22 11543: 16,23 11544: 14,24 - 11545: 12,24 11546: 2,10 11547: 0,10 11548: -15,9 @@ -3493,8 +3271,6 @@ entities: 11642: -5,-18 11643: -4,-18 11644: -2,-18 - 11645: -1,-18 - 11646: -1,-21 11649: -2,-21 11650: -5,-21 11651: -6,-21 @@ -3505,54 +3281,6 @@ entities: 11706: -9,-11 11707: -10,-11 11708: -9,-13 - 11723: -45,-32 - 11724: -44,-31 - 11725: -43,-32 - 11726: -40,-31 - 11727: -38,-34 - 11728: -35,-28 - 11729: -36,-27 - 11730: -36,-26 - 11731: -37,-26 - 11732: -36,-25 - 11733: -37,-25 - 11734: -36,-24 - 11735: -35,-23 - 11736: -38,-23 - 11737: -39,-22 - 11738: -41,-23 - 11739: -39,-24 - 11740: -39,-25 - 11741: -39,-27 - 11742: -40,-27 - 11743: -39,-28 - 11744: -34,-24 - 11745: -33,-23 - 11746: -35,-22 - 11780: -44,-44 - 11781: -44,-43 - 11782: -44,-42 - 11783: -48,-43 - 11784: -45,-39 - 11785: -46,-39 - 11786: -45,-38 - 11787: -45,-37 - 11788: -46,-37 - 11789: -45,-36 - 11790: -46,-36 - 11791: -45,-34 - 11792: -52,-31 - 11793: -51,-32 - 11794: -52,-32 - 11795: -53,-31 - 11796: -53,-30 - 11797: -52,-30 - 11798: -52,-29 - 11799: -50,-29 - 11800: -50,-28 - 11801: -46,-32 - 11802: -41,-32 - 11803: -45,-23 11830: 17,15 11831: 17,14 11833: 18,13 @@ -3607,17 +3335,12 @@ entities: 11935: 22,-26 11951: 27,-19 11952: 28,-19 - 11953: 28,-18 - 11954: 27,-18 11955: 27,-17 11956: 28,-17 11957: 26,-17 11958: 25,-17 11959: 25,-18 11960: 25,-19 - 11961: 27,-18 - 11962: 27,-18 - 11963: 28,-18 12179: 45,-55 12180: 45,-54 12181: 46,-54 @@ -3681,19 +3404,7 @@ entities: 12330: 37,-57 12331: 46,-57 12332: 45,-58 - 12404: -30,-21 - 12405: -30,-22 - 12406: -31,-22 - 12407: -31,-23 - 12408: -30,-23 - 12409: -31,-24 - 12410: -30,-24 - 12411: -29,-24 - 12412: -28,-24 - 12415: -30,-23 12416: -28,-22 - 12417: -24,-24 - 12418: -24,-26 12419: -25,-26 12420: -25,-25 12421: -25,-24 @@ -3702,7 +3413,6 @@ entities: 12424: -23,-26 12425: -24,-23 12426: -13,-26 - 12428: 13,-45 12429: 19,-48 12430: 20,-48 12431: 45,-59 @@ -3752,18 +3462,12 @@ entities: 12554: -17,-9 12555: -19,-11 12556: -12,-16 - 12557: -8,-13 - 12558: -8,-14 12559: -9,-14 12560: -9,-15 12561: -11,-20 12562: -13,-20 12563: -14,-20 12564: -20,-21 - 12565: -29,-32 - 12566: -29,-31 - 12567: -30,-34 - 12568: -39,-35 12675: 43,-51 12676: 42,-52 12677: 44,-51 @@ -3963,16 +3667,7 @@ entities: 13764: -21,-8 13780: -14,17 13783: 4,13 - 13784: 5,13 - 13785: 5,12 13915: -24,-53 - 13969: 33,37 - 13970: 33,30 - 13971: 31,30 - 13972: 33,25 - 13973: 31,25 - 13974: 33,18 - 13975: 31,19 13976: 33,6 14329: -5,-32 14330: -4,-31 @@ -3984,9 +3679,6 @@ entities: 14336: -10,-32 14337: -8,-35 14338: -9,-35 - 14363: 5,-49 - 14388: -9,-46 - 14389: -8,-46 14390: -8,-47 14391: -9,-48 14392: -9,-49 @@ -4013,12 +3705,8 @@ entities: 14462: 37,-26 14463: 32,-27 14469: 45,-16 - 14504: 32,-5 - 14505: 32,-6 14506: 31,-6 - 14507: 33,-6 14515: 34,12 - 14516: 33,19 14517: 29,-15 14518: 29,-14 14528: -28,3 @@ -4059,8 +3747,6 @@ entities: 14650: -43,-6 14651: -40,-6 14652: -38,-6 - 14653: -33,-5 - 14654: -32,-5 14655: -30,-5 14656: -31,-6 14657: -30,-6 @@ -4081,8 +3767,6 @@ entities: 14721: -41,-6 14722: -30,-6 14723: -31,-5 - 14724: -32,-5 - 14725: -33,-4 14726: -26,-5 14727: -25,-5 14728: -25,-6 @@ -4120,44 +3804,15 @@ entities: 14762: -25,15 14763: -23,16 14764: -23,17 - 14819: 27,2 - 14820: 27,1 - 14821: 28,2 14822: 25,5 14823: 26,6 14824: 16,10 - 14825: 3,13 - 14826: 2,13 14827: 1,16 - 14828: -29,-28 - 14829: -29,-27 - 14830: -28,-27 - 14831: -32,-27 - 14832: -33,-26 - 14833: -32,-26 - 14834: -33,-27 - 14835: -28,-28 - 14836: -28,-24 - 14837: -31,-22 - 14838: -30,-22 - 14839: -33,-22 - 14840: -35,-22 - 14841: -35,-23 - 14842: -36,-23 - 14843: -29,-50 - 14844: -30,-52 14845: -31,-52 - 14846: -31,-50 14847: -31,-53 14848: -31,-54 14849: -33,-50 - 14863: -25,-16 - 14864: -24,-16 - 14887: 12,-10 - 14892: 13,-10 - 14893: 16,-16 14894: 8,-15 - 14895: 7,-15 14899: -33,19 14900: -34,18 14901: -33,18 @@ -4207,6 +3862,1254 @@ entities: 15023: -29,-1 15024: -23,-1 15025: -37,17 + 15190: 6,-95 + 15191: 7,-94 + 15192: 7,-93 + 15193: 9,-93 + 15194: 9,-94 + 15195: 9,-95 + 15196: 10,-95 + 15197: 10,-96 + 15198: 11,-96 + 15199: 9,-96 + 15200: 11,-93 + 15201: 12,-93 + 15202: 12,-92 + 15203: 8,-90 + 15204: 9,-90 + 15205: 10,-90 + 15206: 10,-89 + 15207: 10,-88 + 15208: 12,-89 + 15209: 12,-90 + 15210: 12,-88 + 15211: 12,-89 + 15212: 12,-88 + 15240: -5,-93 + 15241: -5,-94 + 15242: -5,-95 + 15243: -4,-96 + 15244: -4,-95 + 15245: -3,-95 + 15246: -3,-96 + 15247: -2,-96 + 15248: -1,-96 + 15249: -5,-96 + 15250: -3,-95 + 15251: -3,-94 + 15252: -2,-93 + 15253: -7,-93 + 15254: -7,-94 + 15255: -7,-95 + 15256: -7,-96 + 15257: -8,-96 + 15258: -9,-96 + 15259: -9,-92 + 15260: -10,-92 + 15261: -11,-92 + 15262: -12,-92 + 15263: -10,-93 + 15264: -9,-93 + 15265: -12,-93 + 15266: -11,-93 + 15267: -10,-90 + 15268: -10,-91 + 15269: 6,-95 + 15270: 6,-94 + 15271: 5,-93 + 15272: 4,-91 + 15273: 0,-87 + 15274: -1,-87 + 15275: -1,-88 + 15395: 9,-76 + 15396: 10,-76 + 15397: 11,-76 + 15398: 11,-75 + 15399: 10,-75 + 15400: 9,-75 + 15401: 10,-74 + 15402: 11,-73 + 15403: 10,-73 + 15404: 10,-72 + 15405: 11,-71 + 15406: 10,-71 + 15407: 9,-71 + 15408: 9,-70 + 15409: 10,-70 + 15410: 11,-70 + 15411: 9,-78 + 15412: 11,-78 + 15413: 11,-79 + 15414: 9,-79 + 15415: 7,-75 + 15416: 7,-74 + 15417: 7,-69 + 15418: 7,-68 + 15424: -5,-74 + 15425: -7,-75 + 15426: -7,-76 + 15427: -8,-75 + 15428: -8,-74 + 15429: -9,-74 + 15430: -9,-73 + 15431: -8,-73 + 15432: -8,-72 + 15433: -9,-72 + 15434: -9,-71 + 15435: -8,-71 + 15436: -7,-70 + 15437: -7,-69 + 15438: -7,-68 + 15439: -8,-67 + 15440: -9,-67 + 15441: -8,-68 + 15442: -8,-66 + 15443: -7,-66 + 15444: -10,-65 + 15445: -10,-64 + 15446: -9,-63 + 15447: -9,-64 + 15448: -8,-63 + 15449: -7,-63 + 15450: -7,-64 + 15451: -8,-65 + 15466: -4,-58 + 15467: -3,-58 + 15468: -3,-57 + 15469: -4,-57 + 15470: -9,-57 + 15471: -9,-57 + 15472: -9,-53 + 15473: -7,-53 + 15474: -7,-52 + 15475: 3,-50 + 15476: 1,-50 + 15477: 9,-53 + 15478: 9,-59 + 15479: 9,-60 + 15480: 6,-58 + 15481: 6,-57 + 15482: 6,-56 + 15483: 3,-57 + 15484: -1,-57 + 15485: 6,-58 + 15486: 5,-58 + 15487: 5,-59 + 15488: 13,-59 + 15489: 13,-60 + 15490: 13,-61 + 15491: 16,-60 + 15492: 13,-57 + 15493: 13,-56 + 15494: 14,-59 + 15495: 14,-60 + 15496: 15,-63 + 15497: 14,-63 + 15498: 14,-64 + 15499: 15,-64 + 15879: 23,0 + 16413: -46,-51 + 16414: -46,-50 + 16415: -47,-49 + 16416: -49,-49 + 16417: -49,-49 + 16418: -51,-49 + 16419: -51,-50 + 16420: -51,-51 + 16421: -49,-51 + 16422: -49,-50 + 16423: -51,-48 + 16424: -40,-49 + 16425: -40,-51 + 16426: -40,-51 + 16427: -38,-49 + 16428: -38,-47 + 16429: -38,-46 + 16430: -37,-46 + 16431: -37,-47 + 16432: -41,-46 + 16433: -42,-46 + 16434: -42,-47 + 16435: -43,-47 + 16436: -43,-46 + 16437: -43,-45 + 16438: -43,-44 + 16439: -42,-44 + 16440: -42,-45 + 16441: -41,-45 + 16442: -41,-44 + 16443: -38,-45 + 16444: -38,-44 + 16445: -38,-43 + 16446: -38,-42 + 16447: -39,-42 + 16448: -40,-42 + 16449: -40,-41 + 16450: -38,-46 + 16451: -37,-46 + 16452: -37,-47 + 16453: -38,-47 + 16503: -35,-50 + 16504: -34,-50 + 16505: -33,-49 + 16506: -34,-48 + 16507: -35,-51 + 16508: -35,-52 + 16509: -30,-53 + 16510: -32,-53 + 16511: -32,-52 + 16512: -31,-52 + 16513: -31,-51 + 16514: -32,-51 + 16515: -30,-51 + 16516: -31,-54 + 16517: -30,-54 + 16518: -31,-56 + 16519: -32,-56 + 16520: -34,-56 + 16521: -35,-56 + 16522: -34,-55 + 16523: -34,-54 + 16524: -35,-53 + 16525: -35,-55 + 16526: -34,-54 + 16527: -35,-54 + 16528: -33,-54 + 16566: -48,-46 + 16567: -48,-45 + 16568: -49,-45 + 16569: -50,-45 + 16570: -50,-44 + 16571: -49,-42 + 16572: -49,-41 + 16573: -48,-41 + 16574: -46,-39 + 16575: -45,-39 + 16577: -42,-39 + 16578: -42,-38 + 16579: -42,-37 + 16580: -42,-36 + 16581: -44,-36 + 16583: -46,-36 + 16585: -49,-36 + 16586: -49,-35 + 16587: -48,-34 + 16588: -49,-34 + 16589: -48,-32 + 16590: -49,-31 + 16591: -50,-31 + 16592: -49,-31 + 16593: -49,-29 + 16594: -49,-28 + 16595: -49,-27 + 16596: -52,-31 + 16597: -53,-31 + 16598: -51,-31 + 16599: -54,-31 + 16600: -54,-30 + 16601: -55,-30 + 16602: -55,-31 + 16603: -56,-31 + 16604: -56,-30 + 16605: -55,-29 + 16606: -56,-29 + 16607: -58,-30 + 16608: -59,-30 + 16609: -59,-31 + 16610: -58,-30 + 16611: -58,-31 + 16612: -58,-32 + 16613: -58,-32 + 16614: -58,-32 + 16615: -59,-32 + 16616: -60,-32 + 16617: -60,-31 + 16618: -60,-30 + 16619: -48,-30 + 16620: -48,-28 + 16621: -48,-27 + 16622: -50,-27 + 16623: -48,-25 + 16624: -49,-25 + 16625: -50,-25 + 16626: -50,-24 + 16627: -50,-23 + 16628: -50,-22 + 16629: -51,-22 + 16630: -51,-23 + 16631: -52,-23 + 16632: -48,-22 + 16633: -53,-23 + 16634: -42,-22 + 16635: -44,-22 + 16636: -45,-22 + 16637: -47,-22 + 16638: -46,-21 + 16639: -45,-21 + 16640: -43,-21 + 16641: -42,-21 + 16642: -43,-23 + 16643: -44,-23 + 16644: -45,-23 + 16645: -46,-24 + 16646: -45,-25 + 16647: -45,-24 + 16648: -43,-24 + 16649: -43,-25 + 16650: -43,-26 + 16651: -45,-26 + 16652: -43,-28 + 16653: -45,-28 + 16654: -46,-30 + 16655: -46,-32 + 16656: -46,-32 + 16657: -44,-32 + 16658: -43,-31 + 16659: -43,-30 + 16660: -41,-29 + 16661: -40,-29 + 16662: -42,-31 + 16663: -41,-32 + 16664: -40,-34 + 16665: -40,-34 + 16667: -37,-34 + 16668: -35,-33 + 16669: -34,-34 + 16670: -35,-33 + 16671: -34,-31 + 16672: -35,-31 + 16673: -34,-29 + 16674: -35,-28 + 16675: -36,-27 + 16676: -39,-27 + 16677: -34,-29 + 16678: -32,-28 + 16679: -29,-28 + 16680: -27,-28 + 16681: -26,-29 + 16682: -27,-30 + 16683: -27,-32 + 16684: -29,-32 + 16685: -30,-32 + 16686: -32,-32 + 16687: -31,-31 + 16688: -31,-30 + 16689: -29,-29 + 16690: -27,-29 + 16691: -27,-30 + 16692: -28,-32 + 16693: -30,-32 + 16694: -30,-30 + 16695: -31,-29 + 16696: -32,-31 + 16697: -31,-32 + 16698: -30,-32 + 16699: -27,-33 + 16700: -27,-26 + 16701: -29,-26 + 16702: -32,-26 + 16705: -28,-23 + 16706: -30,-23 + 16707: -31,-23 + 16708: -30,-22 + 16709: -28,-22 + 16710: -34,-25 + 16711: -36,-25 + 16712: -34,-24 + 16713: -37,-23 + 16714: -38,-24 + 16715: -37,-24 + 16716: -38,-23 + 16717: -40,-24 + 16718: -33,-21 + 16719: -34,-21 + 16720: -36,-21 + 16721: -37,-21 + 16722: -39,-21 + 16723: -40,-20 + 16724: -37,-20 + 16725: -35,-20 + 16726: -31,-20 + 16727: -31,-20 + 16728: -33,-20 + 16729: -33,-19 + 16730: -33,-17 + 16731: -35,-16 + 16732: -35,-18 + 16733: -35,-18 + 16734: -37,-16 + 16735: -37,-16 + 16736: -40,-16 + 16737: -40,-15 + 16738: -38,-15 + 16739: -36,-15 + 16740: -35,-16 + 16741: -37,-13 + 16742: -38,-13 + 16743: -38,-13 + 16744: -34,-15 + 16745: -34,-14 + 16746: -35,-13 + 16747: -35,-13 + 16748: -33,-12 + 16749: -33,-12 + 16750: -33,-10 + 16751: -33,-9 + 16752: -33,-8 + 16753: -33,-6 + 16754: -33,-5 + 16755: -33,-5 + 16756: -34,-5 + 16757: -34,-3 + 16758: -33,-3 + 16759: -33,-4 + 16760: -33,-2 + 16761: -33,-1 + 16762: -33,0 + 16763: -30,-2 + 16764: -31,-2 + 16765: -31,-1 + 16766: -31,0 + 16767: -31,-17 + 16768: -28,-17 + 16769: -26,-17 + 16770: -23,-17 + 16771: -22,-16 + 16772: -24,-16 + 16773: -26,-16 + 16774: -26,-15 + 16775: -25,-16 + 16776: -29,-16 + 16777: -29,-17 + 16778: -26,-13 + 16779: -26,-12 + 16780: -19,-17 + 16781: -19,-16 + 16782: -19,-18 + 16783: -20,-16 + 16784: -21,-17 + 16785: -23,-16 + 16786: -26,-17 + 16787: -28,-16 + 16788: -29,-17 + 16789: -31,-17 + 16790: -33,-16 + 16791: -33,-17 + 16792: -33,-19 + 16793: -33,-21 + 16794: -34,-21 + 16795: -35,-18 + 16796: -31,-26 + 16797: -27,-35 + 16798: -29,-35 + 16799: -30,-36 + 16800: -31,-37 + 16801: -32,-37 + 16802: -33,-36 + 16803: -34,-37 + 16804: -35,-38 + 16805: -35,-37 + 16806: -36,-37 + 16807: -35,-38 + 16808: -33,-37 + 16809: -34,-36 + 16810: -36,-36 + 16811: -35,-37 + 16812: -32,-37 + 16813: -31,-38 + 16814: -30,-39 + 16815: -28,-39 + 16816: -27,-39 + 16817: -29,-38 + 16818: -29,-37 + 16819: -29,-36 + 16820: -39,-39 + 16821: -40,-38 + 16822: -40,-38 + 16823: -39,-38 + 16824: -38,-36 + 16825: -40,-37 + 16826: -40,-38 + 16827: -41,-29 + 16828: -40,-28 + 16829: -45,-29 + 16830: -51,-38 + 16831: -53,-38 + 16832: -52,-39 + 16833: -52,-39 + 16834: -49,-41 + 16835: -48,-41 + 16836: -49,-42 + 16992: -38,-4 + 16993: -31,0 + 16994: -33,-3 + 16995: -34,-3 + 16996: -34,-4 + 16997: -22,-21 + 16999: -32,-26 + 17000: -30,-33 + 17001: -34,-31 + 17002: -35,-30 + 17003: -34,-30 + 17004: -35,-31 + 17087: -34,-63 + 17088: -35,-65 + 17089: -34,-67 + 17090: -35,-69 + 17091: -34,-71 + 17092: -34,-73 + 17094: -34,-77 + 17095: -33,-79 + 17096: -35,-82 + 17097: -33,-81 + 17098: -32,-81 + 17099: -32,-80 + 17100: -34,-81 + 17101: -35,-80 + 17102: -35,-78 + 17104: -36,-73 + 17105: -36,-72 + 17106: -33,-71 + 17107: -33,-69 + 17108: -35,-68 + 17109: -34,-66 + 17110: -35,-65 + 17111: -35,-64 + 17112: -35,-62 + 17113: -36,-60 + 17114: -33,-62 + 17116: -34,-58 + 17117: -35,-56 + 17118: -34,-53 + 17119: -35,-50 + 17150: -33,-62 + 17151: -32,-62 + 17152: -30,-62 + 17153: -30,-61 + 17154: -30,-60 + 17155: -30,-59 + 17156: -31,-60 + 17157: -31,-60 + 17158: -29,-60 + 17159: -29,-61 + 17160: -29,-62 + 17161: -29,-63 + 17162: -30,-64 + 17163: -31,-65 + 17164: -30,-65 + 17165: -30,-64 + 17166: -30,-63 + 17167: -31,-62 + 17168: -32,-62 + 17169: -35,-59 + 17170: -35,-58 + 17171: -37,-56 + 17172: -37,-56 + 17173: -38,-55 + 17175: -54,-24 + 17257: 21,-16 + 17280: 15,-9 + 17284: 27,-18 + 17285: 28,-18 + 17286: 27,-19 + 17287: 27,-18 + 17288: 27,-17 + 17289: 28,-17 + 17290: 28,-19 + 17317: 27,4 + 17321: 26,-1 + 17323: 27,-1 + 17325: 28,-1 + 17341: 23,1 + 17343: 23,2 + 17346: 23,4 + 17348: 22,5 + 17349: 21,5 + 17350: 20,5 + 17352: 20,7 + 17353: 21,7 + 17355: 23,6 + 17356: 16,5 + 17357: 15,5 + 17358: 14,6 + 17359: 14,7 + 17361: 23,7 + 17362: 23,7 + 17363: 23,8 + 17364: 25,8 + 17365: 28,8 + 17366: 27,7 + 17367: 25,7 + 17368: 24,7 + 17369: 25,6 + 17371: 26,6 + 17373: 31,7 + 17374: 29,8 + 17375: 27,8 + 17376: 27,7 + 17377: 33,9 + 17378: 33,8 + 17380: 27,4 + 17390: 28,-1 + 17392: 32,1 + 17394: 31,-4 + 17396: 30,-8 + 17397: 26,-11 + 17398: 25,-11 + 17399: 24,-11 + 17400: 24,-10 + 17401: 23,-10 + 17402: 23,-8 + 17403: 25,-7 + 17404: 27,-7 + 17406: 21,-11 + 17407: 19,-8 + 17409: 18,-7 + 17411: 27,-5 + 17412: 28,-5 + 17413: 24,-4 + 17416: 19,-3 + 17417: 17,-3 + 17418: 17,-3 + 17419: 15,-2 + 17420: 15,-3 + 17421: 14,-7 + 17422: 14,-6 + 17423: 14,-5 + 17424: 14,-6 + 17425: 14,-7 + 17426: 15,-9 + 17427: 15,-10 + 17428: 15,-11 + 17429: 15,-12 + 17430: 16,-15 + 17431: 15,-15 + 17432: 14,-15 + 17433: 18,-15 + 17434: 18,-15 + 17435: 21,-15 + 17436: 21,-17 + 17437: 21,-16 + 17438: 19,-16 + 17439: 19,-17 + 17440: 18,-16 + 17441: 12,-15 + 17442: 12,-14 + 17443: 25,-14 + 17444: 24,-14 + 17445: 23,-13 + 17446: 24,-13 + 17447: 25,-13 + 17448: 26,-13 + 17449: 27,-13 + 17450: 27,-13 + 17451: 27,-15 + 17452: 26,-15 + 17453: 24,-15 + 17454: 21,-19 + 17455: 19,-19 + 17456: 19,-19 + 17457: 15,-19 + 17458: 15,-20 + 17459: 14,-20 + 17460: 13,-20 + 17461: 13,-19 + 17462: 14,-19 + 17463: 12,-19 + 17464: 12,-20 + 17465: 11,-20 + 17466: 11,-19 + 17467: 9,-20 + 17468: 8,-20 + 17469: 6,-20 + 17470: 4,-20 + 17471: 3,-19 + 17472: 5,-19 + 17473: 7,-19 + 17474: 9,-19 + 17475: 11,-19 + 17476: 12,-17 + 17477: 9,-17 + 17478: 7,-17 + 17479: 5,-17 + 17480: 3,-17 + 17481: 8,-16 + 17482: 9,-16 + 17483: 10,-15 + 17484: 8,-15 + 17505: 19,6 + 17506: 19,7 + 17507: 21,6 + 17508: 27,8 + 17509: 23,8 + 17592: 19,2 + 17597: 21,2 + 17599: 21,-1 + 17601: 22,-1 + 17602: 25,2 + 17603: 25,3 + 17622: 27,-1 + 17623: 26,-1 + 17624: 24,-1 + 17625: 24,-1 + 17626: 24,1 + 17627: 24,2 + 17628: 24,3 + 17631: 28,4 + 17632: 29,4 + 17633: 29,5 + 17634: 28,5 + 17635: 30,5 + 17636: 30,4 + 17637: 30,3 + 17640: 30,0 + 17641: 30,-1 + 17650: 27,5 + 17859: 21,-5 + 17860: 22,-5 + 17862: 26,-5 + 17864: 20,-5 + 17865: 19,-5 + 17866: 18,-5 + 17867: 17,-5 + 17868: 16,-8 + 17869: 14,-7 + 17870: 14,-6 + 17871: 14,-5 + 17872: 13,-3 + 17873: 12,-3 + 17874: 12,-2 + 17875: 13,-2 + 17876: 15,-2 + 17877: 15,0 + 17878: 14,1 + 17879: 21,1 + 17880: 21,0 + 17881: 19,2 + 17884: 19,3 + 17887: 25,2 + 17888: 25,3 + 17889: 26,3 + 17890: 27,3 + 17891: 28,3 + 17892: 28,4 + 17895: 28,0 + 17896: 27,0 + 17897: 26,0 + 17898: 25,0 + 17899: 25,1 + 17900: 25,2 + 17901: 30,0 + 17902: 30,1 + 17903: 30,2 + 17904: 30,4 + 17905: 30,6 + 17906: 29,6 + 17907: 27,6 + 17908: 25,6 + 17909: 25,5 + 17910: 23,5 + 17911: 20,5 + 17912: 17,5 + 17913: 30,1 + 17915: 30,-3 + 17916: 29,-11 + 17917: 26,-11 + 17918: 24,-10 + 17919: 27,-11 + 17920: 27,-10 + 17921: 26,-13 + 17922: 25,-13 + 17923: 23,-13 + 17924: 19,-16 + 17925: 19,-17 + 17926: 18,-16 + 17927: 21,-16 + 17928: 21,-17 + 17929: 15,-16 + 17930: 16,-16 + 17931: 21,-12 + 17932: 16,-14 + 17933: 16,-15 + 17934: 15,-15 + 17935: 14,-15 + 17936: 15,-12 + 17937: 24,-21 + 17938: 30,-18 + 17939: 29,-14 + 17940: 29,-13 + 17979: 37,17 + 17983: 37,19 + 17984: 38,19 + 17985: 38,18 + 17986: 38,17 + 17987: 38,20 + 17988: 37,20 + 17989: 37,21 + 17990: 38,21 + 17991: 39,21 + 17992: 40,21 + 17993: 40,22 + 18003: 34,25 + 18004: 33,24 + 18009: 30,21 + 18055: 37,12 + 18056: 37,11 + 18057: 37,10 + 18058: 37,9 + 18059: 37,15 + 18060: 36,15 + 18061: 36,15 + 18062: 36,14 + 18063: 34,13 + 18064: 32,14 + 18065: 31,14 + 18066: 31,15 + 18067: 31,16 + 18068: 31,17 + 18070: 29,19 + 18071: 28,19 + 18072: 26,18 + 18073: 26,19 + 18074: 31,12 + 18077: 32,-5 + 18078: 41,9 + 18079: 37,13 + 18080: 39,15 + 18081: 39,16 + 18082: 39,17 + 18132: -14,8 + 18133: -13,8 + 18134: -13,9 + 18135: -14,9 + 18136: -15,9 + 18137: -15,10 + 18138: -17,10 + 18139: -13,7 + 18140: -15,6 + 18141: -15,7 + 18142: -9,10 + 18143: -10,10 + 18144: -11,10 + 18145: -8,12 + 18146: -9,12 + 18147: -4,12 + 18148: -5,12 + 18149: -6,12 + 18150: -6,10 + 18151: -4,10 + 18152: 3,12 + 18153: 5,12 + 18154: 4,12 + 18155: 4,13 + 18156: 2,13 + 18157: 5,13 + 18158: 5,12 + 18159: 7,17 + 18160: 6,17 + 18161: 4,17 + 18162: 1,17 + 18163: 0,17 + 18164: 7,17 + 18165: 8,17 + 18166: 9,25 + 18167: 7,25 + 18168: 4,25 + 18169: 1,25 + 18170: -1,25 + 18171: 3,25 + 18172: 2,25 + 18430: 14,8 + 18431: 14,9 + 18432: 16,9 + 18433: 15,9 + 18434: 14,9 + 18435: 18,8 + 18436: 18,7 + 18437: 32,0 + 18438: 30,-10 + 18539: 26,2 + 18540: 26,1 + 18544: 29,2 + 18545: 29,1 + 18546: 26,0 + 18547: 28,3 + 18548: 29,1 + 18551: 26,2 + 18552: 26,1 + 18558: 28,2 + 18559: 29,2 + 18560: 29,1 + 18634: -52,-53 + 18635: -52,-52 + 18636: -52,-51 + 18637: -53,-51 + 18638: -54,-51 + 18639: -54,-50 + 18640: -53,-50 + 18641: -53,-49 + 18642: -54,-49 + 18643: -53,-48 + 18644: -53,-49 + 18645: -54,-49 + 18646: -54,-54 + 18647: -54,-55 + 18648: -56,-55 + 18649: -57,-55 + 18650: -58,-55 + 18651: -58,-54 + 18652: -59,-54 + 18653: -59,-53 + 18702: -46,-54 + 18703: -46,-53 + 18704: -46,-52 + 18705: -46,-52 + 18706: -46,-52 + 18707: -47,-52 + 18708: -47,-51 + 18709: -46,-51 + 18710: -45,-49 + 18711: -47,-49 + 18712: -49,-49 + 18713: -51,-49 + 18714: -51,-49 + 18715: -51,-47 + 18716: -53,-48 + 18717: -53,-49 + 18718: -54,-49 + 18719: -54,-51 + 18720: -54,-51 + 18721: -53,-50 + 18722: -54,-50 + 18723: -53,-51 + 18724: -52,-51 + 18725: -52,-53 + 18726: -53,-54 + 18727: -53,-52 + 18728: -54,-52 + 18729: -54,-53 + 18730: -52,-54 + 18731: -54,-55 + 18732: -53,-56 + 18733: -52,-56 + 18734: -52,-57 + 18735: -52,-58 + 18736: -51,-58 + 18737: -50,-57 + 18738: -50,-56 + 18739: -50,-54 + 18740: -51,-53 + 18741: -52,-53 + 18742: -53,-61 + 18743: -54,-61 + 18744: -54,-59 + 18745: -54,-58 + 18746: -53,-58 + 18747: -53,-58 + 18748: -53,-61 + 18749: -54,-61 + 18750: -54,-61 + 18751: -57,-61 + 18752: -58,-61 + 18753: -59,-60 + 18754: -58,-59 + 18755: -56,-59 + 18756: -59,-60 + 18757: -61,-60 + 18758: -63,-60 + 18759: -64,-60 + 18760: -64,-60 + 18761: -64,-59 + 18762: -64,-57 + 18763: -64,-57 + 18764: -64,-55 + 18765: -63,-55 + 18766: -64,-55 + 18767: -72,-55 + 18768: -56,-55 + 18769: -56,-55 + 18770: -58,-55 + 18771: -58,-55 + 18772: -59,-54 + 18773: -59,-53 + 18774: -58,-53 + 18775: -56,-53 + 18776: -57,-54 + 18777: -55,-54 + 18778: -54,-54 + 18779: -54,-56 + 18780: -51,-53 + 18781: -50,-54 + 18782: -50,-55 + 18783: -51,-58 + 18784: -51,-59 + 18785: -51,-60 + 18786: -46,-57 + 18787: -47,-57 + 18788: -48,-57 + 18789: -44,-58 + 18790: -42,-58 + 18791: -41,-58 + 18792: -38,-58 + 18793: -37,-58 + 18794: -37,-58 + 18795: -37,-59 + 18796: -39,-53 + 18797: -39,-52 + 18798: -38,-52 + 18799: -37,-52 + 18800: -38,-52 + 18801: -39,-52 + 18802: -41,-55 + 18803: -42,-55 + 18804: -42,-56 + 18805: -41,-56 + 18806: -41,-54 + 18807: -42,-54 + 18808: -42,-53 + 18809: -41,-53 + 18810: -42,-51 + 18811: -43,-51 + 18812: -41,-51 + 18813: -39,-50 + 18814: -38,-50 + 18815: -41,-50 + 18816: -43,-50 + 18817: -38,-47 + 18818: -38,-46 + 18819: -44,-50 + 18820: -45,-50 + 18821: -45,-52 + 18822: -46,-52 + 18823: -47,-51 + 18824: -46,-53 + 18825: -49,-53 + 18826: -48,-54 + 18827: -49,-54 + 18828: -48,-55 + 18829: -48,-55 + 18830: -46,-55 + 18831: -49,-51 + 18832: -49,-50 + 18833: -51,-53 + 18889: 24,-5 + 18895: 11,-59 + 18922: 39,17 + 18923: 40,17 + 18924: 40,18 + 18925: 39,18 + 18926: 40,19 + 18927: 41,19 + 18928: 41,20 + 18929: 42,20 + 18930: 43,20 + 18931: 43,21 + 18932: 45,20 + 18933: 46,20 + 18935: 48,21 + 18937: 45,22 + 18938: 45,22 + 18939: 45,23 + 18940: 45,24 + 18941: 48,24 + 18942: 47,23 + 18943: 49,21 + 18944: 50,21 + 18945: 50,19 + 18946: 49,19 + 18947: 48,19 + 18948: 46,19 + 18949: 45,19 + 18950: 45,20 + 18951: 45,21 + 18952: 43,20 + 18953: 43,19 + 18954: 42,20 + 18955: 40,19 + 18956: 40,19 + 18957: 40,18 + 18958: 41,17 + 18959: 39,17 + 18960: 37,17 + 18961: 38,19 + 18962: 37,21 + 18963: 37,22 + 18964: 40,22 + 18965: 38,22 + 18966: 37,24 + 18967: 37,24 + 18968: 37,24 + 18969: 38,24 + 18970: 37,25 + 18971: 37,24 + 18972: 35,24 + 18973: 34,25 + 18974: 35,26 + 18975: 34,26 + 18976: 35,25 + 18977: 34,24 + 18978: 33,24 + 18979: 33,25 + 18980: 32,24 + 18982: 30,25 + 18983: 30,24 + 18986: 30,22 + 18988: 28,21 + 18989: 28,22 + 18990: 28,24 + 18991: 27,25 + 18992: 27,23 + 18993: 27,22 + 18994: 25,22 + 18995: 23,22 + 18997: 18,22 + 18998: 16,22 + 18999: 17,21 + 19002: 24,21 + 19003: 26,21 + 19004: 16,17 + 19005: 16,18 + 19006: 15,18 + 19007: 15,17 + 19008: 14,18 + 19009: 14,19 + 19010: 14,20 + 19011: 15,21 + 19012: 16,21 + 19013: 15,22 + 19014: 14,22 + 19015: 13,23 + 19016: 16,24 + 19017: 17,27 + 19018: 17,27 + 19019: 17,29 + 19020: 17,31 + 19021: 16,31 + 19022: 16,30 + 19023: 16,29 + 19024: 16,28 + 19025: 16,28 + 19026: 16,27 + 19027: 16,26 + 19032: 13,26 + 19033: 12,26 + 19042: 11,25 + 19043: 11,25 + 19044: 11,24 + 19045: 13,24 + 19046: 15,24 + 19047: 16,25 + 19050: 13,26 + 19051: 13,26 + 19052: 17,31 + 19053: 16,31 + 19054: 15,31 + 19055: 15,32 + 19056: 15,33 + 19057: 17,33 + 19058: 17,33 + 19059: 16,32 + 19060: 16,32 + 19061: 16,34 + 19070: 18,17 + 19071: 19,17 + 19072: 20,17 + 19073: 21,17 + 19074: 21,18 + 19075: 20,18 + 19076: 20,19 + 19077: 19,19 + 19078: 21,19 + 19079: 22,19 + 19080: 23,19 + 19081: 23,18 + 19082: 22,18 + 19083: 21,18 + 19084: 27,21 + 19085: 26,21 + 19086: 25,19 + 19087: 25,18 + 19088: 26,18 + 19089: 24,15 + 19090: 24,16 + 19091: 23,16 + 19092: 23,15 + 19093: 24,15 + 19094: 23,14 + 19095: 23,14 + 19096: 23,13 + 19097: 26,15 + 19098: 27,15 + 19099: 29,15 + 19100: 29,15 + 19101: 25,10 + 19102: 24,10 + 19103: 23,10 + 19104: 23,10 + 19105: 23,13 + 19106: 23,14 + 19107: 23,12 + 19108: 22,12 + 19109: 21,12 + 19110: 20,12 + 19111: 18,14 + 19112: 28,21 + 19113: 27,21 + 19114: 27,22 + 19115: 28,22 + 19116: 28,23 + 19117: 27,23 + 19118: 27,24 + 19119: 28,24 + 19120: 28,25 + 19121: 27,25 + 19122: 27,26 + 19123: 27,27 + 19124: 27,27 + 19125: 27,28 + 19126: 27,29 + 19127: 27,29 + 19128: 26,28 + 19129: 28,28 + 19131: 30,24 + 19132: 30,25 + 19133: 32,25 + 19134: 33,24 + 19135: 34,24 + 19136: 34,25 + 19137: 34,26 + 19138: 35,25 + 19139: 32,17 + 19140: 33,17 + 19327: 20,-1 + 19328: 18,2 + 19329: 22,3 + 19330: 22,-1 + 19344: 32,22 + 19345: 32,21 + 19346: 31,22 + 19347: 22,22 + 19348: 21,22 + 19386: 13,27 + 19387: 11,26 + 19388: 11,27 + 19389: 11,28 + 19390: 10,28 + 19391: 12,28 + 19392: 13,28 + 19393: 14,28 + 19684: -10,-41 + 19685: -11,-42 + 19718: -24,-42 + 19719: -26,-43 + 19720: -16,-43 + 19721: -18,-43 + 19722: -16,-41 + 19723: -18,-41 + 19724: -12,-42 + 19725: -13,-42 + 19728: -13,-41 + 19729: -13,-40 - node: cleanable: True zIndex: 5 @@ -4224,7 +5127,6 @@ entities: 3221: 39,-28 3222: 38,-28 3224: 40,-30 - 3288: 19,6 3844: 38,-29 3857: 39,-45 3858: 39,-46 @@ -4248,16 +5150,10 @@ entities: 3962: 14,-52 3971: 13,-52 3972: 11,-54 - 4350: -24,-42 4351: -28,-42 4352: -28,-44 4353: -29,-48 - 4354: -28,-46 - 4355: -30,-54 4356: -31,-57 - 4357: -30,-60 - 4358: -31,-64 - 4359: -30,-56 4878: 16,-5 4922: -3,11 4923: -2,11 @@ -4280,15 +5176,6 @@ entities: 5432: -20,-44 5433: -21,-44 5434: -22,-44 - 5554: -30,-31 - 5558: -32,-31 - 5696: -53,-41 - 5697: -51,-41 - 5698: -51,-42 - 5908: -40,-31 - 5909: -38,-31 - 5910: -37,-31 - 5911: -39,-31 6550: -16,7 6551: -17,7 6552: -15,6 @@ -4296,30 +5183,11 @@ entities: 6554: -15,3 6555: -15,3 7323: 53,-19 - 7534: 24,1 - 7535: 24,0 - 7536: 24,-1 7537: 25,-1 - 7538: 24,1 - 7539: 23,1 7540: 23,2 - 7541: 23,1 - 7542: 22,1 - 7543: 21,1 - 7544: 21,1 - 7545: 21,3 - 7546: 24,2 - 7547: 25,2 - 7548: 24,1 - 7549: 24,0 7550: 25,-1 7551: 25,0 - 7552: 24,0 - 7553: 23,5 - 7554: 23,5 7555: 23,6 - 7556: 23,5 - 7557: 24,5 7558: 25,5 8226: 14,-30 8227: 13,-30 @@ -4339,11 +5207,7 @@ entities: 8245: -1,-51 8246: -2,-51 8247: -6,-56 - 8248: -31,-59 8249: -31,-58 - 8250: -30,-57 - 8251: -30,-62 - 8252: -31,-61 8253: -42,-56 8254: -41,-56 8255: -40,-56 @@ -4372,10 +5236,7 @@ entities: 8504: 0,-42 8505: 0,-40 8506: 1,-40 - 9102: -34,-35 - 9187: 50,-22 9188: 49,-25 - 9189: 50,-25 9447: -26,-2 9448: -27,-2 9449: -26,0 @@ -4396,12 +5257,8 @@ entities: 10263: -29,-34 10693: -19,-38 11524: 34,-36 - 11666: -7,-14 11667: -6,-14 11668: -6,-15 - 11669: -7,-15 - 11670: -4,-14 - 11671: -3,-14 11713: -13,-12 11714: -12,-12 11715: -11,-12 @@ -4409,14 +5266,10 @@ entities: 11717: -12,-13 11718: -13,-13 11719: -14,-20 - 11720: -39,-34 - 11721: -43,-35 - 11722: -42,-36 11826: 19,12 11827: 19,13 11829: 17,14 12646: -7,-50 - 12647: -4,-49 12649: 2,-48 12650: 5,-50 12651: 11,-50 @@ -4447,7 +5300,6 @@ entities: 14456: 34,-32 14457: 35,-31 14464: 39,-28 - 14508: 32,-7 14509: 33,-3 14510: 31,8 14511: 34,13 @@ -4456,7 +5308,6 @@ entities: 14669: -26,-11 14670: -26,-10 14865: -25,-14 - 14866: -21,-16 14912: -31,15 14913: -30,16 14914: -30,19 @@ -4470,6 +5321,142 @@ entities: 15040: 21,-26 15041: 21,-27 15042: 20,-27 + 15276: 0,-88 + 15277: 1,-88 + 15278: 1,-87 + 15279: 2,-87 + 15280: 1,-85 + 15281: 1,-85 + 15282: -1,-85 + 15283: -1,-85 + 15284: 8,-89 + 15285: 7,-89 + 15286: 7,-90 + 15287: 6,-90 + 15288: 6,-91 + 15289: 7,-91 + 15419: -5,-69 + 15420: -5,-68 + 17005: -34,-32 + 17006: -35,-32 + 17007: -35,-33 + 17008: -35,-34 + 17009: -36,-34 + 17011: -42,-33 + 17012: -44,-33 + 17013: -44,-32 + 17014: -43,-31 + 17015: -45,-31 + 17016: -46,-31 + 17252: 20,-12 + 17258: 21,-15 + 17259: 26,-13 + 17260: 18,-12 + 17261: 14,-6 + 17262: 15,-16 + 17263: 8,-16 + 17264: 8,-19 + 17265: 3,13 + 17266: 15,2 + 17268: 30,8 + 17269: 48,9 + 17270: 42,-4 + 17271: 53,-22 + 17485: 12,-17 + 17486: 10,-17 + 17487: 7,-17 + 17488: 3,-17 + 17493: 14,2 + 17496: 23,5 + 17497: 24,5 + 17498: 18,7 + 17499: 17,7 + 17500: 18,6 + 17501: 19,6 + 17502: 20,5 + 17503: 20,6 + 17504: 20,7 + 17529: 21,0 + 17530: 21,1 + 17533: 21,-1 + 17534: 21,0 + 17535: 21,1 + 17538: 20,-11 + 17539: 18,-11 + 17540: 18,-10 + 17541: 21,-10 + 17542: 21,-12 + 17543: 21,-11 + 17544: 18,-8 + 17545: 18,-8 + 17585: 19,1 + 17586: 18,1 + 17587: 18,0 + 17589: 19,1 + 17621: 27,0 + 17850: 20,-3 + 17851: 21,-3 + 17853: 18,1 + 17854: 18,0 + 18502: 12,-32 + 18503: 13,-31 + 18504: 12,-30 + 18505: 13,-30 + 18506: 14,-27 + 18892: 36,-44 + 19141: 34,17 + 19142: 35,18 + 19143: 34,18 + 19144: 37,18 + 19145: 37,17 + 19146: 38,17 + 19147: 38,18 + 19148: 38,20 + 19149: 36,21 + 19150: 37,22 + 19151: 40,22 + 19152: 41,20 + 19153: 43,20 + 19154: 43,19 + 19156: 30,22 + 19157: 28,21 + 19159: 30,25 + 19160: 33,25 + 19161: 35,24 + 19332: 19,0 + 19687: -11,-41 + 19688: -8,-41 + 19689: -7,-41 + 19690: -7,-38 + 19691: -8,-38 + 19692: -11,-38 + 19693: -12,-38 + 19694: -10,-44 + 19695: -8,-46 + 19696: -5,-46 + 19697: -8,-38 + 19698: -12,-37 + 19699: -15,-42 + 19700: -18,-43 + 19701: -18,-39 + 19702: -18,-38 + 19703: -18,-37 + 19704: -19,-38 + 19705: -19,-37 + 19706: -18,-36 + 19707: -18,-36 + 19708: -17,-36 + 19709: -17,-38 + 19710: -23,-39 + 19711: -23,-38 + 19712: -23,-37 + 19713: -24,-37 + 19714: -24,-36 + 19715: -23,-35 + 19716: -23,-34 + 19717: -24,-34 + 19726: -12,-41 + 19727: -13,-41 - node: cleanable: True zIndex: 5 @@ -4480,7 +5467,6 @@ entities: 1595: -17,10 1596: -17,8 3976: 8,-55 - 3977: 7,-53 3978: 7,-54 3979: 8,-56 3980: 8,-57 @@ -4494,11 +5480,9 @@ entities: 3989: 9,-48 3990: 9,-49 3991: 7,-50 - 3992: 6,-49 3993: 5,-50 3994: 0,-50 3995: -1,-48 - 3996: -3,-50 3997: -5,-49 3998: -7,-48 3999: -8,-50 @@ -4509,35 +5493,18 @@ entities: 4006: -9,-56 4007: -6,-56 4008: -7,-56 - 4009: -8,-59 4010: -9,-60 4023: -8,-37 4024: -9,-37 4025: -9,-37 4026: -13,-39 - 4027: -13,-41 - 4360: -30,-56 4361: -30,-58 4362: -31,-57 - 4363: -31,-60 - 4364: -30,-59 - 4365: -30,-64 - 4366: -31,-62 - 4367: -30,-55 4368: -31,-56 4369: -31,-55 - 4370: -30,-50 - 4371: -28,-46 4372: -27,-42 - 4375: -24,-32 - 4376: -24,-30 - 4378: -24,-26 - 4379: -24,-25 4380: -24,-23 4381: -23,-21 - 4382: -22,-20 - 4383: -19,-20 - 4384: -19,-20 4385: -16,-20 4387: -17,-16 4388: -18,-14 @@ -4564,23 +5531,15 @@ entities: 4414: 15,10 4415: 16,8 4417: 15,4 - 4418: 15,2 - 4419: 15,0 - 4420: 15,-2 4422: 17,-4 - 4425: 25,-4 - 4426: 26,-3 4427: 28,-5 4431: 32,-9 4432: 31,-10 4434: 30,-15 4435: 31,-17 4436: 30,-20 - 4437: 32,-22 4438: 32,-24 - 4439: 35,-22 4440: 38,-23 - 4441: 40,-22 4442: 43,-22 4443: 44,-22 4446: 53,-24 @@ -4589,14 +5548,9 @@ entities: 4455: 51,-17 4464: 53,-20 4466: 47,-19 - 4468: 41,-22 4469: 39,-21 - 4471: 32,-22 - 4472: 30,-22 - 4473: 27,-22 4474: 25,-22 4476: 21,-21 - 4477: 19,-22 4478: 17,-22 4479: 14,-23 4480: 12,-23 @@ -4616,24 +5570,7 @@ entities: 4494: 10,-47 4495: 12,-44 4496: 14,-45 - 4497: 17,-44 - 4498: 17,-43 4499: 16,-43 - 4620: 31,35 - 4621: 34,35 - 4622: 32,33 - 4623: 31,31 - 4624: 32,28 - 4625: 31,26 - 4626: 33,25 - 4627: 32,26 - 4628: 32,28 - 4629: 31,28 - 4630: 33,23 - 4631: 32,20 - 4632: 32,17 - 4633: 33,18 - 4634: 32,19 4635: 31,15 4636: 32,13 4637: 32,10 @@ -4644,12 +5581,9 @@ entities: 4643: 31,7 4644: 32,6 4645: 32,2 - 4646: 31,0 - 4647: 33,-2 4648: 33,-3 4650: 31,-7 4651: 31,-9 - 4652: 33,-7 4653: 30,-8 4654: 30,-10 4655: 33,-11 @@ -4657,21 +5591,15 @@ entities: 4659: 31,-17 4660: 32,-17 4661: 30,-20 - 4662: 33,-22 4665: 33,-21 4666: 31,-21 4667: 36,-21 - 4668: 35,-22 4669: 40,-23 - 4670: 41,-22 4672: 32,-21 - 4673: 29,-22 - 4674: 27,-22 4675: 26,-23 4676: 25,-23 4677: 23,-21 4678: 22,-23 - 4679: 20,-22 4680: 17,-23 4681: 15,-23 4682: 17,-23 @@ -4679,10 +5607,8 @@ entities: 4684: 18,-23 4685: 24,-23 4686: 23,-23 - 4687: 24,-22 4690: 20,-21 4691: 19,-23 - 4692: 20,-19 4693: 20,-20 4694: 19,-20 4695: 17,-23 @@ -4710,7 +5636,6 @@ entities: 4759: 21,-32 4760: 21,-32 4762: 30,-21 - 4764: 34,-22 4765: 30,-23 4766: 35,-19 4767: 37,-18 @@ -4727,31 +5652,6 @@ entities: 4778: 38,-13 4780: 35,-18 4781: 35,-19 - 4843: 32,24 - 4844: 31,25 - 4845: 30,24 - 4846: 29,24 - 4847: 29,27 - 4848: 29,26 - 4849: 31,30 - 4850: 33,31 - 4851: 31,32 - 4852: 33,36 - 4853: 32,40 - 4854: 31,40 - 4855: 33,41 - 4856: 31,38 - 4857: 33,38 - 4858: 31,37 - 4859: 27,-4 - 4860: 26,-5 - 4861: 24,-3 - 4862: 23,-5 - 4879: 14,-2 - 4880: 14,-1 - 4881: 15,-1 - 4882: 14,2 - 4883: 14,3 4884: 14,5 4886: 16,7 4888: 17,7 @@ -4789,20 +5689,13 @@ entities: 5167: -9,-7 5168: -10,-7 5199: 2,-17 - 5200: 2,-19 5201: 2,-20 5202: 3,-20 - 5203: 7,-20 5204: 7,-19 - 5205: 5,-19 - 5206: 6,-18 5207: 7,-19 - 5208: 9,-19 - 5209: 11,-20 5210: 11,-18 5211: 12,-18 5212: 12,-19 - 5213: 12,-20 5231: 11,-28 5232: 9,-31 5233: 9,-32 @@ -4822,7 +5715,6 @@ entities: 5267: 10,-45 5268: 11,-45 5269: 12,-44 - 5270: 12,-42 5271: 11,-41 5272: 10,-41 5273: 9,-41 @@ -4851,7 +5743,6 @@ entities: 5352: -1,-48 5353: 0,-48 5354: -5,-50 - 5355: -4,-49 5356: -8,-49 5357: -7,-48 5358: -8,-48 @@ -4860,11 +5751,8 @@ entities: 5363: -9,-52 5364: -8,-52 5366: -5,-53 - 5367: -5,-52 - 5368: -6,-52 5369: -6,-55 5370: -5,-55 - 5371: -5,-54 5373: -6,-56 5374: -7,-56 5375: -8,-57 @@ -4895,14 +5783,9 @@ entities: 5401: -7,-69 5402: -8,-69 5403: -9,-69 - 5435: -21,-42 - 5436: -20,-42 - 5437: -23,-42 5438: -23,-41 5439: -24,-41 5440: -25,-41 - 5441: -25,-42 - 5444: -24,-42 5494: -19,-55 5496: -17,-55 5497: -16,-55 @@ -4911,25 +5794,7 @@ entities: 5500: -18,-57 5501: -19,-57 5502: -20,-57 - 5665: -51,-42 - 5666: -52,-42 - 5667: -52,-44 - 5668: -50,-46 - 5669: -52,-46 - 5670: -51,-47 - 5671: -50,-47 - 5717: -38,-42 - 5836: -51,-33 - 5838: -53,-34 - 5839: -51,-34 - 5840: -52,-35 - 5981: -29,-31 - 5983: -26,-32 - 5984: -25,-31 - 5986: -24,-32 - 5987: -24,-29 5988: -23,-27 - 5989: -24,-26 6038: -19,-25 6039: -18,-26 6040: -19,-26 @@ -4947,15 +5812,9 @@ entities: 6052: -19,-23 6053: -19,-21 6054: -20,-21 - 6055: -20,-20 - 6057: -23,-20 6058: -24,-21 6059: -21,-21 - 6060: -24,-20 6061: -23,-23 - 6090: -26,-23 - 6091: -21,-16 - 6092: -21,-15 6100: -17,-16 6101: -17,-15 6102: -17,-14 @@ -4994,10 +5853,8 @@ entities: 6274: -26,-36 6275: -25,-36 6276: -25,-35 - 6277: -24,-35 6278: -25,-34 6282: -25,-38 - 6283: -24,-40 6284: -24,-41 6285: -25,-41 6358: -5,-35 @@ -5012,19 +5869,7 @@ entities: 6377: -2,-27 6378: -3,-28 6379: -1,-27 - 6414: -31,-69 - 6415: -33,-69 - 6416: -32,-70 - 6417: -31,-70 - 6418: -31,-70 - 6419: -30,-69 - 6420: -31,-68 - 6421: -31,-66 - 6422: -30,-64 - 6423: -32,-62 - 6424: -31,-60 6425: -32,-58 - 6426: -30,-56 6427: -33,-55 6428: -33,-55 6429: -35,-55 @@ -5036,22 +5881,16 @@ entities: 6435: -35,-47 6436: -35,-46 6437: -35,-44 - 6438: -32,-44 - 6439: -32,-44 6440: -34,-46 - 6441: -31,-45 6442: -32,-41 6443: -34,-41 6444: -34,-41 6445: -31,-42 6446: -28,-42 6447: -23,-31 - 6448: -24,-29 6449: -23,-26 - 6450: -24,-25 6451: -23,-22 6452: -25,-20 - 6453: -23,-20 6485: -16,-5 6488: -16,1 6556: -15,6 @@ -5102,14 +5941,6 @@ entities: 6776: 7,10 6777: 10,10 6778: 10,12 - 6875: 14,3 - 6876: 14,2 - 6877: 14,1 - 6878: 15,1 - 6879: 15,0 - 6880: 14,0 - 6881: 14,1 - 6882: 16,0 6883: 16,1 6884: 16,3 6885: 15,4 @@ -5157,18 +5988,10 @@ entities: 7383: 48,-9 7384: 47,-9 7385: 48,-8 - 7650: 19,-15 - 7652: 22,-15 7653: 23,-15 8199: 30,-23 - 8200: 29,-22 - 8201: 29,-22 8202: 29,-21 8203: 27,-21 - 8204: 27,-22 - 8205: 26,-22 - 8206: 33,-22 - 8210: 34,-22 8211: 35,-21 8212: 32,-21 8213: 29,-23 @@ -5197,13 +6020,8 @@ entities: 9050: -21,-24 9051: -20,-25 9052: -21,-19 - 9053: -24,-20 9109: -29,-35 9110: -30,-35 - 9117: -24,-36 - 9118: -16,-42 - 9119: -17,-42 - 9120: -18,-42 9462: -31,4 9463: -30,4 9464: -31,3 @@ -5217,61 +6035,26 @@ entities: 9542: -17,-11 10066: 16,11 10067: 15,12 - 10068: 5,12 - 10069: 3,13 10159: -20,18 10160: -20,17 10161: -20,17 10162: -17,19 10163: -18,19 10164: -17,19 - 10264: -37,-34 - 10265: -37,-35 - 10268: -35,-32 - 10269: -33,-32 - 10272: -33,-32 - 10273: -37,-32 10274: -33,-34 10275: -30,-38 10276: -30,-37 - 10279: -34,-39 10280: -29,-35 10281: -29,-34 10282: -28,-34 - 10294: -30,-34 - 10295: -31,-32 - 10296: -30,-32 - 10297: -34,-38 - 10298: -34,-36 10697: -21,-38 10701: -15,-33 10702: -16,-33 10703: -15,-32 - 10788: -51,-33 - 10789: -51,-34 - 10791: -45,-31 - 10792: -45,-33 - 10793: -46,-34 - 10794: -45,-37 - 10795: -45,-40 - 10796: -45,-42 - 10797: -45,-43 - 10798: -44,-43 - 10799: -44,-42 11709: -10,-13 11710: -9,-14 11711: -13,-16 11712: -13,-15 - 11747: -44,-23 - 11748: -36,-23 - 11749: -37,-23 - 11750: -37,-22 - 11751: -38,-22 - 11761: -28,-24 - 11762: -29,-24 - 11763: -30,-24 - 11764: -31,-23 - 11765: -31,-23 11769: -28,-22 11770: -28,-22 12223: 44,-59 @@ -5291,81 +6074,26 @@ entities: 12523: 10,10 12524: 8,11 12525: 5,10 - 12526: 3,12 12527: -1,10 12528: 9,16 12529: 9,16 - 12530: 9,17 12531: 8,16 - 12532: 8,17 - 12533: 7,17 12534: -2,16 12535: -2,16 12536: -2,17 - 12537: -1,17 12538: -2,17 12539: -2,18 12540: -3,18 - 12569: -39,-32 - 12570: -36,-31 - 12571: -34,-32 - 12572: -32,-31 - 12573: -31,-32 - 12574: -37,-27 - 12575: -39,-27 - 12576: -36,-26 - 12577: -39,-25 - 12578: -36,-23 - 12579: -44,-23 - 12580: -46,-23 - 12581: -44,-25 - 12582: -45,-27 - 12583: -44,-31 - 12584: -45,-33 - 12585: -46,-36 - 12586: -46,-39 - 12587: -45,-40 - 12588: -45,-37 - 12589: -45,-33 - 12590: -45,-31 - 12591: -50,-31 - 12592: -52,-31 - 12593: -53,-32 - 12594: -52,-34 - 12595: -51,-34 - 12596: -51,-31 - 12597: -52,-30 - 12598: -51,-28 - 12599: -51,-27 - 12600: -49,-43 - 12601: -51,-46 - 12602: -48,-44 - 12603: -44,-44 - 12604: -43,-47 - 12605: -44,-48 12606: -43,-50 - 12607: -40,-49 - 12608: -44,-49 - 12609: -44,-49 12610: -42,-53 12611: -43,-51 - 12612: -39,-53 - 12613: -40,-54 12614: -36,-55 12615: -33,-55 12616: -34,-55 12617: -38,-58 12618: -39,-59 12619: -36,-59 - 12620: -33,-59 - 12621: -31,-59 - 12622: -30,-57 - 12623: -31,-60 - 12624: -31,-64 - 12625: -31,-67 - 12626: -31,-68 12627: -29,-56 - 12629: -29,-50 12630: -24,-47 12631: -25,-45 12632: -20,-47 @@ -5375,16 +6103,11 @@ entities: 12636: -15,-43 12637: -4,-42 12638: -5,-41 - 12640: -8,-45 - 12641: -8,-44 - 12642: -9,-43 12645: -3,-42 12664: 10,-49 12665: 10,-54 12666: 9,-54 12667: 9,-57 - 12668: 7,-53 - 12669: 6,-49 12784: 88,-31 12785: 88,-32 12786: 87,-30 @@ -5465,7 +6188,6 @@ entities: 12919: -20,-40 12920: -15,-39 12921: 14,-33 - 12922: 11,-33 12931: 10,-32 12932: 13,-29 12933: 12,-29 @@ -5552,12 +6274,6 @@ entities: 14354: -11,-43 14355: -12,-43 14356: -13,-43 - 14357: -14,-42 - 14358: -17,-42 - 14359: -4,-49 - 14360: -3,-49 - 14361: 5,-49 - 14362: 6,-49 14419: 15,-56 14420: 16,-58 14421: 14,-58 @@ -5607,7 +6323,6 @@ entities: 14686: -26,-5 14687: -26,-6 14688: -30,-5 - 14689: -32,-5 14690: -36,-4 14691: -37,-4 14692: -38,-4 @@ -5647,14 +6362,569 @@ entities: 15011: -6,-41 15012: -4,-42 15013: -5,-40 - 15026: -12,12 - 15027: -11,12 - 15028: -16,12 - 15029: -17,12 15030: -13,12 15031: 14,12 15032: 13,12 15044: 21,-28 + 15213: 12,-89 + 15214: 12,-88 + 15215: 0,-87 + 15216: -1,-87 + 15217: -1,-88 + 15218: 1,-90 + 15219: 2,-90 + 15220: 2,-91 + 15221: 3,-91 + 15222: 3,-90 + 15223: -1,-93 + 15224: -2,-93 + 15225: 0,-95 + 15226: -1,-96 + 15227: -2,-96 + 15228: -4,-95 + 15229: -5,-95 + 15230: -5,-94 + 15231: -9,-92 + 15232: -10,-92 + 15233: -7,-94 + 15234: -7,-96 + 15235: -8,-96 + 15236: -8,-90 + 15237: -6,-89 + 15238: -5,-89 + 15239: -4,-89 + 15421: -5,-69 + 15422: -5,-75 + 15423: -5,-74 + 15502: 10,-65 + 15503: 9,-65 + 15504: 9,-64 + 15505: 8,-64 + 15506: 8,-63 + 15507: 7,-68 + 15508: 7,-69 + 15509: 10,-69 + 15510: 10,-69 + 15511: 10,-68 + 15512: 10,-67 + 15513: 7,-68 + 15514: 11,-68 + 15515: 11,-66 + 15516: 11,-65 + 15517: 10,-66 + 15518: 9,-66 + 15519: 9,-68 + 15520: 11,-73 + 15521: 10,-74 + 15522: 9,-74 + 15523: 11,-76 + 15524: 11,-73 + 15525: -8,-76 + 15526: -9,-75 + 15527: -8,-73 + 15528: -7,-72 + 15529: -7,-72 + 15530: -7,-70 + 15531: -7,-69 + 15532: -9,-69 + 15533: -9,-71 + 15534: -7,-72 + 15535: -8,-69 + 15536: -8,-68 + 15537: -8,-66 + 15538: -8,-66 + 15539: -9,-65 + 15540: -8,-64 + 15541: -6,-64 + 15542: -6,-63 + 15543: -7,-63 + 15544: -7,-61 + 15545: -8,-60 + 15546: -10,-62 + 15547: -10,-62 + 15548: -5,-58 + 15549: -4,-58 + 15550: -5,-57 + 15551: -1,-57 + 15552: 0,-57 + 15553: -1,-57 + 15554: 0,-58 + 15555: 3,-58 + 15556: 3,-56 + 15557: 0,-56 + 15558: -3,-56 + 15559: -3,-57 + 15560: -3,-52 + 15561: -2,-52 + 15562: -3,-51 + 15564: 0,-51 + 15565: 2,-51 + 15566: 2,-52 + 15567: 1,-54 + 15568: 7,-57 + 15569: 6,-58 + 15570: 9,-57 + 15571: 11,-57 + 15572: 9,-58 + 15573: 10,-59 + 15574: 9,-60 + 15575: 9,-59 + 15576: 11,-59 + 15577: 11,-60 + 15578: 9,-61 + 15579: 9,-62 + 15580: 11,-63 + 15581: 9,-63 + 15582: 8,-63 + 15583: 8,-64 + 15584: 13,-59 + 15585: 16,-59 + 15586: 16,-58 + 15587: 17,-56 + 15588: 15,-55 + 15589: 15,-54 + 15590: 14,-54 + 15591: 13,-54 + 15592: 13,-55 + 15593: 13,-57 + 15594: 13,-61 + 15595: 14,-61 + 15596: 15,-61 + 15597: 24,-57 + 15598: 23,-56 + 15599: 21,-54 + 15600: 8,-48 + 15601: -2,-49 + 16454: -39,-47 + 16455: -39,-46 + 16529: -33,-54 + 16530: -35,-54 + 16531: -35,-53 + 16532: -33,-53 + 16533: -35,-57 + 16534: -34,-57 + 16535: -33,-57 + 16536: -33,-58 + 16537: -34,-58 + 16538: -35,-58 + 16539: -35,-59 + 16540: -34,-59 + 16541: -31,-57 + 16542: -32,-56 + 16543: -32,-55 + 16544: -32,-54 + 16545: -35,-55 + 16546: -34,-54 + 16547: -35,-49 + 16548: -35,-48 + 16549: -36,-43 + 16550: -36,-42 + 16551: -36,-41 + 16556: -31,-41 + 16557: -29,-41 + 16558: -28,-41 + 16559: -28,-42 + 16560: -29,-43 + 16562: -30,-42 + 16563: -29,-42 + 16564: -27,-42 + 16565: -31,-43 + 16837: -49,-39 + 16838: -49,-37 + 16839: -48,-36 + 16840: -49,-34 + 16841: -50,-33 + 16842: -49,-32 + 16843: -50,-32 + 16844: -50,-31 + 16845: -50,-29 + 16846: -48,-27 + 16847: -48,-28 + 16848: -48,-30 + 16849: -46,-31 + 16850: -46,-30 + 16851: -45,-30 + 16852: -44,-31 + 16853: -44,-30 + 16854: -41,-31 + 16855: -42,-31 + 16856: -41,-30 + 16857: -40,-30 + 16858: -40,-29 + 16859: -42,-28 + 16860: -43,-28 + 16861: -45,-28 + 16862: -46,-28 + 16863: -46,-33 + 16864: -44,-33 + 16865: -43,-33 + 16866: -44,-34 + 16867: -41,-33 + 16868: -41,-34 + 16869: -40,-34 + 16871: -37,-33 + 16872: -36,-33 + 16873: -35,-33 + 16874: -36,-32 + 16875: -35,-31 + 16876: -36,-30 + 16877: -36,-30 + 16878: -36,-29 + 16879: -36,-32 + 16880: -32,-33 + 16881: -32,-32 + 16882: -31,-31 + 16883: -30,-32 + 16884: -31,-33 + 16885: -29,-33 + 16886: -26,-32 + 16887: -26,-31 + 16888: -26,-30 + 16889: -27,-29 + 16890: -28,-29 + 16891: -24,-30 + 16892: -25,-31 + 16893: -24,-30 + 16894: -25,-28 + 16895: -24,-28 + 16896: -23,-29 + 16897: -25,-31 + 16898: -24,-33 + 16899: -25,-33 + 16900: -23,-34 + 16901: -24,-34 + 16902: -25,-34 + 16903: -24,-35 + 16904: -27,-35 + 16905: -29,-35 + 16906: -28,-36 + 16907: -29,-38 + 16908: -30,-38 + 16909: -32,-38 + 16910: -32,-37 + 16911: -34,-37 + 16912: -35,-37 + 16913: -36,-37 + 16914: -35,-36 + 16915: -36,-37 + 16916: -38,-39 + 16917: -38,-38 + 16918: -39,-37 + 16919: -40,-38 + 16924: -45,-39 + 16925: -48,-45 + 16926: -51,-46 + 16927: -48,-46 + 16928: -47,-47 + 16929: -46,-46 + 16930: -50,-49 + 16931: -51,-49 + 16932: -51,-50 + 16933: -39,-48 + 16934: -38,-47 + 16935: -42,-46 + 16936: -38,-42 + 16937: -39,-42 + 16938: -36,-42 + 16939: -36,-41 + 16940: -34,-41 + 16941: -35,-31 + 16942: -35,-29 + 16943: -35,-27 + 16945: -40,-27 + 16946: -38,-24 + 16947: -39,-25 + 16948: -41,-24 + 16949: -38,-24 + 16950: -35,-24 + 16951: -35,-23 + 16952: -36,-23 + 16953: -36,-25 + 16954: -33,-20 + 16955: -35,-21 + 16956: -37,-21 + 16957: -39,-20 + 16958: -40,-20 + 16959: -42,-21 + 16960: -43,-21 + 16961: -45,-21 + 16962: -46,-22 + 16963: -45,-22 + 16964: -43,-22 + 16965: -42,-22 + 16966: -44,-23 + 16967: -45,-24 + 16968: -45,-24 + 16969: -45,-24 + 16970: -44,-25 + 16971: -37,-16 + 16972: -39,-16 + 16973: -34,-14 + 16974: -34,-12 + 16975: -33,-12 + 16976: -31,-12 + 16977: -26,-13 + 16978: -26,-11 + 16979: -28,-10 + 16980: -28,-9 + 16981: -27,-8 + 16982: -29,-9 + 16983: -29,-8 + 16984: -29,-6 + 16985: -30,-5 + 16986: -30,-5 + 16987: -31,-8 + 16988: -31,-9 + 17253: 15,-9 + 17510: 21,5 + 17511: 22,5 + 17514: 27,4 + 17516: 28,-5 + 17517: 27,-5 + 17606: 25,1 + 17607: 25,0 + 17608: 26,0 + 17609: 27,0 + 17610: 28,0 + 17613: 28,4 + 17941: 32,-9 + 17942: 30,-7 + 17943: 30,-4 + 17944: 30,-5 + 17945: 32,-5 + 17946: 32,-4 + 17947: 32,-3 + 17948: 30,-3 + 17949: 30,-2 + 17950: 32,-2 + 17951: 32,-1 + 18027: 34,24 + 18028: 34,24 + 18029: 36,24 + 18031: 36,23 + 18034: 38,20 + 18035: 40,20 + 18036: 40,21 + 18037: 40,20 + 18038: 39,20 + 18039: 39,17 + 18041: 39,16 + 18042: 40,15 + 18043: 41,15 + 18044: 41,18 + 18045: 39,16 + 18046: 40,15 + 18047: 40,14 + 18048: 38,14 + 18049: 36,14 + 18050: 37,15 + 18051: 36,15 + 18052: 36,14 + 18053: 37,11 + 18083: 39,15 + 18084: 40,15 + 18085: 40,18 + 18086: 37,17 + 18087: 37,18 + 18088: 38,19 + 18090: 31,18 + 18101: 34,25 + 18102: 36,24 + 18106: 38,21 + 18107: 39,21 + 18108: 41,21 + 18109: 38,21 + 18110: 37,19 + 18111: 39,18 + 18112: 33,15 + 18113: 31,15 + 18115: 32,16 + 18116: 33,14 + 18117: 34,14 + 18118: 32,12 + 18119: 32,11 + 18458: 17,-41 + 18459: 18,-40 + 18460: 20,-40 + 18461: 21,-41 + 18462: 22,-41 + 18463: 22,-40 + 18464: 19,-40 + 18465: 19,-42 + 18466: 21,-44 + 18467: 22,-44 + 18468: 22,-45 + 18469: 21,-45 + 18470: 20,-44 + 18471: 18,-47 + 18472: 14,-45 + 18473: 14,-44 + 18474: 14,-43 + 18475: 13,-43 + 18476: 13,-44 + 18477: 12,-44 + 18478: 12,-43 + 18479: 12,-45 + 18480: 10,-44 + 18481: 10,-42 + 18482: 10,-40 + 18483: 11,-37 + 18484: 11,-37 + 18485: 11,-40 + 18486: 11,-43 + 18487: 9,-45 + 18488: 9,-43 + 18489: 9,-40 + 18490: 9,-37 + 18491: 8,-37 + 18492: 12,-34 + 18493: 14,-34 + 18494: 15,-34 + 18495: 16,-34 + 18496: 16,-32 + 18497: 16,-31 + 18498: 16,-30 + 18499: 11,-29 + 18500: 11,-30 + 18501: 11,-31 + 18507: 9,-38 + 18850: -45,-51 + 18851: -43,-51 + 18852: -51,-49 + 18853: -53,-48 + 18854: -53,-49 + 18855: -53,-54 + 18856: -53,-56 + 18857: -54,-56 + 18858: -58,-55 + 18859: -58,-54 + 18860: -58,-53 + 18861: -59,-53 + 18862: -64,-59 + 18863: -54,-59 + 18864: -54,-58 + 18865: -52,-56 + 18866: -47,-58 + 18867: -37,-58 + 18868: -35,-59 + 18869: -35,-58 + 18870: -36,-66 + 18871: -30,-64 + 18872: -31,-64 + 18873: -31,-65 + 18874: -30,-65 + 18875: -29,-62 + 18876: -29,-61 + 18877: -31,-60 + 18878: -31,-59 + 18879: -30,-59 + 18880: -34,-69 + 18881: -35,-70 + 18882: -34,-76 + 18883: -35,-76 + 18884: -35,-77 + 18885: -35,-81 + 18886: -48,-45 + 18887: -46,-46 + 18888: -46,-47 + 18890: 28,-3 + 18893: 34,-42 + 18896: -7,-59 + 18898: -48,-36 + 18899: -43,-25 + 18900: 16,17 + 18902: 38,17 + 19162: 32,23 + 19164: 29,22 + 19165: 27,22 + 19166: 27,23 + 19167: 24,21 + 19170: 22,18 + 19171: 21,17 + 19172: 19,17 + 19173: 18,17 + 19174: 19,19 + 19175: 21,19 + 19176: 23,18 + 19177: 22,18 + 19180: 17,22 + 19181: 16,22 + 19182: 17,24 + 19183: 14,24 + 19184: 14,22 + 19185: 14,22 + 19186: 20,21 + 19188: 24,22 + 19189: 33,18 + 19190: 33,17 + 19191: 33,18 + 19192: 32,18 + 19193: 31,17 + 19194: 34,17 + 19195: 36,17 + 19196: 39,17 + 19197: 41,19 + 19198: 42,19 + 19199: 45,20 + 19201: 46,22 + 19202: 45,22 + 19203: 46,20 + 19205: 49,19 + 19206: 50,19 + 19207: 51,21 + 19208: 50,21 + 19209: 49,21 + 19210: 46,22 + 19211: 46,21 + 19212: 42,20 + 19213: 41,21 + 19214: 40,21 + 19215: 42,21 + 19216: 39,22 + 19333: 19,3 + 19335: 19,5 + 19336: 18,5 + 19337: 39,18 + 19338: 36,17 + 19339: 35,17 + 19340: 34,17 + 19341: 35,18 + 19342: 37,18 + 19394: 12,26 + 19395: 12,27 + 19396: 12,25 + 19397: 13,25 + 19398: 14,25 + 19399: 12,24 + 19400: 14,25 + 19401: 15,25 + 19402: 17,21 + 19403: 17,22 + 19404: 15,20 + 19405: 14,20 + 19406: 15,18 + 19407: 16,18 + 19408: 15,17 + 19409: 20,22 + 19410: 22,22 + 19411: 23,22 + 19412: 22,21 + 19413: 23,23 + 19414: 22,23 + 19415: 21,23 + 19416: 31,20 + 19417: 23,18 + 19418: 20,19 + 19419: 19,19 + 19420: 20,17 + 19421: 21,17 + 19422: 23,17 + 19423: 23,16 + 19424: 23,15 + 19425: 24,15 + 19426: 24,16 + 19427: 27,16 + 19428: 28,16 - node: cleanable: True zIndex: 5 @@ -5664,8 +6934,6 @@ entities: 1159: 21,-54 1160: 20,-54 1161: 19,-54 - 3289: 18,6 - 3290: 18,7 3291: 18,8 3292: 19,8 3945: 35,-56 @@ -5686,22 +6954,12 @@ entities: 4514: 10,-24 4515: 12,-22 4516: 16,-22 - 4517: 19,-22 - 4520: 26,-22 - 4521: 28,-21 - 4522: 29,-22 - 4523: 32,-22 - 4524: 36,-22 4525: 37,-21 - 4526: 40,-22 - 4527: 41,-21 4528: 44,-22 4537: 45,-22 4538: 45,-20 4542: 46,-17 4543: 45,-19 - 4547: 40,-21 - 4549: 31,-22 4550: 31,-20 4551: 32,-18 4552: 31,-16 @@ -5710,63 +6968,24 @@ entities: 4555: 31,-9 4556: 31,-7 4558: 33,-4 - 4559: 30,-4 - 4560: 32,-3 - 4561: 31,0 4565: 33,9 4567: 32,13 4568: 32,15 4569: 31,17 - 4570: 33,20 - 4571: 33,22 - 4572: 31,24 - 4573: 33,27 - 4574: 33,29 - 4575: 32,31 - 4576: 32,34 - 4577: 32,36 - 4578: 32,39 - 4579: 32,41 - 4580: 33,37 - 4581: 32,34 - 4582: 32,31 - 4583: 30,27 - 4584: 29,26 - 4585: 31,24 - 4586: 32,23 - 4587: 33,21 - 4588: 32,18 4589: 32,15 4591: 32,10 4592: 32,8 - 4595: 32,0 4596: 32,4 4598: 34,5 4599: 32,7 - 4600: 31,5 4602: 33,9 4604: 33,11 4606: 32,13 4607: 32,16 - 4608: 33,17 4609: 33,16 - 4610: 31,19 - 4611: 33,24 - 4612: 31,23 - 4613: 32,25 - 4614: 31,27 - 4615: 31,29 - 4616: 32,30 - 4617: 33,33 - 4618: 33,35 - 4619: 32,35 - 4833: 30,-5 - 4834: 32,-4 - 4835: 30,-7 4836: 33,-8 4837: 30,-10 4838: 32,-11 - 4840: 33,19 4841: 31,18 4842: 31,16 4889: 16,7 @@ -5795,8 +7014,6 @@ entities: 5156: -14,-8 5214: 12,-18 5215: 12,-19 - 5216: 12,-20 - 5217: 11,-20 5218: 11,-18 5219: 8,-22 5220: 10,-23 @@ -5834,7 +7051,6 @@ entities: 5333: 15,-54 5334: 7,-50 5336: 6,-50 - 5337: 5,-49 5338: 4,-48 5339: 3,-48 5340: 3,-50 @@ -5848,9 +7064,7 @@ entities: 5411: -9,-69 5412: -8,-62 5413: -9,-61 - 5414: -8,-59 5415: -9,-52 - 5427: -15,-42 5474: -16,-54 5475: -16,-56 5476: -16,-57 @@ -5860,44 +7074,7 @@ entities: 5480: -20,-56 5485: -19,-55 5486: -17,-55 - 5672: -51,-46 - 5673: -52,-46 - 5674: -53,-47 - 5675: -51,-47 - 5676: -52,-47 - 5677: -51,-48 - 5678: -52,-48 - 5679: -50,-47 - 5680: -50,-46 - 5681: -53,-46 - 5682: -53,-47 - 5683: -52,-44 - 5687: -51,-43 - 5688: -52,-44 - 5689: -51,-43 - 5690: -51,-42 - 5691: -52,-42 - 5692: -53,-44 - 5693: -53,-42 - 5694: -53,-41 - 5695: -50,-41 - 5860: -50,-34 - 5861: -52,-34 - 5862: -53,-34 - 5863: -52,-35 - 5864: -51,-35 - 5865: -51,-33 - 5872: -53,-28 - 5876: -52,-27 - 5883: -45,-31 - 5913: -39,-31 - 5914: -40,-31 - 5924: -33,-31 - 5925: -34,-31 - 5950: -27,-36 5990: -23,-28 - 5991: -24,-28 - 5994: -24,-27 5996: -23,-26 5997: -23,-25 6000: -23,-24 @@ -5929,12 +7106,9 @@ entities: 6034: -18,-24 6035: -18,-23 6036: -19,-23 - 6076: -18,-20 6077: -18,-21 6078: -17,-19 6080: -18,-17 - 6081: -21,-16 - 6083: -21,-15 6137: -5,-23 6144: 2,-20 6145: 3,-20 @@ -5948,22 +7122,8 @@ entities: 6153: -5,-33 6154: -3,-33 6286: -23,-41 - 6287: -25,-42 - 6288: -24,-42 - 6290: -28,-43 - 6293: -27,-41 - 6294: -29,-43 6296: -28,-44 6297: -29,-44 - 6298: -28,-46 - 6299: -20,-41 - 6300: -21,-41 - 6301: -22,-41 - 6302: -20,-42 - 6303: -19,-41 - 6304: -17,-41 - 6305: -16,-41 - 6306: -15,-41 6380: -3,-26 6381: -2,-26 6382: -3,-27 @@ -5986,17 +7146,6 @@ entities: 6400: 2,-48 6401: 1,-48 6402: -23,-54 - 6403: -30,-68 - 6404: -31,-69 - 6405: -31,-69 - 6406: -32,-70 - 6407: -33,-70 - 6408: -33,-68 - 6409: -33,-68 - 6410: -32,-69 - 6411: -33,-69 - 6412: -31,-68 - 6413: -30,-70 6519: -26,6 6531: -16,10 6532: -16,9 @@ -6015,45 +7164,17 @@ entities: 6783: 14,11 6784: 13,10 6785: 13,11 - 6811: 18,5 - 6812: 19,5 - 6813: 19,6 - 6814: 18,6 - 6815: 18,7 6816: 17,7 6817: 17,7 6818: 18,8 6819: 19,8 - 6820: 19,7 - 6821: 18,7 - 6822: 19,7 - 6823: 18,6 - 6824: 19,5 - 6825: 19,5 - 6826: 18,5 - 6827: 10,4 - 6828: 10,5 - 6829: 10,6 - 6830: 9,6 - 6831: 8,6 - 6832: 8,5 - 6833: 8,4 6834: 10,3 6835: 9,3 6836: 10,3 - 6837: 11,5 - 7654: 20,-15 - 7655: 19,-15 - 7656: 19,-14 - 7658: 21,-15 - 7659: 21,-15 7660: 17,-17 - 7661: 18,-17 7662: 17,-17 - 7663: 18,-17 9104: -33,-35 9105: -30,-35 - 9190: 51,-25 9191: 52,-23 9194: 53,-21 9197: 46,-23 @@ -6086,9 +7207,7 @@ entities: 9490: -26,10 10061: 23,-7 10062: 20,-5 - 10063: 18,-5 10064: 16,-4 - 10065: 16,-3 10112: 11,18 10113: 16,24 10114: 15,24 @@ -6149,80 +7268,15 @@ entities: 10193: 10,14 10194: 11,14 10195: 11,15 - 10198: 4,18 - 10199: 2,17 - 10200: 1,17 10201: 1,18 10202: 2,18 - 10203: -1,25 - 10204: -1,25 10205: -2,24 - 10206: 14,3 10706: -14,-32 10707: -23,-38 10708: -23,-35 10709: -23,-33 - 10710: -24,-33 10711: -28,-34 10712: -25,-35 - 10713: -25,-33 - 10714: -25,-32 - 10715: -35,-30 - 10716: -35,-28 - 10718: -37,-27 - 10719: -38,-26 - 10720: -39,-26 - 10721: -39,-24 - 10722: -38,-23 - 10723: -40,-23 - 10724: -37,-23 - 10725: -37,-24 - 10726: -36,-24 - 10727: -44,-24 - 10728: -43,-23 - 10729: -45,-23 - 10730: -45,-24 - 10731: -45,-26 - 10732: -45,-28 - 10733: -44,-29 - 10734: -45,-30 - 10735: -45,-31 - 10736: -43,-31 - 10737: -42,-32 - 10738: -43,-32 - 10739: -42,-31 - 10740: -39,-31 - 10741: -39,-32 - 10742: -38,-32 - 10743: -38,-34 - 10744: -38,-35 - 10745: -46,-33 - 10746: -46,-34 - 10747: -45,-35 - 10748: -46,-36 - 10749: -46,-37 - 10750: -43,-37 - 10751: -42,-37 - 10752: -41,-37 - 10753: -43,-36 - 10754: -43,-35 - 10755: -45,-36 - 10756: -45,-37 - 10757: -38,-38 - 10758: -39,-38 - 10759: -38,-39 - 10760: -37,-40 - 10761: -38,-41 - 10762: -40,-41 - 10763: -41,-41 - 10764: -44,-41 - 10765: -45,-42 - 10766: -45,-43 - 10767: -44,-44 - 10768: -42,-44 - 10769: -40,-44 - 10770: -38,-44 - 10771: -38,-43 11482: 37,-33 11483: 37,-32 11484: 36,-33 @@ -6261,7 +7315,6 @@ entities: 11663: -9,-16 11664: -9,-15 11672: -2,-14 - 11673: -2,-13 11674: -2,-9 11675: -3,-9 11676: -4,-8 @@ -6270,13 +7323,11 @@ entities: 11679: -3,-10 11680: -3,-11 11681: -4,-11 - 11682: -1,-11 11683: 2,-11 11684: 2,-10 11685: 3,-8 11686: 5,-10 11687: 3,-11 - 11688: 2,-9 11689: 2,-4 11690: -1,-4 11691: -5,-4 @@ -6295,8 +7346,6 @@ entities: 11851: 19,13 11852: 19,12 11853: 29,-5 - 11854: 29,-4 - 11855: 29,-3 11887: -34,4 11888: -34,6 11889: -33,7 @@ -6404,45 +7453,11 @@ entities: 12470: 31,12 12471: 33,14 12472: 32,16 - 12473: 32,17 - 12474: 32,19 - 12475: 32,21 - 12476: 31,23 - 12477: 34,23 - 12478: 34,24 - 12479: 34,25 - 12480: 32,25 - 12481: 32,27 - 12482: 32,29 - 12483: 33,30 - 12484: 32,30 - 12485: 32,32 - 12486: 31,34 - 12487: 33,36 - 12488: 31,38 - 12489: 33,40 - 12490: 32,42 - 12491: 32,32 - 12492: 33,29 - 12493: 32,27 - 12494: 32,23 - 12495: 33,20 12496: 32,16 12497: 31,13 12498: 32,10 12499: 32,7 - 12500: 31,4 - 12502: 31,-1 - 12503: 32,-4 - 12505: 29,-4 - 12506: 26,-5 - 12507: 23,-4 - 12508: 21,-5 - 12509: 19,-4 12510: 17,-5 - 12512: 14,-2 - 12513: 15,1 - 12514: 15,3 12515: 15,5 12516: 16,6 12517: 16,6 @@ -6470,8 +7485,6 @@ entities: 13929: -26,-52 13930: -25,-48 13931: -25,-47 - 13932: -27,-47 - 13933: -29,-46 13934: -20,-38 13935: -20,-39 13936: -28,-36 @@ -6491,24 +7504,15 @@ entities: 14458: 32,-31 14459: 32,-32 14460: 35,-32 - 14478: -27,-24 - 14479: -28,-23 - 14480: -27,-23 14481: -14,18 14482: 17,10 14483: 16,10 - 14484: 18,-6 14485: 20,-3 - 14486: 30,8 14487: 31,8 14519: 29,-12 14520: 29,-13 - 14521: 29,-11 - 14522: 29,-10 - 14523: 34,-8 14524: 32,-8 14525: 32,-9 - 14526: 28,-1 14549: -27,5 14550: -27,4 14551: -26,4 @@ -6544,8 +7548,6 @@ entities: 14795: -27,-10 14796: -25,-9 14797: -26,-9 - 14798: -28,-8 - 14799: -28,-9 14800: -20,16 14801: -20,19 14802: -22,19 @@ -6554,28 +7556,20 @@ entities: 14805: -26,19 14807: -31,18 14808: -30,16 - 14867: -26,-17 14868: -26,-14 - 14869: -20,-16 14870: -18,-16 14871: -17,-3 14872: -8,-21 14873: -5,-22 - 14888: 14,-10 - 14889: 14,-9 - 14890: 12,-9 - 14891: 13,-9 14974: 33,3 14975: 33,4 14976: 35,2 14977: 34,2 14978: 33,5 - 14979: 30,8 14980: 34,13 14981: 33,14 14982: 34,14 14983: 33,13 - 14984: 33,21 15045: 19,-28 15046: 19,-25 15047: 20,-28 @@ -6583,13 +7577,486 @@ entities: 15049: 20,-32 15050: 28,-27 15051: 30,-29 - 15052: 29,-10 - 15053: 34,-8 - 15054: 27,0 - 15055: 33,-1 15056: 31,11 15057: 31,10 - 15058: 29,26 + 15290: 2,-90 + 15291: 1,-90 + 15292: 2,-91 + 15293: 2,-92 + 15294: 0,-93 + 15295: 1,-94 + 15296: -1,-93 + 15297: 0,-95 + 15298: -1,-96 + 15299: -2,-96 + 15300: -4,-96 + 15301: -5,-96 + 15302: -5,-93 + 15453: -8,-61 + 15454: -8,-60 + 15455: -7,-60 + 15456: -9,-60 + 15457: -9,-59 + 15458: -7,-59 + 15459: -5,-58 + 15460: -4,-58 + 15461: -3,-58 + 15462: -3,-59 + 15463: -4,-59 + 15464: -5,-59 + 15465: -5,-57 + 16456: -37,-47 + 16457: -37,-46 + 16458: -42,-46 + 16459: -43,-47 + 16460: -42,-47 + 16461: -35,-46 + 16462: -34,-46 + 16463: -34,-45 + 16464: -35,-45 + 16465: -35,-44 + 16466: -36,-44 + 16467: -36,-43 + 16468: -35,-43 + 16469: -34,-43 + 16470: -33,-43 + 16471: -33,-44 + 16472: -33,-45 + 16473: -33,-46 + 16474: -36,-42 + 16475: -36,-41 + 16477: -35,-42 + 16478: -34,-42 + 16479: -34,-41 + 16485: -32,-41 + 16486: -31,-41 + 16487: -31,-42 + 16488: -32,-42 + 16490: -32,-43 + 16492: -33,-48 + 16493: -33,-48 + 16494: -33,-49 + 16495: -33,-50 + 16497: -34,-51 + 16498: -34,-50 + 16499: -34,-49 + 16500: -35,-48 + 16501: -35,-49 + 17017: -52,-32 + 17018: -52,-31 + 17019: -52,-30 + 17020: -54,-31 + 17021: -54,-30 + 17022: -55,-30 + 17023: -54,-29 + 17024: -55,-28 + 17025: -58,-31 + 17026: -58,-30 + 17027: -59,-30 + 17028: -60,-30 + 17029: -60,-32 + 17030: -59,-32 + 17031: -48,-34 + 17032: -48,-36 + 17033: -48,-38 + 17034: -51,-39 + 17035: -51,-38 + 17036: -53,-38 + 17037: -46,-39 + 17038: -45,-39 + 17040: -43,-40 + 17041: -44,-40 + 17042: -46,-40 + 17043: -46,-39 + 17044: -45,-39 + 17046: -42,-37 + 17048: -44,-35 + 17049: -46,-36 + 17051: -41,-38 + 17052: -41,-38 + 17053: -40,-37 + 17054: -40,-37 + 17055: -38,-37 + 17056: -39,-38 + 17057: -38,-39 + 17058: -36,-38 + 17059: -34,-37 + 17060: -31,-38 + 17061: -31,-38 + 17062: -28,-38 + 17063: -28,-39 + 17064: -28,-35 + 17065: -31,-36 + 17066: -28,-33 + 17067: -31,-33 + 17068: -31,-31 + 17069: -29,-30 + 17070: -32,-29 + 17071: -34,-31 + 17072: -35,-30 + 17073: -35,-28 + 17074: -39,-27 + 17075: -40,-28 + 17076: -41,-30 + 17077: -42,-30 + 17078: -44,-28 + 17079: -44,-27 + 17080: -45,-26 + 17081: -45,-26 + 17082: -46,-25 + 17083: -45,-25 + 17084: -41,-25 + 17085: -41,-24 + 17086: -40,-24 + 17121: -33,-66 + 17122: -35,-66 + 17123: -34,-69 + 17124: -35,-71 + 17125: -35,-74 + 17126: -36,-74 + 17127: -36,-73 + 17128: -33,-72 + 17129: -33,-73 + 17131: -33,-78 + 17132: -35,-81 + 17133: -35,-79 + 17134: -35,-78 + 17135: -36,-81 + 17136: -36,-81 + 17137: -32,-81 + 17138: -32,-80 + 17139: -37,-78 + 17140: -36,-78 + 17141: -36,-76 + 17142: -37,-76 + 17143: -35,-82 + 17144: -35,-83 + 17145: -33,-82 + 17146: -33,-83 + 17147: -36,-70 + 17148: -37,-70 + 17254: 15,-11 + 17256: 19,-15 + 17272: 41,-23 + 17273: 24,-22 + 17274: 9,-24 + 17275: 16,-34 + 17276: 9,-41 + 17277: -2,-50 + 17278: 4,-48 + 17279: -15,-43 + 17281: 15,-10 + 17282: 15,-3 + 17616: 28,4 + 17617: 24,3 + 17618: 24,2 + 17619: 24,1 + 17952: 20,7 + 17953: 22,7 + 17954: 15,7 + 18122: 37,18 + 18127: 33,25 + 18128: 39,16 + 18129: -14,7 + 18130: -14,8 + 18173: 0,25 + 18174: 3,25 + 18175: 5,25 + 18176: 7,25 + 18177: 8,25 + 18178: 4,24 + 18179: 4,23 + 18180: -18,-10 + 18181: -18,-9 + 18182: -19,-10 + 18183: -18,-12 + 18184: -18,-14 + 18185: -18,-16 + 18186: -18,-18 + 18187: -18,-20 + 18188: -19,-20 + 18189: -21,-20 + 18190: -24,-20 + 18191: -25,-20 + 18192: -24,-21 + 18193: -24,-24 + 18194: -24,-26 + 18195: -24,-28 + 18196: -24,-30 + 18197: -24,-33 + 18198: -24,-35 + 18199: -24,-37 + 18200: -24,-39 + 18201: -24,-35 + 18202: -24,-33 + 18203: -24,-31 + 18204: -24,-28 + 18205: -24,-26 + 18206: -24,-24 + 18207: -24,-22 + 18208: -23,-20 + 18209: -20,-20 + 18210: -18,-20 + 18211: -21,-20 + 18212: -22,-28 + 18213: -23,-31 + 18214: -23,-30 + 18215: -20,-42 + 18216: -20,-42 + 18217: -18,-42 + 18218: -16,-42 + 18219: -15,-42 + 18220: -14,-42 + 18221: -22,-42 + 18222: -19,-42 + 18223: -17,-42 + 18224: -17,-43 + 18225: 12,-44 + 18226: 13,-44 + 18227: 15,-44 + 18228: 16,-44 + 18230: 10,-42 + 18231: 10,-40 + 18232: 10,-38 + 18233: 19,-22 + 18234: 17,-22 + 18235: 14,-22 + 18236: 13,-22 + 18237: 16,-22 + 18238: 19,-22 + 18239: 22,-22 + 18240: 25,-22 + 18241: 27,-22 + 18242: 30,-22 + 18243: 32,-22 + 18244: 35,-22 + 18245: 33,-22 + 18246: 36,-22 + 18247: 39,-22 + 18248: 40,-22 + 18249: 41,-22 + 18250: 39,-22 + 18251: 38,-22 + 18252: 36,-22 + 18253: 35,-22 + 18254: 33,-22 + 18255: 34,-22 + 18256: 32,-22 + 18257: 41,-21 + 18258: 39,-21 + 18259: 38,-21 + 18260: 37,-21 + 18261: 47,-22 + 18262: 49,-22 + 18263: 48,-22 + 18264: 49,-22 + 18265: 50,-22 + 18266: 51,-22 + 18267: 47,-22 + 18268: 50,-18 + 18269: 49,-18 + 18270: 46,-18 + 18271: 44,-19 + 18272: 30,-14 + 18273: 29,-11 + 18274: 30,-11 + 18275: 29,-8 + 18276: 29,-7 + 18277: 29,-9 + 18278: 32,-8 + 18279: 30,-7 + 18280: 32,-4 + 18281: 32,-4 + 18282: 32,-3 + 18283: 32,-1 + 18284: 30,-2 + 18285: 30,-4 + 18286: 30,-5 + 18287: 33,1 + 18288: 33,2 + 18289: 32,3 + 18290: 28,3 + 18291: 27,8 + 18292: 31,9 + 18293: 31,11 + 18294: 31,11 + 18295: 31,13 + 18296: 34,13 + 18297: 34,14 + 18298: 31,14 + 18299: 32,12 + 18300: 32,10 + 18301: 12,14 + 18302: 11,14 + 18303: 10,14 + 18654: -56,-55 + 18655: -58,-55 + 18656: -58,-54 + 18657: -58,-53 + 18658: -56,-53 + 18659: -59,-53 + 18660: -59,-54 + 18661: -54,-56 + 18662: -52,-56 + 18663: -52,-57 + 18664: -52,-58 + 18665: -53,-58 + 18666: -54,-58 + 18667: -54,-59 + 18668: -53,-59 + 18669: -56,-61 + 18670: -57,-61 + 18671: -58,-61 + 18672: -59,-61 + 18673: -59,-60 + 18674: -59,-59 + 18675: -58,-59 + 18676: -54,-59 + 18677: -54,-60 + 18678: -52,-59 + 18679: -52,-61 + 18680: -52,-61 + 18681: -53,-61 + 18682: -55,-61 + 18683: -51,-58 + 18684: -50,-59 + 18685: -50,-58 + 18686: -50,-56 + 18687: -50,-55 + 18688: -48,-57 + 18689: -48,-58 + 18690: -47,-58 + 18691: -46,-58 + 18692: -46,-57 + 18693: -47,-57 + 18694: -44,-57 + 18695: -44,-57 + 18696: -44,-56 + 18697: -44,-53 + 18698: -45,-52 + 18699: -45,-51 + 18700: -45,-50 + 18701: -45,-50 + 18891: 29,-15 + 18894: -4,-50 + 19217: 37,21 + 19218: 38,22 + 19219: 40,18 + 19220: 39,17 + 19221: 37,17 + 19222: 34,17 + 19223: 32,17 + 19224: 31,18 + 19225: 33,18 + 19226: 35,18 + 19227: 38,18 + 19228: 35,18 + 19229: 35,19 + 19230: 34,19 + 19231: 32,19 + 19232: 31,19 + 19234: 30,21 + 19235: 30,22 + 19236: 32,22 + 19237: 32,23 + 19238: 31,23 + 19239: 30,24 + 19240: 30,25 + 19241: 31,25 + 19242: 32,24 + 19243: 32,24 + 19244: 32,25 + 19245: 33,24 + 19246: 34,24 + 19247: 34,25 + 19248: 34,26 + 19249: 35,25 + 19250: 35,24 + 19251: 36,24 + 19252: 38,24 + 19253: 38,23 + 19254: 39,22 + 19255: 37,21 + 19256: 37,20 + 19257: 40,20 + 19258: 31,24 + 19259: 31,24 + 19262: 30,21 + 19264: 31,22 + 19265: 31,21 + 19266: 31,22 + 19267: 31,21 + 19268: 31,20 + 19269: 31,19 + 19270: 34,17 + 19272: 37,17 + 19456: -46,-38 + 19457: -46,-37 + 19458: -45,-36 + 19459: -44,-36 + 19460: -44,-35 + 19461: -45,-35 + 19462: -43,-35 + 19463: -43,-36 + 19464: -44,-37 + 19465: -42,-37 + 19466: -43,-38 + 19467: -44,-38 + 19468: -43,-39 + 19469: -44,-39 + 19470: -42,-39 + 19471: -45,-37 + 19472: -45,-38 + 19473: -45,-38 + 19474: -43,-38 + 19475: -43,-38 + 19476: -44,-37 + 19477: -46,-35 + 19643: -23,-42 + 19644: -25,-42 + 19645: -26,-42 + 19646: -26,-43 + 19647: -25,-43 + 19648: -24,-43 + 19649: -24,-45 + 19650: -24,-46 + 19651: -25,-46 + 19652: -25,-47 + 19653: -20,-43 + 19654: -21,-43 + 19655: -23,-42 + 19656: -18,-41 + 19657: -17,-41 + 19658: -15,-41 + 19659: -20,-41 + 19660: -22,-41 + 19662: -9,-42 + 19663: -11,-43 + 19664: -12,-43 + 19665: -11,-39 + 19666: -12,-39 + 19667: -12,-40 + 19668: -10,-40 + 19669: -9,-40 + 19670: -9,-41 + 19671: -10,-41 + 19672: -10,-43 + 19673: -9,-43 + 19674: -10,-42 + 19675: -11,-42 + 19676: -12,-43 + 19677: -10,-38 + 19678: -6,-39 + 19679: -6,-40 + 19680: -6,-45 + 19681: -9,-46 + 19682: -8,-46 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 17967: 33.18721,-4.4394064 - node: zIndex: 5 color: '#FFFFFFFF' @@ -6607,7 +8074,6 @@ entities: id: FlowersBRTwo decals: 317: -2.739346,-40.11955 - 1610: 12.91565,-6.2081604 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -6619,50 +8085,134 @@ entities: decals: 318: -4.969619,-39.139698 - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 18330: -11.69503,12.177545 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 17787: 33.11084,-0.26643348 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 18331: -16.268726,16.97848 + - node: + zIndex: 3 color: '#FFFFFFFF' id: Flowersbr3 decals: - 9898: -16.75473,14.587231 + 19521: -34.29453,-39.970905 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: 324: -3.7796192,-40.04319 - 9897: -16.962753,14.391405 - node: - cleanable: True + zIndex: 3 color: '#FFFFFFFF' id: Flowerspv2 decals: - 10040: 13.999963,-3.5679688 + 19519: -35.065742,-39.950058 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: 12156: -1.8773756,-39.973557 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 17792: 33.142105,-0.5791509 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 17966: 33.145523,-4.856363 + 18329: -16.61251,12.989137 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 15776: 50.140865,-24.035677 + 15928: 13.019715,-10.544371 - node: color: '#FFFFFFFF' id: Flowersy2 decals: 312: -4.9800406,-39.202244 + 15782: 49.40649,-24.098177 + 15799: 47.97223,-24.092237 + 15925: 13.129791,-9.737151 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 18332: -16.928978,15.908884 + - node: + zIndex: 3 + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 19520: -33.63795,-39.897938 - node: zIndex: 5 color: '#FFFFFFFF' id: Flowersy2 decals: 15016: -4.4530544,-40.059788 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 15779: 49.40649,-20.113802 + 15780: 47.890865,-20.051302 + 15798: 48.62848,-24.076612 + 15923: 12.872949,-12.109887 + 15926: 12.285879,-9.981764 + 15929: 13.11756,-11.35159 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 17790: 33.142105,-1.0273786 + 17791: 33.152527,-3.977344 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 18333: -11.676373,16.32584 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 15720: 50.200966,-20.04399 + 15747: -11.010044,14.23223 + 15778: 48.62524,-20.035677 + 15820: -20.325151,30.24467 + 15821: -19.497026,30.43217 + 15822: -19.575151,29.666546 + 15823: -20.387651,29.416546 + 15824: -19.965776,30.729046 + 15922: 12.004576,-11.999812 + 15924: 12.970793,-8.954393 + 15927: 11.821117,-10.006225 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale decals: 10909: -10,-26 10910: -9,-26 - 11106: -22,-17 - 11107: -21,-17 - 11108: -20,-17 - 11109: -20,-14 - 11110: -21,-14 - 11111: -22,-14 11322: -18,-54 11348: -19,-58 11349: -18,-58 @@ -6675,53 +8225,68 @@ entities: 14249: -15,-50 14250: -13,-51 14256: -19,-48 - 14257: -24,-44 - 14258: -25,-44 - 14259: -26,-48 14260: -20,-50 14261: -21,-50 14262: -23,-50 + 19432: -31,-50 + 19433: -26,-48 + 19434: -25,-44 + 19435: -24,-44 - node: color: '#3EB38896' id: FullTileOverlayGreyscale decals: 15061: -15,-57 15062: -15,-56 + - node: + color: '#43990996' + id: FullTileOverlayGreyscale + decals: + 16145: -52,-32 + 16161: -57,-30 + 16241: -52,-30 + 16242: -51,-31 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 10375: -31,-29 - 10415: -39,-24 - 10416: -40,-23 - 10417: -38,-23 - 10418: -39,-22 - 10419: -39,-23 - 10420: -33,-24 - 10421: -34,-24 - 10422: -35,-24 - 10426: -35,-25 - 10427: -35,-26 - 10428: -35,-27 - 10429: -35,-28 - 10571: -33,-30 - 10572: -32,-30 11344: -21,-55 + 15998: -43,-30 + 15999: -43,-31 + 16167: -46,-35 + 16260: -49,-43 + 16261: -49,-40 + 16284: -46,-40 + 16285: -45,-40 + 16286: -44,-40 + 16287: -43,-40 + 16288: -42,-40 + 16298: -44,-27 + 16299: -35,-26 - node: zIndex: 1 color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 13794: -33,-28 - 13795: -29,-29 - 13796: -28,-29 - 13799: -30,-26 - 13800: -29,-26 + 17713: -26,-26 + 17714: -33,-25 + 18524: -28,-27 + 18525: -29,-27 + 18526: -30,-27 + 19436: -47,-32 + 19437: -47,-29 + 19446: -44,-27 + 19447: -44,-34 + 19453: -45,-38 + 19454: -43,-38 - node: - color: '#8D1C9996' + zIndex: 1 + color: '#8D1C994C' id: FullTileOverlayGreyscale decals: - 14502: 10,28 + 19355: 23,23 + 19356: 22,23 + 19357: 21,23 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -6758,6 +8323,14 @@ entities: 11230: -26,13 11231: -25,13 11345: -21,-56 + - node: + zIndex: 1 + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 15744: -29,-8 + 15745: -29,-9 + 15746: -26,-13 - node: color: '#EFB34196' id: FullTileOverlayGreyscale @@ -6775,6 +8348,29 @@ entities: 14241: -7,-21 14242: -7,-19 14246: -13,-23 + - node: + color: '#FA750096' + id: FullTileOverlayGreyscale + decals: + 16046: -30,-34 + 16047: -29,-34 + 16048: -28,-34 + 16049: -27,-39 + 16058: -41,-38 + 16059: -41,-37 + 16060: -34,-35 + 16082: -33,-36 + 16093: -27,-35 + - node: + zIndex: 1 + color: '#FA750096' + id: FullTileOverlayGreyscale + decals: + 17715: -37,-37 + 17716: -36,-35 + 18527: -30,-34 + 18528: -29,-34 + 18529: -28,-34 - node: cleanable: True zIndex: 1 @@ -6790,130 +8386,209 @@ entities: decals: 12392: 50.02343,-62.087116 - node: - cleanable: True color: '#FFFFFFFF' - id: Grassa2 + id: Grassb1 decals: - 10036: 14.044986,-5.245513 + 15812: -19.028276,31.02592 + 15816: -20.043901,29.135296 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 9855: -20.350283,29.526943 - 9856: -17.0117,12.212846 + 15819: -20.965776,30.041546 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 15817: -18.997026,29.99467 + 15818: -20.950151,29.010296 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 9833: -20.01782,31.702026 + 15813: -20.950151,30.979046 - node: color: '#FFFFFFFF' id: Grassb5 decals: - 9859: -11.700985,14.073188 - 9870: -17.036173,14.574991 + 15814: -19.028276,28.99467 + 15815: -19.934526,30.947796 - node: + zIndex: 1 color: '#FFFFFFFF' id: Grassc1 decals: - 9875: -16.228554,14.097667 + 15602: -5.0673695,-51.198616 + 15603: -2.071126,-54.07047 + 15604: 5.0193954,-54.007927 + 15655: -4.02458,-52.82484 + 15656: -2.7635374,-53.908924 + 15657: -5.264778,-53.846382 + 15658: -5.9109316,-53.231373 + 18307: -16.99055,13.033243 + 18308: -11.800474,12.19933 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassc2 + decals: + 15605: 7.939578,-52.058655 + 15606: -2.7613235,-52.079502 + 15659: -1.9610562,-52.61636 + 15660: -3.6389718,-54.02359 + 15661: -5.285622,-52.387035 + 15662: -3.5243318,-51.448883 - node: color: '#FFFFFFFF' id: Grassc3 decals: - 9874: -10.954549,14.256775 + 15677: 4.112058,-53.992317 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassc3 + decals: + 15607: -5.825343,-54.060047 + 15663: -4.5560937,-51.657364 + 15664: -3.3263166,-52.553818 + 15665: -4.5977807,-52.65806 + 15666: -4.2955475,-53.283493 + 18326: -10.894494,15.021798 + 18327: -16.98517,15.053069 + 18328: -16.484922,16.251818 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 15675: 4.257964,-52.251526 + 15676: 6.0400977,-51.21956 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Grassc4 + decals: + 18325: -10.863229,16.14758 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 9838: -19.48772,29.638092 - 9852: -21.142344,30.07941 + 15674: 7.8534985,-53.022892 + 15739: -10.963169,12.20098 - node: zIndex: 1 color: '#FFFFFFFF' id: Grassd1 decals: - 13873: -10.821783,12.144812 - 13874: -11.751936,13.562604 - 13875: -17.031513,15.671419 - 13876: -10.890116,15.516535 + 15608: -5.63775,-53.392914 + 15609: -5.575218,-51.662548 + 15610: -2.532043,-52.78833 + 15611: 5.379187,-52.74663 + 18338: -11.238655,12.828213 + 18339: -17.304165,13.515579 + 18340: -17.304165,12.400222 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Grassd1 + decals: + 19516: -35.11785,-39.92921 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 9847: -21.053404,29.077984 + 15678: 5.248039,-53.76299 + 15679: 7.009329,-51.344646 + 15735: -16.135044,15.48223 - node: zIndex: 1 color: '#FFFFFFFF' id: Grassd2 decals: - 13821: 48.944115,-24.02116 - 13822: 47.906635,-20.008194 + 15612: 7.09879,-51.235165 + 15680: 6.9572196,-52.18898 + 15681: -5.836478,-53.929775 + 15682: -4.8776693,-51.302948 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 9848: -18.035362,29.998701 - 9853: -20.121004,31.069683 + 15734: -16.228794,12.935355 + 15740: -11.588169,15.29473 - node: zIndex: 1 color: '#FFFFFFFF' id: Grassd3 decals: - 13877: -17.031513,16.922413 + 15667: 4.4455566,-53.992317 + 15668: 6.894689,-53.950623 + 15683: -3.0746922,-51.59482 - node: + zIndex: 2 color: '#FFFFFFFF' - id: Grasse1 + id: Grassd3 decals: - 9863: -16.987225,15.027837 + 18334: -17.095728,13.973569 + 18335: -16.845604,13.556613 + 18336: -11.801435,14.765786 + 18337: -10.936422,15.276557 + 19517: -34.273685,-39.939632 - node: - cleanable: True color: '#FFFFFFFF' id: Grasse1 decals: - 10038: 13.951189,-3.671503 + 15732: -16.18192,12.216605 - node: zIndex: 1 color: '#FFFFFFFF' id: Grasse1 decals: - 13823: 48.83679,-20.02011 - 13878: -11.009367,16.97007 - 13879: -11.975295,17.017725 - 13899: -42.352955,-42.949028 + 15613: 4.2119412,-51.996113 + 17963: 33.159508,-2.7539225 + 17964: 33.159508,-1.8261949 + 18310: -10.091294,12.147211 + 18311: -17.063503,16.796272 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Grasse1 + decals: + 19518: -33.565,-39.939632 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 9864: -16.228554,14.073188 - 9866: -11.9212475,17.059526 + 15736: -17.02567,15.935354 + 15748: -16.510044,14.154105 - node: zIndex: 1 color: '#FFFFFFFF' id: Grasse2 decals: - 13824: 49.981594,-19.99628 - 13854: 16.265568,-5.974714 - 13855: 14.011734,-7.1423073 - 13871: -11.322636,12.812008 - 13872: -11.740011,12.156726 + 15669: 5.8733487,-53.961044 + 17798: 33.17337,-3.8209858 + 18312: -15.927523,16.295923 + 18324: -11.686554,16.324785 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 9836: -20.019234,30.044624 - 9867: -16.228554,14.807534 - 9868: -11.835589,15.798901 + 15672: 6.67583,-51.261253 + 15673: 5.4147882,-51.2821 + 15733: -17.02567,12.29473 + 15737: -11.744419,13.66973 + 17804: 33.12126,-4.1337028 + 17805: 33.11084,-0.29601222 - node: zIndex: 1 color: '#FFFFFFFF' id: Grasse3 decals: - 13819: 47.966263,-23.96159 - 13820: 49.957745,-23.985418 - 13856: 14.250236,-6.1415133 - 13897: -41.589752,-42.091206 - 13898: -38.95432,-42.97286 + 15670: 6.2068477,-53.210526 + 15671: 6.5507684,-52.2411 + 17799: 33.142105,-1.0482265 + 17965: 33.17679,-4.960602 + 18306: -16.172466,17.015173 + 18323: -11.019556,17.023188 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -6921,25 +8596,41 @@ entities: 10905: -10,-27 10906: -9,-27 - node: - color: '#43990996' + color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 10800: -48,-43 - 10801: -47,-43 + 16002: -44,-31 + 16003: -42,-31 + 16004: -43,-32 + 16199: -29,-30 + 16218: -29,-32 + 16226: -29,-28 + 16300: -37,-23 + 16301: -38,-23 + 16302: -39,-23 + 16303: -40,-23 - node: + zIndex: 1 color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 10379: -39,-28 - 10397: -37,-21 - 10531: -52,-33 - 10532: -51,-33 - 10544: -44,-41 + 17708: -31,-22 + 17709: -30,-22 + 17710: -29,-22 + 17711: -28,-22 + 17712: -27,-22 - node: - color: '#8C347F96' + zIndex: 1 + color: '#8D1C994C' id: HalfTileOverlayGreyscale decals: - 1578: 28,4 + 19354: 22,22 + - node: + zIndex: 1 + color: '#95171093' + id: HalfTileOverlayGreyscale + decals: + 17731: -47,-58 - node: color: '#D381C996' id: HalfTileOverlayGreyscale @@ -6987,21 +8678,55 @@ entities: 10902: -10,-25 10903: -9,-25 - node: - color: '#43990996' + zIndex: 1 + color: '#334E6DC8' id: HalfTileOverlayGreyscale180 decals: - 3126: -52,-44 - 10802: -48,-44 - 10803: -47,-44 - 10804: -50,-44 - 10805: -51,-44 + 18508: -24,-43 + 18509: -25,-43 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 10376: -39,-26 - 10529: -51,-29 - 10530: -52,-29 + 16000: -44,-30 + 16001: -42,-30 + 16005: -43,-29 + 16200: -29,-31 + 16219: -29,-29 + 16294: -43,-26 + 16295: -44,-26 + 16296: -45,-26 + 16297: -46,-26 + 16304: -41,-25 + 16305: -40,-25 + 16306: -39,-25 + 16307: -38,-25 + 16308: -37,-25 + - node: + zIndex: 1 + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 17696: -32,-26 + 17697: -31,-26 + 17698: -30,-26 + 17699: -29,-26 + 17700: -28,-26 + 17701: -27,-26 + 19451: -45,-37 + 19452: -43,-37 + - node: + zIndex: 1 + color: '#8D1C994C' + id: HalfTileOverlayGreyscale180 + decals: + 19353: 22,21 + - node: + zIndex: 1 + color: '#8D1C9996' + id: HalfTileOverlayGreyscale180 + decals: + 18624: 15,17 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 @@ -7029,9 +8754,7 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale180 decals: - 10249: -30,-39 - 10250: -29,-39 - 10252: -34,-39 + 16227: -29,-33 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -7041,19 +8764,49 @@ entities: color: '#43990996' id: HalfTileOverlayGreyscale270 decals: - 3128: -53,-43 - 3129: -53,-42 + 16152: -56,-32 + 16153: -56,-31 + 16154: -56,-30 + 16155: -56,-29 + 16156: -56,-28 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 10377: -38,-27 - 10503: -46,-23 + 16173: -43,-47 + 16174: -43,-46 + 16175: -43,-45 + 16176: -43,-44 + 16214: -35,-30 + 16215: -35,-31 + 16237: -25,-31 + 16238: -25,-30 + 16244: -50,-34 + 16245: -50,-33 + 16246: -50,-32 + 16247: -50,-31 + 16248: -50,-30 + 16249: -50,-29 + 16250: -50,-28 + 16251: -50,-27 + 16252: -49,-36 + 16253: -49,-37 + 16254: -49,-38 + 16255: -49,-39 + 16256: -49,-41 + 16257: -49,-42 + 16274: -46,-37 + 16289: -46,-38 + 16320: -36,-25 + 16321: -36,-24 + 16322: -36,-23 + 18573: 20,1 - node: - color: '#8C347F96' + zIndex: 1 + color: '#95171093' id: HalfTileOverlayGreyscale270 decals: - 1577: 27,3 + 17730: -46,-57 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -7087,27 +8840,63 @@ entities: color: '#FA750096' id: HalfTileOverlayGreyscale270 decals: - 10251: -35,-35 + 16062: -40,-39 + 16063: -40,-38 + 16064: -40,-37 + 16065: -40,-36 + 16070: -36,-36 + 16071: -36,-37 + 16072: -36,-38 + 16084: -32,-38 + 16085: -32,-37 + 16086: -32,-36 + 16087: -32,-35 - node: color: '#43990996' id: HalfTileOverlayGreyscale90 decals: - 3131: -50,-42 + 16147: -54,-28 + 16148: -54,-29 + 16149: -54,-30 + 16150: -54,-31 + 16151: -54,-32 + 16157: -58,-29 + 16158: -58,-30 + 16159: -58,-31 + 16160: -58,-32 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 10378: -40,-27 + 16119: -48,-33 + 16120: -48,-34 + 16121: -48,-35 + 16122: -48,-36 + 16123: -48,-37 + 16124: -48,-38 + 16125: -48,-39 + 16126: -48,-32 + 16127: -48,-31 + 16128: -48,-30 + 16129: -48,-29 + 16130: -48,-28 + 16131: -48,-27 + 16177: -41,-47 + 16212: -34,-31 + 16213: -34,-30 + 16258: -48,-41 + 16259: -48,-42 + 16271: -42,-37 + 16290: -42,-38 + 16309: -34,-23 + 16310: -34,-24 + 16311: -34,-25 - node: - color: '#8C347F96' - id: HalfTileOverlayGreyscale90 - decals: - 1579: 29,3 - - node: - color: '#8D1C9996' + zIndex: 1 + color: '#95171093' id: HalfTileOverlayGreyscale90 decals: - 14488: 17,23 + 17729: -48,-57 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 @@ -7136,6 +8925,21 @@ entities: decals: 9329: -26,10 9330: -26,11 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale90 + decals: + 16066: -38,-39 + 16067: -38,-38 + 16068: -38,-37 + 16069: -38,-36 + 16075: -33,-38 + 16083: -33,-37 + 16088: -28,-37 + 16089: -28,-36 + 16090: -28,-35 + 16091: -28,-38 + 16092: -28,-39 - node: color: '#FFFFFFFF' id: LoadingArea @@ -7177,90 +8981,98 @@ entities: id: QuarterTileOverlayGreyscale decals: 10908: -8,-27 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale - decals: - 3132: -52,-41 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 10389: -41,-22 - 10393: -40,-22 - 10394: -40,-21 - 10395: -39,-21 - 10396: -38,-21 - 10452: -39,-41 - 10453: -39,-40 - 10454: -39,-39 - 10455: -39,-38 - 10504: -46,-22 - 10505: -45,-22 - 10506: -45,-21 - 10510: -45,-30 - 10511: -45,-31 - 10512: -46,-31 - 10514: -48,-31 - 10536: -52,-28 - 10540: -41,-41 - 10541: -40,-41 - 10545: -45,-41 - 10546: -45,-42 - 10580: -39,-30 - 10581: -40,-30 - 10582: -41,-30 - 10583: -26,-30 - 10584: -25,-30 - 10585: -25,-29 - 10586: -25,-28 10587: -25,-27 10588: -25,-26 10589: -25,-25 10590: -25,-24 10591: -25,-23 + 15984: -37,-33 + 15986: -39,-33 + 16010: -46,-30 + 16011: -46,-29 + 16012: -46,-28 + 16013: -45,-28 + 16014: -44,-28 + 16015: -43,-28 + 16016: -42,-28 + 16017: -41,-28 + 16018: -41,-27 + 16019: -40,-27 + 16020: -39,-27 + 16022: -37,-27 + 16023: -36,-27 + 16024: -35,-27 + 16033: -35,-32 + 16034: -35,-33 + 16035: -36,-33 + 16179: -32,-28 + 16180: -31,-28 + 16181: -30,-28 + 16197: -31,-30 + 16198: -30,-30 + 16206: -32,-32 + 16207: -31,-32 + 16208: -30,-32 + 16234: -25,-28 + 16240: -25,-32 - node: zIndex: 1 - color: '#52B4E996' + color: '#8C347F96' id: QuarterTileOverlayGreyscale decals: - 11810: -47,-31 - 12396: -38,-30 + 17829: 30,5 + 17830: 30,4 + 17831: 30,3 + 17833: 30,0 + 17834: 30,-1 + 17835: 30,-2 - node: - color: '#8C347F96' + zIndex: 1 + color: '#8D1C994C' id: QuarterTileOverlayGreyscale decals: - 1516: 27,-3 - 1517: 28,-3 - 1519: 30,-3 - 1520: 31,-3 - 1521: 31,-2 - 1522: 31,-1 - 1523: 31,0 - 1524: 31,1 - 1525: 31,2 - 1526: 31,3 - 1527: 31,4 - 1528: 31,5 - 1541: 27,-2 - 1542: 28,-2 - 11856: 29,-3 + 18610: 19,22 + 18611: 20,22 + 18630: 18,22 + 19352: 21,22 - node: color: '#8D1C9996' id: QuarterTileOverlayGreyscale decals: 10003: 11,25 - 10022: 14,17 - 10023: 14,18 - 10024: 14,19 - 10025: 14,20 - 10026: 14,21 10030: 11,22 10031: 11,23 10032: 11,24 - 14499: 11,28 - 14500: 11,27 - 14501: 11,26 + - node: + zIndex: 1 + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale + decals: + 18628: 14,20 + 18629: 14,21 + 19322: 27,22 + 19323: 27,23 + 19324: 27,24 + 19325: 27,25 + - node: + zIndex: 1 + color: '#95171093' + id: QuarterTileOverlayGreyscale + decals: + 17733: -46,-58 + - node: + zIndex: 1 + color: '#9FED5896' + id: QuarterTileOverlayGreyscale + decals: + 19636: -22,-41 + 19637: -21,-41 + 19638: -20,-41 + 19639: -19,-41 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -7303,8 +9115,6 @@ entities: 10862: -18,-5 10864: -18,-7 10865: -18,-8 - 14600: -28,-8 - 14601: -28,-9 14602: -27,-8 14603: -27,-7 14604: -27,-6 @@ -7323,73 +9133,88 @@ entities: 9591: -18,-4 9592: -17,-4 9593: -17,-3 + 15742: -28,-8 - node: + zIndex: 1 color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 decals: - 11372: -29,-49 - 11373: -28,-49 - 11374: -29,-50 - 11378: -27,-48 - 11379: -27,-47 - 11380: -27,-46 - 11381: -27,-45 - 11382: -27,-44 - 11383: -27,-43 - 14586: -28,-48 - 14587: -30,-50 - 14588: -30,-52 - 14589: -30,-53 - 14590: -30,-54 - 14591: -30,-55 - 14592: -30,-56 + 18510: -26,-43 + 18511: -28,-43 + 18512: -29,-43 + 18513: -30,-43 + 18514: -31,-43 + 18515: -32,-43 + 18516: -33,-43 + 18517: -33,-44 + 18518: -33,-45 + 18519: -33,-46 + 18520: -33,-48 + 18521: -33,-49 + 18522: -33,-50 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 10403: -33,-23 - 10451: -45,-32 - 10465: -45,-33 - 10466: -45,-34 - 10467: -45,-35 - 10468: -45,-36 - 10469: -45,-37 - 10470: -45,-38 - 10471: -45,-39 - 10480: -44,-32 - 10481: -43,-32 - 10486: -44,-28 - 10487: -44,-27 - 10493: -44,-26 - 10494: -44,-25 - 10495: -44,-24 - 10534: -51,-34 - 10552: -41,-44 - 10553: -40,-44 - 10554: -39,-44 - 10555: -38,-44 + 15987: -40,-32 + 15989: -40,-31 + 16193: -27,-31 + 16194: -28,-31 + 16217: -34,-29 + 16223: -28,-29 + 16224: -27,-29 + 16225: -26,-29 - node: + zIndex: 1 + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 17841: 22,5 + 17842: 21,5 + 17843: 20,5 + 17844: 19,5 + 17845: 18,5 + 17846: 17,5 + - node: + zIndex: 1 color: '#8C347F96' id: QuarterTileOverlayGreyscale180 decals: - 1543: 27,-2 - 1544: 28,-2 + 17827: 28,6 + 17828: 29,6 + 17836: 26,6 + 17837: 25,6 + 17838: 25,5 + 17839: 24,5 + 17840: 23,5 + - node: + zIndex: 1 + color: '#8D1C994C' + id: QuarterTileOverlayGreyscale180 + decals: + 18602: 23,21 + 18603: 24,21 + 18604: 25,21 + 18605: 26,21 - node: color: '#8D1C9996' id: QuarterTileOverlayGreyscale180 decals: - 10013: 17,22 - 10014: 17,21 10015: 16,21 - 10016: 15,21 - 10017: 15,20 - 10018: 15,19 - 10019: 15,18 - 10020: 15,17 - 10021: 14,17 10027: 13,22 10028: 12,22 10029: 11,22 + - node: + zIndex: 1 + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 + decals: + 17568: 27,6 + 18614: 17,21 + 18620: 16,20 + 18621: 16,19 + 18622: 16,18 + 18623: 16,17 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 @@ -7434,8 +9259,6 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 10304: 33,4 - 10308: 33,0 - 10309: 33,-1 14617: -25,-12 14618: -24,-12 14619: -23,-12 @@ -7454,19 +9277,9 @@ entities: color: '#FA750096' id: QuarterTileOverlayGreyscale180 decals: - 10233: -28,-32 - 10235: -31,-32 - 10236: -32,-32 - 10237: -33,-32 - 10238: -34,-32 - 10239: -35,-32 - 10240: -36,-32 - 10241: -37,-32 - 10242: -37,-33 - 10243: -37,-34 - 10244: -37,-35 - 10245: -37,-36 - 10293: -29,-32 + 16228: -28,-33 + 16229: -27,-33 + 16230: -26,-33 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -7498,52 +9311,50 @@ entities: 14386: -10,-46 14387: -10,-47 - node: - zIndex: 1 - color: '#43990996' + color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 14062: 9,25 + 15971: -46,-33 + 15972: -45,-33 + 15973: -44,-33 + 15974: -43,-33 + 15975: -42,-33 + 15976: -41,-33 + 15977: -41,-34 + 16006: -46,-32 + 16008: -46,-30 + 16025: -39,-28 + 16027: -37,-28 + 16028: -36,-28 + 16029: -35,-28 + 16030: -35,-29 + 16191: -31,-31 + 16192: -30,-31 + 16202: -32,-29 + 16203: -31,-29 + 16209: -30,-29 + 16239: -25,-29 + 16263: -49,-35 + 16264: -46,-31 + 18574: 20,2 - node: - color: '#52B4E996' + zIndex: 1 + color: '#8D1C994C' id: QuarterTileOverlayGreyscale270 decals: - 10390: -41,-24 - 10391: -40,-24 - 10392: -40,-25 - 10449: -39,-32 - 10456: -39,-36 - 10457: -39,-35 - 10458: -39,-34 - 10459: -39,-33 - 10472: -46,-32 - 10473: -46,-33 - 10474: -46,-34 - 10475: -46,-35 - 10476: -46,-36 - 10477: -46,-37 - 10478: -46,-38 - 10479: -46,-39 - 10482: -41,-32 - 10483: -40,-32 - 10497: -45,-28 - 10498: -45,-27 - 10499: -45,-26 - 10500: -45,-25 - 10501: -45,-24 - 10502: -46,-24 - 10515: -48,-32 - 10516: -47,-32 - 10533: -52,-34 - 10548: -45,-44 - 10549: -45,-43 - 10550: -44,-44 - 10551: -43,-44 + 18606: 21,21 + 18607: 20,21 + 18609: 18,21 + 19351: 19,21 - node: - color: '#9FED5896' + zIndex: 1 + color: '#8D1C9996' id: QuarterTileOverlayGreyscale270 decals: - 1533: 28,-2 - 1534: 27,-2 + 18625: 14,17 + 18626: 14,18 + 18627: 14,19 + 19326: 27,21 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -7644,75 +9455,70 @@ entities: 9598: -17,4 9599: -17,5 9600: -17,6 + 15741: -31,-12 - node: color: '#FA750096' id: QuarterTileOverlayGreyscale270 decals: - 2997: -26,-32 - 2998: -25,-32 2999: -25,-34 3000: -25,-35 3001: -25,-36 3002: -25,-37 3003: -25,-38 3004: -25,-39 - 10592: -25,-33 + 16041: -36,-34 + 16042: -35,-34 + 16043: -37,-34 + 16105: -25,-33 + 16110: -30,-33 + 16111: -31,-33 + 16112: -32,-33 + 16117: -39,-34 + 16118: -40,-34 - node: - color: '#43990996' + color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 3133: -51,-41 + 15990: -40,-30 + 15991: -40,-29 + 16195: -27,-30 + 16196: -28,-30 + 16216: -34,-32 + 16220: -28,-32 + 16221: -27,-32 + 16222: -26,-32 + 16231: -28,-28 + 16232: -27,-28 + 16233: -26,-28 - node: zIndex: 1 - color: '#43990996' - id: QuarterTileOverlayGreyscale90 - decals: - 12372: -50,-43 - - node: - color: '#52B4E996' + color: '#8D1C994C' id: QuarterTileOverlayGreyscale90 decals: - 10398: -36,-21 - 10399: -35,-21 - 10400: -34,-21 - 10401: -33,-21 - 10460: -45,-40 - 10484: -43,-30 - 10485: -44,-30 - 10509: -43,-22 - 10535: -51,-28 - 10542: -43,-41 - 10563: -37,-38 - 10564: -37,-39 - 10565: -37,-40 - 10566: -37,-41 - 10567: -37,-42 - 10568: -37,-43 - 10575: -30,-30 - 10576: -29,-30 - 10577: -28,-30 - 10578: -35,-30 + 18598: 23,22 + 18599: 24,22 + 18600: 25,22 + 18601: 26,22 - node: + zIndex: 1 color: '#8D1C9996' id: QuarterTileOverlayGreyscale90 decals: 14489: 17,24 14490: 17,25 14491: 16,25 - 14492: 15,25 - 14493: 14,25 - 14494: 13,25 - 14495: 12,25 - 14496: 12,26 - 14497: 12,27 - 14498: 12,28 + 18615: 17,23 + 18616: 17,22 + 19315: 15,25 + 19384: 14,25 - node: - color: '#9FED5896' + zIndex: 1 + color: '#95171093' id: QuarterTileOverlayGreyscale90 decals: - 1539: 28,-2 - 1540: 27,-2 + 17732: -48,-58 - node: + zIndex: 1 color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: @@ -7731,7 +9537,6 @@ entities: 9989: 7,26 9990: 8,26 9991: 9,26 - 9992: 9,25 9993: -5,12 9994: -4,12 9995: -3,12 @@ -7783,7 +9588,6 @@ entities: 2381: -16,-12 2382: -16,-13 2383: -16,-14 - 2385: -16,-17 2386: -16,-19 2387: -16,-20 2388: -16,-21 @@ -7804,94 +9608,142 @@ entities: decals: 9031: -15,-1 9032: -15,-3 + 17695: -16,-18 + - node: + color: '#FA750096' + id: QuarterTileOverlayGreyscale90 + decals: + 16095: -28,-41 + 16096: -29,-41 + 16097: -30,-41 + 16098: -31,-41 + 16099: -32,-41 + - node: + zIndex: 1 + color: '#FA750096' + id: QuarterTileOverlayGreyscale90 + decals: + 18305: -26,-41 + 19524: -33,-41 + 19525: -34,-41 + 19526: -35,-41 + 19527: -36,-41 + - node: + cleanable: True + zIndex: 3 + color: '#FF00007E' + id: Rock01 + decals: + 15122: 20.025936,-53.93029 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Rock01 + decals: + 19507: -36.087082,-39.856243 + - node: + color: '#FFFFFFFF' + id: Rock03 + decals: + 15827: 12.0275755,-42.045773 + - node: + color: '#FFFFFFFF' + id: Rock04 + decals: + 15828: 12.8557005,-42.030148 + - node: + color: '#FFFFFFFF' + id: Rock05 + decals: + 15830: 11.9650755,-41.186398 + - node: + zIndex: 2 + color: '#FFFFFFFF' + id: Rock05 + decals: + 19508: -32.898003,-39.866665 + - node: + color: '#FFFFFFFF' + id: Rock07 + decals: + 15829: 13.1682005,-42.092648 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 13912: -2,-49 + 15110: -2,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 13911: -1,-49 + 15111: -1,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 13910: 0,-49 + 15112: 0,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 13908: 1,-49 + 15113: 1,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 13909: 2,-49 + 15114: 2,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 13913: 3,-49 + 15115: 3,-49 - node: zIndex: 1 color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 13914: 4,-49 + 15116: 4,-49 - node: zIndex: 1 angle: -1.5707963267948966 rad color: '#000000FF' - id: StandClearGreyscale + id: StandClear decals: - 11807: -28.026443,-31.005596 - - node: - zIndex: 1 - color: '#000000FF' - id: StandClearGreyscale - decals: - 11805: -36.514652,-29.992134 + 17665: -33.75,-32.5 + 17666: -33.75,-28.5 + 17669: -38.75,-33.5 + 19478: -38.75,-27.5 - node: zIndex: 1 angle: 1.5707963267948966 rad color: '#000000FF' - id: StandClearGreyscale + id: StandClear decals: - 11808: -25.999617,-30.968533 + 17664: -32.25,-32.46875 + 17667: -32.25,-28.46875 + 17668: -37.25,-33.46875 + 17671: -37.25,-27.46875 - node: zIndex: 1 - angle: 3.141592653589793 rad - color: '#000000FF' - id: StandClearGreyscale - decals: - 11809: -36.54651,-27.965483 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClear decals: - 3120: -53,-41 - 3121: -52,-40 + 17969: 29.75,1.53125 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 10521: -53,-33 - 10524: -53,-28 - 10525: -52,-27 - 10573: -31,-30 - - node: - color: '#8C347F96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1572: 27,4 + 16187: -32,-30 + 16267: -45,-35 + 16270: -46,-36 + 18575: 18,3 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale @@ -7904,20 +9756,12 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 9756: 34,-42 - - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale - decals: - 10224: -35,-38 - 10225: -35,-34 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 10517: -50,-34 - 10520: -50,-29 - 10526: -51,-35 - 10570: -37,-44 + 16188: -26,-31 + 16281: -42,-39 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 @@ -7930,25 +9774,15 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 14451: 33,-32 - - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 10218: -28,-39 - 10222: -33,-39 - 10227: -27,-35 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 3123: -53,-44 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 10522: -53,-34 - 10523: -53,-29 - 10527: -52,-35 + 16189: -32,-31 + 16262: -50,-35 + 16282: -46,-39 + 18571: 20,-1 + 18572: 18,2 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 @@ -7956,32 +9790,14 @@ entities: 11236: 30,-30 11245: 27,-32 11284: 34,-35 - - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 10219: -31,-39 - 10220: -35,-36 - 10221: -35,-39 - - node: - color: '#43990996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 3124: -50,-41 - 3125: -51,-40 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 10518: -50,-33 - 10519: -50,-28 - 10528: -51,-27 - 10574: -34,-30 - - node: - color: '#8C347F96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1573: 29,4 + 16190: -26,-30 + 16268: -43,-35 + 16269: -42,-36 + 18582: 22,3 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 @@ -7989,22 +9805,22 @@ entities: 11243: 27,-27 11251: 30,-25 - node: - color: '#FA750096' - id: ThreeQuarterTileOverlayGreyscale90 + cleanable: True + zIndex: 5 + color: '#5E7C16FF' + id: Tunnel decals: - 10223: -33,-38 - 10226: -27,-34 + 19313: -44,-58 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnBox decals: 4261: -51,-13 - 4291: 22,-9 - 4292: 25,2 10998: -4,-21 11062: -2,-21 - 14856: -26,-17 + 15784: -40,-15 + 15896: 24,-11 - node: zIndex: 1 color: '#D381C996' @@ -8017,12 +9833,6 @@ entities: id: WarnCornerGreyscaleNW decals: 9798: 33,-25 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: WarnCornerGreyscaleNW - decals: - 12380: 29,1 - node: zIndex: 1 color: '#D381C996' @@ -8039,7 +9849,6 @@ entities: color: '#FFFFFFFF' id: WarnCornerNE decals: - 3281: 10,5 10285: -70,-15 - node: zIndex: 1 @@ -8051,7 +9860,6 @@ entities: color: '#FFFFFFFF' id: WarnCornerNW decals: - 3279: 9,5 10286: -66,-15 - node: zIndex: 1 @@ -8063,7 +9871,6 @@ entities: color: '#FFFFFFFF' id: WarnCornerSE decals: - 3280: 10,4 10287: -70,-11 - node: zIndex: 1 @@ -8075,7 +9882,6 @@ entities: color: '#FFFFFFFF' id: WarnCornerSW decals: - 3282: 9,4 10288: -66,-11 - node: zIndex: 1 @@ -8088,15 +9894,31 @@ entities: id: WarnCornerSmallGreyscaleNE decals: 9920: 9,12 - 10984: -5,-7 - 11177: -1,-11 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 18569: 27,0 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNE + decals: + 17245: -2,-12 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleNW decals: 9919: 13,12 - 10983: -1,-7 - 11178: 1,-11 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleNW + decals: + 17244: 0,-12 - node: zIndex: 1 color: '#D381C996' @@ -8108,8 +9930,19 @@ entities: id: WarnCornerSmallGreyscaleSE decals: 10985: -5,-5 - 11164: 2,-12 - 11176: -1,-7 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 18570: 27,3 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSE + decals: + 17243: -2,-8 - node: zIndex: 1 color: '#D381C996' @@ -8121,7 +9954,13 @@ entities: id: WarnCornerSmallGreyscaleSW decals: 10986: -1,-5 - 11175: 1,-7 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallGreyscaleSW + decals: + 17242: 0,-8 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -8133,13 +9972,14 @@ entities: 10959: -4,-19 10962: -3,-19 10963: -2,-19 - 11092: -6,-13 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnCornerSmallNE decals: 11000: -5,-21 + 15167: -3,-96 + 15695: -30,-65 - node: color: '#3EB38896' id: WarnCornerSmallNW @@ -8155,7 +9995,12 @@ entities: 10958: -3,-19 10960: -4,-19 10961: -2,-19 - 11027: -1,-21 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 15859: -1,-21 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -8169,6 +10014,7 @@ entities: id: WarnCornerSmallSE decals: 11041: -5,-18 + 15696: -30,-59 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -8180,19 +10026,37 @@ entities: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: - 11042: -1,-18 + 15886: -1,-18 - node: zIndex: 1 color: '#52B4E996' - id: WarnEndGreyscaleE + id: WarnEndGreyscaleN + decals: + 19439: -38,-33 + 19441: -38,-27 + 19442: -33,-28 + 19445: -33,-32 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnEndGreyscaleN decals: - 14448: -29,-23 + 18563: 29,2 - node: zIndex: 1 color: '#52B4E996' - id: WarnEndGreyscaleW + id: WarnEndGreyscaleS decals: - 12397: -30,-23 + 19438: -38,-28 + 19440: -38,-34 + 19443: -33,-29 + 19444: -33,-33 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnEndGreyscaleS + decals: + 18564: 29,1 - node: color: '#FFFFFFFF' id: WarnEndN @@ -8224,6 +10088,12 @@ entities: 4286: 40,-47 10994: -5,-19 10995: -5,-20 + 15166: -3,-95 + 15690: -30,-60 + 15691: -30,-61 + 15692: -30,-62 + 15693: -30,-63 + 15694: -30,-64 - node: zIndex: 1 color: '#D381C996' @@ -8234,26 +10104,30 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 3079: -40,-46 - 3080: -40,-47 - 3081: -40,-48 - 3082: -40,-49 - 11162: 2,-13 - 11167: -1,-9 - 11168: -1,-8 - 11169: -1,-10 + 15941: -46,-44 + 15942: -46,-45 + 15943: -46,-46 + 15944: -46,-47 - node: + cleanable: True zIndex: 1 - color: '#D381C996' + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 17239: -2,-11 + 17240: -2,-10 + 17241: -2,-9 + - node: + color: '#52B4E996' id: WarnLineGreyscaleN decals: - 9804: 34,-25 + 17808: 19,3 - node: - color: '#FA750096' + zIndex: 1 + color: '#D381C996' id: WarnLineGreyscaleN decals: - 10291: -34,-38 - 10292: -30,-34 + 9804: 34,-25 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN @@ -8261,12 +10135,21 @@ entities: 9915: 10,12 9916: 11,12 9917: 12,12 - 10977: -4,-7 - 10978: -2,-7 - 10982: -3,-7 - 11174: 0,-11 11424: 34,-34 11425: 35,-34 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 18568: 28,0 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 17237: -1,-12 - node: zIndex: 1 color: '#D381C996' @@ -8275,12 +10158,6 @@ entities: 9772: 33,-23 9773: 34,-23 9808: 34,-27 - - node: - color: '#FA750096' - id: WarnLineGreyscaleS - decals: - 10289: -34,-36 - 10290: -30,-32 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS @@ -8291,16 +10168,23 @@ entities: 10979: -4,-5 10980: -3,-5 10981: -2,-5 - 11173: 0,-7 11427: 20,-28 - node: zIndex: 1 color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 2200: 31,34 - 2201: 32,34 - 2202: 33,34 + 15919: 8,-16 + 15920: 9,-16 + 15921: 10,-16 + 18567: 28,3 + - node: + cleanable: True + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 17238: -1,-8 - node: zIndex: 1 color: '#D381C996' @@ -8311,20 +10195,19 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 3083: -40,-49 - 3084: -40,-47 - 3085: -40,-46 9918: 13,13 - 11170: 1,-9 - 11171: 1,-10 - 11172: 1,-8 + 15938: -46,-44 + 15939: -46,-45 + 15940: -46,-47 - node: + cleanable: True zIndex: 1 color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 12379: 29,0 - 12381: 29,-1 + 17234: 0,-9 + 17235: 0,-10 + 17236: 0,-11 - node: color: '#FFFFFFFF' id: WarnLineN @@ -8337,25 +10220,21 @@ entities: id: WarnLineN decals: 2336: 4,-24 - 4288: 24,-10 - 4289: 23,-10 - 4290: 22,-10 4328: 29,-58 4329: 31,-58 4330: 27,-58 4331: 28,-58 + 15916: 8,-15 + 15917: 9,-15 + 15918: 10,-15 + 18589: 17,30 + 18590: 16,30 - node: zIndex: 1 color: '#3EB38896' id: WarnLineS decals: 2106: -10,0 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 11024: -1,-19 - 11025: -1,-20 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8365,6 +10244,10 @@ entities: 4262: -62,-16 13016: -9,-21 13017: -9,-19 + 15857: -1,-20 + 15858: -1,-19 + 18586: 18,29 + 18587: 18,28 - node: color: '#FFFFFFFF' id: WarnLineW @@ -8376,11 +10259,6 @@ entities: 9930: 6,26 10917: -10,-22 10921: -12,-22 - 10988: -3,-13 - 10989: -2,-13 - 10991: -5,-13 - 11091: -4,-13 - 11093: -1,-13 - node: zIndex: 1 color: '#FFFFFFFF' @@ -8390,6 +10268,20 @@ entities: 4263: -64,-10 4264: -62,-10 4265: -61,-10 + 15164: -2,-96 + 15165: -1,-96 + 15897: 24,-10 + 15911: 25,-10 + 15912: 26,-10 + 18591: 17,26 + 18592: 16,26 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 18416: 20,-44 + 18419: 18,-46 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -8402,7 +10294,10 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 14289: 20,-36 + 15123: 3,-51 + 18381: 22,-40 + 18411: 19,-39 + 18412: 22,-44 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8422,21 +10317,30 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: - 14281: 17,-36 - 14290: 19,-36 14297: 13,-37 + 15128: -1,-51 + 18374: 19,-40 + 18415: 21,-44 - node: zIndex: 2 color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 12361: -18,-47 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 17674: -37,-56 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: - 14288: 20,-41 + 15130: 3,-54 + 18382: 22,-42 + 18389: 19,-44 + 18413: 22,-45 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8448,13 +10352,17 @@ entities: id: WoodTrimThinCornerSw decals: 12135: 16,-41 + 17673: -39,-56 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: - 14287: 19,-41 14299: 13,-39 + 15129: -1,-54 + 18373: 19,-42 + 18414: 21,-45 + 18429: 17,-44 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8466,12 +10374,25 @@ entities: id: WoodTrimThinEndE decals: 15106: -4,-43 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 18404: 19,-37 + 18417: 21,-47 - node: color: '#FFFFFFFF' id: WoodTrimThinEndN decals: 12107: 36,-10 15104: -7,-44 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 18403: 17,-36 - node: color: '#FFFFFFFF' id: WoodTrimThinEndS @@ -8482,63 +10403,78 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinEndS decals: - 14277: 17,-41 + 18386: 18,-45 - node: color: '#FFFFFFFF' id: WoodTrimThinEndW decals: 15107: -6,-43 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 18418: 17,-47 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe decals: 12106: 37,-12 12109: 36,-11 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 18406: 17,-37 + 18409: 17,-39 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: 12105: 35,-12 12108: 36,-11 - 12127: 17,-38 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: 12111: 37,-12 + 19545: -8,-42 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinInnerSe decals: - 12342: -8,-42 - 14282: 17,-38 + 18405: 17,-37 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: 12110: 35,-12 - 12128: 17,-38 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: 14284: 19,-38 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 17677: -37,-55 + 19543: -8,-44 + 19544: -8,-43 + 19587: -8,-45 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 12343: -8,-43 - 12345: -8,-44 - 12346: -8,-45 - 14275: 17,-39 - 14276: 17,-40 - 14293: 20,-40 - 14294: 20,-39 - 14295: 20,-38 - 14296: 20,-37 + 15124: 3,-52 + 15125: 3,-53 + 18380: 22,-41 + 18390: 19,-43 + 18402: 17,-38 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8551,14 +10487,22 @@ entities: decals: 1616: 18,-59 12100: 36,-13 - 12142: 18,-38 15108: -5,-43 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineN decals: - 14292: 18,-38 + 15134: 0,-51 + 15135: 1,-51 + 15136: 2,-51 + 18376: 20,-40 + 18377: 21,-40 + 18407: 18,-37 + 18410: 18,-39 + 18420: 18,-47 + 18421: 19,-47 + 18422: 20,-47 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8576,19 +10520,28 @@ entities: 12112: 35,-12 12113: 36,-12 12114: 37,-12 - 12140: 17,-41 - 12141: 19,-41 15109: -5,-43 + 17676: -38,-56 + 19546: -7,-42 + 19547: -6,-42 + 19548: -5,-42 + 19549: -4,-42 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 12344: -7,-42 12347: -6,-42 12348: -5,-42 12349: -4,-42 - 14283: 18,-38 + 15132: 1,-54 + 15133: 2,-54 + 18378: 20,-42 + 18379: 21,-42 + 18408: 18,-37 + 18423: 18,-47 + 18424: 19,-47 + 18425: 20,-47 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8603,22 +10556,25 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 12118: 18,-36 - 12119: 18,-37 - 12122: 17,-37 12137: 16,-40 - 12138: 17,-38 + 17691: -39,-54 + 17692: -39,-55 - node: zIndex: 1 color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 14278: 17,-40 - 14279: 17,-39 - 14285: 19,-39 - 14286: 19,-40 - 14291: 19,-37 14298: 13,-38 + 15126: -1,-52 + 15127: -1,-53 + 18375: 19,-41 + 18393: 17,-40 + 18394: 17,-39 + 18395: 17,-37 + 18401: 17,-38 + 18426: 17,-41 + 18427: 17,-42 + 18428: 17,-43 - node: zIndex: 2 color: '#FFFFFFFF' @@ -8627,54 +10583,29 @@ entities: 12362: -18,-48 - node: cleanable: True - angle: 0.5235987755982988 rad - color: '#FFFFFFFF' - id: body + zIndex: 1 + color: '#D58C18FF' + id: arrow decals: - 1581: 2.6982818,-19.07067 + 17728: -51.898464,-57.467903 - node: cleanable: True zIndex: 4 color: '#FFFFFF7F' id: burnt1 decals: - 1635: 16,-12 - 1636: 15,-12 - 1637: 15,-13 - 1645: 16,-11 - 1646: 17,-12 - 1651: 10,-14 - 1653: 11,-14 1654: 40,-47 1655: 40,-46 1656: 40,-45 1657: 39,-45 1661: 39,-47 - 3189: 13,-14 3190: 14,-14 - 3192: 11,-14 - 3194: 10,-12 - 3197: 12,-11 - 3198: 12,-12 - 3200: 16,-14 - 3201: 17,-11 - 3202: 18,-12 - 3203: 17,-12 - 3205: 16,-16 - 3206: 22,-17 3207: 21,-20 3208: 24,-23 4830: 35,-11 4831: 36,-8 4941: -4,11 - 4948: 14,0 5275: 10,-43 - 5797: -45,-31 - 5807: -51,-34 - 5808: -52,-34 - 5809: -52,-35 - 5810: -50,-34 - 5813: -50,-28 6314: -15,-35 6315: -19,-36 6316: -21,-35 @@ -8718,18 +10649,7 @@ entities: 7499: 38,8 7500: 35,9 7501: 27,6 - 7502: 28,6 - 7503: 29,6 - 10207: 14,-2 - 10208: 16,-1 10209: 14,4 - 10214: 12,-14 - 10215: 14,-12 - 10216: 16,-13 - 10217: 17,-11 - 10352: 13,-13 - 10353: 13,-12 - 10354: 14,-12 13546: 89,-28 13547: 88,-28 13548: 86,-28 @@ -8836,23 +10756,87 @@ entities: 13702: 70,-61 13703: 72,-61 13704: 71,-61 + 15312: -11,-92 + 15313: -8,-95 + 15314: -7,-94 + 15315: -5,-94 + 15316: -4,-94 + 15317: 6,-95 + 15318: 7,-94 + 15319: 7,-95 + 15320: 10,-95 + 15386: -8,-73 + 15387: -9,-65 + 15388: -3,-57 + 15389: 1,-53 + 15390: -3,-49 + 15391: -9,-51 + 15392: 10,-51 + 15393: 12,-64 + 15394: 7,-69 + 16364: 27,-39 + 16365: 28,-39 + 16366: 28,-38 + 16372: -41,-47 + 16373: -42,-46 + 16374: -43,-46 + 16375: -43,-47 + 16376: -43,-45 + 16377: -42,-45 + 16378: -42,-44 + 16379: -43,-44 + 16380: -41,-45 + 16381: -41,-46 + 16382: -38,-46 + 16383: -38,-47 + 16384: -40,-49 + 16385: -46,-49 + 16386: -47,-49 + 16387: -48,-49 + 18835: -53,-50 + 18836: -53,-48 + 18837: -56,-53 + 18838: -64,-59 + 18839: -54,-58 + 18840: -50,-59 + 18841: -51,-58 + 18842: -44,-58 + 18843: -37,-53 + 18901: 20,-8 + 19273: 38,18 + 19274: 37,18 + 19275: 37,19 + 19276: 37,20 + 19277: 37,21 + 19278: 37,22 + 19279: 39,22 + 19280: 36,23 + 19281: 36,24 + 19282: 34,24 + 19283: 31,24 + 19284: 31,21 + 19285: 31,19 + 19286: 31,18 + 19287: 34,17 + 19290: 45,22 + 19300: 17,28 + 19301: 25,22 + 19302: 34,15 + 19303: 40,15 + 19304: 40,11 + 19305: 46,21 - node: cleanable: True zIndex: 4 color: '#FFFFFF7F' id: burnt2 decals: - 1631: 14,-11 - 1648: 10,-12 - 1649: 10,-13 - 1650: 10,-14 1675: 42,-51 4826: 42,-10 4827: 43,-11 4828: 40,-12 4829: 36,-15 6317: -21,-33 - 6322: -21,-15 6323: -14,-15 13082: 73,-58 13083: 73,-59 @@ -8963,26 +10947,26 @@ entities: 13322: 84,-41 13323: 84,-40 13324: 83,-40 + 15684: -6,-95 + 15685: -7,-95 + 16367: 29,-39 + 16368: 29,-40 + 16369: 28,-40 + 16370: 26,-40 + 16371: 24,-40 + 17311: 33,7 + 17312: 29,10 - node: cleanable: True zIndex: 4 color: '#FFFFFF7F' id: burnt3 decals: - 1639: 14,-11 - 1642: 12,-12 - 1647: 16,-12 1670: 44,-53 - 3178: 11,-14 - 3179: 10,-14 - 3180: 10,-13 - 3182: 10,-12 7102: 53,-42 7104: 50,-43 7105: 50,-42 7106: 51,-41 - 10210: 14,-3 - 10211: 16,-2 13172: 61,-79 13173: 62,-79 13174: 62,-80 @@ -9044,6 +11028,47 @@ entities: 13543: 96,-27 13544: 96,-26 13545: 96,-25 + 15340: 12,-89 + 15341: 10,-90 + 15342: 9,-90 + 15343: 9,-89 + 15344: 2,-87 + 15345: 1,-87 + 15346: 0,-87 + 15347: 0,-88 + 15348: 1,-88 + 15349: 2,-88 + 15350: 3,-88 + 15351: 3,-87 + 15352: 1,-85 + 15353: 0,-85 + 15354: -1,-85 + 15355: 1,-84 + 15356: 2,-85 + 15357: 1,-90 + 15358: 0,-90 + 15359: -1,-88 + 15360: -5,-89 + 15361: 0,-95 + 15362: -1,-96 + 15363: -2,-96 + 15364: -4,-96 + 15365: -4,-95 + 15366: -5,-95 + 15367: -5,-94 + 15368: -7,-95 + 15369: -10,-92 + 15370: -11,-92 + 15371: -8,-95 + 15372: -2,-99 + 15373: -2,-100 + 15374: -4,-98 + 15375: 4,-99 + 15376: 7,-102 + 15377: 8,-102 + 15378: 9,-102 + 15686: -12,-95 + 15687: -13,-95 - node: cleanable: True zIndex: 4 @@ -9268,50 +11293,96 @@ entities: 13691: 58,-56 13692: 59,-57 13693: 73,-64 + 15303: -1,-96 + 15304: -3,-96 + 15305: -3,-94 + 15306: -2,-93 + 15307: -10,-90 + 15308: -9,-92 + 15309: -7,-93 + 15310: -7,-96 + 15311: -8,-96 + 15321: 9,-93 + 15322: 12,-93 + 15323: 12,-92 + 15324: 11,-93 + 15325: 11,-92 + 15326: 10,-93 + 15327: 11,-96 + 15328: 10,-96 + 15329: 9,-95 + 15330: 7,-90 + 15331: 8,-90 + 15332: 9,-90 + 15333: 7,-91 + 15334: 6,-91 + 15335: 10,-89 + 15336: 10,-88 + 15337: 12,-89 + 15338: 12,-88 + 15339: 12,-90 + 15379: 6,-100 + 15380: 6,-97 + 15381: 4,-91 + 15382: 11,-79 + 15383: 11,-78 + 15384: -9,-79 + 15385: -9,-78 + 16361: 27,-40 + 16362: 27,-38 + 16363: 26,-38 + 16388: -46,-50 + 16389: -46,-51 + 16390: -50,-49 + 16391: -51,-49 + 16392: -42,-46 + 16393: -42,-45 + 16394: -43,-45 + 16395: -43,-44 + 16396: -42,-44 + 16397: -41,-46 + 16398: -41,-45 + 16399: -41,-44 + 16400: -41,-47 + 16401: -42,-47 + 16402: -43,-47 + 16403: -43,-46 + 16404: -38,-46 + 16405: -37,-46 + 16406: -38,-45 + 16407: -35,-42 + 17291: 27,-18 + 17292: 28,-18 + 17293: 28,-19 + 17294: 21,-15 + 17295: 19,-19 + 17296: 15,-15 + 17297: 16,-15 + 17299: 25,-11 + 17300: 25,-4 + 17301: 24,-4 + 17303: 18,-3 + 17304: 15,1 + 17308: 21,5 + 17309: 15,6 + 17310: 29,7 + 18834: -51,-53 + 19291: 48,19 + 19292: 40,17 + 19293: 45,19 + 19294: 45,20 + 19295: 38,20 + 19296: 32,18 + 19297: 16,19 + 19298: 11,22 + 19299: 17,29 - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowa1 - decals: - 14227: -10.478444,12.046731 - 14228: -12.035086,12.943187 - 14229: -10.910086,14.485925 - 14267: -19.1523,29.318792 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowa2 - decals: - 14224: 12.62475,-41.99786 - 14230: -11.11842,13.2767515 - 14231: -15.86923,12.388497 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowa3 - decals: - 14232: -17.035896,15.640755 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowb1 - decals: - 14269: -21.23229,31.205517 - 14273: -20.221872,31.872646 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowb2 - decals: - 14225: 13.239334,-41.580902 - 14233: -10.759171,15.666258 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: bushsnowb3 + cleanable: True + zIndex: 5 + color: '#C74EBDFF' + id: carp decals: - 14226: 11.864334,-41.99786 - 14274: -19.086456,30.371607 + 19314: 45,22 - node: cleanable: True color: '#52B4E9FF' @@ -9332,192 +11403,20 @@ entities: id: evac decals: 12394: 53.009716,-54.006245 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow03 - decals: - 14270: -20.48229,29.600237 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow07 - decals: - 13816: 48.049736,-24.140303 - 13817: 48.90834,-24.12839 - 13846: 16.122467,-6.963594 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow08 - decals: - 13896: -43.056534,-42.806057 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow09 - decals: - 13847: 16.027067,-5.8317432 - 13848: 14.083284,-4.104182 - 13849: 13.9878845,-6.880194 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow10 - decals: - 13814: 50.029293,-23.973503 - 13825: 47.978188,-19.85331 - 13865: -11.682715,15.111451 - 13867: -16.886286,12.383097 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow11 - decals: - 13906: -38.918545,-42.96094 - 13907: -41.88788,-42.817974 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnow12 - decals: - 13815: 49.05144,-23.985418 - 13830: 49.850418,-19.99628 - 14223: 11.531,-41.862347 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowa1 - decals: - 13828: 47.787384,-19.99628 - 13829: 50.363194,-19.948624 - 13841: 13.630134,-7.070822 - 13868: -12.085838,13.24092 - 13890: -11.951445,16.243301 - 13891: -11.927595,14.59914 - 13892: -41.852104,-42.865627 - 14222: 12.416417,-41.851925 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowa1 - decals: - 13834: 13.916334,-4.842863 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowa2 - decals: - 13845: 16.229794,-6.689567 - 13869: -11.930813,12.549895 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowa3 - decals: - 13842: 14.1667595,-6.427454 - 13870: -10.726383,12.764351 - 13888: -16.649912,17.017725 - 13889: -15.827084,16.124159 - 13895: -42.31718,-41.97206 - 13905: -41.768627,-43.056255 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowb1 - decals: - 13813: 48.753315,-23.985418 - 13903: -41.72093,-42.222263 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowb2 - decals: - 13811: 47.94241,-23.96159 - 13827: 49.480743,-19.972452 - 13884: -16.10136,16.171816 - 13885: -11.021292,16.243301 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowb3 - decals: - 13850: 14.11906,-7.0350795 - 13886: -10.937816,17.148783 - 13887: -15.827084,17.136868 - 13902: -38.918545,-42.091206 - 13904: -42.31718,-42.484375 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowb3 - decals: - 13831: 14.488735,-3.830155 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc1 - decals: - 13812: 50.029293,-23.985418 - 13818: 49.254166,-24.033075 - 13826: 48.43134,-19.984365 - 13843: 15.943592,-5.9627995 - 13857: -16.081608,15.148648 - 13858: -16.224709,12.263954 - 13863: -10.871813,12.049498 - 13880: -17.043438,16.10033 - 13881: -11.7367935,16.3267 - 13893: -42.996906,-42.865627 - 13900: -40.58805,-42.115032 - 14221: 12.041417,-41.101402 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc2 - decals: - 13844: 15.931667,-7.154221 - 13852: 15.371189,-5.891314 - 13853: 14.488735,-6.0819416 - 13859: -16.045834,12.966892 - 13864: -10.955287,13.574518 - 13882: -10.83049,15.039968 - 13883: -16.983814,16.910498 - 13901: -39.57442,-42.317574 - 14271: -18.971872,30.830257 - - node: - cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc2 - decals: - 13832: 14.786861,-4.8190346 - - node: - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc3 - decals: - 13851: 14.989588,-5.9985423 - 13860: -16.65401,12.716694 - 13861: -11.754265,13.646004 - 13862: -11.86159,12.08524 - 13894: -42.87766,-42.04355 - 14220: 13.0935,-41.90404 - 14272: -21.096872,30.96577 - node: cleanable: True - zIndex: 1 - color: '#FFFFFFFF' - id: grasssnowc3 + zIndex: 5 + color: '#8932B8FF' + id: face decals: - 13833: 14.667612,-3.9969535 + 19308: 37,8 - node: cleanable: True - color: '#96DAFFFF' - id: med + zIndex: 5 + color: '#F9801DFF' + id: matt decals: - 3266: -35.00749,-50.022392 + 19309: 23,-5 - node: cleanable: True angle: 1.5707963267948966 rad @@ -9525,12 +11424,6 @@ entities: id: pound decals: 3273: 30.961885,-53.0384 - - node: - cleanable: True - color: '#FFFFFF7F' - id: revolution - decals: - 14428: 11,-13 - node: cleanable: True angle: 1.5707963267948966 rad @@ -9540,32 +11433,43 @@ entities: 1157: 20.014956,-53.965996 - node: cleanable: True - color: '#FBB2FFFF' + zIndex: 5 + color: '#80C71FFF' + id: safe + decals: + 19311: 31,20 + - node: + cleanable: True + zIndex: 1 + color: '#D58C18FF' id: shop decals: - 3267: -40.0287,-52.975376 + 17726: -53.402473,-52.917152 + 17727: -51.908886,-57.9891 - node: cleanable: True - angle: 0.2617993877991494 rad - color: '#FBB2FFFF' - id: slash + zIndex: 1 + angle: -1.5707963267948966 rad + color: '#D58C18FF' + id: shortline decals: - 3269: -39.550877,-51.98042 - 3270: -40.436733,-52.03254 + 17723: -53.855377,-53.500507 + 17724: -52.834038,-52.583206 - node: cleanable: True + zIndex: 1 angle: 1.5707963267948966 rad - color: '#FBB2FFFF' - id: slash + color: '#D58C18FF' + id: shortline decals: - 3272: -39.999016,-51.646854 + 17725: -53.792847,-52.563328 - node: cleanable: True - angle: 1.8325957145940461 rad - color: '#FBB2FFFF' - id: slash + zIndex: 5 + color: '#80C71FFF' + id: space decals: - 3271: -39.978172,-52.418224 + 19310: 49,-32 - node: cleanable: True angle: -1.5707963267948966 rad @@ -9585,6 +11489,21 @@ entities: id: splatter decals: 1391: 53.607197,-41.451954 + - node: + cleanable: True + zIndex: 3 + color: '#FF00003F' + id: splatter + decals: + 15117: 19.58822,-54.07622 + - node: + cleanable: True + zIndex: 3 + angle: 3.141592653589793 rad + color: '#FF00003F' + id: splatter + decals: + 15118: 19.952984,-53.45079 - node: cleanable: True color: '#FF00FF51' @@ -9675,10 +11594,34 @@ entities: 1155: 20.108753,-54.466343 - node: cleanable: True - color: '#FBB2FFFF' + zIndex: 1 + angle: -3.141592653589793 rad + color: '#D58C18FF' + id: thinline + decals: + 17719: -54.1993,-52.979313 + - node: + cleanable: True + zIndex: 1 + color: '#D58C18FF' + id: thinline + decals: + 17721: -52.52138,-52.98974 + - node: + cleanable: True + zIndex: 1 + angle: 1.5707963267948966 rad + color: '#D58C18FF' + id: thinline + decals: + 17722: -53.084164,-53.47966 + - node: + cleanable: True + zIndex: 5 + color: '#D58C18FF' id: trade decals: - 3268: -40.039124,-51.97468 + 19312: -51,-53 - type: GridAtmosphere version: 2 data: @@ -9688,7 +11631,8 @@ entities: -4,-5: 0: 7645 -5,-4: - 0: 52733 + 0: 52431 + 1: 256 -4,-3: 0: 53727 -5,-3: @@ -9703,7 +11647,7 @@ entities: 0: 65437 -4,0: 0: 13243 - 1: 2048 + 2: 2048 -3,-4: 0: 65501 -3,-3: @@ -9714,36 +11658,38 @@ entities: 0: 53247 -3,0: 0: 15 - 1: 13056 - 2: 3072 + 2: 13056 + 1: 3072 -3,-5: 0: 36863 -2,-4: - 0: 65535 + 0: 57341 -2,-3: - 0: 56529 + 0: 56541 -2,-2: 0: 61661 -2,-1: 0: 65535 -2,0: 0: 15 - 2: 3840 + 1: 3840 -2,-5: 0: 36349 -1,-4: 0: 65535 -1,-3: - 0: 65525 + 0: 65535 -1,-2: 0: 62975 -1,-1: 0: 65535 -1,0: 0: 15 - 2: 3840 + 1: 3840 + 0,-4: + 0: 65523 0,-3: - 0: 65526 + 0: 65535 0,-2: 0: 61695 0,-1: @@ -9776,7 +11722,7 @@ entities: 0: 61495 3: 136 -2,-7: - 0: 8177 + 0: 8176 -2,-6: 0: 64988 -2,-9: @@ -9799,7 +11745,9 @@ entities: 0,-7: 0: 12287 0,-6: - 0: 11002 + 0: 15355 + 0,-5: + 0: 36795 -4,-12: 0: 62719 -4,-13: @@ -9813,7 +11761,7 @@ entities: -4,-10: 0: 39929 -5,-10: - 0: 8191 + 0: 65535 -5,-9: 0: 65535 -3,-12: @@ -9825,36 +11773,36 @@ entities: -3,-13: 0: 55483 -2,-12: - 0: 64799 + 0: 64927 -2,-11: 0: 65503 -2,-10: 0: 32767 -2,-13: - 0: 65309 + 0: 65471 -1,-12: - 0: 63247 + 0: 65407 -1,-11: - 0: 63287 + 0: 63295 -1,-10: 0: 1911 -1,-13: - 0: 65473 + 0: 65471 0,-12: - 0: 64399 + 0: 62991 0,-11: - 0: 65419 + 0: 65286 0,-10: 0: 64399 0,-9: 0: 48056 -4,-16: - 2: 17663 + 1: 17663 -5,-16: - 2: 191 + 1: 255 -4,-15: + 1: 100 0: 45056 - 2: 68 -5,-15: 0: 65024 -4,-14: @@ -9864,60 +11812,81 @@ entities: -5,-13: 0: 53759 -4,-17: - 2: 60144 + 1: 17663 -3,-16: - 2: 16 + 1: 17 0: 52428 -3,-15: 0: 47308 -3,-14: 0: 35775 -3,-17: - 0: 52428 - 2: 4352 + 0: 52360 + 1: 19 -2,-16: - 0: 16305 + 0: 13175 + 1: 32768 -2,-15: - 0: 53555 - 2: 136 + 0: 64435 -2,-14: - 0: 64989 + 0: 65339 -2,-17: - 0: 4379 - 2: 34816 - -1,-16: - 0: 256 + 0: 13119 + 1: 2048 + -1,-15: + 0: 65328 + 1: 8 -1,-14: - 0: 4096 + 0: 65295 + -1,-16: + 1: 59392 + 0,-15: + 1: 15 + 0: 65280 + 0,-14: + 0: 65295 0,-13: - 0: 65520 + 0: 65535 + -4,-18: + 1: 59592 + -5,-18: + 1: 40960 -5,-17: - 2: 19104 - -3,-19: - 2: 708 - 0: 34816 + 1: 255 + -4,-20: + 1: 51400 + -4,-21: + 1: 51404 + -4,-19: + 1: 51400 -3,-18: - 0: 52364 - -3,-20: - 2: 17484 + 1: 12288 + 0: 34952 -3,-21: - 2: 32113 + 1: 18575 + -3,-20: + 0: 2176 + -3,-19: + 0: 34952 -2,-20: - 2: 4369 + 0: 4913 + 1: 34816 -2,-19: - 2: 50737 + 0: 15347 -2,-18: - 0: 62209 - 2: 136 + 0: 45875 + 1: 136 -2,-21: - 2: 32124 - -1,-18: - 0: 4096 + 1: 21299 + -1,-19: + 0: 16 + -1,-17: + 0: 1 -5,0: 0: 43688 -4,1: 0: 62259 - 1: 128 + 2: 128 -5,1: 0: 43690 -4,2: @@ -9931,14 +11900,14 @@ entities: -4,4: 0: 21759 -3,1: - 1: 513 - 2: 8208 + 2: 513 + 1: 8208 -3,2: 0: 65280 - 2: 8 + 1: 8 -3,3: 0: 13119 - 2: 32768 + 1: 32768 -3,4: 0: 47283 -2,1: @@ -9946,37 +11915,37 @@ entities: 5: 1092 -2,2: 0: 65280 - 2: 10 + 1: 10 -2,3: 0: 13 - 2: 61696 + 1: 61696 -1,1: - 1: 1365 + 2: 1365 -1,2: 0: 65280 - 2: 10 + 1: 10 -1,3: 0: 15 - 2: 5120 + 1: 5120 -2,4: - 2: 8 + 1: 8 0: 16176 -1,4: 0: 61420 0,0: 0: 15 - 2: 3328 - 1: 512 + 1: 3328 + 2: 512 0,1: 6: 273 - 1: 49356 + 2: 3276 0,2: 0: 65280 - 2: 6 - 1: 8 + 1: 6 + 2: 8 0,3: 0: 19663 - 2: 256 + 1: 256 -5,4: 0: 62395 -4,5: @@ -9984,29 +11953,29 @@ entities: -5,5: 0: 8079 -4,6: - 2: 50272 + 1: 50272 -3,5: - 0: 8107 + 0: 8099 -3,6: 0: 119 - 2: 53248 + 1: 53248 -3,7: - 2: 4401 + 1: 4401 -3,8: - 2: 4401 + 1: 4401 -2,5: 0: 13104 - 2: 2184 + 1: 2184 -2,6: 0: 63 - 2: 6144 + 1: 6144 -1,6: 0: 3311 - 2: 4096 + 1: 4096 -1,5: 0: 61038 -1,7: - 2: 2 + 1: 2 0,4: 0: 65535 0,5: @@ -10014,34 +11983,32 @@ entities: 0,6: 0: 36863 -8,-4: - 2: 6553 + 0: 15 + 1: 768 -8,-5: - 1: 61440 - 0: 6 - 2: 256 + 0: 61543 -9,-4: - 2: 62532 + 0: 26239 -8,-3: - 2: 4096 - 0: 19660 - -8,-2: - 2: 1 - 0: 65028 + 0: 44782 -9,-3: - 2: 62224 + 0: 34958 + 1: 12288 + -8,-2: + 0: 65034 -9,-2: - 2: 142 - 0: 62208 + 0: 64904 + 1: 3 -8,-1: - 0: 56591 + 0: 60942 -9,-1: - 0: 35003 - 2: 12288 + 0: 35037 + 1: 12288 -8,0: - 0: 26189 + 0: 26190 -7,-4: - 1: 273 - 0: 3596 + 0: 17487 + 1: 256 -7,-3: 0: 65535 -7,-2: @@ -10049,12 +12016,12 @@ entities: -7,-1: 0: 65518 -7,-5: - 1: 4096 - 0: 49343 + 0: 61576 -7,0: 0: 65359 -6,-4: - 0: 3551 + 0: 15 + 1: 2304 -6,-3: 0: 53727 -6,-2: @@ -10062,34 +12029,33 @@ entities: -6,-1: 0: 65422 -6,-5: - 0: 53503 + 0: 61695 -6,0: 0: 60931 -8,-8: - 0: 45055 + 0: 65535 + -8,-9: + 0: 64767 -9,-8: - 0: 8191 + 0: 63359 -8,-7: - 0: 12282 + 0: 65487 -9,-7: - 0: 15291 + 0: 62079 -8,-6: - 0: 28654 + 0: 3826 -9,-6: - 0: 65535 + 0: 62071 -9,-5: - 2: 1488 - 1: 61440 - -8,-9: - 0: 20479 + 0: 61423 -7,-8: - 0: 40959 + 0: 65535 -7,-7: - 0: 35771 + 0: 49055 -7,-6: - 0: 39871 + 0: 35768 -7,-9: - 0: 36857 + 0: 63929 -6,-8: 0: 15283 -6,-7: @@ -10099,29 +12065,29 @@ entities: -6,-9: 0: 48051 -8,-12: - 0: 47580 - -8,-13: - 0: 65126 + 0: 61166 -9,-12: - 0: 61152 + 0: 61166 -8,-11: - 0: 64415 + 0: 65520 -9,-11: - 0: 65038 - -8,-10: - 0: 61152 + 0: 65535 -9,-10: - 0: 20196 + 0: 65295 + -8,-10: + 0: 65504 -9,-9: - 0: 52974 + 0: 63327 + -8,-13: + 0: 57975 -7,-12: 0: 48063 -7,-11: - 0: 65531 + 0: 65528 -7,-10: - 0: 47576 + 0: 55736 -7,-13: - 0: 37102 + 0: 45294 -6,-12: 0: 53759 -6,-11: @@ -10131,62 +12097,79 @@ entities: -6,-13: 0: 64187 -8,-16: - 0: 65391 - -8,-17: - 0: 65399 + 0: 52686 + -9,-16: + 0: 65535 -8,-15: - 0: 61439 + 0: 28782 -9,-15: - 0: 3568 + 0: 61182 -8,-14: - 0: 26470 + 0: 30583 -9,-14: - 0: 4095 + 0: 65262 -9,-13: - 0: 61167 + 0: 65262 + -8,-17: + 0: 24576 + 1: 206 + -7,-15: + 1: 256 -7,-16: - 2: 2784 + 1: 238 -7,-14: 0: 58470 -6,-16: - 2: 17662 + 1: 17663 -6,-14: 0: 48043 -6,-17: - 2: 60136 + 1: 17663 -6,-15: - 2: 196 + 1: 196 0: 32768 - -8,-18: - 0: 30464 + -8,-20: + 0: 1 + 1: 512 + -8,-21: + 0: 4096 + 1: 32 + -9,-20: + 0: 61423 + -9,-19: + 0: 65519 -9,-18: - 0: 52224 - 2: 768 + 0: 61423 + -8,-18: + 1: 40960 -9,-17: - 0: 12 + 0: 65519 -7,-17: - 2: 3744 + 1: 511 + -7,-18: + 1: 40960 + -6,-18: + 1: 40960 -9,0: - 0: 51336 - 2: 4386 + 0: 59528 + 1: 34 -8,1: 0: 6 - 2: 24576 + 1: 24576 -9,1: - 0: 52428 - 2: 4352 + 0: 52462 + 1: 4096 -8,2: - 2: 2 + 1: 2 0: 61056 -9,2: - 0: 56572 + 0: 60668 -8,3: - 0: 30492 + 0: 26396 -9,3: - 0: 19663 - 2: 256 + 0: 20207 -8,4: - 0: 63334 + 0: 59238 -7,1: 0: 65535 -7,2: @@ -10204,442 +12187,482 @@ entities: -6,4: 0: 61567 -9,4: - 0: 52974 + 0: 36590 -8,5: 0: 65327 -9,5: 0: 62988 -8,6: 0: 7 - 2: 1792 + 1: 1792 -9,6: - 2: 52288 + 1: 52288 -8,7: - 2: 4224 + 1: 4224 -8,8: - 2: 18163 + 1: 18163 -9,7: - 2: 64716 + 1: 64716 -7,5: 0: 26159 -7,6: - 2: 4368 + 1: 4368 -7,7: - 2: 4369 + 1: 4369 -7,8: - 2: 55569 + 1: 55569 -6,5: 0: 3903 -6,6: - 2: 16454 + 1: 16454 -6,7: - 2: 2 + 1: 2 0: 35968 -6,8: - 2: 4978 + 1: 4978 -5,6: 0: 4369 - 2: 16452 + 1: 16452 -5,7: 0: 14128 - 2: 8 + 1: 8 -5,8: 0: 1 - 2: 2248 + 1: 2248 -9,8: - 2: 15 + 1: 15 -8,9: - 2: 8 + 1: 8 -7,9: - 2: 19038 + 1: 19038 -7,10: - 2: 136 + 1: 136 -6,9: - 2: 61440 + 1: 61440 -6,10: - 2: 116 + 1: 116 -5,9: - 2: 61440 + 1: 61440 -5,10: - 2: 196 + 1: 196 -4,8: - 2: 29456 + 1: 29456 -4,9: - 2: 23118 + 1: 23118 -4,10: - 2: 50 + 1: 50 -12,-4: - 2: 3712 - 1: 57344 + 1: 3712 + 2: 57344 -13,-4: 0: 48896 - 1: 7 - 2: 8 + 2: 7 + 1: 8 -12,-3: 0: 1 - 2: 62126 + 1: 62126 -13,-3: 0: 11 - 1: 59136 - 2: 6144 + 2: 59136 + 1: 6144 -12,-2: - 1: 59185 - 2: 2254 + 2: 59185 + 1: 2254 -13,-2: - 1: 140 - 2: 2114 + 2: 140 + 1: 2114 -12,-1: - 1: 140 - 2: 34816 + 2: 140 + 1: 34816 -11,-4: - 2: 3889 - 1: 61440 + 1: 1841 + 2: 61440 -11,-3: - 2: 61759 + 1: 61759 -11,-2: - 2: 5 + 1: 5 0: 36352 -12,0: - 2: 35562 + 1: 35562 -11,-5: - 2: 8080 + 1: 8048 -11,-1: 0: 34958 - 2: 8704 + 1: 8704 -10,-4: - 2: 50517 - 1: 12834 + 0: 59647 + 2: 4096 -10,-3: - 2: 63695 + 1: 61633 -10,-2: 0: 65280 - 2: 8 + 1: 12 -10,-1: 0: 13311 - 2: 32768 - -10,-5: - 2: 7936 - 1: 57344 + 1: 32768 -10,0: 0: 13105 - 2: 2048 + 1: 34816 -12,-8: - 0: 35071 + 0: 64991 + -12,-9: + 0: 53725 -13,-8: - 0: 30711 + 0: 52733 + -12,-7: + 0: 56349 + -13,-7: + 0: 51404 + 1: 17 -12,-6: - 2: 256 - 1: 4096 - 0: 36044 - -12,-5: - 1: 371 - 2: 4736 + 0: 52701 -13,-6: - 2: 61440 + 0: 3838 + -12,-5: + 2: 305 + 1: 4800 -13,-5: - 2: 4680 - 1: 60544 - -12,-9: - 0: 52428 - -12,-7: - 0: 34952 + 2: 60552 + 1: 4672 -11,-8: - 0: 7163 + 0: 65535 -11,-7: - 0: 4369 - 2: 1028 + 0: 45983 -11,-6: - 0: 7163 + 0: 63295 + -11,-9: + 0: 63799 -10,-8: - 0: 36863 + 0: 4369 + 1: 1088 -10,-7: - 0: 65535 + 0: 61695 -10,-6: - 0: 65535 + 0: 61695 + -10,-5: + 0: 3087 + 1: 256 -10,-9: - 0: 61422 + 0: 65287 + -12,-12: + 0: 65524 + -12,-13: + 0: 63726 + -13,-12: + 0: 61058 -12,-11: - 0: 35007 + 0: 4367 + 1: 1024 -13,-11: - 0: 30591 + 0: 34958 -12,-10: + 0: 57308 + -13,-10: + 0: 49080 + -13,-9: 0: 52424 - -12,-12: - 0: 2184 - -12,-13: - 0: 32768 + 1: 272 + -11,-10: + 0: 65399 + -11,-13: + 0: 65521 -11,-12: - 0: 20479 + 0: 61152 -11,-11: - 0: 65535 - -11,-13: - 0: 61695 - -11,-10: - 0: 57572 - -11,-9: - 0: 3822 + 0: 14 + 1: 1024 -10,-12: - 0: 35771 + 0: 32738 -10,-11: - 0: 65535 - -10,-13: - 0: 47615 + 0: 32614 -10,-10: - 0: 61166 - -13,-15: - 2: 45875 + 0: 63346 + -10,-13: + 0: 65294 + -12,-15: + 1: 3 + 0: 30464 -12,-14: - 0: 3838 + 0: 30576 -13,-14: - 0: 224 - 2: 49409 - 1: 16 - -11,-14: - 0: 52733 + 0: 32213 + -13,-13: + 0: 60629 -11,-15: - 0: 3296 + 0: 7936 + 1: 10 + -11,-14: + 0: 56799 -10,-15: - 0: 20208 + 0: 3968 + 1: 2 -10,-14: - 0: 30711 - -9,-16: - 2: 1092 + 0: 61166 + -10,-16: + 1: 16384 + -10,-20: + 1: 4 + 0: 3072 + -10,-21: + 1: 16512 + -10,-19: + 0: 12 + 1: 1024 -10,-18: - 2: 35968 + 1: 4 + 0: 3072 + -10,-17: + 0: 12 + -9,-21: + 0: 64170 -12,1: - 2: 65416 + 1: 65416 -13,1: - 2: 65392 + 1: 65392 -12,2: - 1: 3840 - 2: 61440 + 2: 3840 + 1: 61440 -13,2: - 1: 43008 - 2: 21026 + 2: 43008 + 1: 21026 -12,3: - 1: 3855 - 2: 61440 + 2: 3855 + 1: 61440 -13,3: - 1: 43016 - 2: 21026 + 2: 43016 + 1: 21026 -12,4: - 1: 3855 - 2: 61440 + 2: 3855 + 1: 61440 -11,1: - 2: 63265 + 1: 63265 0: 8 -11,3: - 2: 36608 + 1: 34560 + 2: 2048 -11,0: 0: 52416 -10,1: 0: 51 - 2: 47104 - 1: 16384 + 1: 47104 + 2: 16384 -10,3: - 2: 7936 - 1: 16384 - 0: 8 + 2: 49408 + 1: 4096 + 0: 140 -11,4: - 2: 15 - -10,4: - 2: 8471 - 1: 3816 + 1: 15 -10,2: - 2: 546 - 0: 192 + 1: 290 + 0: 32960 + -10,4: + 1: 8471 + 2: 3816 -13,4: - 1: 43016 - 2: 21026 + 2: 43016 + 1: 21026 -12,5: - 1: 8207 - 2: 53760 + 2: 8207 + 1: 53760 -13,5: - 1: 8200 - 2: 53794 + 2: 8200 + 1: 53794 -12,6: - 1: 21872 - 2: 8706 + 2: 21872 + 1: 8706 -12,7: - 1: 85 - 2: 61986 + 2: 85 + 1: 61986 -12,8: - 2: 127 + 1: 127 -13,7: - 2: 61986 - 1: 85 + 1: 61986 + 2: 85 -11,5: - 2: 61952 + 1: 61952 -11,7: - 2: 61440 + 1: 61440 -11,8: - 2: 15 + 1: 15 -11,6: - 2: 2 + 1: 2 -10,5: - 2: 5760 + 1: 5760 0: 57344 -10,7: - 2: 61440 + 1: 61440 -10,8: - 2: 15 + 1: 15 -10,6: - 2: 6 + 1: 6 -13,8: - 2: 127 + 1: 127 -16,-4: 0: 65327 -16,-5: 0: 61440 - 2: 145 + 1: 145 -16,-3: 0: 65327 -17,-4: 0: 62578 -16,-2: - 2: 240 + 1: 240 -16,-1: - 2: 35071 + 1: 35071 -17,-1: - 2: 255 + 1: 255 -15,-1: - 2: 9215 + 1: 9215 -16,0: - 2: 34952 + 1: 34952 -15,-4: 0: 24576 - 2: 12 + 1: 12 -15,-3: - 2: 60416 + 1: 60416 -15,-2: - 2: 55720 + 1: 55720 -15,-5: - 2: 59561 + 1: 59561 -15,0: - 2: 8995 + 1: 8995 -14,-4: 0: 65280 - 2: 14 + 1: 14 -14,-3: 0: 15 - 2: 43776 + 1: 43776 -14,-2: - 2: 32682 + 1: 32682 -14,-1: - 2: 23 + 1: 23 -14,-5: - 2: 43695 + 1: 43695 + -16,-8: + 1: 10098 + -16,-7: + 1: 8995 -16,-6: - 2: 4080 + 1: 4083 -17,-6: - 2: 36848 + 1: 36848 -17,-5: - 2: 72 + 1: 72 + -16,-9: + 1: 12848 + -15,-8: + 0: 32631 -15,-6: - 2: 57336 - -14,-6: - 2: 63283 - -14,-7: - 2: 63008 - 0: 8 + 1: 14196 + -15,-7: + 1: 10240 -14,-8: - 0: 34952 - -14,-9: - 0: 34816 - -13,-7: - 0: 55 - -13,-9: - 0: 30512 + 0: 30711 + -14,-7: + 0: 7 + -14,-6: + 0: 4095 -16,-12: - 2: 49137 + 1: 16369 -16,-13: - 2: 4369 - 1: 43690 + 1: 4369 + 2: 8738 -17,-12: - 2: 49137 + 1: 49137 + -16,-11: + 1: 12850 + -16,-10: + 1: 5272 + 2: 49668 -15,-12: - 2: 63485 + 1: 4083 + -15,-10: + 1: 39248 + 2: 160 -15,-13: - 2: 4369 - 1: 8738 + 1: 4352 + 2: 8208 + 0: 8 -14,-12: - 2: 13059 - 0: 2176 - -14,-13: - 2: 24576 - -14,-11: - 2: 2 - 0: 34952 - -13,-12: - 0: 10099 - -13,-10: - 0: 3 - 2: 17408 + 1: 3888 + 0: 8 -14,-10: - 2: 34816 + 2: 816 + 1: 1 + 0: 34944 + -15,-9: + 1: 8 + -14,-9: + 1: 273 + 2: 2 + -14,-13: + 0: 52428 -16,-16: - 2: 4607 - 1: 40960 + 1: 319 -16,-17: - 2: 45056 + 1: 12288 -17,-16: - 2: 4607 - 1: 40960 + 1: 20991 + 2: 8192 -16,-15: - 2: 273 - 1: 47786 - -17,-15: - 1: 47786 - 2: 273 + 0: 287 + 2: 4096 + 1: 8192 -16,-14: - 2: 481 - 1: 45072 + 2: 12337 + 1: 450 + -17,-15: + 1: 33045 + 2: 12834 -17,-14: - 2: 481 - 1: 45072 + 1: 361 + 2: 45200 -17,-13: - 1: 43690 - 2: 4369 + 2: 43690 + 1: 4369 -15,-16: - 2: 4607 - 1: 8192 + 1: 15 + 0: 57344 -15,-15: - 2: 273 - 1: 12834 + 0: 239 + 1: 4096 -15,-14: - 1: 12304 - 2: 481 - -15,-17: - 2: 12288 + 1: 1 + 0: 61120 -14,-16: - 2: 255 + 1: 63 + 0: 53248 + -14,-15: + 0: 3295 + 1: 4096 -14,-14: - 2: 2425 - 1: 128 + 0: 57308 -13,-16: - 2: 13175 - -13,-17: - 2: 28672 + 1: 33843 + 0: 4096 + -13,-15: + 0: 22387 -20,-4: - 2: 52428 + 1: 52428 -20,-5: - 2: 52424 + 1: 52424 -20,-3: - 2: 52428 + 1: 52428 -20,-2: - 2: 2252 + 1: 2252 -19,-4: - 2: 29184 + 1: 29184 -19,-3: - 2: 31744 + 1: 31744 -19,-2: - 2: 29596 + 1: 29596 -19,-1: - 2: 206 + 1: 206 -18,-2: - 2: 39188 + 1: 39188 -18,-1: - 2: 255 + 1: 255 -18,-4: 0: 25792 -18,-3: @@ -10647,127 +12670,144 @@ entities: -17,-3: 0: 628 -17,-2: - 2: 34928 + 1: 34928 -19,-5: - 2: 31891 + 1: 31891 -19,-6: - 2: 32448 + 1: 32448 -18,-6: - 2: 40944 + 1: 40944 -18,-5: - 2: 1113 - -19,-12: - 2: 61164 - -19,-13: - 2: 52292 - -18,-12: - 2: 36848 + 1: 1113 + -21,-16: + 1: 52460 + -21,-17: + 1: 57344 + -21,-15: + 1: 52428 + -21,-14: + 1: 52428 + -21,-13: + 1: 50252 + -21,-12: + 1: 61164 + -20,-16: + 1: 159 + 2: 32768 + -20,-14: + 1: 722 + 2: 32800 + -20,-17: + 1: 32768 -19,-16: - 2: 52462 - -19,-17: - 2: 57344 + 1: 4607 + 2: 40960 + -20,-15: + 2: 34952 -19,-15: - 2: 52428 + 1: 273 + 2: 47786 -19,-14: - 2: 52428 + 2: 45072 + 1: 481 + -20,-13: + 2: 34952 + -19,-13: + 1: 4369 + 2: 43690 + -19,-17: + 1: 45056 + -19,-12: + 1: 49137 -18,-16: - 2: 63 - 1: 32768 - -18,-14: - 2: 722 - 1: 32800 - -18,-17: - 2: 32768 + 1: 4607 + 2: 40960 -18,-15: - 1: 34952 + 1: 273 + 2: 47786 + -18,-14: + 2: 45072 + 1: 481 -18,-13: - 1: 34952 + 1: 4369 + 2: 43690 + -18,-17: + 1: 45056 + -18,-12: + 1: 49073 -17,-17: - 2: 45056 - 0,-4: - 0: 57582 - 0,-5: - 0: 61166 + 1: 45056 1,-4: - 0: 28927 - 1: 32768 - 1,-3: - 0: 13104 - 2: 2184 + 0: 1136 + 1: 57344 1,-2: - 0: 12339 - 1: 32904 + 0: 61440 + 2: 238 1,-1: - 0: 13107 - 1: 136 - 2: 32768 - 1,0: - 0: 3 - 2: 264 - 1: 3712 + 0: 65535 1,-5: - 0: 20206 + 0: 65535 + 1,-3: + 1: 226 + 2: 57344 + 1,0: + 0: 15 + 1: 18176 2,-4: - 0: 52383 - 1: 4096 + 0: 119 + 1: 28672 2,-3: - 2: 273 - 1: 17920 - 0: 12 + 1: 25173 2,-2: - 1: 4241 - 2: 17476 - 0: 34816 + 0: 61440 + 1: 236 2,-1: - 1: 81 - 2: 29700 + 0: 32631 + 2,-5: + 0: 65535 2,0: - 2: 1 - 1: 50 - 0: 24576 + 0: 15 + 2: 30464 3,-4: - 0: 63263 + 0: 4090 3,-3: - 0: 30479 - 3,-1: - 1: 4369 - 0: 52428 + 0: 43963 3,-2: - 0: 52960 + 1: 16 + 0: 21952 + 3,-1: + 0: 4016 + 3,-5: + 0: 16383 3,0: - 1: 4353 - 0: 52428 + 0: 52445 + 1: 4352 4,-4: - 0: 15279 + 0: 8157 4,-3: - 0: 56831 + 0: 56797 4,-2: - 0: 62804 + 0: 61919 4,-1: - 0: 4607 - 2: 16384 + 0: 37759 1,-8: 0: 61694 1,-7: 0: 36622 1,-6: - 0: 35771 + 0: 3003 2,-8: 0: 65278 2,-7: 0: 65518 2,-6: - 0: 4095 - 2,-5: - 0: 4095 + 0: 12287 2,-9: 0: 61182 3,-8: 0: 65535 3,-6: - 0: 20476 - 3,-5: - 0: 2047 + 0: 4092 3,-9: 0: 65308 3,-7: @@ -10777,19 +12817,19 @@ entities: 4,-7: 0: 56792 4,-6: - 0: 53240 + 0: 61432 4,-5: - 0: 29113 + 0: 33720 1,-12: - 0: 65039 + 0: 64799 1,-11: - 0: 3824 + 0: 7665 1,-10: - 0: 61694 + 0: 61949 1,-9: 0: 3824 1,-13: - 0: 65308 + 0: 65519 2,-12: 0: 65263 2,-11: @@ -10797,7 +12837,7 @@ entities: 2,-10: 0: 65278 2,-13: - 0: 65487 + 0: 65519 3,-12: 0: 62702 3,-11: @@ -10806,106 +12846,106 @@ entities: 0: 61164 3,-13: 0: 57582 - 4,-12: - 0: 62702 4,-11: - 0: 62207 + 0: 65263 4,-10: 0: 65535 4,-9: 0: 16175 - 0,-14: - 2: 29184 - 1,-14: - 0: 51336 + 0,-16: + 1: 43520 1,-16: - 0: 3200 + 1: 45056 1,-15: - 0: 32768 - 2: 136 - 1,-17: - 2: 34816 - 0: 8 + 0: 65248 + 1,-14: + 0: 65294 2,-16: - 0: 61420 + 0: 61183 2,-15: - 0: 65260 + 0: 65262 2,-14: - 0: 65535 + 0: 65518 2,-17: - 0: 52430 + 0: 61167 3,-16: - 0: 4369 + 0: 58589 3,-15: - 0: 60432 - 2: 12 - 3,-14: - 0: 4046 + 0: 61422 3,-17: - 0: 4369 + 0: 20736 + 3,-14: + 0: 3814 4,-15: - 2: 1 - 0: 62924 - 4,-14: - 0: 43683 + 0: 62941 + 1,-19: + 0: 2240 + 1,-17: + 0: 12 + 1: 2048 1,-18: - 0: 49152 - 2: 128 - 2,-18: - 0: 65164 + 0: 32768 + 1: 136 + 1,-20: + 1: 34816 2,-19: - 2: 708 - 0: 34816 - 2,-20: - 2: 17484 + 0: 61182 2,-21: - 2: 32113 + 1: 24302 + 2,-20: + 0: 20196 + 2,-18: + 0: 61166 + 3,-21: + 1: 39167 + 3,-18: + 1: 58600 3,-20: - 2: 4369 + 1: 34952 + 4,-20: + 1: 4112 3,-19: - 2: 529 - 3,-18: - 0: 4353 - 2: 50368 - 3,-21: - 2: 32124 + 1: 34952 + 4,-19: + 1: 4112 4,-18: - 2: 62960 + 1: 62960 1,1: - 1: 17 - 2: 1028 + 2: 16657 + 1: 1028 1,2: 0: 65280 - 1: 4 - 2: 8 + 2: 4 + 1: 8 1,3: 0: 14207 1,4: 0: 65535 2,1: - 0: 2039 + 2: 32775 + 1: 31488 2,2: - 2: 9 + 1: 1 0: 65280 + 2: 2 2,3: 0: 49359 - 2: 256 + 1: 256 2,4: 0: 65535 + 3,1: + 1: 17 + 0: 52416 3,2: - 2: 1 0: 65484 3,3: 0: 63679 - 3,1: - 0: 52460 3,4: 0: 64985 4,0: - 0: 4369 - 2: 16384 + 0: 56797 4,1: - 0: 65489 + 0: 65529 4,2: 0: 7965 4,3: @@ -10927,87 +12967,86 @@ entities: 3,5: 0: 65503 3,6: - 0: 61951 + 0: 30719 3,7: - 0: 15 + 0: 7 + 1: 17408 2: 32768 + 3,8: + 1: 36452 + 2: 136 + 4,4: + 0: 47568 4,5: - 0: 13104 - 2: 32776 + 0: 16369 4,6: - 0: 4147 - 1: 24576 + 0: 13107 + 1: 8 4,7: - 0: 1 - 2: 47752 - 1: 17510 - 3,8: - 2: 136 + 0: 887 + 2: 12288 + 1: 16512 4,8: - 1: 239 - 2: 16 + 2: 307 + 1: 16068 5,-4: - 0: 49663 + 0: 44987 + 5,-3: + 0: 48051 5,-2: - 2: 16 - 0: 61576 + 0: 61627 5,-1: - 0: 61695 - 5,-3: - 0: 61166 - 5,0: - 0: 30719 + 0: 29567 5,-5: - 0: 51643 + 0: 47291 + 5,0: + 0: 30583 6,-4: - 0: 7408 + 0: 65520 6,-3: - 0: 13107 - 2: 2056 + 0: 65520 6,-2: - 0: 61440 - 2: 64 + 0: 61695 6,-1: - 0: 45567 + 0: 63711 6,0: - 0: 48059 + 0: 65535 6,-5: 0: 61152 7,-4: 0: 61180 7,-2: - 0: 64716 - 2: 17 + 0: 56558 7,-1: - 0: 47359 + 0: 56543 7,-5: 0: 56828 7,-3: - 0: 52974 + 0: 60652 7,0: - 0: 49083 + 0: 56797 8,-4: 0: 56797 8,-3: 0: 7645 8,-2: - 0: 45943 + 0: 45499 8,-1: 0: 15291 5,-8: 0: 13311 - 2: 32768 + 1: 32768 5,-7: 0: 32627 5,-6: 0: 65523 5,-9: - 0: 7975 + 0: 7974 6,-8: 0: 35067 - 2: 4096 + 1: 4096 6,-7: - 2: 1 + 1: 1 0: 65416 6,-6: 0: 65520 @@ -11027,14 +13066,16 @@ entities: 0: 65520 8,-5: 0: 56793 + 4,-12: + 0: 58606 4,-13: 0: 61154 5,-12: - 0: 59579 + 0: 24763 5,-11: - 0: 56559 + 0: 63238 5,-10: - 0: 30493 + 0: 30215 5,-13: 0: 48056 6,-12: @@ -11055,7 +13096,7 @@ entities: 0: 12275 7,-13: 0: 4113 - 2: 50176 + 1: 50176 8,-12: 0: 65520 8,-11: @@ -11064,6 +13105,8 @@ entities: 0: 61430 8,-9: 0: 60636 + 4,-14: + 0: 43682 5,-15: 0: 62054 5,-14: @@ -11073,71 +13116,71 @@ entities: 6,-14: 0: 15295 6,-16: - 2: 32768 + 1: 32768 7,-16: - 2: 14476 + 1: 14476 0: 32768 7,-15: 0: 64432 7,-14: 0: 53247 7,-17: - 2: 19596 + 1: 19596 8,-16: 0: 4096 8,-14: 0: 3838 8,-13: - 2: 36906 + 1: 36906 + 4,-21: + 1: 4112 5,-18: - 2: 62974 + 1: 62974 5,-19: - 2: 51200 + 1: 51200 6,-19: - 2: 4990 + 1: 4990 6,-18: - 2: 62960 + 1: 62960 6,-20: - 2: 51200 + 1: 51200 7,-20: - 2: 65530 - 1: 4 + 1: 65530 + 2: 4 7,-19: - 2: 17487 + 1: 17487 7,-18: - 2: 30068 + 1: 30068 7,-21: - 2: 64256 + 1: 64256 8,-20: - 2: 29456 + 1: 29456 8,-19: - 2: 2255 + 1: 2255 + 5,1: + 0: 65522 5,2: - 0: 62382 + 0: 57130 5,3: - 0: 15251 - 5,1: - 0: 10914 + 0: 48031 6,1: - 0: 8120 + 0: 65464 6,2: - 0: 64287 + 0: 64271 6,3: - 0: 441 + 0: 62395 + 5,4: + 0: 65464 6,4: - 1: 769 - 2: 25600 - 0: 2048 + 0: 26191 7,1: - 0: 35723 + 0: 65535 7,2: 0: 49039 7,3: - 0: 35003 - 1: 8192 + 0: 47291 7,4: - 1: 2 - 0: 49032 + 0: 49083 8,0: 0: 49083 8,1: @@ -11145,57 +13188,33 @@ entities: 8,2: 0: 29627 8,3: - 0: 30583 - 4,4: - 1: 640 + 0: 30711 5,5: - 2: 64591 + 0: 61424 5,7: - 2: 12288 - 5,4: - 1: 25600 - 5,8: - 1: 1 - 2: 50 + 2: 16 6,5: - 2: 3879 - 1: 128 + 0: 36848 + 6,6: + 1: 2 + 0: 34952 + 6,7: + 0: 140 7,5: - 1: 32 - 0: 59528 + 0: 40952 7,6: - 0: 61166 + 0: 221 + 1: 24576 7,7: - 0: 34958 - 2: 512 + 0: 1 + 1: 2 8,4: - 0: 13107 - 2: 2176 + 0: 65523 8,5: - 0: 29491 - 2: 128 + 0: 4369 8,6: - 0: 62327 - 8,7: - 0: 29683 - 7,8: - 0: 34952 - 7,10: - 2: 4096 - 0: 36040 - 7,9: - 2: 8192 - 0: 34952 - 7,11: - 2: 2 - 0: 136 - 8,8: - 0: 62327 - 8,9: - 0: 13299 - 2: 32768 - 8,10: - 0: 10099 + 0: 3327 + 1: 4096 9,-4: 0: 30583 9,-3: @@ -11210,7 +13229,7 @@ entities: 0: 65339 10,-4: 0: 49425 - 2: 192 + 1: 192 10,-3: 0: 8191 10,-2: @@ -11223,7 +13242,7 @@ entities: 0: 48682 11,-1: 0: 59 - 2: 12288 + 1: 12288 11,-4: 0: 59946 11,-3: @@ -11232,13 +13251,13 @@ entities: 0: 61175 12,-4: 0: 4367 - 2: 52224 + 1: 52224 12,-3: 0: 4353 - 2: 1028 + 1: 1028 12,-2: 0: 4353 - 2: 52420 + 1: 52420 9,-8: 0: 60943 9,-7: @@ -11255,9 +13274,9 @@ entities: 0: 47291 10,-7: 0: 14 - 2: 25600 + 1: 25600 10,-5: - 2: 33376 + 1: 33376 11,-8: 0: 25328 11,-7: @@ -11268,7 +13287,7 @@ entities: 0: 58976 12,-8: 0: 4415 - 2: 51200 + 1: 51200 12,-7: 0: 65489 12,-6: @@ -11282,53 +13301,53 @@ entities: 9,-10: 0: 61408 9,-13: - 2: 4096 + 1: 4096 10,-12: 0: 4368 10,-10: 0: 48952 10,-13: - 2: 4368 + 1: 4368 0: 140 10,-11: - 2: 8736 + 1: 8736 11,-11: 0: 21776 11,-10: 0: 28455 11,-12: - 2: 5456 + 1: 5456 12,-12: 0: 13107 - 2: 32768 + 1: 32768 12,-11: 0: 56785 12,-10: 0: 64989 12,-9: - 0: 47901 + 0: 16157 8,-15: - 2: 1634 + 1: 1634 9,-14: 0: 61439 9,-15: - 2: 17 + 1: 17 0: 60620 9,-16: 0: 52364 9,-17: 0: 51336 - 2: 32 + 1: 32 10,-16: 0: 56704 - 2: 2 + 1: 2 10,-15: 0: 57309 10,-14: 0: 57297 10,-17: - 1: 34816 - 2: 576 + 2: 34816 + 1: 576 11,-16: 0: 65520 11,-15: @@ -11338,8 +13357,8 @@ entities: 11,-13: 0: 127 11,-17: - 1: 62208 - 2: 3104 + 2: 62208 + 1: 3104 12,-16: 0: 56712 12,-15: @@ -11349,641 +13368,728 @@ entities: 12,-13: 0: 47935 9,-19: - 2: 62736 - 1: 2082 + 1: 62736 + 2: 2082 9,-20: - 1: 64 + 2: 64 9,-18: - 2: 2126 + 1: 2126 10,-20: - 2: 1792 + 1: 1792 10,-18: - 2: 25862 + 1: 25862 11,-20: - 1: 13056 - 2: 50304 + 2: 13056 + 1: 50304 11,-19: - 1: 30583 - 2: 8 + 2: 30583 + 1: 8 11,-18: - 1: 375 - 2: 17920 + 2: 375 + 1: 17920 11,-21: - 2: 6481 - 1: 140 + 1: 6481 + 2: 140 12,-20: - 1: 13104 + 2: 13104 12,-19: - 2: 5633 - 1: 16418 + 1: 5633 + 2: 16418 12,-18: - 2: 17425 - 1: 8192 + 1: 17425 + 2: 8192 9,1: 0: 8083 9,2: - 0: 45431 + 0: 45943 9,3: - 0: 11 - 1: 8448 + 0: 65339 10,1: 0: 9010 - 2: 2176 + 1: 2176 10,2: 0: 56575 10,3: - 0: 13 - 2: 1792 + 0: 57101 + 9,4: + 0: 65528 11,0: 0: 32624 11,1: - 2: 16 + 1: 16 0: 57344 11,2: 0: 65535 11,3: - 0: 15 - 2: 19456 - 11,4: - 2: 4084 + 0: 271 12,0: - 2: 51393 + 1: 51393 0: 768 - 1: 1024 + 2: 1024 12,1: - 2: 49665 + 1: 49665 12,2: 0: 30577 12,3: 0: 7 - 2: 34816 - 9,4: - 2: 3856 - 9,5: - 2: 272 + 1: 17408 9,6: - 0: 4096 - 9,7: - 0: 16 + 0: 119 + 1: 8192 + 9,5: + 0: 28398 10,4: - 2: 4080 + 0: 62256 + 1: 128 + 10,5: + 0: 511 + 1: 49152 + 10,6: + 1: 3 + 11,4: + 1: 80 + 0: 61440 + 11,5: + 0: 44799 + 11,6: + 0: 170 12,4: - 2: 4092 - 8,11: - 0: 34 - 9,8: - 0: 4096 - 9,9: - 0: 16 - 2: 4096 - 9,10: - 2: 1 + 0: 61440 + 1: 68 + 12,5: + 0: 241 + 1: 24576 12,-1: - 2: 4 + 1: 4 13,-4: 0: 1 - 2: 64 + 1: 64 13,-2: - 2: 4080 + 1: 4080 13,-5: 0: 62451 14,-2: - 2: 20478 + 1: 20478 14,-5: 0: 12336 14,-1: - 1: 43690 - 2: 17476 + 2: 43690 + 1: 17476 14,0: - 1: 1038 - 2: 19264 + 2: 1038 + 1: 19264 15,-2: - 2: 20478 + 1: 20478 15,-1: - 1: 43690 - 2: 17476 + 2: 43690 + 1: 17476 15,0: - 1: 1038 - 2: 19264 + 2: 1038 + 1: 19264 16,-2: - 2: 20478 + 1: 20478 13,-8: 0: 3 - 2: 17476 + 1: 17476 13,-7: 0: 62448 13,-6: 0: 65523 13,-9: - 0: 4353 - 2: 16388 + 1: 16388 + 0: 257 14,-7: 0: 12336 14,-6: - 2: 8224 + 1: 8224 13,-12: - 2: 64512 + 1: 64512 13,-11: 0: 65520 13,-10: 0: 4607 - 2: 49152 + 1: 49152 13,-13: 0: 13075 - 2: 2176 + 1: 2176 14,-12: - 2: 36864 + 1: 36864 0: 238 14,-11: 0: 4368 - 1: 19656 - 2: 32768 + 2: 19656 + 1: 32768 14,-10: 0: 17 - 1: 2188 - 2: 64 + 2: 2188 + 1: 64 14,-13: 0: 58606 15,-11: - 1: 401 - 2: 4710 + 2: 401 + 1: 4710 15,-10: - 1: 48 - 2: 3784 + 2: 48 + 1: 3784 15,-12: - 2: 8712 + 1: 8712 15,-13: - 2: 52832 + 1: 52832 16,-12: - 2: 8435 - 1: 35328 + 1: 8435 + 2: 35328 16,-11: - 1: 10937 - 2: 36864 + 2: 10937 + 1: 36864 0: 1024 16,-10: - 1: 383 - 2: 2176 + 2: 383 + 1: 2176 12,-17: 0: 34880 - 2: 162 + 1: 162 13,-16: 0: 4353 - 2: 17408 + 1: 17408 13,-15: 0: 12561 - 2: 2116 + 1: 2116 13,-14: 0: 48123 13,-17: 0: 4096 - 1: 16 - 2: 230 + 2: 16 + 1: 230 14,-14: 0: 65535 14,-16: - 2: 28 + 1: 28 0: 8192 14,-17: - 2: 4096 - 1: 2 + 1: 4096 + 2: 2 14,-15: 0: 57890 15,-16: - 2: 32775 - 1: 128 + 1: 32775 + 2: 128 15,-14: 0: 10016 15,-15: - 2: 28360 + 1: 28360 15,-17: - 2: 34944 + 1: 34944 16,-16: - 1: 61104 - 2: 14 + 2: 61104 + 1: 14 16,-15: - 1: 119 + 2: 119 16,-13: - 2: 4096 + 1: 4098 12,-21: - 2: 20480 - 1: 8977 + 1: 20480 + 2: 8977 13,-18: - 1: 8448 - 2: 4096 + 2: 8448 + 1: 4096 14,-19: - 2: 14540 + 1: 14540 14,-18: - 2: 21789 + 1: 21789 14,-20: - 2: 60416 + 1: 60416 15,-20: - 1: 3686 + 2: 3686 15,-19: - 1: 52750 - 2: 8192 + 2: 52750 + 1: 8192 15,-18: - 1: 2 - 2: 32780 + 2: 2 + 1: 32780 16,-20: - 1: 63235 - 2: 2088 + 2: 63235 + 1: 2088 16,-19: - 1: 48031 + 2: 48031 16,-18: - 1: 139 - 2: 31744 + 2: 139 + 1: 31744 16,-17: - 1: 48942 - 2: 16384 + 2: 48942 + 1: 16384 13,0: - 2: 20288 + 1: 20288 13,2: - 2: 65280 + 1: 65280 14,2: - 2: 65348 - 1: 10 + 1: 65348 + 2: 10 14,1: - 1: 43694 - 2: 17472 + 2: 43694 + 1: 17472 14,3: - 2: 14 + 1: 14 15,2: - 2: 65348 - 1: 10 + 1: 65348 + 2: 10 15,1: - 1: 43694 - 2: 17472 + 2: 43694 + 1: 17472 15,3: - 2: 14 + 1: 14 16,0: - 2: 19264 - 1: 1038 + 1: 19264 + 2: 1038 16,2: - 2: 65348 - 1: 10 + 1: 65348 + 2: 10 + 12,6: + 1: 2 16,-1: - 1: 43690 - 2: 17476 + 2: 43690 + 1: 17476 17,-2: - 2: 20478 + 1: 20478 17,-1: - 1: 43690 - 2: 17476 + 2: 43690 + 1: 17476 17,0: - 1: 1038 - 2: 19264 + 2: 1038 + 1: 19264 17,-3: - 2: 32768 + 1: 32768 18,-3: - 2: 14316 + 1: 14316 18,-2: - 2: 59185 + 1: 59185 18,-1: - 2: 34956 + 1: 34956 18,-4: - 2: 32768 + 1: 32768 19,-4: - 2: 14316 + 1: 14316 19,-3: - 2: 1 + 1: 1 19,-1: - 2: 4407 + 1: 4407 18,0: - 2: 44456 - 1: 512 + 1: 44456 + 2: 512 19,0: - 2: 13105 + 1: 13105 19,-2: - 2: 60544 + 1: 60544 19,-5: - 2: 32896 + 1: 32896 20,-2: - 2: 311 + 1: 311 20,-7: - 1: 24576 + 2: 24576 19,-7: - 2: 32768 + 1: 32768 20,-6: - 2: 16912 - 1: 36078 + 1: 16912 + 2: 36078 19,-6: - 2: 200 + 1: 200 20,-5: - 2: 784 - 1: 60552 + 1: 784 + 2: 60552 20,-4: - 1: 70 + 2: 70 21,-6: - 1: 18367 - 2: 2048 + 2: 18367 + 1: 2048 21,-5: - 1: 55735 - 2: 8 + 2: 55735 + 1: 8 21,-8: - 2: 546 - 1: 34952 + 1: 546 + 2: 34952 21,-7: - 1: 34958 - 2: 512 + 2: 34958 + 1: 512 21,-4: - 1: 31612 + 2: 31612 21,-9: - 1: 36352 - 2: 231 + 2: 36352 + 1: 231 22,-8: - 1: 57339 - 2: 4 + 2: 57339 + 1: 4 22,-7: - 1: 4271 - 2: 57600 + 2: 4271 + 1: 57600 22,-6: - 1: 60493 - 2: 16 + 2: 60493 + 1: 16 22,-5: - 2: 1 - 1: 65534 + 1: 1 + 2: 65534 22,-9: - 1: 40908 - 2: 16434 + 2: 40908 + 1: 16434 22,-4: - 1: 15031 - 2: 8 + 2: 15031 + 1: 8 23,-8: - 1: 60943 + 2: 60943 23,-7: - 2: 13056 - 1: 52462 + 1: 13056 + 2: 52462 23,-6: - 1: 1615 + 2: 1615 23,-5: - 1: 887 - 2: 12288 + 2: 887 + 1: 12288 23,-9: - 1: 60943 + 2: 60943 23,-4: - 1: 4 - 2: 336 + 2: 4 + 1: 336 24,-8: - 1: 4353 + 2: 4353 24,-7: - 1: 4369 + 2: 4369 24,-6: - 1: 273 + 2: 273 16,1: - 1: 43694 - 2: 17472 + 2: 43694 + 1: 17472 16,3: - 2: 14 + 1: 14 17,2: - 2: 65348 - 1: 10 + 1: 65348 + 2: 10 17,1: - 1: 43694 - 2: 17472 + 2: 43694 + 1: 17472 17,3: - 2: 14 + 1: 14 18,2: - 2: 65416 + 1: 65416 18,1: - 2: 34952 + 1: 34952 19,1: - 2: 4369 + 1: 4369 19,2: - 2: 13073 + 1: 13073 18,3: - 2: 8 + 1: 8 19,3: - 2: 3 + 1: 3 24,-9: - 1: 12545 + 2: 12545 + 4,-24: + 1: 13107 + 4,-25: + 1: 4096 + 3,-24: + 1: 224 + 2: 12567 + 4,-23: + 1: 4915 + 3,-23: + 2: 4415 + 1: 34816 4,-22: - 2: 61440 - 4,-21: - 2: 497 - 5,-21: + 1: 4369 + 3,-22: + 1: 35016 2: 1 8,-21: - 2: 4352 + 1: 4352 17,-12: - 1: 53248 - 2: 11980 + 2: 53248 + 1: 11980 17,-11: - 1: 40129 - 2: 24588 + 2: 40129 + 1: 24588 17,-10: - 2: 199 + 1: 199 17,-13: - 2: 17476 + 1: 17476 18,-12: - 1: 61426 - 2: 4096 + 2: 61426 + 1: 4096 18,-11: - 1: 30591 + 2: 30591 18,-10: - 2: 112 + 1: 112 18,-13: - 2: 51336 + 1: 51336 19,-12: - 1: 65520 + 2: 65520 19,-11: - 1: 32766 - 2: 32768 + 2: 32766 + 1: 32768 19,-13: - 2: 4096 + 1: 4096 19,-10: - 1: 2 + 2: 2 20,-12: - 1: 4352 - 2: 8940 + 2: 4352 + 1: 8940 20,-11: - 1: 32784 - 2: 14790 + 2: 32784 + 1: 14790 11,-23: - 1: 49152 + 2: 49152 11,-22: - 1: 34956 - 2: 1088 + 2: 34956 + 1: 1088 12,-23: - 1: 4096 + 2: 4096 12,-22: - 1: 273 + 2: 273 + -4,-24: + 2: 238 + 1: 19456 + -4,-25: + 2: 57344 + -4,-23: + 1: 52292 -4,-22: - 2: 28672 - -5,-22: - 2: 32768 - -4,-21: - 2: 3196 - -5,-21: - 2: 132 - -1,-21: - 2: 505 + 1: 52428 + -3,-24: + 1: 487 + 2: 63000 + -3,-23: + 2: 50287 + 1: 4096 + -3,-25: + 1: 11840 + 2: 16384 + 0: 32768 + -3,-22: + 2: 4 + 1: 34816 + -2,-24: + 2: 49147 + -2,-23: + 2: 49416 + 1: 13024 + -2,-22: + 1: 13106 + 2: 68 + -1,-24: + 2: 65535 + -1,-23: + 1: 248 + 2: 39426 -1,-22: - 2: 63488 + 1: 48 + 2: 32968 + -1,-25: + 2: 7492 + 1: 178 + 0,-24: + 2: 30481 + 1: 35054 + 0,-23: + 1: 58 + 2: 57284 0,-22: - 2: 36608 - 0,-21: - 2: 143 + 2: 29439 -16,8: - 2: 204 + 1: 204 -16,7: - 2: 51336 + 1: 51336 -15,8: - 2: 31 + 1: 31 -15,7: - 2: 61713 + 1: 61713 -14,8: - 2: 127 + 1: 127 -14,7: - 2: 61986 - 1: 85 + 1: 61986 + 2: 85 -3,9: - 2: 18 + 1: 18 -16,2: - 2: 52360 + 1: 52360 -16,3: - 2: 52364 + 1: 52364 -16,4: - 2: 52364 + 1: 52364 -16,1: - 2: 34952 + 1: 34952 -15,1: - 2: 65315 + 1: 65315 -15,2: - 2: 61713 - 1: 2048 + 1: 61713 + 2: 2048 -15,3: - 2: 61713 - 1: 2056 + 1: 61713 + 2: 2056 -15,4: - 2: 61713 - 1: 2056 + 1: 61713 + 2: 2056 -14,1: - 2: 65280 + 1: 65280 -14,2: - 1: 36608 - 2: 28672 + 2: 36608 + 1: 28672 -14,3: - 1: 36623 - 2: 28672 + 2: 36623 + 1: 28672 -14,4: - 1: 36623 - 2: 28672 + 2: 36623 + 1: 28672 + 0,-21: + 2: 2 + 0,-25: + 1: 43679 + 2: 256 + 1,-24: + 1: 547 + 2: 44236 + 0: 16384 + 1,-23: + 2: 52696 1,-22: - 2: 28672 - 1,-21: - 2: 3196 + 1: 96 + 1,-25: + 1: 8449 + 2: 50772 + 2,-24: + 2: 61438 + 2,-23: + 2: 32552 + 2,-22: + 2: 231 + 1: 60928 24,-10: - 1: 4096 + 2: 4096 23,-10: - 2: 52851 - 1: 12288 + 1: 52851 + 2: 12288 -16,5: - 2: 52364 + 1: 52364 -16,6: - 2: 34956 + 1: 34956 -15,5: - 2: 46353 - 1: 16392 + 1: 46353 + 2: 16392 -15,6: - 2: 4373 + 1: 4373 -14,5: - 1: 8207 - 2: 53760 + 2: 8207 + 1: 53760 -14,6: - 1: 21872 - 2: 8706 + 2: 21872 + 1: 8706 -13,6: - 1: 21872 - 2: 8706 + 2: 21872 + 1: 8706 20,-13: - 2: 12850 + 1: 12850 20,-10: - 2: 35879 - 1: 8 + 1: 35879 + 2: 8 21,-12: - 2: 52851 + 1: 52851 21,-11: - 2: 264 - 1: 4096 + 1: 264 + 2: 4096 21,-10: - 1: 1 - 2: 29124 + 2: 1 + 1: 29124 22,-12: - 2: 4096 + 1: 4096 22,-11: - 2: 52851 + 1: 52851 22,-10: - 2: 52792 + 1: 52792 23,-11: - 2: 4096 + 1: 4096 15,-21: - 1: 2048 + 2: 2048 16,-21: - 1: 48058 + 2: 48058 + 16,-14: + 1: 2 17,-16: - 2: 1 - 1: 65534 + 1: 1 + 2: 65534 17,-15: - 1: 34021 - 2: 25360 + 2: 34021 + 1: 25360 17,-17: - 1: 65505 + 2: 65505 17,-14: - 2: 17612 + 1: 17612 18,-16: - 1: 30583 + 2: 30583 18,-15: - 1: 41968 - 2: 20480 + 2: 41968 + 1: 20480 18,-14: - 2: 35226 + 1: 35226 18,-17: - 1: 30578 + 2: 30578 19,-16: - 2: 4352 + 1: 4352 19,-15: - 1: 16 + 2: 16 0: 4096 - 2: 25088 + 1: 25088 19,-14: - 2: 2671 + 1: 2671 20,-14: - 2: 12816 + 1: 12816 17,-20: - 1: 49037 + 2: 49037 17,-18: - 2: 28464 - 1: 6 + 1: 28464 + 2: 6 17,-21: - 1: 54545 + 2: 54545 17,-19: - 1: 8418 - 2: 52736 + 2: 8418 + 1: 52736 18,-20: - 1: 30513 + 2: 30513 18,-19: - 1: 56784 + 2: 56784 18,-18: - 2: 1999 - 1: 28672 + 1: 1999 + 2: 28672 19,-19: - 1: 4352 + 2: 4352 19,-18: - 2: 4097 + 1: 4097 19,-17: - 2: 256 + 1: 256 16,-22: - 1: 32768 + 2: 32768 17,-22: - 1: 4096 + 2: 4096 20,-3: - 2: 60544 + 1: 60544 21,-3: - 2: 256 - 1: 14 + 1: 256 + 2: 14 22,-3: - 1: 1 + 2: 1 + -2,-25: + 1: 640 + -1,-26: + 1: 24576 + 0,-26: + 1: 52352 + 1,-26: + 1: 4672 + 2: 19456 + 2,-26: + 2: 17152 + 1: 35856 + 2,-25: + 1: 3328 + 3,-25: + 1: 768 + -20,-12: + 1: 36848 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -12001,7 +14107,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -12016,7 +14122,7 @@ entities: - 0 - 0 - volume: 2500 - immutable: True + temperature: 293.15 moles: - 0 - 0 @@ -12094,47 +14200,36 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap -- proto: ActionToggleInternals +- proto: AcousticGuitarInstrument entities: - - uid: 5122 - components: - - type: Transform - parent: 5121 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 5121 - - uid: 11282 + - uid: 10313 components: - type: Transform - parent: 11111 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 11111 - - uid: 11300 + pos: -9.451197,-24.49092 + parent: 2 + - uid: 12113 components: - type: Transform - parent: 11126 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 11126 -- proto: ActionToggleJetpack + pos: -58.50044,23.5087 + parent: 2 +- proto: ActionToggleBlock entities: - - uid: 11276 + - uid: 5100 components: - type: Transform - parent: 11111 + parent: 8291 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 11111 - - uid: 11298 + container: 8291 +- proto: ActionToggleLight + entities: + - uid: 121 components: - type: Transform - parent: 11126 + parent: 88 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 11126 -- proto: ActionToggleLight - entities: + container: 88 - uid: 494 components: - type: Transform @@ -12149,6 +14244,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 5765 + - uid: 4147 + components: + - type: Transform + parent: 4105 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4105 - uid: 5704 components: - type: Transform @@ -12163,13 +14265,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 5977 - - uid: 6747 + - uid: 6113 components: - type: Transform - parent: 18616 + parent: 6098 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 18616 + container: 6098 - uid: 7271 components: - type: Transform @@ -12191,27 +14293,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 10091 - - uid: 14387 - components: - - type: Transform - parent: 6167 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6167 - - uid: 14544 - components: - - type: Transform - parent: 6188 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 6188 - - uid: 19551 + - uid: 13295 components: - type: Transform - parent: 19550 + parent: 15782 - type: InstantAction originalIconColor: '#FFFFFFFF' - container: 19550 + container: 15782 - uid: 19899 components: - type: Transform @@ -12237,22 +14325,6 @@ entities: - 13651 - 13649 - 13666 - - uid: 38 - components: - - type: Transform - pos: 17.5,-1.5 - parent: 2 - - type: DeviceList - devices: - - 15273 - - 15274 - - 15275 - - 14183 - - 14193 - - 14184 - - 15233 - - 15234 - - 15235 - uid: 58 components: - type: Transform @@ -12261,9 +14333,9 @@ entities: parent: 2 - type: DeviceList devices: - - 15149 - - 15148 - - 1722 + - 16318 + - 16319 + - 16320 - 15151 - 15152 - 15153 @@ -12304,36 +14376,6 @@ entities: - 14325 - 14473 - 1921 - - uid: 2080 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-55.5 - parent: 2 - - type: DeviceList - devices: - - 8449 - - 8214 - - uid: 2352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-7.5 - parent: 2 - - type: DeviceList - devices: - - 16263 - - 6941 - - 670 - - 16247 - - 16243 - - 16242 - - 16246 - - 16262 - - 10416 - - 2394 - - 10415 - - 3639 - uid: 2395 components: - type: Transform @@ -12348,21 +14390,34 @@ entities: - 15210 - 15209 - 15208 - - uid: 2564 + - uid: 2583 components: - type: Transform - pos: -33.5,-28.5 + rot: 3.141592653589793 rad + pos: 3.5,-54.5 parent: 2 - type: DeviceList devices: - - 14781 - - 14782 - - 15381 - - 15380 - - 15340 - - 15341 - - 15344 - - 15343 + - 6272 + - 12184 + - 3486 + - 8014 + - 15007 + - 10963 + - 6529 + - 3721 + - 11007 + - 1537 + - 1533 + - 15192 + - 15193 + - 15194 + - 10579 + - 8188 + - 5039 + - 11142 + - 11143 + - 11140 - uid: 2670 components: - type: Transform @@ -12388,21 +14443,10 @@ entities: - 680 - 12654 - 11556 - - uid: 3053 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-38.5 - parent: 2 - - type: DeviceList - devices: - - 9507 - - 9514 - - 9521 - - 9508 - - 15142 - uid: 3489 components: + - type: MetaData + name: CE - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-24.5 @@ -12411,28 +14455,35 @@ entities: devices: - 8787 - 8468 - - uid: 4428 + - uid: 3722 components: - type: Transform - pos: 30.5,-32.5 + pos: -0.5,-54.5 parent: 2 - type: DeviceList devices: - - 8498 - - 7976 - - 7482 - - 9525 - - 8146 - - uid: 5138 + - 21068 + - 21067 + - 21076 + - 11155 + - 21069 + - uid: 5030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,9.5 + rot: 1.5707963267948966 rad + pos: -9.5,-66.5 parent: 2 - type: DeviceList devices: - - 14159 - - 14158 + - 5823 + - 21134 + - 4689 + - 20834 + - 11274 + - 21081 + - 10579 + - 11140 + - 8188 - uid: 5565 components: - type: Transform @@ -12451,17 +14502,64 @@ entities: devices: - 14619 - 14622 - - uid: 7123 + - uid: 7178 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-14.5 + pos: 8.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 15201 + - 15200 + - 15199 + - 13411 + - 13410 + - 13412 + - 15879 + - 15912 + - 7925 + - 21424 + - 21423 + - 21420 + - 21421 + - 21422 + - 21425 + - 8008 + - 8119 + - 5945 + - 15192 + - 15193 + - 15194 + - uid: 7632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-24.5 parent: 2 - type: DeviceList devices: - - 13355 - - 13361 - - 4359 + - 10520 + - 13243 + - 13680 + - 151 + - 14089 + - uid: 7931 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 16128 + - 16137 + - 16129 + - 4961 + - 5024 + - 4976 + - 16318 + - 16319 + - 16320 - uid: 8606 components: - type: Transform @@ -12481,29 +14579,172 @@ entities: - 19001 - 14382 - 14368 + - uid: 8983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 8498 + - 7976 + - 7482 + - 9525 + - 8146 + - 9311 + - uid: 9147 + components: + - type: MetaData + name: Clinic air alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 21808 + - 21800 + - 21801 + - 21856 + - uid: 9278 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 588 + - 592 + - uid: 9309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-54.5 + parent: 2 + - type: DeviceList + devices: + - 4976 + - 5024 + - 4961 + - 6558 + - 8436 + - 8446 + - 16164 + - 16180 + - 16165 + - 16178 + - 16179 + - 16166 + - 16260 + - 16256 + - 16267 + - uid: 9393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-62.5 + parent: 2 + - type: DeviceList + devices: + - 21080 + - 11243 + - 8410 + - 11604 + - 10573 + - 11007 + - 1537 + - 1533 + - 21135 - uid: 9652 components: - type: Transform rot: 3.141592653589793 rad pos: 42.5,7.5 parent: 2 - - uid: 12728 + - uid: 10102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 4519 + - 4559 + - 2011 + - 14651 + - 14650 + - 14706 + - 19008 + - 19006 + - 15672 + - 14711 + - 14712 + - 14710 + - 15301 + - 15302 + - uid: 10105 + components: + - type: MetaData + name: Janitor air alarm + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 21816 + - 21855 + - 21854 + - 21853 + - uid: 11632 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 2173 + - 2176 + - 9861 + - 6545 + - uid: 11724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 16263 + - 6941 + - 16247 + - 16243 + - 16242 + - 16246 + - 16262 + - 10416 + - 2394 + - 10103 + - 7420 + - uid: 12518 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-29.5 + pos: -31.5,-74.5 parent: 2 - type: DeviceList devices: - - 1882 - - 1909 - - 8505 - - 8500 - - 4143 - - 8069 - - 8070 - - 8075 - - 8056 + - 16307 + - 16310 + - 16309 + - 16271 + - 16304 + - 16302 + - 8446 + - 8436 + - 6558 - uid: 13089 components: - type: Transform @@ -12603,7 +14844,6 @@ entities: - 13525 - 13526 - 12378 - - 13703 - 15209 - 15208 - 15206 @@ -12630,34 +14870,6 @@ entities: - 15429 - 15430 - 4410 - - uid: 13650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-37.5 - parent: 2 - - type: DeviceList - devices: - - 15200 - - 15199 - - 13411 - - 13410 - - 13412 - - 15201 - - 15192 - - 15193 - - 15194 - - 15203 - - 15204 - - 13 - - 15860 - - 3932 - - 15908 - - 15912 - - 15879 - - 2991 - - 6890 - - 2397 - uid: 13652 components: - type: Transform @@ -12727,26 +14939,6 @@ entities: devices: - 11354 - 4246 - - uid: 13662 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 2 - - type: DeviceList - devices: - - 13407 - - 13409 - - 13408 - - 15199 - - 15200 - - 15201 - - 15192 - - 15193 - - 15194 - - 15203 - - 15204 - - 9450 - - 9438 - uid: 13665 components: - type: Transform @@ -12777,19 +14969,6 @@ entities: - 1003 - 1021 - 1017 - - uid: 13683 - components: - - type: Transform - pos: 8.5,-16.5 - parent: 2 - - type: DeviceList - devices: - - 13679 - - 13681 - - 13680 - - 13076 - - 2791 - - 13077 - uid: 13793 components: - type: Transform @@ -12798,13 +14977,14 @@ entities: parent: 2 - type: DeviceList devices: - - 1800 - - 2413 - - 2082 - - 15397 - - 15398 + - 3014 + - 9627 + - 4902 + - 3025 + - 2540 - 15395 - 15396 + - 2516 - uid: 13796 components: - type: Transform @@ -12814,27 +14994,10 @@ entities: devices: - 1585 - 1569 - - 13797 - 15395 - 15396 - 15394 - 15393 - - uid: 13798 - components: - - type: Transform - pos: -6.5,-11.5 - parent: 2 - - type: DeviceList - devices: - - 20738 - - 17886 - - 17885 - - 15301 - - 15302 - - 15324 - - 15323 - - 19984 - - 19983 - uid: 13800 components: - type: Transform @@ -12844,24 +15007,6 @@ entities: devices: - 131 - 4794 - - uid: 13805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 2 - - type: DeviceList - devices: - - 13804 - - uid: 13806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 2 - - type: DeviceList - devices: - - 13803 - uid: 13810 components: - type: Transform @@ -12873,6 +15018,8 @@ entities: - 13811 - uid: 13846 components: + - type: MetaData + name: Hydroponics Air Alarm - type: Transform pos: -16.5,-31.5 parent: 2 @@ -12890,25 +15037,6 @@ entities: - 13822 - 13823 - 13833 - - uid: 13903 - components: - - type: Transform - pos: -30.5,-42.5 - parent: 2 - - uid: 13972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-41.5 - parent: 2 - - type: DeviceList - devices: - - 13971 - - 13970 - - 13973 - - 15149 - - 15148 - - 1722 - uid: 14004 components: - type: Transform @@ -12922,6 +15050,9 @@ entities: - 15626 - 15638 - 15639 + - 4456 + - 5609 + - 5596 - uid: 14019 components: - type: Transform @@ -12937,6 +15068,8 @@ entities: - 15625 - uid: 14047 components: + - type: MetaData + name: HoP's Air Alarm - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-46.5 @@ -12949,15 +15082,6 @@ entities: - 15143 - 15639 - 2693 - - uid: 14059 - components: - - type: Transform - pos: 28.5,5.5 - parent: 2 - - type: DeviceList - devices: - - 14057 - - 14058 - uid: 14085 components: - type: Transform @@ -12966,50 +15090,45 @@ entities: parent: 2 - type: DeviceList devices: - - 15232 - - 15231 - - 15230 - - 15240 - - 15241 - - 15242 - - 14136 - - 1263 - - 14095 - - 11498 - - 3667 - - 12434 - - uid: 14163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-34.5 - parent: 2 - - type: DeviceList - devices: - - 8168 - - 14446 - - uid: 14167 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,0.5 - parent: 2 - - type: DeviceList - devices: - - 4052 - - 14162 - - 4653 - - 4360 - - 1276 - - uid: 14169 + - 2919 + - 2321 + - 3985 + - 765 + - 9458 + - 9373 + - 22073 + - 9457 + - 22072 + - 10396 + - 10457 + - 10397 + - 9161 + - 22074 + - 580 + - 2342 + - 1720 + - 2520 + - 21855 + - 21854 + - 21853 + - uid: 14210 components: + - type: MetaData + name: Chemistry Air Alarm - type: Transform - pos: 25.5,-7.5 + rot: 3.141592653589793 rad + pos: -31.5,-38.5 parent: 2 - type: DeviceList devices: - - 13215 + - 12430 + - 10202 + - 15910 - 13781 + - 15920 + - 12170 + - 12169 + - 14275 - uid: 14595 components: - type: Transform @@ -13035,320 +15154,257 @@ entities: devices: - 14709 - 14671 - - uid: 14765 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-36.5 - parent: 2 - - type: DeviceList - devices: - - 14748 - - 3066 - - 14749 - - 14764 - - 14750 - - 14747 - - 2966 - - 15343 - - 15348 - - 15349 - - uid: 14783 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 2 - - type: DeviceList - devices: - - 7496 - - 7490 - - 15340 - - 15341 - - 15344 - - uid: 14851 - components: - - type: Transform - pos: -42.5,-28.5 - parent: 2 - - type: DeviceList - devices: - - 312 - - 12508 - - 6391 - - 2528 - - 2542 - - 14850 - - 8135 - - 8137 - - uid: 14939 + - uid: 14795 components: - type: Transform - pos: -39.5,-39.5 + pos: -0.5,-42.5 parent: 2 - type: DeviceList devices: - - 14835 - - 14935 - - 14871 - - 1327 - - 1328 - - 1329 - - uid: 14940 + - 14983 + - 14984 + - 1809 + - 20277 + - 15168 + - 15169 + - 15170 + - 15166 + - 20173 + - 15860 + - 20393 + - 6322 + - uid: 14915 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-26.5 + pos: -46.5,-33.5 parent: 2 - type: DeviceList devices: - - 14944 - - 14950 - - 2746 - - 14951 - - 14952 - - 15380 - - 15381 - - 15382 - - uid: 14953 + - 7662 + - 14055 + - 14054 + - 14057 + - 14058 + - 14059 + - 14063 + - 7655 + - 14931 + - 14941 + - uid: 14943 components: - type: Transform - pos: -47.5,-41.5 + rot: 3.141592653589793 rad + pos: 22.5,20.5 parent: 2 - type: DeviceList devices: - - 14933 - - 14937 - - 14934 - - 14938 - - 14955 - - 14956 - - uid: 14957 + - 21847 + - 11233 + - 13236 + - 13367 + - 22345 + - 22358 + - 22381 + - uid: 15139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-49.5 + pos: -12.5,-35.5 parent: 2 - type: DeviceList devices: - - 14921 - - 14936 - - uid: 14980 + - 15170 + - 15169 + - 15168 + - 15166 + - 5473 + - 15118 + - 11279 + - 11277 + - 15165 + - 15164 + - 15150 + - 17575 + - uid: 15205 components: - type: Transform - pos: -0.5,-46.5 + rot: 1.5707963267948966 rad + pos: 16.5,-49.5 parent: 2 - type: DeviceList devices: - - 14979 - - 14978 - - 15008 - - 15009 - - 15010 - - 15007 - - 15192 - - 15193 - - 15194 - - 15156 - - 15155 - - 15154 - - uid: 15037 + - 9455 + - 22225 + - uid: 15287 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-54.5 + pos: -30.5,-60.5 parent: 2 - type: DeviceList devices: - - 15184 - - 15185 - - uid: 15050 + - 15269 + - 15279 + - uid: 15331 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-65.5 + pos: -21.5,-26.5 parent: 2 - type: DeviceList devices: - - 15048 - - 15044 - - 15045 - - 15046 - - 15049 - - 15047 - - 15186 - - 15187 - - uid: 15074 + - 14730 + - 14727 + - 13433 + - 15151 + - 15152 + - 15153 + - 15338 + - 15337 + - 2011 + - 4559 + - 4519 + - 14524 + - 14381 + - 14378 + - 15911 + - uid: 15421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-65.5 + rot: -1.5707963267948966 rad + pos: 33.5,-9.5 parent: 2 - type: DeviceList devices: - - 15069 - - 15073 - - 15070 - - 15068 - - 15072 - - 15071 - - 15184 - - 15185 - - uid: 15139 + - 2282 + - 2642 + - 1580 + - 666 + - 9497 + - 9131 + - 2919 + - 2321 + - 3985 + - uid: 15862 components: - type: Transform - pos: -12.5,-35.5 + pos: -41.5,-26.5 parent: 2 - type: DeviceList devices: - - 15075 - - 15170 - - 15169 - - 15168 - - 15166 - - 5473 - - 15118 - - 15112 - - 15116 - - 1695 - - 15165 - - 15164 - - 15150 - - 15154 - - 15155 - - 15156 - - 17575 - - uid: 15188 + - 14931 + - 14941 + - 14947 + - 14948 + - 14945 + - 14946 + - 15868 + - 14867 + - 14868 + - 12415 + - 12421 + - 15867 + - uid: 15869 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-56.5 + pos: -41.5,-24.5 parent: 2 - type: DeviceList devices: - - 15186 - - 15187 - - 13370 - - 25 - - 13371 - - uid: 15205 + - 14884 + - 15870 + - 14885 + - 14887 + - 14886 + - uid: 15875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-49.5 + pos: -37.5,-21.5 parent: 2 - type: DeviceList devices: - - 9455 - - 9454 - - uid: 15260 + - 14902 + - 14900 + - uid: 15894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,30.5 + rot: 3.141592653589793 rad + pos: -26.5,-26.5 parent: 2 - type: DeviceList devices: - - 15256 - - 15245 - - 15250 - - 15259 - - 15258 - - 15257 - - 15242 - - 15241 - - 15240 - - 15243 - - 15255 - - 15249 - - uid: 15331 + - 15876 + - 3378 + - 3375 + - 6581 + - 3376 + - 15933 + - 15934 + - 15936 + - uid: 15937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-26.5 + rot: 3.141592653589793 rad + pos: -30.5,-33.5 parent: 2 - type: DeviceList devices: - - 15325 - - 15326 - - 15327 - - 14732 - - 15333 - - 15339 - - 14378 - 14381 - - 14524 - - uid: 15332 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-35.5 - parent: 2 - - type: DeviceList - devices: - - 15348 - - 15349 - - 14730 - 14727 - - 13433 - - 15337 - - 15338 - - 15153 - - 15152 - - 15151 - - uid: 15421 + - 14951 + - 14952 + - 14950 + - 14949 + - 15936 + - 15934 + - 15933 + - 15910 + - 13781 + - 15920 + - 9406 + - 15911 + - 9381 + - uid: 16062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-9.5 + rot: 1.5707963267948966 rad + pos: -36.5,-28.5 parent: 2 - type: DeviceList devices: - - 2282 - - 2642 - - 1580 - - 13724 - - 13725 - - 13723 - - 15230 - - 15231 - - 15232 - - uid: 15422 + - 12398 + - 12397 + - 14947 + - 14948 + - 14949 + - 14950 + - 14951 + - 14952 + - 14945 + - 14946 + - uid: 16096 components: + - type: MetaData + name: Cryogenics Air Alarm - type: Transform - pos: 21.5,-1.5 + pos: -41.5,-34.5 parent: 2 - type: DeviceList devices: - - 13213 - - 13788 - - 13212 - - 15233 - - 15234 - - 15235 - - 15237 - - 15238 - - 15232 - - 15231 - - 15230 - - 13004 - - 15269 - - 12388 - - uid: 15673 + - 12519 + - 16097 + - 12488 + - uid: 16098 components: - type: Transform - pos: -19.5,-17.5 + rot: 3.141592653589793 rad + pos: -47.5,-47.5 parent: 2 - type: DeviceList devices: - - 14710 - - 14712 - - 14711 - - 8854 - - 19003 - - 15574 - - 15325 - - 15326 - - 15327 + - 14130 + - 14144 - uid: 16446 components: - type: Transform @@ -13433,21 +15489,6 @@ entities: - 17359 - 17368 - 115 - - uid: 17353 - components: - - type: Transform - pos: 14.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 5421 - - 12056 - - 17424 - - 12246 - - 17393 - - 390 - - 5348 - - 5420 - uid: 17445 components: - type: Transform @@ -13471,26 +15512,6 @@ entities: - 15165 - 15164 - 17582 - - uid: 17658 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 2 - - type: DeviceList - devices: - - 14706 - - 14650 - - 14651 - - 19008 - - 19006 - - 15672 - - 15574 - - 8854 - - 19003 - - 15302 - - 15323 - - 15324 - uid: 18900 components: - type: Transform @@ -13505,26 +15526,6 @@ entities: - 14675 - 3201 - 14468 - - uid: 18978 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-52.5 - parent: 2 - - type: DeviceList - devices: - - 227 - - 15146 - - 15147 - - 13900 - - 13901 - - 13850 - - 13820 - - 13851 - - 13852 - - 13853 - - 13854 - - 15145 - uid: 19009 components: - type: Transform @@ -13551,13 +15552,144 @@ entities: devices: - 4869 - 4911 -- proto: AirAlarmAssembly - entities: - - uid: 2321 + - uid: 21678 components: - type: Transform - pos: 11.5,-10.5 + pos: 15.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 22322 + - 22332 + - 22331 + - 13236 + - 13367 + - 17424 + - 12246 + - 5420 + - 12056 + - 5421 + - 21848 + - 22327 + - 22041 + - uid: 22071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 13850 + - 22070 + - 7862 + - 15273 + - 15274 + - 15275 + - 10396 + - 10457 + - 10397 + - uid: 22255 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 22231 + - 22232 + - 22230 + - 22234 + - 22233 + - 22252 + - 22251 + - 22253 + - 22259 + - 22258 + - 22270 + - 22254 + - uid: 22432 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 22431 + - 22437 + - 22436 + - 21360 + - 167 + - 21817 + - 8966 + - uid: 22438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 21817 + - 8966 + - 2342 + - 1720 + - 2520 + - 21907 + - 18410 + - 18412 + - 22392 + - 22410 + - 22395 + - 22387 + - 22388 + - 22389 + - uid: 22439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 22454 + - 22451 + - 22450 + - 22440 + - 22441 + - 22455 + - 18412 + - 18410 + - 21907 + - 21360 + - 167 + - 17823 + - 5591 + - 5597 + - uid: 22510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 14159 + - 14158 + - uid: 22600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-52.5 parent: 2 + - type: DeviceList + devices: + - 22578 + - 22579 + - 22597 + - 22598 + - 22596 + - 22599 - proto: AirCanister entities: - uid: 790 @@ -13570,57 +15702,77 @@ entities: - type: Transform pos: -11.5,-1.5 parent: 2 - - uid: 3175 + - uid: 7156 components: - type: Transform - pos: 2.5,-14.5 + pos: 27.5,15.5 parent: 2 - - uid: 3180 + - uid: 7239 components: - type: Transform - pos: 19.5,-8.5 + pos: 35.5,7.5 parent: 2 - - uid: 7239 + - uid: 8516 components: - type: Transform - pos: 35.5,7.5 + pos: -34.5,-16.5 parent: 2 - - uid: 10702 + - uid: 12320 components: - type: Transform - pos: -41.5,-55.5 + pos: 29.5,-6.5 parent: 2 - uid: 14315 components: - type: Transform pos: 25.5,-54.5 parent: 2 - - uid: 17967 + - uid: 19874 components: - type: Transform - pos: 34.5,-7.5 + pos: 48.5,-54.5 parent: 2 - - uid: 19874 + - uid: 21184 components: - type: Transform - pos: 48.5,-54.5 + pos: -37.5,-42.5 + parent: 2 + - uid: 21861 + components: + - type: Transform + pos: 26.5,-4.5 parent: 2 - proto: Airlock entities: - - uid: 237 + - uid: 5908 components: - type: Transform - pos: 8.5,-42.5 + pos: 8.5,-38.5 parent: 2 - - uid: 267 + - uid: 6966 + components: + - type: Transform + pos: 18.5,-45.5 + parent: 2 + - uid: 11833 components: - type: Transform pos: 8.5,-44.5 parent: 2 - - uid: 5908 + - uid: 11992 components: - type: Transform - pos: 8.5,-38.5 + pos: 8.5,-42.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: 11.5,-89.5 + parent: 2 + - uid: 19243 + components: + - type: Transform + pos: 7.5,-91.5 parent: 2 - proto: AirlockArmoryGlassLocked entities: @@ -13629,6 +15781,20 @@ entities: - type: Transform pos: -23.5,-4.5 parent: 2 +- proto: AirlockAssemblyCargoGlass + entities: + - uid: 19235 + components: + - type: Transform + pos: -5.5,-93.5 + parent: 2 +- proto: AirlockAssemblyCommand + entities: + - uid: 6383 + components: + - type: Transform + pos: 1.5,-85.5 + parent: 2 - proto: AirlockAssemblyMedicalGlass entities: - uid: 2365 @@ -13690,6 +15856,18 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,-5.5 parent: 2 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 6672 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 2 - proto: AirlockBarGlassLocked entities: - uid: 8369 @@ -13699,10 +15877,15 @@ entities: parent: 2 - proto: AirlockBarLocked entities: - - uid: 20416 + - uid: 371 components: - type: Transform - pos: -0.5,-44.5 + pos: 0.5,-44.5 + parent: 2 + - uid: 5883 + components: + - type: Transform + pos: 3.5,-44.5 parent: 2 - proto: AirlockCaptainLocked entities: @@ -13750,6 +15933,31 @@ entities: - type: Transform pos: 3.5,21.5 parent: 2 + - uid: 15048 + components: + - type: Transform + pos: 8.5,-93.5 + parent: 2 + - uid: 15059 + components: + - type: Transform + pos: 8.5,-94.5 + parent: 2 + - uid: 19207 + components: + - type: Transform + pos: 6.5,-97.5 + parent: 2 + - uid: 19224 + components: + - type: Transform + pos: -3.5,-96.5 + parent: 2 + - uid: 19256 + components: + - type: Transform + pos: 6.5,-100.5 + parent: 2 - proto: AirlockCargoLocked entities: - uid: 3000 @@ -13779,16 +15987,23 @@ entities: parent: 2 - proto: AirlockChemistryGlassLocked entities: - - uid: 4856 + - uid: 22304 components: - type: Transform - pos: -29.5,-32.5 + rot: -1.5707963267948966 rad + pos: -40.5,-37.5 parent: 2 - - uid: 4882 +- proto: AirlockChemistryLocked + entities: + - uid: 12110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-36.5 + pos: -36.5,-36.5 + parent: 2 + - uid: 12497 + components: + - type: Transform + pos: -33.5,-34.5 parent: 2 - proto: AirlockChiefEngineerLocked entities: @@ -13797,25 +16012,30 @@ entities: - type: Transform pos: -8.5,-23.5 parent: 2 -- proto: AirlockChiefMedicalOfficerLocked +- proto: AirlockChiefMedicalOfficerGlassLocked entities: - - uid: 1385 + - uid: 12697 components: - type: Transform - pos: -41.5,-39.5 + pos: -51.5,-22.5 parent: 2 - - uid: 2032 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 13125 components: - type: Transform - pos: -39.5,-33.5 + pos: -48.5,-25.5 parent: 2 -- proto: AirlockCommandLocked +- proto: AirlockCommandGlassLocked entities: - - uid: 18 + - uid: 5519 components: - type: Transform + rot: 3.141592653589793 rad pos: -25.5,-47.5 parent: 2 +- proto: AirlockCommandLocked + entities: - uid: 19 components: - type: Transform @@ -13831,30 +16051,20 @@ entities: - type: Transform pos: -20.5,-49.5 parent: 2 - - uid: 3168 - components: - - type: Transform - pos: -18.5,-14.5 - parent: 2 - - uid: 5535 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - uid: 6364 + - uid: 2755 components: - type: Transform - pos: 24.5,-1.5 + pos: -35.5,-15.5 parent: 2 - - uid: 6676 + - uid: 5142 components: - type: Transform - pos: 23.5,-7.5 + pos: -35.5,-14.5 parent: 2 - - uid: 6960 + - uid: 5300 components: - type: Transform - pos: -22.5,-15.5 + pos: -30.5,-49.5 parent: 2 - uid: 6962 components: @@ -13890,22 +16100,27 @@ entities: parent: 2 - proto: AirlockEngineeringGlassLocked entities: - - uid: 69 + - uid: 1267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-11.5 + pos: -8.5,-16.5 parent: 2 - - uid: 476 + - uid: 1525 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-11.5 + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 parent: 2 - - uid: 1267 + - uid: 9257 components: - type: Transform - pos: -8.5,-16.5 + pos: 2.5,-22.5 + parent: 2 + - uid: 11105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 parent: 2 - proto: AirlockEngineeringLocked entities: @@ -13914,6 +16129,17 @@ entities: - type: Transform pos: -11.5,23.5 parent: 2 + - uid: 137 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,14.5 + parent: 2 - uid: 285 components: - type: Transform @@ -13924,15 +16150,16 @@ entities: - type: Transform pos: -14.5,-12.5 parent: 2 - - uid: 429 + - uid: 629 components: - type: Transform - pos: 14.5,-20.5 + pos: -14.5,-11.5 parent: 2 - - uid: 629 + - uid: 986 components: - type: Transform - pos: -14.5,-11.5 + rot: 3.141592653589793 rad + pos: 26.5,17.5 parent: 2 - uid: 2083 components: @@ -13944,6 +16171,11 @@ entities: - type: Transform pos: -4.5,-16.5 parent: 2 + - uid: 2300 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 - uid: 3602 components: - type: Transform @@ -13954,40 +16186,45 @@ entities: - type: Transform pos: 2.5,-36.5 parent: 2 + - uid: 4593 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 - uid: 6699 components: - type: Transform pos: -30.5,21.5 parent: 2 - - uid: 7421 + - uid: 6939 components: - type: Transform - pos: 26.5,-51.5 + pos: 14.5,-61.5 parent: 2 - - uid: 8501 + - uid: 7421 components: - type: Transform - pos: 16.5,-17.5 + pos: 26.5,-51.5 parent: 2 - uid: 8840 components: - type: Transform pos: 43.5,2.5 parent: 2 - - uid: 9312 + - uid: 10101 components: - type: Transform - pos: 24.5,12.5 + pos: -54.5,-59.5 parent: 2 - - uid: 9625 + - uid: 10238 components: - type: Transform - pos: -36.5,-54.5 + pos: -31.5,-19.5 parent: 2 - - uid: 10397 + - uid: 10486 components: - type: Transform - pos: -42.5,-54.5 + pos: 9.5,-20.5 parent: 2 - uid: 11394 components: @@ -13999,85 +16236,37 @@ entities: - type: Transform pos: -6.5,-20.5 parent: 2 - - uid: 12070 - components: - - type: Transform - pos: -27.5,-20.5 - parent: 2 - - uid: 15014 - components: - - type: Transform - pos: -19.5,14.5 - parent: 2 - - uid: 16022 + - uid: 12754 components: - type: Transform - pos: 36.5,10.5 + pos: -4.5,-91.5 parent: 2 - - uid: 17009 + - uid: 12755 components: - type: Transform - pos: -31.5,-53.5 + pos: -8.5,-88.5 parent: 2 - - uid: 17185 + - uid: 15014 components: - type: Transform - pos: -25.5,-19.5 + pos: -19.5,14.5 parent: 2 - proto: AirlockEVAGlassLocked entities: - - uid: 2077 + - uid: 1305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-52.5 + pos: -5.5,-56.5 parent: 2 -- proto: AirlockExternalGlass +- proto: AirlockEVALocked entities: - - uid: 30 - components: - - type: Transform - pos: -5.5,-68.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6931: - - DoorStatus: DoorBolt - - uid: 31 - components: - - type: Transform - pos: -5.5,-61.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6868: - - DoorStatus: DoorBolt - - uid: 61 - components: - - type: Transform - pos: 8.5,-61.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6671: - - DoorStatus: DoorBolt - - uid: 63 + - uid: 16056 components: - type: Transform - pos: 8.5,-68.5 + pos: 4.5,-56.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 6544: - - DoorStatus: DoorBolt +- proto: AirlockExternalGlass + entities: - uid: 183 components: - type: Transform @@ -14118,17 +16307,40 @@ entities: linkedPorts: 9150: - DoorStatus: DoorBolt - - uid: 397 + - uid: 2544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,12.5 + pos: 60.5,-53.5 parent: 2 - - uid: 1640 + - uid: 12785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-74.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-67.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-67.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-74.5 + parent: 2 + - uid: 21932 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-58.5 + pos: -35.5,12.5 parent: 2 - proto: AirlockExternalGlassAtmosphericsLocked entities: @@ -14155,152 +16367,199 @@ entities: linkedPorts: 1479: - DoorStatus: DoorBolt -- proto: AirlockExternalGlassCargoLocked - entities: - - uid: 1067 + - uid: 6101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,27.5 + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 12340: + 6419: - DoorStatus: DoorBolt - - uid: 2672 + - uid: 6419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,27.5 + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 3910: + 6101: - DoorStatus: DoorBolt - - uid: 3146 + - uid: 8772 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,28.5 + pos: 12.5,1.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 15761: - - DoorStatus: InputA - - uid: 7343 + 10382: + - DoorStatus: DoorBolt + - uid: 10382 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,27.5 + pos: 11.5,0.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 15761: - - DoorStatus: InputB - - uid: 8487 + 8772: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 1067 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,28.5 + pos: 3.5,27.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7561: + 12340: + - DoorStatus: DoorBolt + - uid: 1722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 22491: - DoorStatus: InputA - - uid: 10666 + - uid: 1756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 22393: + - DoorStatus: InputB + - uid: 2672 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,27.5 + pos: 5.5,27.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7561: + 3910: + - DoorStatus: DoorBolt + - uid: 20665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 22393: + - DoorStatus: InputA + - uid: 21849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 22491: - DoorStatus: InputB - proto: AirlockExternalGlassCommandLocked entities: - - uid: 498 + - uid: 97 components: - type: Transform - pos: -49.5,-13.5 + pos: -38.5,-12.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 617: + 5124: - DoorStatus: DoorBolt - - uid: 617 + - uid: 498 components: - type: Transform - pos: -47.5,-11.5 + pos: -49.5,-13.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 498: + 617: - DoorStatus: DoorBolt - - uid: 5729 + - uid: 617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 + pos: -47.5,-11.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 14545: + 498: - DoorStatus: DoorBolt - - uid: 14545 + - uid: 5124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-14.5 + pos: -36.5,-13.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5729: + 97: - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - - uid: 5815 + - uid: 73 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 + rot: 3.141592653589793 rad + pos: 6.5,-13.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5819: + 4602: - DoorStatus: DoorBolt - - uid: 5819 + - uid: 4602 components: - type: Transform - pos: 3.5,-12.5 + rot: 3.141592653589793 rad + pos: 4.5,-14.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5815: + 73: - DoorStatus: DoorBolt - uid: 8794 components: @@ -14336,27 +16595,29 @@ entities: linkedPorts: 17960: - DoorStatus: DoorBolt - - uid: 10649 + - uid: 16736 components: - type: Transform - pos: -47.5,-54.5 + rot: 1.5707963267948966 rad + pos: -62.5,-59.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10650: + 16892: - DoorStatus: DoorBolt - - uid: 10650 + - uid: 16892 components: - type: Transform - pos: -50.5,-54.5 + rot: 1.5707963267948966 rad + pos: -63.5,-57.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 10649: + 16736: - DoorStatus: DoorBolt - uid: 17960 components: @@ -14371,325 +16632,300 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - - uid: 154 + - uid: 294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-70.5 + rot: -1.5707963267948966 rad + pos: 27.5,26.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 456: + 938: - DoorStatus: DoorBolt - - uid: 376 + 21958: + - DoorStatus: DoorBolt + - uid: 862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-73.5 + rot: -1.5707963267948966 rad + pos: 53.5,-31.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7030: + 19896: - DoorStatus: DoorBolt - - uid: 456 + - uid: 938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-73.5 + rot: -1.5707963267948966 rad + pos: 26.5,28.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 154: + 21958: - DoorStatus: DoorBolt - - uid: 862 + 294: + - DoorStatus: DoorBolt + - uid: 3999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-31.5 + pos: -35.5,-75.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 19896: + 4672: - DoorStatus: DoorBolt - - uid: 975 + - uid: 4043 components: - type: Transform - pos: -37.5,9.5 + pos: 51.5,-65.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 20502: + 4295: - DoorStatus: DoorBolt - - uid: 3520 + - uid: 4295 components: - type: Transform - pos: -30.5,-66.5 + pos: 51.5,-62.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 18578: - - DoorStatus: InputB - - uid: 4043 + 4043: + - DoorStatus: DoorBolt + - uid: 4729 components: - type: Transform - pos: 51.5,-65.5 + pos: -35.5,-69.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 4295: + 3682: - DoorStatus: DoorBolt - - uid: 4295 + - uid: 4772 components: - type: Transform - pos: 51.5,-62.5 + pos: -35.5,-67.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 4043: + 3636: - DoorStatus: DoorBolt - - uid: 5887 + - uid: 4773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,35.5 + pos: -35.5,-77.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5892: + 4673: - DoorStatus: DoorBolt - - uid: 5888 + - uid: 5184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,29.5 + pos: -34.5,-81.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5893: + 6115: - DoorStatus: DoorBolt - - uid: 5891 + - uid: 5764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,27.5 + pos: -32.5,-81.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5890: + 6166: - DoorStatus: DoorBolt - - uid: 6148 + - uid: 8579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,37.5 + rot: 3.141592653589793 rad + pos: 45.5,23.5 parent: 2 - type: DeviceLinkSink invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 5894: + 8851: - DoorStatus: DoorBolt - - uid: 7030 + - uid: 8740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-70.5 + rot: 3.141592653589793 rad + pos: 47.5,23.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 376: + 21929: - DoorStatus: DoorBolt - - uid: 7147 + - uid: 11974 components: - type: Transform - pos: 31.5,43.5 + rot: -1.5707963267948966 rad + pos: -34.5,9.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 7204: + 22090: - DoorStatus: DoorBolt - - uid: 7155 + - uid: 13406 components: - type: Transform - pos: 33.5,43.5 + pos: 10.5,-76.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7158: + 14421: - DoorStatus: DoorBolt - - uid: 7654 + - uid: 13550 components: - type: Transform - pos: 27.5,18.5 + pos: -7.5,-76.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7655: + 14497: - DoorStatus: DoorBolt - - uid: 7655 + - uid: 14421 components: - type: Transform - pos: 30.5,18.5 + pos: 10.5,-80.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7654: + 13406: - DoorStatus: DoorBolt - - uid: 8096 + - uid: 14497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-66.5 + pos: -7.5,-80.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 2 + invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 18578: - - DoorStatus: InputA - - uid: 10047 + 13550: + - DoorStatus: DoorBolt + - uid: 19896 components: - type: Transform - pos: -29.5,-66.5 + pos: 50.5,-31.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 3 - type: DeviceLinkSource linkedPorts: - 18578: - - DoorStatus: InputA - - uid: 17704 + 862: + - DoorStatus: DoorBolt + - uid: 21863 components: - type: Transform - pos: 60.5,-53.5 + rot: 3.141592653589793 rad + pos: 49.5,21.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 17705: + 3850: - DoorStatus: DoorBolt - - uid: 18576 + - uid: 21912 components: - type: Transform - pos: -33.5,-68.5 + rot: 3.141592653589793 rad + pos: 49.5,19.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 18575: - - DoorStatus: InputB - - uid: 19896 + 936: + - DoorStatus: DoorBolt + - uid: 21958 components: - type: Transform - pos: 50.5,-31.5 + rot: 3.141592653589793 rad + pos: 28.5,28.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 862: + 294: - DoorStatus: DoorBolt - - uid: 20502 + 938: + - DoorStatus: DoorBolt + - uid: 22090 components: - type: Transform - pos: -34.5,9.5 + pos: -37.5,9.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 975: + 11974: - DoorStatus: DoorBolt - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 6544 + - uid: 12786 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-68.5 + pos: 6.5,-74.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20277: - - DockStatus: InputB - - DockStatus: InputA - - DoorStatus: InputA - - type: DeviceLinkSink - invokeCounter: 3 - - uid: 6671 + - uid: 12792 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-61.5 + pos: 6.5,-67.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20221: - - DockStatus: InputB - - DockStatus: InputA - - DoorStatus: InputA - - type: DeviceLinkSink - invokeCounter: 3 - - uid: 6868 + - uid: 12795 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-61.5 + pos: -3.5,-74.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20278: - - DoorStatus: InputA - - DockStatus: InputB - - DockStatus: InputA - - type: DeviceLinkSink - invokeCounter: 3 - - uid: 6931 + - uid: 13280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-68.5 + pos: -3.5,-67.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20279: - - DoorStatus: InputA - - DockStatus: InputA - - DockStatus: InputB - - type: DeviceLinkSink - invokeCounter: 3 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - uid: 6660 @@ -14750,134 +16986,188 @@ entities: parent: 2 - type: DeviceLinkSink invokeCounter: 1 - - uid: 20672 + - uid: 22077 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,12.5 + pos: -37.5,12.5 parent: 2 - - uid: 20741 + - uid: 22093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-58.5 + rot: 3.141592653589793 rad + pos: -56.5,-51.5 parent: 2 - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 3498 + - uid: 936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-67.5 + rot: 1.5707963267948966 rad + pos: 51.5,19.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 18575: + 22300: - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB - type: DeviceLinkSink invokeCounter: 1 - - uid: 5890 + - uid: 3636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,27.5 + rot: -1.5707963267948966 rad + pos: -37.5,-67.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 12389: + 5120: - DoorStatus: InputA - DockStatus: InputA - DockStatus: InputB - type: DeviceLinkSink invokeCounter: 1 - - uid: 5892 + - uid: 3682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,35.5 + rot: -1.5707963267948966 rad + pos: -37.5,-69.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 618: - - DockStatus: InputB - - DockStatus: InputA + 3802: - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB - type: DeviceLinkSink invokeCounter: 1 - - uid: 5893 + - uid: 3850 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,29.5 + pos: 51.5,21.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 233: - - DockStatus: InputB - - DockStatus: InputA + 509: - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB - type: DeviceLinkSink invokeCounter: 1 - - uid: 5894 + - uid: 4672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,37.5 + rot: -1.5707963267948966 rad + pos: -37.5,-75.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 620: - - DockStatus: InputB - - DockStatus: InputA + 5252: - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB - type: DeviceLinkSink invokeCounter: 1 - - uid: 6228 + - uid: 4673 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-69.5 + pos: -37.5,-77.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 18575: + 5121: - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB - type: DeviceLinkSink invokeCounter: 1 - - uid: 7158 + - uid: 5486 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,45.5 + rot: 1.5707963267948966 rad + pos: 18.5,28.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 246: - - DoorStatus: InputA + 5002: + - DoorStatus: InputB + - type: DeviceLinkSink + invokeCounter: 2 + - uid: 6115 + components: + - type: Transform + pos: -34.5,-83.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5127: + - DoorStatus: InputA + - DockStatus: InputA - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 6166 + components: + - type: Transform + pos: -32.5,-83.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5123: + - DoorStatus: InputA - DockStatus: InputA + - DockStatus: InputB - type: DeviceLinkSink invokeCounter: 1 - - uid: 7204 + - uid: 8851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22302: + - DoorStatus: InputA + - DockStatus: InputA + - DockStatus: InputB + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 21929 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,45.5 + pos: 47.5,25.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 624: + 22301: - DoorStatus: InputA - DockStatus: InputB - DockStatus: InputA - type: DeviceLinkSink invokeCounter: 1 - - uid: 10185 + - uid: 21962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + - uid: 22009 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-69.5 + pos: 18.5,29.5 parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5002: + - DoorStatus: InputA + - type: DeviceLinkSink + invokeCounter: 2 - proto: AirlockFreezerLocked entities: - uid: 2608 @@ -14897,35 +17187,36 @@ entities: - type: Transform pos: 49.5,-57.5 parent: 2 - - uid: 362 + - uid: 771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-62.5 + pos: 31.5,-5.5 parent: 2 - - uid: 366 + - uid: 772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-46.5 + pos: 32.5,-15.5 parent: 2 - - uid: 394 + - uid: 970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-46.5 + pos: 9.5,-54.5 parent: 2 - - uid: 405 + - uid: 1015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-46.5 + pos: 11.5,-54.5 parent: 2 - uid: 1018 components: - type: Transform pos: -17.5,-1.5 parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 - uid: 1144 components: - type: Transform @@ -14941,11 +17232,10 @@ entities: - type: Transform pos: 14.5,-23.5 parent: 2 - - uid: 2696 + - uid: 2620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-50.5 + pos: 31.5,16.5 parent: 2 - uid: 3024 components: @@ -14953,6 +17243,11 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 + - uid: 3181 + components: + - type: Transform + pos: 9.5,-46.5 + parent: 2 - uid: 3350 components: - type: Transform @@ -14963,11 +17258,6 @@ entities: - type: Transform pos: 17.5,-34.5 parent: 2 - - uid: 3757 - components: - - type: Transform - pos: 17.5,-41.5 - parent: 2 - uid: 3924 components: - type: Transform @@ -14993,29 +17283,15 @@ entities: - type: Transform pos: -6.5,10.5 parent: 2 - - uid: 5030 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-57.5 - parent: 2 - - uid: 5031 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-57.5 - parent: 2 - - uid: 5204 + - uid: 5059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-50.5 + pos: 10.5,-46.5 parent: 2 - - uid: 5205 + - uid: 5149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-50.5 + pos: 33.5,16.5 parent: 2 - uid: 5435 components: @@ -15027,6 +17303,11 @@ entities: - type: Transform pos: 45.5,-55.5 parent: 2 + - uid: 5752 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 - uid: 5779 components: - type: Transform @@ -15045,21 +17326,15 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-19.5 parent: 2 - - uid: 5823 - components: - - type: Transform - pos: 11.5,-50.5 - parent: 2 - - uid: 5949 + - uid: 5791 components: - type: Transform - pos: 18.5,-45.5 + pos: 16.5,-43.5 parent: 2 - - uid: 6540 + - uid: 7207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-62.5 + pos: -7.5,-54.5 parent: 2 - uid: 7248 components: @@ -15069,20 +17344,25 @@ entities: - uid: 7311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-59.5 + pos: -8.5,-54.5 parent: 2 - - uid: 7544 + - uid: 8677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-59.5 + rot: -1.5707963267948966 rad + pos: -33.5,-66.5 parent: 2 - - uid: 8485 + - uid: 8710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-46.5 + rot: -1.5707963267948966 rad + pos: -32.5,-66.5 + parent: 2 + - uid: 8731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-66.5 parent: 2 - uid: 8889 components: @@ -15094,11 +17374,31 @@ entities: - type: Transform pos: 15.5,-27.5 parent: 2 + - uid: 8950 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 - uid: 9152 components: - type: Transform pos: 43.5,-22.5 parent: 2 + - uid: 9320 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 - uid: 9360 components: - type: Transform @@ -15109,149 +17409,184 @@ entities: - type: Transform pos: 43.5,-21.5 parent: 2 - - uid: 10697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-50.5 - parent: 2 - uid: 10810 components: - type: Transform pos: 14.5,-27.5 parent: 2 - - uid: 11138 + - uid: 11008 components: - type: Transform - pos: 10.5,-50.5 + pos: 11.5,-46.5 parent: 2 - - uid: 11173 + - uid: 11194 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-46.5 + pos: 12.5,-21.5 parent: 2 - - uid: 11194 + - uid: 11623 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-21.5 + pos: -16.5,4.5 parent: 2 - - uid: 11196 + - uid: 14539 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-46.5 + pos: 45.5,-38.5 parent: 2 - - uid: 11623 + - uid: 15351 components: - type: Transform - pos: -16.5,4.5 + pos: -17.5,-0.5 parent: 2 - - uid: 12334 + - uid: 15392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-1.5 + pos: -15.5,4.5 parent: 2 - - uid: 12335 + - uid: 16220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-1.5 + pos: 54.5,-54.5 parent: 2 - - uid: 12336 + - uid: 16994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-1.5 + pos: 57.5,-57.5 parent: 2 - - uid: 12337 + - uid: 17579 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-4.5 + pos: -6.5,11.5 parent: 2 - - uid: 12338 + - uid: 18780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-3.5 + pos: 73.5,-67.5 parent: 2 - - uid: 12339 + - uid: 20627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-2.5 + pos: 30.5,-15.5 parent: 2 - - uid: 12345 + - uid: 20628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-21.5 + pos: 31.5,-15.5 parent: 2 - - uid: 12346 + - uid: 21434 components: - type: Transform - rot: 3.141592653589793 rad + pos: 32.5,-5.5 + parent: 2 + - uid: 22063 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 22064 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 22065 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 22066 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 22067 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 22068 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 22069 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 22526 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: -22.5,-21.5 parent: 2 - - uid: 12347 + - uid: 22527 components: - type: Transform - rot: 3.141592653589793 rad + rot: 1.5707963267948966 rad pos: -23.5,-21.5 parent: 2 - - uid: 14539 + - uid: 22528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-38.5 + rot: 1.5707963267948966 rad + pos: -24.5,-21.5 parent: 2 - - uid: 15351 + - uid: 22529 components: - type: Transform - pos: -17.5,-0.5 + rot: 1.5707963267948966 rad + pos: -32.5,-46.5 parent: 2 - - uid: 15392 + - uid: 22530 components: - type: Transform - pos: -15.5,4.5 + rot: 1.5707963267948966 rad + pos: -33.5,-46.5 parent: 2 - - uid: 16220 + - uid: 22531 components: - type: Transform - pos: 54.5,-54.5 + rot: 1.5707963267948966 rad + pos: -34.5,-46.5 parent: 2 - - uid: 16994 + - uid: 22535 components: - type: Transform - pos: 57.5,-57.5 + rot: 1.5707963267948966 rad + pos: -22.5,-39.5 parent: 2 - - uid: 17579 + - uid: 22536 components: - type: Transform - pos: -6.5,11.5 + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 parent: 2 - - uid: 18780 + - uid: 22537 components: - type: Transform - pos: 73.5,-67.5 + rot: 1.5707963267948966 rad + pos: -24.5,-39.5 parent: 2 - - uid: 20627 + - uid: 22557 components: - type: Transform - pos: 30.5,-15.5 + rot: -1.5707963267948966 rad + pos: -26.5,-42.5 parent: 2 - - uid: 20628 + - uid: 22558 components: - type: Transform - pos: 31.5,-15.5 + rot: -1.5707963267948966 rad + pos: -26.5,-41.5 parent: 2 - - uid: 20629 + - uid: 22559 components: - type: Transform - pos: 32.5,-15.5 + rot: -1.5707963267948966 rad + pos: -26.5,-40.5 parent: 2 - proto: AirlockGlassShuttle entities: @@ -15307,15 +17642,14 @@ entities: - type: Transform pos: -23.5,10.5 parent: 2 -- proto: AirlockHydroGlassLocked +- proto: AirlockHydroponicsLocked entities: - - uid: 813 + - uid: 141 components: - type: Transform + rot: -1.5707963267948966 rad pos: -12.5,-31.5 parent: 2 -- proto: AirlockHydroponicsLocked - entities: - uid: 3301 components: - type: Transform @@ -15333,21 +17667,19 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 9382 + - uid: 21364 components: - type: Transform - pos: 30.5,2.5 + pos: 27.5,5.5 parent: 2 -- proto: AirlockKitchenGlassLocked +- proto: AirlockKitchenLocked entities: - - uid: 3318 + - uid: 260 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,-31.5 parent: 2 -- proto: AirlockKitchenLocked - entities: - uid: 3485 components: - type: Transform @@ -15358,13 +17690,6 @@ entities: - type: Transform pos: -1.5,-34.5 parent: 2 -- proto: AirlockMaintBarLocked - entities: - - uid: 14502 - components: - - type: Transform - pos: 2.5,-44.5 - parent: 2 - proto: AirlockMaintCargoLocked entities: - uid: 1355 @@ -15391,41 +17716,34 @@ entities: parent: 2 - proto: AirlockMaintChemLocked entities: - - uid: 3683 - components: - - type: Transform - pos: -33.5,-39.5 - parent: 2 -- proto: AirlockMaintChiefEngineerLocked - entities: - - uid: 2556 + - uid: 11049 components: - type: Transform - pos: -7.5,-27.5 + pos: -38.5,-39.5 parent: 2 - proto: AirlockMaintCommandLocked entities: - - uid: 194 + - uid: 6747 components: - type: Transform pos: -9.5,-55.5 parent: 2 - - uid: 202 +- proto: AirlockMaintCommonLocked + entities: + - uid: 346 components: - type: Transform - pos: 21.5,4.5 + pos: 17.5,-7.5 parent: 2 - - uid: 2283 + - uid: 347 components: - type: Transform - pos: 6.5,-16.5 + pos: 21.5,-12.5 parent: 2 -- proto: AirlockMaintCommonLocked - entities: - - uid: 152 + - uid: 476 components: - type: Transform - pos: -32.5,2.5 + pos: -32.5,-6.5 parent: 2 - uid: 2398 components: @@ -15457,6 +17775,16 @@ entities: - type: Transform pos: -12.5,-25.5 parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 - uid: 5485 components: - type: Transform @@ -15467,25 +17795,46 @@ entities: - type: Transform pos: 17.5,-51.5 parent: 2 - - uid: 6302 + - uid: 6575 components: - type: Transform - pos: 20.5,-43.5 + pos: 16.5,4.5 parent: 2 - - uid: 9657 + - uid: 6917 components: - type: Transform - pos: -29.5,-40.5 + pos: 21.5,8.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-40.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + pos: -18.5,-15.5 parent: 2 - uid: 10143 components: - type: Transform pos: -17.5,11.5 parent: 2 - - uid: 11140 + - uid: 10974 components: - type: Transform - pos: 13.5,-53.5 + pos: -40.5,-20.5 + parent: 2 + - uid: 11221 + components: + - type: Transform + pos: 5.5,-42.5 parent: 2 - uid: 11449 components: @@ -15497,6 +17846,26 @@ entities: - type: Transform pos: 18.5,-57.5 parent: 2 + - uid: 13337 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 13662 + components: + - type: Transform + pos: 35.5,13.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + pos: 4.5,-46.5 + parent: 2 - uid: 13807 components: - type: Transform @@ -15507,42 +17876,55 @@ entities: - type: Transform pos: 24.5,-57.5 parent: 2 + - uid: 16011 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 - uid: 16200 components: - type: Transform pos: -19.5,24.5 parent: 2 + - uid: 17975 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 - uid: 18979 components: - type: Transform pos: 34.5,6.5 parent: 2 - - uid: 20659 + - uid: 20394 components: - type: Transform - pos: -24.5,20.5 + pos: 12.5,-57.5 parent: 2 -- proto: AirlockMaintDetectiveLocked - entities: - - uid: 7373 + - uid: 21405 components: - type: Transform - pos: 36.5,5.5 + pos: 5.5,-38.5 parent: 2 -- proto: AirlockMaintEngiLocked - entities: - - uid: 133 + - uid: 21406 components: - type: Transform - pos: 2.5,-22.5 + pos: 5.5,-44.5 parent: 2 - - uid: 6971 +- proto: AirlockMaintDetectiveLocked + entities: + - uid: 7373 components: - type: Transform - pos: 0.5,-22.5 + pos: 36.5,5.5 parent: 2 - proto: AirlockMaintGlassLocked entities: + - uid: 6326 + components: + - type: Transform + pos: 8.5,-56.5 + parent: 2 - uid: 11447 components: - type: Transform @@ -15564,14 +17946,14 @@ entities: parent: 2 - proto: AirlockMaintJanitorLocked entities: - - uid: 9423 + - uid: 10107 components: - type: Transform - pos: 27.5,5.5 + pos: 27.5,-1.5 parent: 2 - proto: AirlockMaintLawyerLocked entities: - - uid: 6106 + - uid: 2327 components: - type: Transform pos: 26.5,11.5 @@ -15598,36 +17980,16 @@ entities: - type: Transform pos: 23.5,-18.5 parent: 2 - - uid: 2691 - components: - - type: Transform - pos: -31.5,-48.5 - parent: 2 - uid: 3289 components: - type: Transform pos: 45.5,-14.5 parent: 2 - - uid: 3382 - components: - - type: Transform - pos: 18.5,-6.5 - parent: 2 - - uid: 4111 - components: - - type: Transform - pos: 3.5,-46.5 - parent: 2 - uid: 4922 components: - type: Transform pos: 49.5,-36.5 parent: 2 - - uid: 4928 - components: - - type: Transform - pos: 4.5,-44.5 - parent: 2 - uid: 5023 components: - type: Transform @@ -15643,16 +18005,6 @@ entities: - type: Transform pos: 26.5,-55.5 parent: 2 - - uid: 5923 - components: - - type: Transform - pos: 4.5,-38.5 - parent: 2 - - uid: 6029 - components: - - type: Transform - pos: 4.5,-42.5 - parent: 2 - uid: 8358 components: - type: Transform @@ -15668,54 +18020,63 @@ entities: - type: Transform pos: 5.5,-25.5 parent: 2 - - uid: 11722 + - uid: 10291 components: - type: Transform - pos: -34.5,-58.5 + pos: 29.5,-3.5 parent: 2 - uid: 13374 components: - type: Transform pos: 28.5,-14.5 parent: 2 - - uid: 15750 + - uid: 14170 components: - type: Transform - pos: -37.5,-56.5 + pos: -36.5,-41.5 parent: 2 - - uid: 15857 + - uid: 15946 components: - type: Transform - pos: 29.5,8.5 + pos: 48.5,-27.5 parent: 2 - - uid: 15946 + - uid: 16954 components: - type: Transform - pos: 48.5,-27.5 + pos: -35.5,-58.5 + parent: 2 + - uid: 17152 + components: + - type: Transform + pos: -35.5,-48.5 + parent: 2 + - uid: 22299 + components: + - type: Transform + pos: 23.5,17.5 parent: 2 - proto: AirlockMaintMedLocked entities: - - uid: 339 + - uid: 1593 components: - type: Transform - pos: -35.5,-40.5 + pos: 21.5,-1.5 parent: 2 - - uid: 8244 + - uid: 3118 components: - type: Transform - pos: -36.5,-44.5 + pos: -34.5,-21.5 parent: 2 - - uid: 9664 + - uid: 10617 components: - type: Transform - pos: -31.5,-42.5 + pos: -42.5,-55.5 parent: 2 -- proto: AirlockMaintQuartermasterLocked - entities: - - uid: 14314 + - uid: 22100 components: - type: Transform - pos: -8.5,20.5 + rot: 1.5707963267948966 rad + pos: 20.5,-1.5 parent: 2 - proto: AirlockMaintRnDLocked entities: @@ -15753,6 +18114,11 @@ entities: - type: Transform pos: -20.5,16.5 parent: 2 + - uid: 2791 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 - proto: AirlockMaintServiceLocked entities: - uid: 3810 @@ -15767,114 +18133,131 @@ entities: parent: 2 - proto: AirlockMedicalGlassLocked entities: - - uid: 68 + - uid: 506 components: - type: Transform - pos: -41.5,-30.5 + pos: -37.5,-26.5 parent: 2 - - uid: 72 + - uid: 967 components: - type: Transform - pos: -30.5,-27.5 + pos: -32.5,-31.5 parent: 2 - - uid: 574 + - uid: 1095 components: - type: Transform - pos: -35.5,-28.5 + pos: -32.5,-32.5 parent: 2 - - uid: 4778 + - uid: 1679 components: - type: Transform - pos: -41.5,-22.5 + pos: -43.5,-33.5 parent: 2 - - uid: 5477 + - uid: 1781 components: - type: Transform - pos: -36.5,-36.5 + pos: -32.5,-27.5 parent: 2 - - uid: 5516 + - uid: 2244 components: - type: Transform - pos: -37.5,-36.5 + pos: -37.5,-27.5 parent: 2 - - uid: 7268 + - uid: 2273 components: - type: Transform - pos: -26.5,-30.5 + pos: -37.5,-32.5 parent: 2 - - uid: 7983 + - uid: 2287 components: - type: Transform - pos: -43.5,-28.5 + pos: -37.5,-33.5 parent: 2 - - uid: 8023 + - uid: 2482 components: - type: Transform - pos: -44.5,-28.5 + pos: -34.5,-25.5 parent: 2 - - uid: 11202 + - uid: 2509 components: - type: Transform - pos: -26.5,-31.5 + pos: -32.5,-28.5 parent: 2 - - uid: 11203 + - uid: 2901 components: - type: Transform - pos: -26.5,-29.5 + pos: -32.5,-24.5 parent: 2 - - uid: 12344 + - uid: 2961 components: - type: Transform - pos: -48.5,-30.5 + pos: -30.5,-23.5 parent: 2 - - uid: 12703 + - uid: 3186 components: - type: Transform - pos: -44.5,-39.5 + pos: -46.5,-28.5 parent: 2 - - uid: 15141 + - uid: 4119 components: - type: Transform - pos: -36.5,-28.5 + pos: -46.5,-31.5 parent: 2 - - uid: 15189 + - uid: 9425 components: - type: Transform - pos: -38.5,-36.5 + pos: 19.5,4.5 parent: 2 - proto: AirlockMedicalLocked entities: - - uid: 1037 + - uid: 6123 components: - type: Transform - pos: -31.5,-21.5 + pos: -35.5,-52.5 parent: 2 - - uid: 1175 + - uid: 10058 components: - type: Transform - pos: -30.5,-24.5 + pos: -43.5,-26.5 parent: 2 - - uid: 1508 + - uid: 10658 components: - type: Transform - pos: -29.5,-43.5 + pos: -25.5,-25.5 parent: 2 - - uid: 17176 + - uid: 12513 components: - type: Transform - pos: -25.5,-23.5 + pos: -46.5,-37.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: -49.5,-37.5 parent: 2 - proto: AirlockMedicalMorgueLocked entities: - - uid: 7154 + - uid: 13390 components: - type: Transform - pos: -41.5,-44.5 + pos: -48.5,-42.5 parent: 2 - - uid: 8239 + - uid: 13881 components: - type: Transform - pos: -39.5,-49.5 + pos: -48.5,-39.5 + parent: 2 +- proto: AirlockMedicalMorgueMaintLocked + entities: + - uid: 13910 + components: + - type: Transform + pos: -45.5,-47.5 parent: 2 - proto: AirlockQuartermasterLocked entities: @@ -15907,6 +18290,26 @@ entities: - type: Transform pos: 13.5,20.5 parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 - uid: 5424 components: - type: Transform @@ -15927,7 +18330,6 @@ entities: - uid: 142 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,-25.5 parent: 2 - uid: 146 @@ -15958,19 +18360,16 @@ entities: - uid: 4186 components: - type: Transform - rot: 1.5707963267948966 rad pos: 29.5,-23.5 parent: 2 - uid: 5285 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,-23.5 parent: 2 - uid: 6727 components: - type: Transform - rot: -1.5707963267948966 rad pos: 26.5,-30.5 parent: 2 - proto: AirlockScienceLocked @@ -15987,11 +18386,28 @@ entities: - type: Transform pos: -27.5,-4.5 parent: 2 - - uid: 14505 + - uid: 3558 components: - type: Transform - pos: -33.5,-4.5 + pos: -31.5,-4.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 10212: + - DoorStatus: DoorBolt + - uid: 10212 + components: + - type: Transform + pos: -34.5,-4.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 3558: + - DoorStatus: DoorBolt - proto: AirlockSecurityLawyerGlassLocked entities: - uid: 170 @@ -15999,22 +18415,18 @@ entities: - type: Transform pos: -21.5,-0.5 parent: 2 - - uid: 630 + - uid: 14812 components: - type: Transform - pos: -29.5,1.5 + pos: -21.5,-1.5 parent: 2 - - uid: 7243 +- proto: AirlockSecurityLawyerLocked + entities: + - uid: 776 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,10.5 parent: 2 - - uid: 14812 - components: - - type: Transform - pos: -21.5,-1.5 - parent: 2 - proto: AirlockSecurityLocked entities: - uid: 199 @@ -16027,6 +18439,11 @@ entities: - type: Transform pos: -25.5,8.5 parent: 2 + - uid: 272 + components: + - type: Transform + pos: -29.5,1.5 + parent: 2 - uid: 1145 components: - type: Transform @@ -16037,10 +18454,12 @@ entities: - type: Transform pos: -25.5,14.5 parent: 2 - - uid: 20717 +- proto: AirlockServiceGlassLocked + entities: + - uid: 9446 components: - type: Transform - pos: -32.5,-2.5 + pos: 20.5,-36.5 parent: 2 - proto: AirlockTheatreLocked entities: @@ -16076,59 +18495,43 @@ entities: parent: 2 - proto: AirlockVirologyLocked entities: - - uid: 8208 + - uid: 4185 components: - type: Transform - pos: -45.5,-43.5 + pos: -52.5,-30.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 8215: + 4603: - DoorStatus: DoorBolt - - uid: 8215 + - uid: 4603 components: - type: Transform - pos: -48.5,-43.5 + pos: -50.5,-30.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 8208: + 4185: - DoorStatus: DoorBolt - - uid: 12622 + - uid: 4653 components: - type: Transform - pos: -50.5,-44.5 + pos: -56.5,-29.5 parent: 2 - proto: AirSensor entities: - - uid: 25 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15188 - - uid: 390 - components: - - type: Transform - pos: 14.5,22.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 17353 - - uid: 670 + - uid: 151 components: - type: Transform - pos: -28.5,-11.5 + pos: -54.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 7632 - uid: 1005 components: - type: Transform @@ -16153,150 +18556,147 @@ entities: - type: DeviceNetwork deviceLists: - 8606 - - uid: 1263 + - uid: 1723 components: - type: Transform - pos: 32.5,14.5 + pos: 52.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14085 - - uid: 1276 + - 13549 + - uid: 1809 components: - type: Transform - pos: 21.5,1.5 + pos: -3.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14167 - - uid: 1329 + - 14795 + - uid: 1921 components: - type: Transform - pos: -42.5,-41.5 + pos: -25.5,0.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14939 - - uid: 1723 + - 708 + - uid: 2591 components: - type: Transform - pos: 52.5,-21.5 + pos: 5.5,-27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13549 - - uid: 1882 + - 13665 + - uid: 3014 components: - type: Transform - pos: -50.5,-27.5 + pos: 2.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 - - uid: 1921 + - 13793 + - uid: 4456 components: - type: Transform - pos: -25.5,0.5 + pos: -29.5,-46.5 parent: 2 - type: DeviceNetwork deviceLists: - - 708 - - uid: 2082 + - 14004 + - uid: 6272 components: - type: Transform - pos: 3.5,-8.5 + pos: -7.5,-52.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13793 - - uid: 2397 + - 2583 + - uid: 6941 components: - type: Transform - pos: 5.5,-44.5 + pos: -23.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 - - uid: 2591 + - 11724 + - uid: 7627 components: - type: Transform - pos: 5.5,-27.5 + pos: -59.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13665 - - uid: 2791 + - uid: 7655 components: - type: Transform - pos: 14.5,-18.5 + pos: -48.5,-30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13683 - - uid: 2991 + - 14915 + - uid: 7662 components: - type: Transform - pos: 5.5,-38.5 + pos: -50.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 - - uid: 4359 + - 14915 + - uid: 7925 components: - type: Transform - pos: -23.5,-16.5 + pos: 6.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 7123 - - uid: 6391 + - 7178 + - uid: 8119 components: - type: Transform - pos: -44.5,-36.5 + pos: 13.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 - - uid: 6890 + - 7178 + - uid: 8993 components: - type: Transform - pos: 5.5,-41.5 + pos: -15.5,-1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 - - uid: 6941 + - 19009 + - uid: 9311 components: - type: Transform - pos: -23.5,-9.5 + pos: 32.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 - - uid: 8075 + - 8983 + - uid: 9457 components: - type: Transform - pos: -50.5,-33.5 + pos: 31.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 - - uid: 8500 + - 14085 + - uid: 9458 components: - type: Transform - pos: -50.5,-30.5 + pos: 31.5,-2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 - - uid: 8993 + - 14085 + - uid: 9497 components: - type: Transform - pos: -15.5,-1.5 + pos: 31.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 19009 + - 15421 - uid: 9525 components: - type: Transform @@ -16304,7 +18704,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 4428 + - 8983 - uid: 9572 components: - type: Transform @@ -16321,6 +18721,19 @@ entities: - type: DeviceNetwork deviceLists: - 2697 + - uid: 10963 + components: + - type: Transform + pos: 10.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - uid: 11000 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 - uid: 11185 components: - type: Transform @@ -16345,22 +18758,6 @@ entities: - type: DeviceNetwork deviceLists: - 8606 - - uid: 12434 - components: - - type: Transform - pos: 32.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14085 - - uid: 13004 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - uid: 13013 components: - type: Transform @@ -16382,14 +18779,6 @@ entities: - type: Transform pos: -19.5,-41.5 parent: 2 - - uid: 13409 - components: - - type: Transform - pos: 15.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 - uid: 13410 components: - type: Transform @@ -16397,7 +18786,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7178 - uid: 13418 components: - type: Transform @@ -16491,64 +18880,6 @@ entities: - type: DeviceNetwork deviceLists: - 29 - - uid: 13680 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13683 - - uid: 13703 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13640 - - uid: 13725 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-12.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15421 - - uid: 13788 - components: - - type: Transform - pos: 21.5,-3.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - uid: 13797 - components: - - type: Transform - pos: 5.5,-1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13796 - - uid: 13803 - components: - - type: Transform - pos: 8.5,-2.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13806 - - uid: 13804 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13805 - uid: 13811 components: - type: Transform @@ -16565,30 +18896,6 @@ entities: - type: DeviceNetwork deviceLists: - 13846 - - uid: 13900 - components: - - type: Transform - pos: -33.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 13901 - components: - - type: Transform - pos: -28.5,-64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 13973 - components: - - type: Transform - pos: -27.5,-44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 - uid: 14048 components: - type: Transform @@ -16597,14 +18904,14 @@ entities: - type: DeviceNetwork deviceLists: - 14047 - - uid: 14193 + - uid: 14275 components: - type: Transform - pos: 15.5,0.5 + pos: -38.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 38 + - 14210 - uid: 14381 components: - type: Transform @@ -16613,6 +18920,7 @@ entities: - type: DeviceNetwork deviceLists: - 15331 + - 15937 - uid: 14597 components: - type: Transform @@ -16628,7 +18936,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17658 + - 10102 - uid: 14675 components: - type: Transform @@ -16644,7 +18952,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15673 + - 10102 - uid: 14727 components: - type: Transform @@ -16653,161 +18961,134 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 - - uid: 14764 - components: - - type: Transform - pos: -33.5,-38.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14765 - - uid: 14835 - components: - - type: Transform - pos: -41.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14939 - - uid: 14850 + - 15331 + - 15937 + - uid: 15137 components: - type: Transform - pos: -44.5,-23.5 + pos: -7.5,-31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 - - uid: 14952 + - 17576 + - uid: 15138 components: - type: Transform - pos: -34.5,-22.5 + pos: -3.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14940 - - uid: 14955 + - uid: 15867 components: - type: Transform - pos: -52.5,-46.5 + pos: -42.5,-27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14953 - - uid: 14956 + - 15862 + - uid: 15868 components: - type: Transform - pos: -51.5,-42.5 + pos: -42.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14953 - - uid: 15009 + - 15862 + - uid: 15870 components: - type: Transform - pos: -6.5,-48.5 + pos: -43.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14980 - - uid: 15010 + - 15869 + - uid: 15876 components: - type: Transform - pos: 9.5,-48.5 + pos: -29.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14980 - - uid: 15048 + - 15894 + - uid: 15911 components: - type: Transform - pos: 11.5,-68.5 + pos: -28.5,-29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15050 - - uid: 15049 + - 15331 + - 15937 + - uid: 16097 components: - type: Transform - pos: 11.5,-61.5 + pos: -43.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15050 - - uid: 15072 + - 16096 + - uid: 16137 components: - type: Transform - pos: -8.5,-61.5 + pos: -31.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15074 - - uid: 15073 + - 7931 + - uid: 16179 components: - type: Transform - pos: -8.5,-68.5 + pos: -33.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15074 - - uid: 15100 - components: - - type: Transform - pos: -4.5,-44.5 - parent: 2 - - uid: 15137 + - 9309 + - uid: 16180 components: - type: Transform - pos: -7.5,-31.5 + pos: -33.5,-49.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17576 - - uid: 15138 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 2 - - uid: 15142 + - 9309 + - uid: 16256 components: - type: Transform - pos: 13.5,-37.5 + pos: -33.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3053 - - uid: 15255 + - 9309 + - uid: 16262 components: - type: Transform - pos: 32.5,28.5 + pos: -21.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15260 - - uid: 15256 + - 11724 + - uid: 16263 components: - type: Transform - pos: 32.5,39.5 + pos: -21.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15260 - - uid: 16262 + - 11724 + - uid: 16304 components: - type: Transform - pos: -21.5,-8.5 + pos: -33.5,-71.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 - - uid: 16263 + - 12518 + - uid: 16310 components: - type: Transform - pos: -21.5,-11.5 + pos: -33.5,-78.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 12518 - uid: 16412 components: - type: Transform @@ -16886,35 +19167,209 @@ entities: - type: Transform pos: -11.5,-14.5 parent: 2 + - uid: 21076 + components: + - type: Transform + pos: 6.5,-56.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 13798 -- proto: AirTankFilled - entities: - - uid: 5121 + - 3722 + - uid: 21080 components: - type: Transform - pos: -31.51879,-61.20825 + pos: 10.5,-74.5 parent: 2 - - type: GasTank - toggleActionEntity: 5122 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 5122 - - uid: 8097 + - type: DeviceNetwork + deviceLists: + - 9393 + - uid: 21081 components: - type: Transform - pos: -31.429365,-61.55491 + pos: -7.5,-74.5 parent: 2 -- proto: AltarConvertMaint - entities: - - uid: 9055 + - type: DeviceNetwork + deviceLists: + - 5030 + - uid: 21134 components: - type: Transform - pos: 45.5,-27.5 + pos: -7.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5030 + - uid: 21135 + components: + - type: Transform + pos: 10.5,-60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 + - uid: 21424 + components: + - type: Transform + pos: 6.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - uid: 21425 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - uid: 21808 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9147 + - uid: 22070 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22071 + - uid: 22074 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - uid: 22135 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 22251 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - uid: 22252 + components: + - type: Transform + pos: 22.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - uid: 22253 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - uid: 22254 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - uid: 22322 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 + - uid: 22327 + components: + - type: Transform + pos: 14.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 + - uid: 22381 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14943 + - uid: 22389 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22438 + - uid: 22410 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22438 + - uid: 22437 + components: + - type: Transform + pos: 35.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22432 + - uid: 22454 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22439 + - uid: 22455 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22439 + - uid: 22598 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 + - uid: 22599 + components: + - type: Transform + pos: -36.5,-53.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 +- proto: AltarConvertMaint + entities: + - uid: 9055 + components: + - type: Transform + pos: 45.5,-27.5 parent: 2 - proto: AltarSpawner entities: @@ -16939,11 +19394,6 @@ entities: parent: 2 - proto: AnomalyScanner entities: - - uid: 6743 - components: - - type: Transform - pos: 37.705536,-38.303455 - parent: 2 - uid: 6804 components: - type: Transform @@ -16971,22 +19421,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-53.5 parent: 2 - - uid: 549 - components: - - type: MetaData - name: Security North APC - - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,14.5 - parent: 2 - - uid: 775 - components: - - type: MetaData - name: QM's Office APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,19.5 - parent: 2 - uid: 1283 components: - type: Transform @@ -17016,12 +19450,6 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,21.5 parent: 2 - - uid: 1629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-22.5 - parent: 2 - uid: 1685 components: - type: MetaData @@ -17029,18 +19457,33 @@ entities: - type: Transform pos: -0.5,-5.5 parent: 2 - - uid: 1752 + - uid: 1802 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - uid: 1873 components: - type: MetaData - name: Medical North West Hall APC + name: Morgue APC - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-25.5 + rot: 3.141592653589793 rad + pos: -49.5,-46.5 parent: 2 - - uid: 1802 + - uid: 1875 components: + - type: MetaData + name: Maints Shop APC - type: Transform - pos: 1.5,-35.5 + pos: -50.5,-51.5 + parent: 2 + - uid: 2118 + components: + - type: MetaData + name: Clinic APC + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-0.5 parent: 2 - uid: 2152 components: @@ -17078,75 +19521,47 @@ entities: - type: Transform pos: -13.5,-22.5 parent: 2 - - uid: 2907 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-51.5 - parent: 2 - - uid: 3321 + - uid: 3753 components: - type: MetaData - name: Morgue APC + name: QM's Room APC - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-49.5 + pos: -8.5,20.5 parent: 2 - - uid: 3375 + - uid: 5086 components: - type: MetaData - name: Cameras APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-18.5 - parent: 2 - - uid: 4639 - components: - - type: Transform - pos: -42.5,-39.5 - parent: 2 - - uid: 5070 - components: + name: Vault APC - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,0.5 + rot: -1.5707963267948966 rad + pos: -27.5,-62.5 parent: 2 - uid: 5105 components: + - type: MetaData + name: Atrium APC - type: Transform rot: 3.141592653589793 rad pos: -18.5,28.5 parent: 2 - - uid: 5254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-57.5 - parent: 2 - - uid: 5404 + - uid: 5923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-5.5 + pos: 15.5,-16.5 parent: 2 - uid: 6237 components: + - type: MetaData + name: Hydroponics APC - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-36.5 parent: 2 - - uid: 6449 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-37.5 - parent: 2 - - uid: 6559 + - uid: 6405 components: - - type: MetaData - name: Telecoms APC - type: Transform - pos: 23.5,2.5 + rot: 3.141592653589793 rad + pos: 17.5,-57.5 parent: 2 - uid: 6589 components: @@ -17155,20 +19570,19 @@ entities: - type: Transform pos: 16.5,-20.5 parent: 2 - - uid: 6650 + - uid: 6910 components: - type: MetaData - name: Gravity Generator APC + name: Warden's Office APC - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-12.5 + pos: -22.5,-2.5 parent: 2 - - uid: 6910 + - uid: 7149 components: - type: MetaData - name: Warden's Office APC + name: Coffee Hall APC - type: Transform - pos: -22.5,-2.5 + pos: 17.5,8.5 parent: 2 - uid: 7213 components: @@ -17190,25 +19604,13 @@ entities: - type: Transform pos: 44.5,-55.5 parent: 2 - - uid: 7877 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,39.5 - parent: 2 - - uid: 7878 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,20.5 - parent: 2 - - uid: 8315 + - uid: 7499 components: - type: MetaData - name: AI Chute Station-side APC + name: CMO APC - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 + rot: 1.5707963267948966 rad + pos: -51.5,-21.5 parent: 2 - uid: 8638 components: @@ -17221,19 +19623,23 @@ entities: - uid: 8782 components: - type: MetaData - name: North East Solars APC + name: Solars - North East APC - type: Transform 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 + name: Bridge West APC - type: Transform rot: 1.5707963267948966 rad pos: -21.5,-54.5 @@ -17268,26 +19674,6 @@ entities: - type: Transform pos: -20.5,-45.5 parent: 2 - - uid: 10088 - components: - - type: MetaData - name: Janitorial APC - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 2 - - uid: 10089 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,9.5 - parent: 2 - - uid: 10102 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,6.5 - parent: 2 - uid: 10247 components: - type: MetaData @@ -17301,10 +19687,11 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-19.5 parent: 2 - - uid: 10506 + - uid: 10762 components: - type: Transform - pos: -44.5,-52.5 + rot: 1.5707963267948966 rad + pos: 29.5,-4.5 parent: 2 - uid: 10933 components: @@ -17314,11 +19701,10 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-47.5 parent: 2 - - uid: 11051 + - uid: 11213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-37.5 + pos: -30.5,1.5 parent: 2 - uid: 11350 components: @@ -17344,12 +19730,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-27.5 parent: 2 - - uid: 11579 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-38.5 - parent: 2 - uid: 11675 components: - type: MetaData @@ -17378,30 +19758,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,-14.5 parent: 2 - - uid: 11892 - components: - - type: Transform - pos: 18.5,-41.5 - parent: 2 - - uid: 11992 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,13.5 - parent: 2 - - uid: 12009 - components: - - type: MetaData - name: Outside Vault APC - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,0.5 - parent: 2 - - uid: 12126 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 2 - uid: 12258 components: - type: Transform @@ -17414,76 +19770,45 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-37.5 parent: 2 - - uid: 12425 - components: - - type: Transform - pos: 36.5,-39.5 - parent: 2 - - uid: 12439 + - uid: 12348 components: - type: MetaData - name: Medical Medbay APC - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-25.5 - parent: 2 - - uid: 12558 - components: + name: ' Solars - South West APC' - type: Transform - pos: -33.5,-42.5 + pos: -58.5,-57.5 parent: 2 - - uid: 12559 + - uid: 12425 components: - - type: MetaData - name: Virology APC - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-44.5 + pos: 36.5,-39.5 parent: 2 - - uid: 12675 + - uid: 12479 components: - - type: MetaData - name: Medical Entrance APC - type: Transform - pos: -32.5,-28.5 + pos: 41.5,22.5 parent: 2 - - uid: 12723 + - uid: 13216 components: - type: MetaData - name: Arrivals West APC + name: Mail APC - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-64.5 + pos: 22.5,13.5 parent: 2 - - uid: 12769 + - uid: 13248 components: - - type: MetaData - name: Arrivals East APC - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-64.5 - parent: 2 - - uid: 12859 - components: - - type: MetaData - name: Shuttle Building APC - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-56.5 + pos: 28.5,-6.5 parent: 2 - - uid: 12937 + - uid: 13355 components: - - type: MetaData - name: Hall Outside Bridge APC - type: Transform - pos: -26.5,-39.5 + pos: -31.5,-23.5 parent: 2 - - uid: 13176 + - uid: 13851 components: - - type: MetaData - name: Vault APC - type: Transform - pos: 11.5,6.5 + pos: 25.5,-2.5 parent: 2 - uid: 14587 components: @@ -17524,6 +19849,27 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-28.5 parent: 2 + - uid: 16324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-42.5 + parent: 2 + - uid: 16346 + components: + - type: MetaData + name: Chemistry West APC + - type: Transform + pos: -38.5,-34.5 + parent: 2 + - uid: 16393 + components: + - type: MetaData + name: Psychologist APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-55.5 + parent: 2 - uid: 16488 components: - type: Transform @@ -17541,6 +19887,14 @@ entities: - type: Transform pos: -66.5,-11.5 parent: 2 + - uid: 16624 + components: + - type: MetaData + name: Docking Arm South APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-70.5 + parent: 2 - uid: 17056 components: - type: MetaData @@ -17548,6 +19902,24 @@ entities: - type: Transform pos: 27.5,-32.5 parent: 2 + - uid: 17108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-35.5 + parent: 2 + - uid: 17540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-26.5 + parent: 2 + - uid: 17674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 2 - uid: 17872 components: - type: Transform @@ -17556,6 +19928,8 @@ entities: parent: 2 - uid: 17971 components: + - type: MetaData + name: Solars North West APC - type: Transform rot: 3.141592653589793 rad pos: -31.5,21.5 @@ -17574,6 +19948,11 @@ entities: rot: -1.5707963267948966 rad pos: 54.5,-52.5 parent: 2 + - uid: 18889 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 - uid: 18943 components: - type: Transform @@ -17585,6 +19964,105 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,4.5 parent: 2 + - uid: 19151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-69.5 + parent: 2 + - uid: 19216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-71.5 + parent: 2 + - uid: 20201 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 20288 + components: + - type: Transform + pos: -36.5,-31.5 + parent: 2 + - uid: 20406 + components: + - type: MetaData + name: Chemistry East APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-37.5 + parent: 2 + - uid: 20578 + components: + - type: MetaData + name: Medbay APC + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-29.5 + parent: 2 + - uid: 21006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-58.5 + parent: 2 + - uid: 21007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-49.5 + parent: 2 + - uid: 21911 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 22079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + - uid: 22280 + components: + - type: MetaData + name: Library APC + - type: Transform + pos: 21.5,-42.5 + parent: 2 + - uid: 22290 + components: + - type: MetaData + name: Janitor APC + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 22508 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 22539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-34.5 + parent: 2 + - uid: 22603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 22714 + components: + - type: MetaData + name: Security North APC + - type: Transform + pos: -25.5,18.5 + parent: 2 - proto: APCElectronics entities: - uid: 2246 @@ -17592,11 +20070,6 @@ entities: - type: Transform pos: -4.6457157,-23.489979 parent: 2 - - uid: 5149 - components: - - type: Transform - pos: 11.251795,-11.754389 - parent: 2 - uid: 16601 components: - type: Transform @@ -17618,41 +20091,41 @@ entities: parent: 2 - proto: ArrivalsShuttleTimer entities: - - uid: 5659 + - uid: 21887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-57.5 + rot: -1.5707963267948966 rad + pos: 8.5,-61.5 parent: 2 - - uid: 7979 + - uid: 22168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-66.5 + rot: -1.5707963267948966 rad + pos: -5.5,-61.5 parent: 2 - - uid: 8003 + - uid: 22169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-66.5 + rot: -1.5707963267948966 rad + pos: 8.5,-72.5 parent: 2 - - uid: 8004 + - uid: 22171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-59.5 + rot: -1.5707963267948966 rad + pos: -5.5,-72.5 parent: 2 - - uid: 8005 + - uid: 22172 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-50.5 + rot: -1.5707963267948966 rad + pos: -5.5,-54.5 parent: 2 - - uid: 8007 + - uid: 22173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-50.5 + rot: -1.5707963267948966 rad + pos: 8.5,-54.5 parent: 2 - proto: ArtistCircuitBoard entities: @@ -17668,6 +20141,11 @@ entities: - type: Transform pos: -14.697546,15.752759 parent: 2 + - uid: 856 + components: + - type: Transform + pos: -27.473076,-46.23464 + parent: 2 - uid: 5611 components: - type: Transform @@ -17700,11 +20178,6 @@ entities: - type: Transform pos: -3.5428128,-42.34056 parent: 2 - - uid: 18984 - components: - - type: Transform - pos: 7.738307,-51.330593 - parent: 2 - uid: 18985 components: - type: Transform @@ -17719,61 +20192,11 @@ entities: parent: 2 - proto: AsteroidRock entities: - - uid: 506 - components: - - type: Transform - pos: 26.5,15.5 - parent: 2 - - uid: 651 - components: - - type: Transform - pos: 10.5,1.5 - parent: 2 - - uid: 701 - components: - - type: Transform - pos: 11.5,-3.5 - parent: 2 - - uid: 702 - components: - - type: Transform - pos: 10.5,0.5 - parent: 2 - - uid: 724 - components: - - type: Transform - pos: 11.5,-0.5 - parent: 2 - - uid: 773 - components: - - type: Transform - pos: 6.5,7.5 - parent: 2 - uid: 830 components: - type: Transform pos: 5.5,8.5 parent: 2 - - uid: 835 - components: - - type: Transform - pos: 11.5,-1.5 - parent: 2 - - uid: 846 - components: - - type: Transform - pos: 6.5,3.5 - parent: 2 - - uid: 866 - components: - - type: Transform - pos: 11.5,1.5 - parent: 2 - - uid: 867 - components: - - type: Transform - pos: 12.5,1.5 - parent: 2 - uid: 877 components: - type: Transform @@ -17804,11 +20227,6 @@ entities: - type: Transform pos: -12.5,4.5 parent: 2 - - uid: 1302 - components: - - type: Transform - pos: 11.5,-2.5 - parent: 2 - uid: 1304 components: - type: Transform @@ -17819,16 +20237,6 @@ entities: - type: Transform pos: 4.5,8.5 parent: 2 - - uid: 1476 - components: - - type: Transform - pos: 4.5,7.5 - parent: 2 - - uid: 1477 - components: - - type: Transform - pos: 5.5,7.5 - parent: 2 - uid: 1478 components: - type: Transform @@ -17839,184 +20247,33 @@ entities: - type: Transform pos: -9.5,3.5 parent: 2 - - uid: 1561 - components: - - type: Transform - pos: 11.5,0.5 - parent: 2 - - uid: 2273 - components: - - type: Transform - pos: 18.5,18.5 - parent: 2 - - uid: 2830 - components: - - type: Transform - pos: 18.5,17.5 - parent: 2 - - uid: 3869 - components: - - type: Transform - pos: 20.5,17.5 - parent: 2 - - uid: 4991 - components: - - type: Transform - pos: 28.5,16.5 - parent: 2 - - uid: 5846 - components: - - type: Transform - pos: 26.5,17.5 - parent: 2 - - uid: 5847 - components: - - type: Transform - pos: 26.5,16.5 - parent: 2 - - uid: 5883 - components: - - type: Transform - pos: 27.5,16.5 - parent: 2 - - uid: 7272 - components: - - type: Transform - pos: 36.5,16.5 - parent: 2 - - uid: 7617 - components: - - type: Transform - pos: 25.5,17.5 - parent: 2 - - uid: 7632 - components: - - type: Transform - pos: 24.5,17.5 - parent: 2 - - uid: 7635 - components: - - type: Transform - pos: 37.5,14.5 - parent: 2 - - uid: 7636 - components: - - type: Transform - pos: 38.5,14.5 - parent: 2 - - uid: 7645 - components: - - type: Transform - pos: 28.5,15.5 - parent: 2 - - uid: 17562 - components: - - type: Transform - pos: 22.5,17.5 - parent: 2 - - uid: 17607 - components: - - type: Transform - pos: 23.5,18.5 - parent: 2 - - uid: 17608 - components: - - type: Transform - pos: 23.5,17.5 - parent: 2 - - uid: 18201 - components: - - type: Transform - pos: 28.5,21.5 - parent: 2 - - uid: 20637 - components: - - type: Transform - pos: 18.5,19.5 - parent: 2 - - uid: 20646 - components: - - type: Transform - pos: 19.5,18.5 - parent: 2 - - uid: 20647 - components: - - type: Transform - pos: 20.5,19.5 - parent: 2 - - uid: 20649 - components: - - type: Transform - pos: 21.5,18.5 - parent: 2 -- proto: AsteroidRockArtifactFragment - entities: - - uid: 334 - components: - - type: Transform - pos: 23.5,16.5 - parent: 2 - - uid: 371 - components: - - type: Transform - pos: 25.5,16.5 - parent: 2 -- proto: AsteroidRockMining - entities: - - uid: 105 - components: - - type: Transform - pos: 27.5,15.5 - parent: 2 - - uid: 218 - components: - - type: Transform - pos: 21.5,17.5 - parent: 2 - - uid: 406 - components: - - type: Transform - pos: 36.5,15.5 - parent: 2 - - uid: 20639 + - uid: 4052 components: - type: Transform - pos: 17.5,17.5 + pos: 12.5,8.5 parent: 2 - - uid: 20644 + - uid: 4065 components: - type: Transform - pos: 17.5,19.5 + pos: 11.5,8.5 parent: 2 - - uid: 20645 + - uid: 9682 components: - type: Transform - pos: 19.5,19.5 + pos: 12.5,7.5 parent: 2 - - uid: 20648 + - uid: 9684 components: - type: Transform - pos: 20.5,18.5 + pos: 10.5,8.5 parent: 2 - proto: AtmosDeviceFanDirectional entities: - - uid: 219 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-58.5 - parent: 2 - - uid: 783 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,12.5 - parent: 2 - - uid: 1033 + - uid: 2064 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,29.5 + pos: -3.5,-67.5 parent: 2 - uid: 3002 components: @@ -18030,48 +20287,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-16.5 parent: 2 - - uid: 4185 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,29.5 - parent: 2 - - uid: 4208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,45.5 - parent: 2 - - uid: 4259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-61.5 - parent: 2 - - uid: 4627 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,35.5 - parent: 2 - - uid: 4754 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,37.5 - parent: 2 - - uid: 5486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 2 - - uid: 7028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,29.5 - parent: 2 - uid: 7774 components: - type: Transform @@ -18084,29 +20299,29 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,-31.5 parent: 2 - - uid: 9937 + - uid: 13368 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-68.5 + pos: -3.5,-74.5 parent: 2 - - uid: 16101 + - uid: 14347 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-18.5 + rot: -1.5707963267948966 rad + pos: 6.5,-67.5 parent: 2 - - uid: 17527 + - uid: 16010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,29.5 + rot: -1.5707963267948966 rad + pos: 6.5,-74.5 parent: 2 - - uid: 18590 + - uid: 16101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-68.5 + rot: 1.5707963267948966 rad + pos: 57.5,-18.5 parent: 2 - uid: 18670 components: @@ -18114,37 +20329,41 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-24.5 parent: 2 - - uid: 20168 + - uid: 20391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-61.5 + rot: 1.5707963267948966 rad + pos: 62.5,-53.5 parent: 2 - - uid: 20283 + - uid: 21943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,27.5 + rot: -1.5707963267948966 rad + pos: -37.5,12.5 parent: 2 - - uid: 20284 + - uid: 21945 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,45.5 + pos: -56.5,-51.5 parent: 2 - - uid: 20391 +- proto: AtmosFixBlockerMarker + entities: + - uid: 147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-53.5 + pos: -56.5,-38.5 parent: 2 -- proto: AtmosFixBlockerMarker - entities: - uid: 149 components: - type: Transform pos: -10.5,3.5 parent: 2 + - uid: 159 + components: + - type: Transform + pos: 0.5,-88.5 + parent: 2 - uid: 192 components: - type: Transform @@ -18155,6 +20374,11 @@ entities: - type: Transform pos: -48.5,-16.5 parent: 2 + - uid: 246 + components: + - type: Transform + pos: -54.5,-38.5 + parent: 2 - uid: 364 components: - type: Transform @@ -18165,11 +20389,6 @@ entities: - type: Transform pos: -46.5,-5.5 parent: 2 - - uid: 550 - components: - - type: Transform - pos: 7.5,2.5 - parent: 2 - uid: 586 components: - type: Transform @@ -18225,15 +20444,20 @@ entities: - type: Transform pos: 63.5,7.5 parent: 2 - - uid: 840 + - uid: 867 components: - type: Transform - pos: 12.5,-2.5 + pos: 10.5,4.5 parent: 2 - - uid: 1070 + - uid: 901 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 1089 components: - type: Transform - pos: 21.5,19.5 + pos: 9.5,4.5 parent: 2 - uid: 1171 components: @@ -18255,16 +20479,26 @@ entities: - type: Transform pos: 59.5,-41.5 parent: 2 - - uid: 1520 + - uid: 1583 components: - type: Transform - pos: 9.5,-9.5 + pos: 10.5,2.5 parent: 2 - uid: 1657 components: - type: Transform pos: -44.5,-4.5 parent: 2 + - uid: 1772 + components: + - type: Transform + pos: -55.5,-37.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + pos: -58.5,-38.5 + parent: 2 - uid: 1871 components: - type: Transform @@ -18305,16 +20539,6 @@ entities: - type: Transform pos: -49.5,-16.5 parent: 2 - - uid: 2970 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - - uid: 2974 - components: - - type: Transform - pos: 12.5,3.5 - parent: 2 - uid: 2987 components: - type: Transform @@ -18360,11 +20584,6 @@ entities: - type: Transform pos: 57.5,-0.5 parent: 2 - - uid: 3472 - components: - - type: Transform - pos: 22.5,18.5 - parent: 2 - uid: 3537 components: - type: Transform @@ -18405,15 +20624,30 @@ entities: - type: Transform pos: 57.5,-2.5 parent: 2 - - uid: 5219 + - uid: 4054 components: - type: Transform - pos: 10.5,-8.5 + pos: 6.5,7.5 parent: 2 - - uid: 5220 + - uid: 4821 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: -61.5,-39.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -61.5,-36.5 + parent: 2 + - uid: 5198 components: - type: Transform - pos: 10.5,-9.5 + pos: 11.5,-89.5 parent: 2 - uid: 5271 components: @@ -18480,1040 +20714,1480 @@ entities: - type: Transform pos: 67.5,-43.5 parent: 2 - - uid: 6109 + - uid: 5666 components: - type: Transform - pos: -27.5,-14.5 + pos: 12.5,-87.5 parent: 2 - - uid: 7681 + - uid: 5832 components: - type: Transform - pos: -1.5,4.5 + pos: 2.5,6.5 parent: 2 - - uid: 7682 + - uid: 5845 components: - type: Transform - pos: -1.5,5.5 + pos: -60.5,-36.5 parent: 2 - - uid: 7683 + - uid: 5865 components: - type: Transform - pos: -1.5,6.5 + pos: -62.5,-37.5 parent: 2 - - uid: 7684 + - uid: 6391 components: - type: Transform - pos: -3.5,6.5 + pos: -6.5,-92.5 parent: 2 - - uid: 7685 + - uid: 6408 components: - type: Transform - pos: -3.5,5.5 + pos: -5.5,-86.5 parent: 2 - - uid: 7686 + - uid: 6441 components: - type: Transform - pos: -3.5,4.5 + pos: -5.5,-87.5 parent: 2 - - uid: 7693 + - uid: 6449 components: - type: Transform - pos: 7.5,-2.5 + pos: -5.5,-88.5 parent: 2 - - uid: 7694 + - uid: 6458 components: - type: Transform - pos: 8.5,-2.5 + pos: -7.5,-89.5 parent: 2 - - uid: 7695 + - uid: 6468 components: - type: Transform - pos: 8.5,-3.5 + pos: -4.5,-88.5 parent: 2 - - uid: 7696 + - uid: 6469 components: - type: Transform - pos: 7.5,-3.5 + pos: -3.5,-88.5 parent: 2 - - uid: 7697 + - uid: 6470 components: - type: Transform - pos: 7.5,-7.5 + pos: -1.5,-86.5 parent: 2 - - uid: 7698 + - uid: 6478 components: - type: Transform - pos: 8.5,-6.5 + pos: -0.5,-86.5 parent: 2 - - uid: 7699 + - uid: 6479 components: - type: Transform - pos: 8.5,-7.5 + pos: 0.5,-86.5 parent: 2 - - uid: 7700 + - uid: 6540 components: - type: Transform - pos: 7.5,-6.5 + pos: 1.5,-86.5 parent: 2 - - uid: 7702 + - uid: 6567 components: - type: Transform - pos: 8.5,-12.5 + pos: 2.5,-86.5 parent: 2 - - uid: 7703 + - uid: 6568 components: - type: Transform - pos: 7.5,-12.5 + pos: 3.5,-86.5 parent: 2 - - uid: 7704 + - uid: 6569 components: - type: Transform - pos: 11.5,-6.5 + pos: 3.5,-87.5 parent: 2 - - uid: 7706 + - uid: 6636 components: - type: Transform - pos: 10.5,-2.5 + pos: 2.5,-87.5 parent: 2 - - uid: 7707 + - uid: 6683 components: - type: Transform - pos: 9.5,0.5 + pos: 1.5,-87.5 parent: 2 - - uid: 7708 + - uid: 6692 components: - type: Transform - pos: 9.5,1.5 + pos: 0.5,-87.5 parent: 2 - - uid: 7709 + - uid: 6695 components: - type: Transform - pos: 4.5,5.5 + pos: -0.5,-87.5 parent: 2 - - uid: 7710 + - uid: 6754 components: - type: Transform - pos: 8.5,1.5 + pos: -0.5,-88.5 parent: 2 - - uid: 7711 + - uid: 6807 components: - type: Transform - pos: 4.5,4.5 + pos: -0.5,-89.5 parent: 2 - - uid: 7712 + - uid: 6819 components: - type: Transform - pos: 7.5,1.5 + pos: 0.5,-89.5 parent: 2 - - uid: 7713 + - uid: 6835 components: - type: Transform - pos: 3.5,4.5 + pos: 2.5,-88.5 parent: 2 - - uid: 7714 + - uid: 6843 components: - type: Transform - pos: 3.5,5.5 + pos: 3.5,-88.5 parent: 2 - - uid: 7715 + - uid: 6855 components: - type: Transform - pos: 2.5,5.5 + pos: 4.5,-89.5 parent: 2 - - uid: 7716 + - uid: 6856 components: - type: Transform - pos: 2.5,4.5 + pos: 3.5,-89.5 parent: 2 - - uid: 7718 + - uid: 6858 components: - type: Transform - pos: 6.5,2.5 + pos: 2.5,-89.5 parent: 2 - - uid: 7719 + - uid: 6859 components: - type: Transform - pos: 5.5,2.5 + pos: 1.5,-89.5 parent: 2 - - uid: 7735 + - uid: 6860 components: - type: Transform - pos: -10.5,2.5 + pos: 2.5,-90.5 parent: 2 - - uid: 7736 + - uid: 6918 components: - type: Transform - pos: -11.5,2.5 + pos: 8.5,2.5 parent: 2 - - uid: 7737 + - uid: 6952 components: - type: Transform - pos: -12.5,2.5 + pos: 3.5,-90.5 parent: 2 - - uid: 7738 + - uid: 6957 components: - type: Transform - pos: -11.5,3.5 + pos: 4.5,-90.5 parent: 2 - - uid: 7739 + - uid: 6991 components: - type: Transform - pos: -11.5,4.5 + pos: 5.5,-7.5 parent: 2 - - uid: 7740 + - uid: 7003 components: - type: Transform - pos: -10.5,6.5 + pos: 5.5,-8.5 parent: 2 - - uid: 7747 + - uid: 7027 components: - type: Transform - pos: 3.5,8.5 + pos: -2.5,-89.5 parent: 2 - - uid: 7748 + - uid: 7042 components: - type: Transform - pos: 3.5,7.5 + pos: -2.5,-91.5 parent: 2 - - uid: 7750 + - uid: 7054 components: - type: Transform - pos: 12.5,0.5 + pos: 6.5,-6.5 parent: 2 - - uid: 7751 + - uid: 7070 components: - type: Transform - pos: 12.5,-0.5 + pos: 3.5,6.5 parent: 2 - - uid: 7752 + - uid: 7078 components: - type: Transform - pos: 12.5,-1.5 + pos: -4.5,-92.5 parent: 2 - - uid: 7757 + - uid: 7091 components: - type: Transform - pos: 6.5,8.5 + pos: 4.5,6.5 parent: 2 - - uid: 7780 + - uid: 7134 components: - type: Transform - pos: 24.5,18.5 + pos: -4.5,-93.5 parent: 2 - - uid: 7781 + - uid: 7154 components: - type: Transform - pos: 25.5,18.5 + pos: -4.5,-94.5 parent: 2 - - uid: 7783 + - uid: 7157 components: - type: Transform - pos: 24.5,16.5 + pos: -4.5,-95.5 parent: 2 - - uid: 7789 + - uid: 7170 components: - type: Transform - pos: 29.5,15.5 + pos: -3.5,-92.5 parent: 2 - - uid: 7790 + - uid: 7171 components: - type: Transform - pos: 29.5,16.5 + pos: -3.5,-93.5 parent: 2 - - uid: 7792 + - uid: 7172 components: - type: Transform - pos: 36.5,14.5 + pos: -3.5,-94.5 parent: 2 - - uid: 7803 + - uid: 7186 components: - type: Transform - pos: 37.5,15.5 + pos: -3.5,-95.5 parent: 2 - - uid: 9102 + - uid: 7188 components: - type: Transform - pos: 50.5,1.5 + pos: -2.5,-92.5 parent: 2 - - uid: 9104 + - uid: 7189 components: - type: Transform - pos: 50.5,2.5 + pos: -2.5,-94.5 parent: 2 - - uid: 9105 + - uid: 7191 components: - type: Transform - pos: 50.5,3.5 + pos: -2.5,-93.5 parent: 2 - - uid: 9835 + - uid: 7195 components: - type: Transform - pos: 61.5,6.5 + pos: -2.5,-95.5 parent: 2 - - uid: 9851 + - uid: 7196 components: - type: Transform - pos: 61.5,5.5 + pos: -1.5,-92.5 parent: 2 - - uid: 9853 + - uid: 7197 components: - type: Transform - pos: 61.5,4.5 + pos: -1.5,-93.5 parent: 2 - - uid: 10441 + - uid: 7198 components: - type: Transform - pos: 69.5,4.5 + pos: -1.5,-94.5 parent: 2 - - uid: 10720 + - uid: 7205 components: - type: Transform - pos: 51.5,2.5 + pos: -1.5,-95.5 parent: 2 - - uid: 10745 + - uid: 7232 components: - type: Transform - pos: 70.5,2.5 + pos: -0.5,-92.5 parent: 2 - - uid: 10782 + - uid: 7268 components: - type: Transform - pos: 67.5,5.5 + pos: -0.5,-93.5 parent: 2 - - uid: 10784 + - uid: 7269 components: - type: Transform - pos: 62.5,2.5 + pos: -0.5,-94.5 parent: 2 - - uid: 10790 + - uid: 7313 components: - type: Transform - pos: 67.5,8.5 + pos: -0.5,-95.5 parent: 2 - - uid: 10792 + - uid: 7321 components: - type: Transform - pos: 71.5,6.5 + pos: 0.5,-92.5 parent: 2 - - uid: 11197 + - uid: 7324 components: - type: Transform - pos: 44.5,-70.5 + pos: 0.5,-93.5 parent: 2 - - uid: 11631 + - uid: 7331 components: - type: Transform - pos: -45.5,-3.5 + pos: 0.5,-94.5 parent: 2 - - uid: 11643 + - uid: 7333 components: - type: Transform - pos: 50.5,-73.5 + pos: 0.5,-95.5 parent: 2 - - uid: 11872 + - uid: 7334 components: - type: Transform - pos: 44.5,-74.5 + pos: 1.5,-93.5 parent: 2 - - uid: 11907 + - uid: 7346 components: - type: Transform - pos: -44.5,-3.5 + pos: 1.5,-92.5 parent: 2 - - uid: 11958 + - uid: 7349 components: - type: Transform - pos: 1.5,2.5 + pos: 2.5,-92.5 parent: 2 - - uid: 12520 + - uid: 7350 components: - type: Transform - pos: 7.5,-4.5 + pos: 2.5,-93.5 parent: 2 - - uid: 12592 + - uid: 7351 components: - type: Transform - pos: -27.5,-13.5 + pos: 2.5,-91.5 parent: 2 - - uid: 13169 + - uid: 7363 components: - type: Transform - pos: 12.5,-3.5 + pos: -4.5,-91.5 parent: 2 - - uid: 13899 + - uid: 7389 components: - type: Transform - pos: -44.5,-2.5 + pos: -5.5,-93.5 parent: 2 - - uid: 14228 + - uid: 7417 components: - type: Transform - pos: 66.5,2.5 + pos: -5.5,-94.5 parent: 2 - - uid: 14236 + - uid: 7431 components: - type: Transform - pos: 69.5,5.5 + pos: -6.5,-93.5 parent: 2 - - uid: 14237 + - uid: 7433 components: - type: Transform - pos: 71.5,4.5 + pos: -6.5,-94.5 parent: 2 - - uid: 14239 + - uid: 7435 components: - type: Transform - pos: 71.5,5.5 + pos: -6.5,-95.5 parent: 2 - - uid: 14240 + - uid: 7437 components: - type: Transform - pos: 69.5,7.5 + pos: -7.5,-92.5 parent: 2 - - uid: 14261 + - uid: 7439 components: - type: Transform - pos: 84.5,-18.5 + pos: -7.5,-93.5 parent: 2 - - uid: 14262 + - uid: 7442 components: - type: Transform - pos: 69.5,8.5 + pos: -7.5,-94.5 parent: 2 - - uid: 14397 + - uid: 7443 components: - type: Transform - pos: 44.5,-73.5 + pos: -7.5,-95.5 parent: 2 - - uid: 14469 + - uid: 7444 components: - type: Transform - pos: 83.5,-19.5 + pos: -8.5,-95.5 parent: 2 - - uid: 14478 + - uid: 7446 components: - type: Transform - pos: 84.5,-19.5 + pos: -8.5,-92.5 parent: 2 - - uid: 14482 + - uid: 7448 components: - type: Transform - pos: 83.5,-18.5 + pos: -8.5,-91.5 parent: 2 - - uid: 14483 + - uid: 7449 components: - type: Transform - pos: 82.5,-17.5 + pos: -9.5,-92.5 parent: 2 - - uid: 14511 + - uid: 7452 components: - type: Transform - pos: 83.5,-17.5 + pos: -9.5,-91.5 parent: 2 - - uid: 14513 + - uid: 7454 components: - type: Transform - pos: 84.5,-17.5 + pos: -10.5,-92.5 parent: 2 - - uid: 14581 + - uid: 7455 components: - type: Transform - pos: 86.5,-12.5 + pos: -10.5,-91.5 parent: 2 - - uid: 14598 + - uid: 7457 components: - type: Transform - pos: 88.5,-12.5 + pos: -11.5,-92.5 parent: 2 - - uid: 14623 + - uid: 7458 components: - type: Transform - pos: -27.5,-15.5 + pos: -11.5,-91.5 parent: 2 - - uid: 14788 + - uid: 7459 components: - type: Transform - pos: 87.5,-11.5 + pos: -10.5,-93.5 parent: 2 - - uid: 14846 + - uid: 7462 components: - type: Transform - pos: 8.5,-4.5 + pos: -9.5,-93.5 parent: 2 - - uid: 15322 + - uid: 7463 components: - type: Transform - pos: 73.5,2.5 + pos: -9.5,-96.5 parent: 2 - - uid: 15474 + - uid: 7464 components: - type: Transform - pos: 67.5,7.5 + pos: -12.5,-92.5 parent: 2 - - uid: 15635 + - uid: 7469 components: - type: Transform - pos: 60.5,-41.5 + pos: -10.5,-90.5 parent: 2 - - uid: 15636 + - uid: 7470 components: - type: Transform - pos: 64.5,-37.5 + pos: -9.5,-90.5 parent: 2 - - uid: 15641 + - uid: 7471 components: - type: Transform - pos: 71.5,7.5 + pos: -9.5,-89.5 parent: 2 - - uid: 15725 + - uid: 7472 components: - type: Transform - pos: 67.5,6.5 + pos: -9.5,-88.5 parent: 2 - - uid: 15776 + - uid: 7473 components: - type: Transform - pos: 58.5,2.5 + pos: -9.5,-87.5 parent: 2 - - uid: 15931 + - uid: 7474 components: - type: Transform - pos: 67.5,4.5 + pos: -8.5,-88.5 parent: 2 - - uid: 16038 + - uid: 7476 components: - type: Transform - pos: -12.5,5.5 + pos: -0.5,-84.5 parent: 2 - - uid: 16047 + - uid: 7477 components: - type: Transform - pos: 2.5,7.5 + pos: 0.5,-84.5 parent: 2 - - uid: 16215 + - uid: 7484 components: - type: Transform - pos: 44.5,-71.5 + pos: 1.5,-84.5 parent: 2 - - uid: 16225 + - uid: 7485 components: - type: Transform - pos: 67.5,-1.5 + pos: 2.5,-84.5 parent: 2 - - uid: 16259 + - uid: 7486 components: - type: Transform - pos: -47.5,-5.5 + pos: 1.5,-83.5 parent: 2 - - uid: 16335 + - uid: 7487 components: - type: Transform - pos: -37.5,7.5 + pos: 1.5,-85.5 parent: 2 - - uid: 16841 + - uid: 7490 components: - type: Transform - pos: -46.5,-11.5 + pos: 6.5,-88.5 parent: 2 - - uid: 16842 + - uid: 7491 components: - type: Transform - pos: -46.5,-12.5 + pos: 6.5,-89.5 parent: 2 - - uid: 16843 + - uid: 7492 components: - type: Transform - pos: -45.5,-12.5 + pos: 6.5,-90.5 parent: 2 - - uid: 16844 + - uid: 7493 components: - type: Transform - pos: -44.5,-12.5 + pos: 7.5,-88.5 parent: 2 - - uid: 16845 + - uid: 7494 components: - type: Transform - pos: -43.5,-12.5 + pos: 7.5,-89.5 parent: 2 - - uid: 16846 + - uid: 7495 components: - type: Transform - pos: -42.5,-12.5 + pos: 7.5,-90.5 parent: 2 - - uid: 16847 + - uid: 7496 components: - type: Transform - pos: -41.5,-12.5 + pos: 8.5,-87.5 parent: 2 - - uid: 16848 + - uid: 7497 components: - type: Transform - pos: -40.5,-12.5 + pos: 8.5,-88.5 parent: 2 - - uid: 16849 + - uid: 7513 components: - type: Transform - pos: -39.5,-12.5 + pos: 8.5,-89.5 parent: 2 - - uid: 16850 + - uid: 7558 components: - type: Transform - pos: -38.5,-12.5 + pos: 9.5,-87.5 parent: 2 - - uid: 16851 + - uid: 7563 components: - type: Transform - pos: -38.5,-13.5 + pos: 9.5,-88.5 parent: 2 - - uid: 16852 + - uid: 7598 components: - type: Transform - pos: -38.5,-14.5 + pos: 9.5,-89.5 parent: 2 - - uid: 16853 + - uid: 7616 components: - type: Transform - pos: -38.5,-15.5 + pos: 10.5,-87.5 parent: 2 - - uid: 16854 + - uid: 7619 components: - type: Transform - pos: -38.5,-16.5 + pos: 10.5,-88.5 parent: 2 - - uid: 16855 + - uid: 7620 components: - type: Transform - pos: -37.5,-16.5 + pos: 10.5,-89.5 parent: 2 - - uid: 16856 + - uid: 7621 components: - type: Transform - pos: -36.5,-16.5 + pos: 9.5,-90.5 parent: 2 - - uid: 16857 + - uid: 7644 components: - type: Transform - pos: -35.5,-16.5 + pos: 10.5,-86.5 parent: 2 - - uid: 16858 + - uid: 7668 components: - type: Transform - pos: -34.5,-16.5 + pos: 9.5,-86.5 parent: 2 - - uid: 16859 + - uid: 7681 components: - type: Transform - pos: -33.5,-16.5 + pos: -1.5,4.5 parent: 2 - - uid: 16860 + - uid: 7682 components: - type: Transform - pos: -32.5,-16.5 + pos: -1.5,5.5 parent: 2 - - uid: 16861 + - uid: 7683 components: - type: Transform - pos: -31.5,-16.5 + pos: -1.5,6.5 parent: 2 - - uid: 16862 + - uid: 7684 components: - type: Transform - pos: -30.5,-16.5 + pos: -3.5,6.5 parent: 2 - - uid: 16863 + - uid: 7685 components: - type: Transform - pos: -29.5,-16.5 + pos: -3.5,5.5 parent: 2 - - uid: 16864 + - uid: 7686 components: - type: Transform - pos: -27.5,-16.5 + pos: -3.5,4.5 parent: 2 - - uid: 16865 + - uid: 7705 components: - type: Transform - pos: -28.5,-16.5 + pos: 11.5,-86.5 parent: 2 - - uid: 16871 + - uid: 7709 components: - type: Transform - pos: -50.5,-9.5 + pos: 4.5,5.5 parent: 2 - - uid: 16872 + - uid: 7710 components: - type: Transform - pos: -49.5,-8.5 + pos: 9.5,2.5 parent: 2 - - uid: 16873 + - uid: 7711 components: - type: Transform - pos: -48.5,-7.5 + pos: 4.5,4.5 parent: 2 - - uid: 16874 + - uid: 7713 components: - type: Transform - pos: -47.5,-6.5 + pos: 3.5,4.5 parent: 2 - - uid: 16888 + - uid: 7714 components: - type: Transform - pos: -68.5,-60.5 + pos: 3.5,5.5 parent: 2 - - uid: 16889 + - uid: 7715 components: - type: Transform - pos: -68.5,-48.5 + pos: 2.5,5.5 parent: 2 - - uid: 16890 + - uid: 7716 components: - type: Transform - pos: -68.5,-49.5 + pos: 2.5,4.5 parent: 2 - - uid: 16891 + - uid: 7722 components: - type: Transform - pos: -68.5,-50.5 + pos: 12.5,-88.5 parent: 2 - - uid: 16892 + - uid: 7725 components: - type: Transform - pos: -68.5,-51.5 + pos: 12.5,-89.5 parent: 2 - - uid: 16893 + - uid: 7727 components: - type: Transform - pos: -68.5,-52.5 + pos: 12.5,-90.5 parent: 2 - - uid: 16894 + - uid: 7733 components: - type: Transform - pos: -66.5,-52.5 + pos: 13.5,-90.5 parent: 2 - - uid: 16895 + - uid: 7735 components: - type: Transform - pos: -66.5,-51.5 + pos: -10.5,2.5 parent: 2 - - uid: 16896 + - uid: 7736 components: - type: Transform - pos: -66.5,-50.5 + pos: -11.5,2.5 parent: 2 - - uid: 16897 + - uid: 7737 components: - type: Transform - pos: -66.5,-49.5 + pos: -12.5,2.5 parent: 2 - - uid: 16898 + - uid: 7738 components: - type: Transform - pos: -66.5,-48.5 + pos: -11.5,3.5 parent: 2 - - uid: 16899 + - uid: 7739 components: - type: Transform - pos: -64.5,-48.5 + pos: -11.5,4.5 parent: 2 - - uid: 16900 + - uid: 7740 components: - type: Transform - pos: -64.5,-49.5 + pos: -10.5,6.5 parent: 2 - - uid: 16901 + - uid: 7747 components: - type: Transform - pos: -64.5,-50.5 + pos: 3.5,8.5 parent: 2 - - uid: 16902 + - uid: 7754 components: - type: Transform - pos: -64.5,-51.5 + pos: 15.5,-91.5 parent: 2 - - uid: 16903 + - uid: 7755 components: - type: Transform - pos: -64.5,-52.5 + pos: 14.5,-91.5 parent: 2 - - uid: 16904 + - uid: 7757 components: - type: Transform - pos: -62.5,-52.5 + pos: 6.5,8.5 parent: 2 - - uid: 16905 + - uid: 7765 components: - type: Transform - pos: -62.5,-51.5 + pos: 13.5,-91.5 parent: 2 - - uid: 16906 + - uid: 7793 components: - type: Transform - pos: -62.5,-50.5 + pos: 12.5,-91.5 parent: 2 - - uid: 16907 + - uid: 7805 components: - type: Transform - pos: -62.5,-49.5 + pos: 11.5,-91.5 parent: 2 - - uid: 16908 + - uid: 7806 components: - type: Transform - pos: -62.5,-48.5 + pos: 13.5,-92.5 parent: 2 - - uid: 16909 + - uid: 7807 components: - type: Transform - pos: -60.5,-48.5 + pos: 12.5,-92.5 parent: 2 - - uid: 16910 + - uid: 7809 components: - type: Transform - pos: -60.5,-49.5 + pos: 11.5,-92.5 parent: 2 - - uid: 16911 + - uid: 7810 components: - type: Transform - pos: -60.5,-50.5 + pos: 10.5,-92.5 parent: 2 - - uid: 16912 + - uid: 7811 components: - type: Transform - pos: -60.5,-51.5 + pos: 9.5,-92.5 parent: 2 - - uid: 16913 + - uid: 7812 components: - type: Transform - pos: -60.5,-52.5 + pos: 9.5,-93.5 parent: 2 - - uid: 16914 + - uid: 7813 components: - type: Transform - pos: -58.5,-52.5 + pos: 9.5,-94.5 parent: 2 - - uid: 16915 + - uid: 7816 components: - type: Transform - pos: -58.5,-51.5 + pos: 9.5,-95.5 parent: 2 - - uid: 16916 + - uid: 7817 components: - type: Transform - pos: -58.5,-50.5 + pos: 10.5,-93.5 parent: 2 - - uid: 16917 + - uid: 7818 components: - type: Transform - pos: -58.5,-49.5 + pos: 10.5,-94.5 parent: 2 - - uid: 16918 + - uid: 7819 components: - type: Transform - pos: -58.5,-48.5 + pos: 10.5,-95.5 parent: 2 - - uid: 16919 + - uid: 7833 components: - type: Transform - pos: -58.5,-56.5 + pos: 11.5,-93.5 parent: 2 - - uid: 16920 + - uid: 7837 components: - type: Transform - pos: -58.5,-57.5 + pos: 11.5,-94.5 parent: 2 - - uid: 16921 + - uid: 7843 components: - type: Transform - pos: -58.5,-58.5 + pos: 11.5,-95.5 parent: 2 - - uid: 16922 + - uid: 7845 components: - type: Transform - pos: -58.5,-59.5 + pos: 12.5,-93.5 parent: 2 - - uid: 16923 + - uid: 7846 components: - type: Transform - pos: -58.5,-60.5 + pos: 12.5,-94.5 parent: 2 - - uid: 16924 + - uid: 7847 components: - type: Transform - pos: -60.5,-60.5 + pos: 12.5,-95.5 parent: 2 - - uid: 16925 + - uid: 7848 components: - type: Transform - pos: -60.5,-59.5 + pos: 13.5,-95.5 parent: 2 - - uid: 16926 + - uid: 7937 components: - type: Transform - pos: -60.5,-58.5 + pos: 14.5,-95.5 parent: 2 - - uid: 16927 + - uid: 7940 components: - type: Transform - pos: -60.5,-57.5 + pos: 12.5,-96.5 parent: 2 - - uid: 16928 + - uid: 7941 components: - type: Transform - pos: -60.5,-56.5 + pos: 11.5,-96.5 parent: 2 - - uid: 16929 + - uid: 7945 components: - type: Transform - pos: -62.5,-56.5 + pos: 10.5,-97.5 parent: 2 - - uid: 16930 + - uid: 7946 components: - type: Transform - pos: -62.5,-57.5 + pos: 11.5,-97.5 parent: 2 - - uid: 16931 + - uid: 7947 components: - type: Transform - pos: -62.5,-58.5 + pos: 12.5,-97.5 parent: 2 - - uid: 16932 + - uid: 7948 components: - type: Transform - pos: -62.5,-59.5 + pos: 13.5,-97.5 parent: 2 - - uid: 16933 + - uid: 7952 components: - type: Transform - pos: -62.5,-60.5 + pos: 7.5,-96.5 parent: 2 - - uid: 16934 + - uid: 7953 components: - type: Transform - pos: -64.5,-60.5 + pos: 6.5,-96.5 parent: 2 - - uid: 16935 + - uid: 7954 components: - type: Transform - pos: -64.5,-59.5 + pos: 6.5,-93.5 parent: 2 - - uid: 16936 + - uid: 7955 components: - type: Transform - pos: -64.5,-58.5 + pos: 6.5,-95.5 parent: 2 - - uid: 16937 + - uid: 7957 components: - type: Transform - pos: -64.5,-57.5 + pos: 6.5,-94.5 parent: 2 - - uid: 16938 + - uid: 7958 components: - type: Transform - pos: -64.5,-56.5 + pos: 7.5,-93.5 parent: 2 - - uid: 16939 + - uid: 7959 components: - type: Transform - pos: -66.5,-57.5 + pos: 7.5,-92.5 parent: 2 - - uid: 16940 + - uid: 7961 components: - type: Transform - pos: -66.5,-58.5 + pos: 5.5,-92.5 parent: 2 - - uid: 16941 + - uid: 7962 components: - type: Transform - pos: -66.5,-59.5 + pos: 7.5,-91.5 parent: 2 - - uid: 16942 + - uid: 7964 components: - type: Transform - pos: -66.5,-60.5 + pos: 8.5,-93.5 parent: 2 - - uid: 16943 + - uid: 7965 components: - type: Transform - pos: -66.5,-56.5 + pos: 8.5,-94.5 parent: 2 - - uid: 16944 + - uid: 7966 components: - type: Transform - pos: -68.5,-59.5 + pos: 5.5,-97.5 parent: 2 - - uid: 16945 + - uid: 7967 components: - type: Transform - pos: -68.5,-58.5 + pos: 6.5,-97.5 parent: 2 - - uid: 16946 + - uid: 7968 components: - type: Transform - pos: -68.5,-57.5 + pos: 6.5,-98.5 parent: 2 - - uid: 16947 + - uid: 7970 components: - type: Transform - pos: -68.5,-56.5 + pos: 6.5,-99.5 parent: 2 - - uid: 16948 + - uid: 7973 components: - type: Transform - pos: -67.5,-56.5 + pos: 6.5,-100.5 parent: 2 - - uid: 16949 + - uid: 7974 components: - type: Transform - pos: -63.5,-56.5 + pos: 4.5,-98.5 parent: 2 - - uid: 16950 + - uid: 7977 components: - type: Transform - pos: -59.5,-56.5 + pos: 6.5,-101.5 parent: 2 - - uid: 16951 + - uid: 7982 components: - type: Transform - pos: -59.5,-52.5 + pos: 7.5,-101.5 parent: 2 - - uid: 16952 + - uid: 7983 components: - type: Transform - pos: -63.5,-52.5 + pos: 8.5,-101.5 parent: 2 - - uid: 16953 + - uid: 7986 components: - type: Transform - pos: -67.5,-52.5 + pos: 9.5,-101.5 parent: 2 - - uid: 16954 + - uid: 7989 components: - type: Transform - pos: -67.5,-54.5 + pos: 10.5,-100.5 parent: 2 - - uid: 16955 + - uid: 7990 components: - type: Transform - pos: -63.5,-54.5 + pos: 0.5,-97.5 parent: 2 - - uid: 16956 + - uid: 7991 components: - type: Transform - pos: -59.5,-54.5 + pos: -0.5,-97.5 parent: 2 - - uid: 16957 + - uid: 7992 components: - type: Transform - pos: -70.5,-54.5 + pos: -1.5,-97.5 parent: 2 - - uid: 16958 + - uid: 7994 components: - type: Transform - pos: -52.5,-54.5 + pos: -1.5,-98.5 parent: 2 - - uid: 16959 + - uid: 7995 components: - type: Transform - pos: -51.5,-54.5 + pos: -1.5,-99.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + pos: -3.5,-97.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: -3.5,-96.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + pos: 7.5,-94.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: 7.5,-95.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + pos: -12.5,-94.5 + parent: 2 + - uid: 8261 + components: + - type: Transform + pos: -12.5,-95.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: -12.5,-96.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: -13.5,-94.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + pos: -13.5,-95.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + pos: -13.5,-96.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: -14.5,-94.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: -14.5,-95.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + pos: -14.5,-96.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + pos: -11.5,-94.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: 50.5,2.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + pos: 50.5,3.5 + parent: 2 + - uid: 9423 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + pos: 61.5,6.5 + parent: 2 + - uid: 9851 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + pos: 8.5,3.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: -55.5,-38.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: 69.5,4.5 + parent: 2 + - uid: 10526 + components: + - type: Transform + pos: -54.5,-37.5 + parent: 2 + - uid: 10720 + components: + - 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 + pos: 70.5,2.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + pos: 67.5,5.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + pos: 62.5,2.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + pos: 67.5,8.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + pos: 71.5,6.5 + parent: 2 + - uid: 11197 + components: + - type: Transform + pos: 44.5,-70.5 + parent: 2 + - uid: 11631 + components: + - type: Transform + pos: -45.5,-3.5 + parent: 2 + - uid: 11643 + components: + - type: Transform + pos: 50.5,-73.5 + parent: 2 + - uid: 11872 + components: + - type: Transform + pos: 44.5,-74.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + pos: -44.5,-3.5 + parent: 2 + - uid: 11958 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + pos: -48.5,-19.5 + parent: 2 + - uid: 13899 + components: + - type: Transform + pos: -44.5,-2.5 + parent: 2 + - uid: 14228 + components: + - type: Transform + pos: 66.5,2.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + pos: 69.5,5.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + pos: 71.5,4.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + pos: 71.5,5.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 69.5,7.5 + parent: 2 + - uid: 14261 + components: + - type: Transform + pos: 84.5,-18.5 + parent: 2 + - uid: 14262 + components: + - type: Transform + pos: 69.5,8.5 + parent: 2 + - uid: 14397 + components: + - type: Transform + pos: 44.5,-73.5 + parent: 2 + - uid: 14469 + components: + - type: Transform + pos: 83.5,-19.5 + parent: 2 + - uid: 14478 + components: + - type: Transform + pos: 84.5,-19.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + pos: 83.5,-18.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + pos: 82.5,-17.5 + parent: 2 + - uid: 14511 + components: + - type: Transform + pos: 83.5,-17.5 + parent: 2 + - uid: 14513 + components: + - type: Transform + pos: 84.5,-17.5 + parent: 2 + - uid: 14581 + components: + - type: Transform + pos: 86.5,-12.5 + parent: 2 + - uid: 14598 + components: + - type: Transform + pos: 88.5,-12.5 + parent: 2 + - uid: 14788 + components: + - type: Transform + pos: 87.5,-11.5 + parent: 2 + - uid: 15322 + components: + - type: Transform + pos: 73.5,2.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: 67.5,7.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: 60.5,-41.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: 64.5,-37.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + pos: 71.5,7.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + pos: 67.5,6.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: 58.5,2.5 + parent: 2 + - uid: 15931 + components: + - type: Transform + pos: 67.5,4.5 + parent: 2 + - uid: 16038 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: 44.5,-71.5 + parent: 2 + - uid: 16225 + components: + - type: Transform + pos: 67.5,-1.5 + parent: 2 + - uid: 16259 + components: + - 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 + pos: -46.5,-11.5 + parent: 2 + - uid: 16842 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 16843 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 16844 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 16845 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 16846 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - uid: 16847 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 16848 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 16849 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 16871 + components: + - type: Transform + pos: -50.5,-9.5 + parent: 2 + - uid: 16872 + components: + - type: Transform + pos: -49.5,-8.5 + parent: 2 + - uid: 16873 + components: + - type: Transform + pos: -48.5,-7.5 + parent: 2 + - uid: 16874 + components: + - type: Transform + pos: -47.5,-6.5 + parent: 2 + - uid: 16933 + components: + - type: Transform + pos: -76.5,-58.5 + parent: 2 + - uid: 16951 + components: + - type: Transform + pos: -76.5,-57.5 parent: 2 - uid: 17007 components: @@ -19575,16 +22249,6 @@ entities: - type: Transform pos: -46.5,-18.5 parent: 2 - - uid: 17086 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 2 - - uid: 17087 - components: - - type: Transform - pos: -46.5,-19.5 - parent: 2 - uid: 17093 components: - type: Transform @@ -19620,16 +22284,6 @@ entities: - type: Transform pos: -51.5,-9.5 parent: 2 - - uid: 17103 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 17104 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 2 - uid: 17119 components: - type: Transform @@ -19750,11 +22404,6 @@ entities: - type: Transform pos: 75.5,-44.5 parent: 2 - - uid: 17610 - components: - - type: Transform - pos: 19.5,17.5 - parent: 2 - uid: 17641 components: - type: Transform @@ -19985,167 +22634,87 @@ entities: - type: Transform pos: -48.5,20.5 parent: 2 - - uid: 18342 - components: - - type: Transform - pos: 20.5,32.5 - parent: 2 - uid: 18348 components: - type: Transform pos: 59.5,8.5 parent: 2 - - uid: 18401 + - uid: 18461 components: - type: Transform - pos: 19.5,32.5 + pos: -45.5,29.5 parent: 2 - - uid: 18402 + - uid: 18499 components: - type: Transform - pos: 19.5,33.5 + pos: 30.5,-79.5 parent: 2 - - uid: 18403 + - uid: 18538 components: - type: Transform - pos: 18.5,33.5 + pos: 74.5,-43.5 parent: 2 - - uid: 18404 + - uid: 18585 components: - type: Transform - pos: 17.5,33.5 + pos: -45.5,27.5 parent: 2 - - uid: 18405 + - uid: 18594 components: - type: Transform - pos: 17.5,32.5 + pos: 67.5,-0.5 parent: 2 - - uid: 18406 + - uid: 18610 components: - type: Transform - pos: 16.5,32.5 + pos: 65.5,-0.5 parent: 2 - - uid: 18407 + - uid: 18613 components: - type: Transform - pos: 18.5,32.5 + pos: -50.5,23.5 parent: 2 - - uid: 18409 + - uid: 18624 components: - type: Transform - pos: 18.5,30.5 + pos: -54.5,23.5 parent: 2 - - uid: 18410 + - uid: 18625 components: - type: Transform - pos: 17.5,29.5 + pos: -57.5,23.5 parent: 2 - - uid: 18411 + - uid: 18626 components: - type: Transform - pos: 17.5,28.5 + pos: -54.5,25.5 parent: 2 - - uid: 18412 + - uid: 18627 components: - type: Transform - pos: 18.5,28.5 + pos: -55.5,25.5 parent: 2 - - uid: 18413 + - uid: 18628 components: - type: Transform - pos: 18.5,27.5 + pos: -55.5,26.5 parent: 2 - - uid: 18414 + - uid: 18642 components: - type: Transform - pos: 17.5,27.5 + pos: 65.5,-41.5 parent: 2 - - uid: 18415 + - uid: 18652 components: - type: Transform - pos: 18.5,29.5 + pos: 79.5,-42.5 parent: 2 - - uid: 18416 + - uid: 18657 components: - type: Transform - pos: 18.5,31.5 + pos: 76.5,-46.5 parent: 2 - - uid: 18461 - components: - - type: Transform - pos: -45.5,29.5 - parent: 2 - - uid: 18499 - components: - - type: Transform - pos: 30.5,-79.5 - parent: 2 - - uid: 18538 - components: - - type: Transform - pos: 74.5,-43.5 - parent: 2 - - uid: 18585 - components: - - type: Transform - pos: -45.5,27.5 - parent: 2 - - uid: 18594 - components: - - type: Transform - pos: 67.5,-0.5 - parent: 2 - - uid: 18610 - components: - - type: Transform - pos: 65.5,-0.5 - parent: 2 - - uid: 18613 - components: - - type: Transform - pos: -50.5,23.5 - parent: 2 - - uid: 18624 - components: - - type: Transform - pos: -54.5,23.5 - parent: 2 - - uid: 18625 - components: - - type: Transform - pos: -57.5,23.5 - parent: 2 - - uid: 18626 - components: - - type: Transform - pos: -54.5,25.5 - parent: 2 - - uid: 18627 - components: - - type: Transform - pos: -55.5,25.5 - parent: 2 - - uid: 18628 - components: - - type: Transform - pos: -55.5,26.5 - parent: 2 - - uid: 18642 - components: - - type: Transform - pos: 65.5,-41.5 - parent: 2 - - uid: 18652 - components: - - type: Transform - pos: 79.5,-42.5 - parent: 2 - - uid: 18657 - components: - - type: Transform - pos: 76.5,-46.5 - parent: 2 - - uid: 18658 + - uid: 18658 components: - type: Transform pos: 79.5,-43.5 @@ -23165,50 +25734,575 @@ entities: - type: Transform pos: 89.5,-20.5 parent: 2 - - uid: 20638 + - uid: 20686 components: - type: Transform - pos: 17.5,18.5 + pos: -38.5,17.5 parent: 2 - - uid: 20650 + - uid: 20687 components: - type: Transform - pos: 22.5,19.5 + pos: -37.5,18.5 parent: 2 - - uid: 20651 + - uid: 20690 components: - type: Transform - pos: 29.5,21.5 + pos: -36.5,17.5 parent: 2 - - uid: 20652 + - uid: 20691 components: - type: Transform - pos: 27.5,21.5 + pos: -37.5,17.5 parent: 2 - - uid: 20686 + - uid: 20692 components: - type: Transform - pos: -38.5,17.5 + pos: -36.5,16.5 parent: 2 - - uid: 20687 + - uid: 21600 components: - type: Transform - pos: -37.5,18.5 + pos: -76.5,-59.5 parent: 2 - - uid: 20690 + - uid: 21632 components: - type: Transform - pos: -36.5,17.5 + pos: -76.5,-56.5 parent: 2 - - uid: 20691 + - uid: 21635 components: - type: Transform - pos: -37.5,17.5 + pos: -76.5,-60.5 parent: 2 - - uid: 20692 + - uid: 21636 components: - type: Transform - pos: -36.5,16.5 + pos: -74.5,-60.5 + parent: 2 + - uid: 21637 + components: + - type: Transform + pos: -74.5,-59.5 + parent: 2 + - uid: 21638 + components: + - type: Transform + pos: -74.5,-58.5 + parent: 2 + - uid: 21639 + components: + - type: Transform + pos: -74.5,-57.5 + parent: 2 + - uid: 21640 + components: + - type: Transform + pos: -74.5,-56.5 + parent: 2 + - uid: 21641 + components: + - type: Transform + pos: -75.5,-56.5 + parent: 2 + - uid: 21642 + components: + - type: Transform + pos: -72.5,-56.5 + parent: 2 + - uid: 21643 + components: + - type: Transform + pos: -72.5,-57.5 + parent: 2 + - uid: 21644 + components: + - type: Transform + pos: -72.5,-58.5 + parent: 2 + - uid: 21645 + components: + - type: Transform + pos: -72.5,-59.5 + parent: 2 + - uid: 21646 + components: + - type: Transform + pos: -72.5,-60.5 + parent: 2 + - uid: 21647 + components: + - type: Transform + pos: -71.5,-56.5 + parent: 2 + - uid: 21648 + components: + - type: Transform + pos: -70.5,-56.5 + parent: 2 + - uid: 21649 + components: + - type: Transform + pos: -70.5,-57.5 + parent: 2 + - uid: 21650 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 2 + - uid: 21651 + components: + - type: Transform + pos: -70.5,-59.5 + parent: 2 + - uid: 21652 + components: + - type: Transform + pos: -70.5,-60.5 + parent: 2 + - uid: 21653 + components: + - type: Transform + pos: -68.5,-60.5 + parent: 2 + - uid: 21654 + components: + - type: Transform + pos: -68.5,-59.5 + parent: 2 + - uid: 21655 + components: + - type: Transform + pos: -68.5,-58.5 + parent: 2 + - uid: 21656 + components: + - type: Transform + pos: -68.5,-56.5 + parent: 2 + - uid: 21657 + components: + - type: Transform + pos: -68.5,-57.5 + parent: 2 + - uid: 21658 + components: + - type: Transform + pos: -67.5,-56.5 + parent: 2 + - uid: 21659 + components: + - type: Transform + pos: -66.5,-56.5 + parent: 2 + - uid: 21660 + components: + - type: Transform + pos: -66.5,-57.5 + parent: 2 + - uid: 21661 + components: + - type: Transform + pos: -66.5,-58.5 + parent: 2 + - uid: 21662 + components: + - type: Transform + pos: -66.5,-59.5 + parent: 2 + - uid: 21663 + components: + - type: Transform + pos: -66.5,-60.5 + parent: 2 + - uid: 21664 + components: + - type: Transform + pos: -63.5,-56.5 + parent: 2 + - uid: 21665 + components: + - type: Transform + pos: -63.5,-55.5 + parent: 2 + - uid: 21666 + components: + - type: Transform + pos: -63.5,-54.5 + parent: 2 + - uid: 21667 + components: + - type: Transform + pos: -62.5,-54.5 + parent: 2 + - uid: 21668 + components: + - type: Transform + pos: -64.5,-54.5 + parent: 2 + - uid: 21681 + components: + - type: Transform + pos: -62.5,-48.5 + parent: 2 + - uid: 21682 + components: + - type: Transform + pos: -62.5,-49.5 + parent: 2 + - uid: 21683 + components: + - type: Transform + pos: -62.5,-50.5 + parent: 2 + - uid: 21684 + components: + - type: Transform + pos: -62.5,-51.5 + parent: 2 + - uid: 21685 + components: + - type: Transform + pos: -62.5,-52.5 + parent: 2 + - uid: 21686 + components: + - type: Transform + pos: -63.5,-52.5 + parent: 2 + - uid: 21687 + components: + - type: Transform + pos: -64.5,-52.5 + parent: 2 + - uid: 21688 + components: + - type: Transform + pos: -64.5,-51.5 + parent: 2 + - uid: 21689 + components: + - type: Transform + pos: -64.5,-50.5 + parent: 2 + - uid: 21690 + components: + - type: Transform + pos: -64.5,-48.5 + parent: 2 + - uid: 21691 + components: + - type: Transform + pos: -64.5,-49.5 + parent: 2 + - uid: 21692 + components: + - type: Transform + pos: -66.5,-48.5 + parent: 2 + - uid: 21693 + components: + - type: Transform + pos: -66.5,-49.5 + parent: 2 + - uid: 21694 + components: + - type: Transform + pos: -66.5,-50.5 + parent: 2 + - uid: 21695 + components: + - type: Transform + pos: -66.5,-51.5 + parent: 2 + - uid: 21696 + components: + - type: Transform + pos: -66.5,-52.5 + parent: 2 + - uid: 21697 + components: + - type: Transform + pos: -67.5,-52.5 + parent: 2 + - uid: 21698 + components: + - type: Transform + pos: -68.5,-52.5 + parent: 2 + - uid: 21699 + components: + - type: Transform + pos: -68.5,-51.5 + parent: 2 + - uid: 21700 + components: + - type: Transform + pos: -68.5,-50.5 + parent: 2 + - uid: 21701 + components: + - type: Transform + pos: -68.5,-49.5 + parent: 2 + - uid: 21702 + components: + - type: Transform + pos: -68.5,-48.5 + parent: 2 + - uid: 21703 + components: + - type: Transform + pos: -78.5,-54.5 + parent: 2 + - uid: 21704 + components: + - type: Transform + pos: -70.5,-48.5 + parent: 2 + - uid: 21705 + components: + - type: Transform + pos: -70.5,-49.5 + parent: 2 + - uid: 21706 + components: + - type: Transform + pos: -70.5,-50.5 + parent: 2 + - uid: 21707 + components: + - type: Transform + pos: -70.5,-51.5 + parent: 2 + - uid: 21708 + components: + - type: Transform + pos: -70.5,-52.5 + parent: 2 + - uid: 21709 + components: + - type: Transform + pos: -71.5,-52.5 + parent: 2 + - uid: 21710 + components: + - type: Transform + pos: -72.5,-52.5 + parent: 2 + - uid: 21711 + components: + - type: Transform + pos: -72.5,-51.5 + parent: 2 + - uid: 21712 + components: + - type: Transform + pos: -72.5,-50.5 + parent: 2 + - uid: 21713 + components: + - type: Transform + pos: -72.5,-49.5 + parent: 2 + - uid: 21714 + components: + - type: Transform + pos: -72.5,-48.5 + parent: 2 + - uid: 21715 + components: + - type: Transform + pos: -74.5,-48.5 + parent: 2 + - uid: 21716 + components: + - type: Transform + pos: -74.5,-49.5 + parent: 2 + - uid: 21717 + components: + - type: Transform + pos: -74.5,-50.5 + parent: 2 + - uid: 21718 + components: + - type: Transform + pos: -74.5,-51.5 + parent: 2 + - uid: 21719 + components: + - type: Transform + pos: -74.5,-52.5 + parent: 2 + - uid: 21720 + components: + - type: Transform + pos: -75.5,-52.5 + parent: 2 + - uid: 21721 + components: + - type: Transform + pos: -76.5,-52.5 + parent: 2 + - uid: 21722 + components: + - type: Transform + pos: -76.5,-51.5 + parent: 2 + - uid: 21723 + components: + - type: Transform + pos: -76.5,-50.5 + parent: 2 + - uid: 21724 + components: + - type: Transform + pos: -76.5,-49.5 + parent: 2 + - uid: 21725 + components: + - type: Transform + pos: -76.5,-48.5 + parent: 2 + - uid: 21726 + components: + - type: Transform + pos: -75.5,-54.5 + parent: 2 + - uid: 21727 + components: + - type: Transform + pos: -71.5,-54.5 + parent: 2 + - uid: 21728 + components: + - type: Transform + pos: -67.5,-54.5 + parent: 2 + - uid: 21729 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 2 + - uid: 22014 + components: + - type: Transform + pos: -40.5,14.5 + parent: 2 + - uid: 22051 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 22087 + components: + - type: Transform + pos: -39.5,14.5 + parent: 2 + - uid: 22170 + components: + - type: Transform + pos: 9.5,8.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: 22184 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 22411 + components: + - type: Transform + pos: -58.5,-48.5 + parent: 2 + - uid: 22412 + components: + - type: Transform + pos: -59.5,-50.5 + parent: 2 + - uid: 22413 + components: + - type: Transform + pos: -59.5,-49.5 + parent: 2 + - uid: 22740 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 + - uid: 22741 + components: + - type: Transform + pos: 15.5,33.5 + parent: 2 + - uid: 22742 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 22743 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - uid: 22744 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 22745 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 22746 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 22747 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 22748 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 22749 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 22750 + components: + - type: Transform + pos: 20.5,29.5 parent: 2 - proto: AtmosFixFreezerMarker entities: @@ -23322,11 +26416,10 @@ entities: parent: 2 - proto: BackgammonBoard entities: - - uid: 7577 + - uid: 10957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.504643,-64.42394 + pos: 9.484991,-71.40378 parent: 2 - proto: BananaPhoneInstrument entities: @@ -23335,12 +26428,12 @@ entities: - type: Transform pos: 13.477564,-30.347912 parent: 2 -- proto: BannerRevolution +- proto: BannerCargo entities: - - uid: 1127 + - uid: 12757 components: - type: Transform - pos: 12.5,-9.5 + pos: -2.5,-95.5 parent: 2 - proto: BannerSyndicate entities: @@ -23351,50 +26444,53 @@ entities: parent: 2 - proto: Barricade entities: - - uid: 3182 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-9.5 - parent: 2 - - uid: 4504 + - uid: 6854 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-11.5 + pos: 31.5,15.5 parent: 2 - uid: 7236 components: - type: Transform pos: 42.5,-27.5 parent: 2 - - uid: 10056 + - uid: 11293 components: - type: Transform - pos: -34.5,-50.5 + pos: -35.5,-17.5 parent: 2 - uid: 12704 components: - type: Transform pos: 16.5,12.5 parent: 2 - - uid: 13218 + - uid: 14193 components: - type: Transform - pos: 12.5,-14.5 + pos: -39.5,-44.5 parent: 2 -- proto: BarricadeBlock - entities: - - uid: 4666 + - uid: 17809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-12.5 + pos: 33.5,25.5 parent: 2 - - uid: 15868 + - uid: 17814 components: - type: Transform - pos: 11.5,-14.5 + rot: -1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 + - uid: 22176 + components: + - type: Transform + pos: 50.5,-33.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 14192 + components: + - type: Transform + pos: -39.5,-45.5 parent: 2 - uid: 20702 components: @@ -23403,6 +26499,18 @@ entities: parent: 2 - proto: BarricadeDirectional entities: + - uid: 5352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,15.5 + parent: 2 - uid: 12651 components: - type: Transform @@ -23430,20 +26538,20 @@ entities: - type: Transform pos: 46.5,13.5 parent: 2 -- proto: BaseComputer +- proto: BaseComputerAiAccess entities: - - uid: 3850 + - uid: 10504 components: - type: Transform - pos: 20.5,-35.5 + pos: -40.5,-52.5 parent: 2 - proto: BaseGasCondenser entities: - - uid: 5296 + - uid: 12136 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-37.5 + pos: -39.5,-35.5 parent: 2 - proto: BassGuitarInstrument entities: @@ -23474,11 +26582,6 @@ entities: - type: Transform pos: -25.650852,22.879078 parent: 2 - - uid: 19019 - components: - - type: Transform - pos: -34.68502,-41.23079 - parent: 2 - uid: 20001 components: - type: Transform @@ -23521,21 +26624,11 @@ entities: - type: Transform pos: 5.5,-27.5 parent: 2 - - uid: 3153 - components: - - type: Transform - pos: -40.5,-38.5 - parent: 2 - uid: 3580 components: - type: Transform pos: 6.5,-31.5 parent: 2 - - uid: 3792 - components: - - type: Transform - pos: 7.5,-45.5 - parent: 2 - uid: 3793 components: - type: Transform @@ -23556,25 +26649,35 @@ entities: - type: Transform pos: 6.5,-33.5 parent: 2 - - uid: 6046 + - uid: 6134 components: - type: Transform - pos: 7.5,-41.5 + pos: 39.5,0.5 parent: 2 - - uid: 6134 + - uid: 9560 components: - type: Transform - pos: 39.5,0.5 + pos: -7.5,19.5 parent: 2 - - uid: 8185 + - uid: 12870 components: - type: Transform - pos: -52.5,-45.5 + pos: -57.5,-28.5 parent: 2 - - uid: 9560 + - uid: 13080 components: - type: Transform - pos: -7.5,19.5 + pos: -52.5,-21.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + pos: 7.5,-45.5 + parent: 2 + - uid: 13804 + components: + - type: Transform + pos: 7.5,-41.5 parent: 2 - uid: 13814 components: @@ -23596,6 +26699,11 @@ entities: - type: Transform pos: -22.5,12.5 parent: 2 + - uid: 18411 + components: + - type: Transform + pos: 35.5,26.5 + parent: 2 - uid: 18843 components: - type: Transform @@ -23648,11 +26756,11 @@ entities: parent: 2 - proto: BedsheetCMO entities: - - uid: 2526 + - uid: 13081 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-38.5 + pos: -52.5,-21.5 parent: 2 - proto: BedsheetCult entities: @@ -23685,25 +26793,16 @@ entities: parent: 2 - proto: BedsheetMedical entities: - - uid: 471 - components: - - type: Transform - pos: -33.5,-23.5 - parent: 2 - - uid: 13012 - components: - - type: Transform - pos: -38.5,-20.5 - parent: 2 - uid: 14081 components: - type: Transform pos: 21.5,-59.5 parent: 2 - - uid: 20708 + - uid: 21874 components: - type: Transform - pos: -39.5,-24.5 + rot: 1.5707963267948966 rad + pos: 18.5,0.5 parent: 2 - proto: BedsheetMime entities: @@ -23742,15 +26841,15 @@ entities: parent: 2 - proto: BedsheetSpawner entities: - - uid: 822 + - uid: 474 components: - type: Transform - pos: -9.5,25.5 + pos: 7.5,-45.5 parent: 2 - - uid: 3533 + - uid: 822 components: - type: Transform - pos: 7.5,-45.5 + pos: -9.5,25.5 parent: 2 - uid: 3795 components: @@ -23762,37 +26861,42 @@ entities: - type: Transform pos: 38.5,-1.5 parent: 2 - - uid: 4861 + - uid: 6048 components: - type: Transform - pos: 7.5,-41.5 + pos: 39.5,0.5 parent: 2 - - uid: 6048 + - uid: 11963 components: - type: Transform - pos: 39.5,0.5 + pos: 26.5,-2.5 parent: 2 - - uid: 8150 + - uid: 13734 components: - type: Transform - pos: -52.5,-45.5 + pos: 7.5,-41.5 parent: 2 - uid: 17060 components: - type: Transform pos: -42.5,-5.5 parent: 2 -- proto: BikeHorn - entities: - - uid: 3811 + - uid: 17711 + components: + - type: Transform + pos: 35.5,26.5 + parent: 2 + - uid: 17794 components: - type: Transform - pos: 2.7397208,-18.205833 + pos: 38.5,25.5 parent: 2 +- proto: BikeHorn + entities: - uid: 6177 components: - type: Transform - pos: 36.32241,-6.4210362 + pos: 35.50801,-6.4720173 parent: 2 - uid: 17565 components: @@ -23808,15 +26912,15 @@ entities: parent: 2 - proto: Biogenerator entities: - - uid: 3415 + - uid: 20257 components: - type: Transform - pos: -16.5,-37.5 + pos: -38.5,-1.5 parent: 2 - - uid: 20257 + - uid: 22709 components: - type: Transform - pos: -38.5,-1.5 + pos: -16.5,-36.5 parent: 2 - proto: BlastDoor entities: @@ -23828,31 +26932,39 @@ entities: - uid: 306 components: - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,14.5 parent: 2 - uid: 368 components: - type: Transform + rot: 1.5707963267948966 rad pos: 11.5,14.5 parent: 2 - - uid: 1653 + - uid: 1268 components: - type: Transform - pos: 9.5,-3.5 + pos: 7.5,3.5 parent: 2 - - uid: 1663 + - uid: 1324 components: - type: Transform - pos: 9.5,-2.5 + pos: 11.5,3.5 parent: 2 - - uid: 1959 + - uid: 2954 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 2989 components: - type: Transform - pos: 9.5,-6.5 + pos: 8.5,-6.5 parent: 2 - uid: 3501 components: - type: Transform + rot: 1.5707963267948966 rad pos: 12.5,14.5 parent: 2 - uid: 3508 @@ -23860,39 +26972,31 @@ entities: - type: Transform pos: 36.5,-34.5 parent: 2 - - uid: 5799 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 2 - uid: 5917 components: - type: Transform pos: 58.5,-45.5 parent: 2 - - uid: 7261 - components: - - type: Transform - pos: 52.5,-47.5 - parent: 2 - - uid: 7967 + - uid: 6106 components: - type: Transform - pos: -31.5,-55.5 + pos: 8.5,-7.5 parent: 2 - - uid: 7974 + - uid: 7261 components: - type: Transform - pos: -31.5,-54.5 + pos: 52.5,-47.5 parent: 2 - uid: 8141 components: - type: Transform + rot: 1.5707963267948966 rad pos: 6.5,29.5 parent: 2 - uid: 9057 components: - type: Transform + rot: -1.5707963267948966 rad pos: 2.5,29.5 parent: 2 - uid: 9113 @@ -23900,15 +27004,25 @@ entities: - type: Transform pos: 32.5,-58.5 parent: 2 - - uid: 18130 + - uid: 12822 components: - type: Transform - pos: 30.5,-58.5 + pos: -12.5,-92.5 parent: 2 - - uid: 18816 + - uid: 15052 components: - type: Transform - pos: 9.5,-4.5 + pos: 12.5,-96.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + pos: 11.5,-96.5 + parent: 2 + - uid: 18130 + components: + - type: Transform + pos: 30.5,-58.5 parent: 2 - proto: BlastDoorWindows entities: @@ -23926,10 +27040,10 @@ entities: parent: 2 - proto: BlockGameArcadeComputerCircuitboard entities: - - uid: 17647 + - uid: 9422 components: - type: Transform - pos: 13.542375,-19.466818 + pos: 5.550997,-16.40295 parent: 2 - proto: BodyBagFolded entities: @@ -23943,6 +27057,11 @@ entities: - type: Transform pos: 37.41686,-27.151522 parent: 2 + - uid: 16321 + components: + - type: Transform + pos: -48.520058,-50.29567 + parent: 2 - proto: BookAtmosVentsMore entities: - uid: 3061 @@ -23952,10 +27071,10 @@ entities: parent: 2 - proto: BookBartendersManual entities: - - uid: 3722 + - uid: 9269 components: - type: Transform - pos: 0.39677143,-45.382183 + pos: 2.4676845,-45.374935 parent: 2 - proto: BookNarsieLegend entities: @@ -23966,10 +27085,10 @@ entities: parent: 2 - proto: BookRandomStory entities: - - uid: 103 + - uid: 1660 components: - type: Transform - pos: 18.53138,-35.528824 + pos: 14.5179,0.6014401 parent: 2 - uid: 3651 components: @@ -23981,20 +27100,45 @@ entities: - type: Transform pos: 13.654222,-36.337326 parent: 2 - - uid: 8148 + - uid: 7110 + components: + - type: Transform + pos: 17.524298,-41.315758 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: 18.36901,-38.345722 + parent: 2 + - uid: 7648 components: - type: Transform - pos: -50.48518,-47.42868 + pos: 19.588366,-38.335297 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: -59.59441,-30.16561 + parent: 2 + - uid: 20839 + components: + - type: Transform + pos: 15.429813,-62.458412 parent: 2 - proto: BooksBag entities: - uid: 6002 components: - type: Transform - pos: 20.434483,-38.20227 + pos: 22.603266,-41.47055 parent: 2 - proto: BookshelfFilled entities: + - uid: 860 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 - uid: 1853 components: - type: Transform @@ -24010,16 +27154,6 @@ entities: - type: Transform pos: 14.5,-35.5 parent: 2 - - uid: 3755 - components: - - type: Transform - pos: 18.5,-40.5 - parent: 2 - - uid: 3758 - components: - - type: Transform - pos: 18.5,-39.5 - parent: 2 - uid: 3776 components: - type: Transform @@ -24060,26 +27194,36 @@ entities: - type: Transform pos: 35.5,-1.5 parent: 2 - - uid: 8064 + - uid: 6904 components: - type: Transform - pos: -50.5,-39.5 + pos: 18.5,-35.5 parent: 2 - - uid: 13174 + - uid: 9520 components: - type: Transform - pos: 9.5,-51.5 + pos: 19.5,-35.5 parent: 2 - - uid: 18853 + - uid: 10920 components: - type: Transform - pos: 18.5,-38.5 + pos: 17.5,-44.5 + parent: 2 + - uid: 10923 + components: + - type: Transform + pos: 18.5,-37.5 parent: 2 - uid: 20225 components: - type: Transform pos: -40.5,-0.5 parent: 2 + - uid: 21491 + components: + - type: Transform + pos: 19.5,-44.5 + parent: 2 - proto: BookSpaceLaw entities: - uid: 497 @@ -24089,11 +27233,11 @@ entities: parent: 2 - proto: BoozeDispenser entities: - - uid: 3703 + - uid: 16007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-45.5 + rot: -1.5707963267948966 rad + pos: -4.5,-44.5 parent: 2 - proto: BoozeDispenserMachineCircuitboard entities: @@ -24104,21 +27248,19 @@ entities: parent: 2 - proto: BorgCharger entities: - - uid: 4202 + - uid: 3287 components: - type: Transform - pos: 37.5,-24.5 + pos: 19.5,-18.5 parent: 2 - - uid: 9147 + - uid: 4202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-18.5 + pos: 37.5,-24.5 parent: 2 - - uid: 9148 + - uid: 11102 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 - uid: 16585 @@ -24136,19 +27278,12 @@ entities: - type: Transform pos: 27.5,-24.5 parent: 2 -- proto: BorgModuleCable +- proto: BorgModuleGardening entities: - - uid: 4266 - components: - - type: Transform - pos: 36.50517,-24.474092 - parent: 2 -- proto: BorgModuleFireExtinguisher - entities: - - uid: 6603 + - uid: 15620 components: - type: Transform - pos: -20.50441,-13.4179735 + pos: 5.522452,-55.39996 parent: 2 - proto: BoxBeaker entities: @@ -24162,10 +27297,10 @@ entities: - type: Transform pos: -13.518328,-33.4524 parent: 2 - - uid: 4827 + - uid: 12112 components: - type: Transform - pos: -30.431562,-33.632877 + pos: -28.489655,-38.298656 parent: 2 - proto: BoxBodyBag entities: @@ -24174,10 +27309,10 @@ entities: - type: Transform pos: -28.647797,12.72903 parent: 2 - - uid: 8112 + - uid: 14107 components: - type: Transform - pos: -43.7055,-45.38466 + pos: -49.45411,-43.38514 parent: 2 - proto: BoxCandle entities: @@ -24207,10 +27342,10 @@ entities: parent: 2 - proto: BoxFlare entities: - - uid: 6202 + - uid: 21970 components: - type: Transform - pos: -33.211655,-57.315544 + pos: 27.50103,29.672012 parent: 2 - proto: BoxFlashbang entities: @@ -24219,23 +27354,6 @@ entities: - type: Transform pos: -24.289831,13.800506 parent: 2 -- proto: BoxFolderBase - entities: - - uid: 3550 - components: - - type: Transform - pos: -6.4270163,-59.288963 - parent: 2 - - uid: 10154 - components: - - type: Transform - pos: -34.33748,-45.39844 - parent: 2 - - uid: 15840 - components: - - type: Transform - pos: -20.579294,-16.367939 - parent: 2 - proto: BoxFolderBlack entities: - uid: 6937 @@ -24250,6 +27368,11 @@ entities: - type: Transform pos: -0.5900409,16.696323 parent: 2 + - uid: 7225 + components: + - type: Transform + pos: -38.58369,-52.07165 + parent: 2 - uid: 15660 components: - type: Transform @@ -24262,21 +27385,6 @@ entities: - type: Transform pos: -27.573792,6.6655574 parent: 2 - - uid: 3355 - components: - - type: Transform - pos: 6.2848144,-19.181017 - parent: 2 - - uid: 3405 - components: - - type: Transform - pos: -21.12123,-16.367939 - parent: 2 - - uid: 4220 - components: - - type: Transform - pos: 26.561565,-38.33152 - parent: 2 - uid: 4370 components: - type: Transform @@ -24287,55 +27395,25 @@ entities: - type: Transform pos: 35.35821,-41.39188 parent: 2 - - uid: 7004 + - uid: 6124 components: - type: Transform - pos: 23.40841,-9.414159 + pos: 26.412817,-9.459768 parent: 2 - uid: 7434 components: - type: Transform pos: 32.493713,-75.42588 parent: 2 - - uid: 8199 - components: - - type: Transform - pos: -51.344456,-42.40107 - parent: 2 - - uid: 8246 - components: - - type: Transform - pos: -44.50448,-46.445023 - parent: 2 - - uid: 9530 - components: - - type: Transform - pos: 29.347668,4.005797 - parent: 2 - - uid: 10153 - components: - - type: Transform - pos: -34.61887,-45.17954 - parent: 2 - uid: 11326 components: - type: Transform pos: -0.45460415,20.563332 parent: 2 - - uid: 11471 - components: - - type: Transform - pos: -45.666264,-22.196106 - parent: 2 - - uid: 12351 - components: - - type: Transform - pos: -38.490253,-52.398266 - parent: 2 - - uid: 12705 + - uid: 14160 components: - type: Transform - pos: -41.631638,-34.40459 + pos: -50.387123,-43.41601 parent: 2 - proto: BoxFolderRed entities: @@ -24349,19 +27427,29 @@ entities: - type: Transform pos: -11.744785,-48.486874 parent: 2 -- proto: BoxHandcuff +- proto: BoxFolderWhite entities: - - uid: 92 + - uid: 7125 components: - type: Transform - pos: -24.623165,13.57118 + pos: -28.792606,-26.384033 + parent: 2 + - uid: 7209 + components: + - type: Transform + pos: -38.333565,-52.363518 + parent: 2 + - uid: 9392 + components: + - type: Transform + pos: -48.165825,-22.388607 parent: 2 -- proto: BoxHeadset +- proto: BoxHandcuff entities: - - uid: 6563 + - uid: 92 components: - type: Transform - pos: 25.569305,0.7293166 + pos: -24.623165,13.57118 parent: 2 - proto: BoxInflatable entities: @@ -24370,6 +27458,16 @@ entities: - type: Transform pos: 43.5346,-56.293934 parent: 2 + - uid: 12745 + components: + - type: Transform + pos: 3.5959587,-55.335243 + parent: 2 + - uid: 22457 + components: + - type: Transform + pos: 34.47513,19.678007 + parent: 2 - proto: BoxingBell entities: - uid: 1813 @@ -24380,17 +27478,22 @@ entities: parent: 2 - proto: BoxLatexGloves entities: - - uid: 8261 + - uid: 12948 components: - type: Transform - pos: -52.343967,-43.392303 + pos: -54.49606,-31.291697 parent: 2 - proto: BoxLightbulb entities: - uid: 8656 components: - type: Transform - pos: 46.449215,10.650298 + pos: 46.489723,11.467377 + parent: 2 + - uid: 16919 + components: + - type: Transform + pos: -45.50232,-50.33289 parent: 2 - proto: BoxLightMixed entities: @@ -24414,29 +27517,15 @@ entities: - type: Transform pos: 28.525217,-53.325924 parent: 2 - - uid: 9405 - components: - - type: Transform - pos: 29.384245,-0.22353017 - parent: 2 -- proto: BoxLighttube - entities: - - uid: 18477 - components: - - type: Transform - pos: -28.617266,-22.280603 - parent: 2 -- proto: BoxLighttubeHoliday - entities: - - uid: 9938 + - uid: 7583 components: - type: Transform - pos: 29.49191,-0.29796058 + pos: 6.464714,-58.303185 parent: 2 - - uid: 17182 + - uid: 9405 components: - type: Transform - pos: -42.507454,-51.406326 + pos: 25.001753,-0.25277233 parent: 2 - proto: BoxMouthSwab entities: @@ -24445,122 +27534,79 @@ entities: - type: Transform pos: -15.52203,-39.383137 parent: 2 - - uid: 8202 + - uid: 12944 components: - type: Transform - pos: -52.57325,-40.37556 + pos: -55.506977,-31.364613 parent: 2 - proto: BoxMRE entities: - uid: 711 components: - type: Transform - pos: -38.60202,-2.1711364 + pos: -36.213997,-2.385151 parent: 2 -- proto: BoxPerformer - entities: - - uid: 16061 + - uid: 3559 components: - type: Transform - pos: 8.491663,4.564948 + pos: -33.63912,-3.2371044 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: This decreases your running speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: BoxPillCanister +- proto: BoxPerformer entities: - - uid: 4881 - components: - - type: Transform - pos: -30.64672,-36.300823 - parent: 2 - - uid: 14355 + - uid: 1914 components: - type: Transform - pos: -28.371738,-22.4565 + pos: -28.44429,-60.246056 parent: 2 - proto: BoxSterileMask entities: - - uid: 7813 - components: - - type: Transform - pos: -52.51393,-43.28739 - parent: 2 - - uid: 16072 - components: - - type: Transform - pos: -52.66481,-27.294983 - parent: 2 -- proto: BoxSyringe - entities: - - uid: 5004 - components: - - type: Transform - pos: -37.390774,-24.717043 - parent: 2 - - uid: 8196 + - uid: 12978 components: - type: Transform - pos: -52.667046,-43.20467 + pos: -53.360077,-28.385447 parent: 2 - - uid: 14713 + - uid: 14857 components: - type: Transform - pos: -28.517572,-22.383532 + pos: -45.32631,-23.570742 parent: 2 - proto: BoxTrashbag entities: - - uid: 9426 + - uid: 7699 components: - type: Transform - pos: 29.613523,-0.37988842 + pos: -33.368153,-3.3621044 parent: 2 -- proto: BoxVial - entities: - - uid: 836 + - uid: 9426 components: - type: Transform - pos: -34.3832,-34.664165 + pos: 26.481653,-0.31531549 parent: 2 - proto: BrbSign entities: - uid: 902 components: - type: Transform - pos: -15.814975,-48.593403 + pos: -16.012146,-48.421722 parent: 2 - uid: 4177 components: - type: Transform pos: 18.417604,-25.98257 parent: 2 -- proto: BriefcaseBrownFilled +- proto: BriefcaseBrown entities: - - uid: 6138 + - uid: 22490 components: - type: Transform - pos: 45.45511,-32.147636 + pos: 22.319017,-4.6095977 parent: 2 - - uid: 10150 +- proto: BriefcaseBrownFilled + entities: + - uid: 6138 components: - type: Transform - pos: -34.26079,-45.966408 + pos: 45.45511,-32.147636 parent: 2 - uid: 13857 components: @@ -24594,6 +27640,13 @@ entities: - type: Transform pos: 48.008686,10.467797 parent: 2 +- proto: Brutepack + entities: + - uid: 21313 + components: + - type: Transform + pos: -44.51362,-29.417643 + parent: 2 - proto: Brutepack1 entities: - uid: 2253 @@ -24621,20 +27674,20 @@ entities: pos: -13.459316,-32.28296 parent: 2 - type: Conveyed - - uid: 3726 + - uid: 5753 components: - type: Transform - pos: -1.6873779,-45.24459 + pos: 44.459606,17.581608 parent: 2 - - uid: 9552 + - uid: 12191 components: - type: Transform - pos: 23.514273,5.680741 + pos: 6.654245,-55.511364 parent: 2 - - uid: 9553 + - uid: 15039 components: - type: Transform - pos: 27.547523,0.6876904 + pos: -0.3603983,-45.15794 parent: 2 - uid: 17548 components: @@ -24646,18 +27699,23 @@ entities: - type: Transform pos: -8.508354,12.687243 parent: 2 - - uid: 18981 + - uid: 21372 components: - type: Transform - pos: 35.743057,18.362583 + pos: 26.700512,-0.24234867 + parent: 2 + - uid: 21373 + components: + - type: Transform + pos: 26.335749,-0.1798048 parent: 2 - proto: ButtonFrameCaution entities: - - uid: 22 + - uid: 284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-35.5 + rot: 3.141592653589793 rad + pos: -28.5,-49.5 parent: 2 - uid: 495 components: @@ -24677,6 +27735,30 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-35.5 parent: 2 + - uid: 668 + components: + - type: Transform + 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 @@ -24695,6 +27777,11 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-52.5 parent: 2 + - uid: 9596 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 - uid: 11422 components: - type: Transform @@ -24707,23 +27794,17 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-48.5 parent: 2 - - uid: 15432 + - uid: 12483 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,-43.5 - parent: 2 - - uid: 16044 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-35.5 + pos: -26.5,-12.5 parent: 2 - - uid: 16053 + - uid: 15432 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-27.5 + pos: 38.5,-43.5 parent: 2 - uid: 17054 components: @@ -24748,71 +27829,106 @@ entities: - type: Transform pos: -1.5,-42.5 parent: 2 -- proto: ButtonFrameExit - entities: - - uid: 15652 + - uid: 21222 components: - type: Transform - pos: -29.5,-28.5 + rot: 1.5707963267948966 rad + pos: -46.5,-38.5 parent: 2 - - uid: 16114 + - uid: 21232 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-27.5 + pos: -46.5,-23.5 parent: 2 -- proto: ButtonFrameGrey - entities: - - uid: 2042 + - uid: 21241 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-8.5 + pos: -46.5,-25.5 parent: 2 - - uid: 3829 + - uid: 21249 components: - type: Transform - pos: 5.5,-5.5 + rot: -1.5707963267948966 rad + pos: -26.5,-35.5 parent: 2 - - uid: 4283 + - uid: 22711 components: - type: Transform - pos: 37.5,-33.5 + rot: -1.5707963267948966 rad + pos: -23.5,9.5 parent: 2 - - uid: 4328 + - uid: 22718 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-39.5 + pos: -23.5,14.5 parent: 2 - - uid: 7624 + - uid: 22729 components: - type: Transform - pos: 35.5,-23.5 + rot: 1.5707963267948966 rad + pos: -27.5,-2.5 parent: 2 - - uid: 9539 + - uid: 22774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-0.5 + pos: -31.5,-21.5 parent: 2 - - uid: 10659 +- proto: ButtonFrameExit + entities: + - uid: 1561 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 1782 + components: + - type: Transform + pos: -38.5,-31.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-26.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-33.5 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 583 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-56.5 + pos: -30.31269,-26.495672 parent: 2 - - uid: 15409 + - uid: 4283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 + pos: 37.5,-33.5 parent: 2 - - uid: 15412 + - uid: 4328 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-5.5 + pos: 37.5,-39.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 8592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.7203,-26.495672 parent: 2 - uid: 17446 components: @@ -24838,12 +27954,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-2.5 parent: 2 - - uid: 1330 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.498238,-27.753994 - parent: 2 - uid: 16116 components: - type: Transform @@ -24862,6 +27972,18 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 + - uid: 21750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-25.5 + parent: 2 + - uid: 21753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-38.5 + parent: 2 - proto: CableApcExtension entities: - uid: 3 @@ -24889,6 +28011,11 @@ entities: - type: Transform pos: -16.5,29.5 parent: 2 + - uid: 118 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 - uid: 119 components: - type: Transform @@ -24899,20 +28026,25 @@ entities: - type: Transform pos: -14.5,-49.5 parent: 2 - - uid: 181 + - uid: 139 components: - type: Transform - pos: -51.5,-43.5 + pos: -33.5,9.5 parent: 2 - - uid: 182 + - uid: 162 components: - type: Transform - pos: -0.5,27.5 + pos: 25.5,-14.5 parent: 2 - - uid: 186 + - uid: 180 components: - type: Transform - pos: -43.5,-40.5 + pos: -30.5,-45.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: -0.5,27.5 parent: 2 - uid: 188 components: @@ -24929,30 +28061,30 @@ entities: - type: Transform pos: 11.5,17.5 parent: 2 - - uid: 244 + - uid: 198 components: - type: Transform - pos: 15.5,-5.5 + pos: -4.5,-9.5 parent: 2 - - uid: 262 + - uid: 202 components: - type: Transform - pos: 14.5,-5.5 + pos: 2.5,-11.5 parent: 2 - - uid: 295 + - uid: 219 components: - type: Transform - pos: -4.5,-51.5 + pos: -63.5,-60.5 parent: 2 - - uid: 304 + - uid: 276 components: - type: Transform - pos: -23.5,15.5 + pos: -1.5,-11.5 parent: 2 - - uid: 310 + - uid: 279 components: - type: Transform - pos: -40.5,-37.5 + pos: -4.5,-7.5 parent: 2 - uid: 329 components: @@ -24999,6 +28131,11 @@ entities: - type: Transform pos: -23.5,-3.5 parent: 2 + - uid: 445 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 - uid: 451 components: - type: Transform @@ -25054,16 +28191,6 @@ entities: - type: Transform pos: -25.5,-7.5 parent: 2 - - uid: 507 - components: - - type: Transform - pos: 14.5,-18.5 - parent: 2 - - uid: 510 - components: - - type: Transform - pos: 35.5,14.5 - parent: 2 - uid: 540 components: - type: Transform @@ -25124,11 +28251,6 @@ entities: - type: Transform pos: 9.5,17.5 parent: 2 - - uid: 573 - components: - - type: Transform - pos: -4.5,-10.5 - parent: 2 - uid: 575 components: - type: Transform @@ -25149,51 +28271,26 @@ entities: - type: Transform pos: -19.5,26.5 parent: 2 - - uid: 612 + - uid: 598 components: - type: Transform - pos: -29.5,-10.5 + pos: 21.5,24.5 parent: 2 - uid: 615 components: - type: Transform pos: -15.5,0.5 parent: 2 - - uid: 621 - components: - - type: Transform - pos: -9.5,-3.5 - parent: 2 - - uid: 633 - components: - - type: Transform - pos: -9.5,-1.5 - parent: 2 - - uid: 634 - components: - - type: Transform - pos: -9.5,-4.5 - parent: 2 - - uid: 635 + - uid: 630 components: - type: Transform - pos: -8.5,-4.5 + pos: -25.5,17.5 parent: 2 - uid: 636 components: - type: Transform pos: -7.5,-4.5 parent: 2 - - uid: 645 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 2 - - uid: 650 - components: - - type: Transform - pos: 12.5,-6.5 - parent: 2 - uid: 653 components: - type: Transform @@ -25229,35 +28326,30 @@ entities: - type: Transform pos: -28.5,-10.5 parent: 2 - - uid: 695 + - uid: 681 components: - type: Transform - pos: -25.5,-10.5 + pos: 20.5,22.5 parent: 2 - - uid: 710 + - uid: 688 components: - type: Transform - pos: -23.5,14.5 + pos: 14.5,-17.5 parent: 2 - - uid: 715 + - uid: 695 components: - type: Transform - pos: -26.5,16.5 + pos: -25.5,-10.5 parent: 2 - uid: 744 components: - type: Transform - pos: 18.5,21.5 + pos: -55.5,-51.5 parent: 2 - uid: 746 components: - type: Transform - pos: 18.5,22.5 - parent: 2 - - uid: 757 - components: - - type: Transform - pos: 14.5,23.5 + pos: -56.5,-51.5 parent: 2 - uid: 759 components: @@ -25274,25 +28366,15 @@ entities: - type: Transform pos: 12.5,24.5 parent: 2 - - uid: 772 - components: - - type: Transform - pos: 14.5,20.5 - parent: 2 - uid: 774 components: - type: Transform pos: 15.5,22.5 parent: 2 - - uid: 776 - components: - - type: Transform - pos: 14.5,19.5 - parent: 2 - - uid: 777 + - uid: 794 components: - type: Transform - pos: 14.5,18.5 + pos: 11.5,-17.5 parent: 2 - uid: 796 components: @@ -25309,15 +28391,20 @@ entities: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 848 + - uid: 844 components: - type: Transform - pos: 35.5,15.5 + pos: 16.5,-17.5 parent: 2 - - uid: 865 + - uid: 854 components: - type: Transform - pos: -30.5,-61.5 + pos: 47.5,20.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: 0.5,23.5 parent: 2 - uid: 876 components: @@ -25334,11 +28421,6 @@ entities: - type: Transform pos: -21.5,-41.5 parent: 2 - - uid: 886 - components: - - type: Transform - pos: -35.5,12.5 - parent: 2 - uid: 909 components: - type: Transform @@ -25399,36 +28481,6 @@ entities: - type: Transform pos: 16.5,24.5 parent: 2 - - uid: 935 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 - - uid: 936 - components: - - type: Transform - pos: 17.5,24.5 - parent: 2 - - uid: 937 - components: - - type: Transform - pos: 18.5,24.5 - parent: 2 - - uid: 938 - components: - - type: Transform - pos: 16.5,22.5 - parent: 2 - - uid: 941 - components: - - type: Transform - pos: 17.5,28.5 - parent: 2 - - uid: 942 - components: - - type: Transform - pos: 13.5,28.5 - parent: 2 - uid: 943 components: - type: Transform @@ -25439,41 +28491,6 @@ entities: - type: Transform pos: 9.5,28.5 parent: 2 - - uid: 945 - components: - - type: Transform - pos: 14.5,28.5 - parent: 2 - - uid: 947 - components: - - type: Transform - pos: 18.5,28.5 - parent: 2 - - uid: 948 - components: - - type: Transform - pos: 18.5,29.5 - parent: 2 - - uid: 949 - components: - - type: Transform - pos: 18.5,30.5 - parent: 2 - - uid: 950 - components: - - type: Transform - pos: 15.5,28.5 - parent: 2 - - uid: 951 - components: - - type: Transform - pos: 16.5,28.5 - parent: 2 - - uid: 952 - components: - - type: Transform - pos: -9.5,19.5 - parent: 2 - uid: 953 components: - type: Transform @@ -25519,25 +28536,35 @@ entities: - type: Transform pos: -4.5,18.5 parent: 2 - - uid: 967 + - uid: 968 components: - type: Transform - pos: 17.5,22.5 + pos: -6.5,16.5 parent: 2 - - uid: 968 + - uid: 974 components: - type: Transform - pos: -6.5,16.5 + pos: -33.5,15.5 parent: 2 - - uid: 970 + - uid: 980 components: - type: Transform - pos: 8.5,-52.5 + pos: -20.5,-12.5 parent: 2 - - uid: 974 + - uid: 1029 components: - type: Transform - pos: -33.5,15.5 + pos: -8.5,-2.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: -8.5,-1.5 parent: 2 - uid: 1052 components: @@ -25547,7 +28574,7 @@ entities: - uid: 1061 components: - type: Transform - pos: -27.5,-19.5 + pos: -10.5,-2.5 parent: 2 - uid: 1069 components: @@ -25559,30 +28586,30 @@ entities: - type: Transform pos: 37.5,-14.5 parent: 2 - - uid: 1172 + - uid: 1092 components: - type: Transform - pos: -36.5,23.5 + pos: -25.5,-45.5 parent: 2 - - uid: 1182 + - uid: 1172 components: - type: Transform - pos: -23.5,7.5 + pos: -36.5,23.5 parent: 2 - - uid: 1238 + - uid: 1175 components: - type: Transform - pos: -25.5,3.5 + pos: 19.5,14.5 parent: 2 - - uid: 1250 + - uid: 1182 components: - type: Transform - pos: -11.5,-54.5 + pos: -23.5,7.5 parent: 2 - - uid: 1251 + - uid: 1238 components: - type: Transform - pos: -11.5,-55.5 + pos: -25.5,3.5 parent: 2 - uid: 1262 components: @@ -25599,71 +28626,56 @@ entities: - type: Transform pos: 41.5,2.5 parent: 2 - - uid: 1280 - components: - - type: Transform - pos: 41.5,3.5 - parent: 2 - - uid: 1282 + - uid: 1276 components: - type: Transform - pos: 3.5,-42.5 + pos: -4.5,-0.5 parent: 2 - - uid: 1285 + - uid: 1292 components: - type: Transform - pos: -10.5,-55.5 + pos: 42.5,2.5 parent: 2 - - uid: 1292 + - uid: 1295 components: - type: Transform - pos: 42.5,2.5 + pos: -8.5,20.5 parent: 2 - uid: 1299 components: - type: Transform pos: -18.5,14.5 parent: 2 - - uid: 1307 + - uid: 1306 components: - type: Transform - pos: -22.5,-41.5 + pos: -8.5,-3.5 parent: 2 - - uid: 1308 + - uid: 1307 components: - type: Transform - pos: -9.5,-55.5 + pos: -22.5,-41.5 parent: 2 - - uid: 1324 + - uid: 1312 components: - type: Transform - pos: 16.5,-18.5 + pos: -17.5,-62.5 parent: 2 - - uid: 1325 + - uid: 1326 components: - type: Transform - pos: 16.5,-16.5 + pos: 7.5,-0.5 parent: 2 - - uid: 1326 + - uid: 1328 components: - type: Transform - pos: 16.5,-17.5 + pos: -20.5,-62.5 parent: 2 - uid: 1332 components: - type: Transform pos: -19.5,25.5 parent: 2 - - uid: 1336 - components: - - type: Transform - pos: -41.5,-36.5 - parent: 2 - - uid: 1337 - components: - - type: Transform - pos: -41.5,-35.5 - parent: 2 - uid: 1350 components: - type: Transform @@ -25709,6 +28721,16 @@ entities: - type: Transform pos: 8.5,25.5 parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 - uid: 1486 components: - type: Transform @@ -25729,16 +28751,31 @@ entities: - type: Transform pos: -0.5,26.5 parent: 2 - - uid: 1509 + - uid: 1497 components: - type: Transform - pos: -37.5,-35.5 + pos: -29.5,-46.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: -25.5,-62.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 15.5,23.5 parent: 2 - uid: 1517 components: - type: Transform pos: -20.5,16.5 parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 - uid: 1523 components: - type: Transform @@ -25764,10 +28801,10 @@ entities: - type: Transform pos: 57.5,-52.5 parent: 2 - - uid: 1537 + - uid: 1538 components: - type: Transform - pos: 3.5,-43.5 + pos: 19.5,22.5 parent: 2 - uid: 1539 components: @@ -25789,10 +28826,15 @@ entities: - type: Transform pos: -16.5,20.5 parent: 2 + - uid: 1554 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 - uid: 1555 components: - type: Transform - pos: -44.5,-25.5 + pos: -27.5,-46.5 parent: 2 - uid: 1581 components: @@ -25819,191 +28861,206 @@ entities: - type: Transform pos: -9.5,-44.5 parent: 2 - - uid: 1678 + - uid: 1661 components: - type: Transform - pos: 3.5,-5.5 + pos: 15.5,28.5 parent: 2 - - uid: 1681 + - uid: 1678 components: - type: Transform - pos: 3.5,-10.5 + pos: 15.5,27.5 parent: 2 - - uid: 1682 + - uid: 1688 components: - type: Transform - pos: 4.5,-10.5 + pos: 33.5,22.5 parent: 2 - - uid: 1700 + - uid: 1693 components: - type: Transform - pos: 4.5,-10.5 + pos: -18.5,-62.5 parent: 2 - - uid: 1707 + - uid: 1699 components: - type: Transform - pos: -52.5,-33.5 + pos: -16.5,-62.5 parent: 2 - - uid: 1719 + - uid: 1701 components: - type: Transform - pos: 20.5,-24.5 + pos: 31.5,-2.5 parent: 2 - - uid: 1728 + - uid: 1703 components: - type: Transform - pos: 2.5,-5.5 + pos: -15.5,-62.5 parent: 2 - - uid: 1729 + - uid: 1706 components: - type: Transform - pos: -51.5,-26.5 + pos: -14.5,-62.5 parent: 2 - - uid: 1738 + - uid: 1719 components: - type: Transform - pos: -52.5,-27.5 + pos: 20.5,-24.5 parent: 2 - - uid: 1739 + - uid: 1729 components: - type: Transform - pos: -49.5,-27.5 + pos: -21.5,-62.5 parent: 2 - - uid: 1761 + - uid: 1730 components: - type: Transform - pos: 6.5,-9.5 + pos: -19.5,-62.5 parent: 2 - - uid: 1762 + - uid: 1770 components: - type: Transform - pos: -49.5,-30.5 + pos: -2.5,-11.5 parent: 2 - - uid: 1769 + - uid: 1777 components: - type: Transform - pos: 23.5,13.5 + pos: -2.5,-7.5 parent: 2 - - uid: 1770 + - uid: 1807 components: - type: Transform - pos: 22.5,13.5 + pos: 16.5,32.5 parent: 2 - - uid: 1777 + - uid: 1815 components: - type: Transform - pos: 24.5,13.5 + pos: -29.5,-4.5 parent: 2 - - uid: 1782 + - uid: 1816 components: - type: Transform - pos: 6.5,-10.5 + pos: 4.5,7.5 parent: 2 - - uid: 1797 + - uid: 1817 components: - type: Transform - pos: -2.5,-10.5 + pos: 2.5,7.5 parent: 2 - - uid: 1805 + - uid: 1818 components: - type: Transform - pos: -1.5,-6.5 + pos: 3.5,7.5 parent: 2 - - uid: 1808 + - uid: 1820 components: - type: Transform - pos: 24.5,12.5 + pos: -33.5,17.5 parent: 2 - - uid: 1809 + - uid: 1827 components: - type: Transform - pos: 3.5,-41.5 + pos: -35.5,-58.5 parent: 2 - - uid: 1810 + - uid: 1835 components: - type: Transform - pos: -3.5,-10.5 + pos: -22.5,22.5 parent: 2 - - uid: 1811 + - uid: 1847 components: - type: Transform - pos: 5.5,-10.5 + pos: 31.5,-1.5 parent: 2 - - uid: 1812 + - uid: 1848 components: - type: Transform - pos: 6.5,-7.5 + pos: 3.5,-40.5 parent: 2 - - uid: 1814 + - uid: 1859 components: - type: Transform - pos: 1.5,-10.5 + pos: -34.5,-52.5 parent: 2 - - uid: 1815 + - uid: 1861 components: - type: Transform - pos: 0.5,-10.5 + pos: -33.5,-52.5 parent: 2 - - uid: 1816 + - uid: 1862 components: - type: Transform - pos: -0.5,-10.5 + pos: -37.5,-53.5 parent: 2 - - uid: 1818 + - uid: 1865 components: - type: Transform - pos: -1.5,-10.5 + pos: -37.5,-54.5 parent: 2 - - uid: 1820 + - uid: 1867 components: - type: Transform - pos: -33.5,17.5 + pos: -38.5,-54.5 parent: 2 - - uid: 1822 + - uid: 1868 components: - type: Transform - pos: 17.5,3.5 + pos: -36.5,-58.5 parent: 2 - - uid: 1835 + - uid: 1872 components: - type: Transform - pos: -22.5,22.5 + pos: 31.5,-0.5 parent: 2 - - uid: 1841 + - uid: 1877 components: - type: Transform - pos: 2.5,-10.5 + pos: -36.5,-52.5 parent: 2 - - uid: 1848 + - uid: 1883 components: - type: Transform - pos: 3.5,-40.5 + pos: -1.5,-58.5 parent: 2 - uid: 1884 components: - type: Transform pos: 62.5,-52.5 parent: 2 - - uid: 1888 + - uid: 1896 components: - type: Transform - pos: 0.5,-6.5 + pos: -43.5,-3.5 parent: 2 - - uid: 1891 + - uid: 1897 components: - type: Transform - pos: 1.5,-6.5 + pos: -42.5,-3.5 parent: 2 - - uid: 1896 + - uid: 1907 components: - type: Transform - pos: -0.5,-6.5 + pos: -35.5,-52.5 parent: 2 - uid: 1955 components: - type: Transform pos: -37.5,2.5 parent: 2 + - uid: 1959 + components: + - type: Transform + pos: -34.5,-8.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: 32.5,13.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + pos: -35.5,-8.5 + parent: 2 - uid: 2048 components: - type: Transform @@ -26014,46 +29071,71 @@ entities: - type: Transform pos: -23.5,-47.5 parent: 2 - - uid: 2062 + - uid: 2053 components: - type: Transform - pos: 9.5,-55.5 + pos: 5.5,-0.5 parent: 2 - - uid: 2063 + - uid: 2054 components: - type: Transform - pos: 11.5,-57.5 + pos: -8.5,-0.5 parent: 2 - - uid: 2064 + - uid: 2056 components: - type: Transform - pos: 11.5,-56.5 + pos: -5.5,-0.5 parent: 2 - - uid: 2065 + - uid: 2058 components: - type: Transform - pos: 11.5,-52.5 + pos: -0.5,-44.5 parent: 2 - - uid: 2071 + - uid: 2059 components: - type: Transform - pos: 11.5,-51.5 + pos: -6.5,-0.5 parent: 2 - - uid: 2078 + - uid: 2061 components: - type: Transform - pos: -4.5,-54.5 + pos: 34.5,20.5 parent: 2 - - uid: 2079 + - uid: 2067 components: - type: Transform - pos: -5.5,-50.5 + pos: 0.5,-0.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 2.5,-0.5 parent: 2 - uid: 2091 components: - type: Transform pos: -33.5,-4.5 parent: 2 + - uid: 2102 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 - uid: 2105 components: - type: Transform @@ -26064,11 +29146,31 @@ entities: - type: Transform pos: -30.5,19.5 parent: 2 + - uid: 2109 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 2 - uid: 2110 components: - type: Transform pos: -0.5,-5.5 parent: 2 + - uid: 2111 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 - uid: 2120 components: - type: Transform @@ -26094,6 +29196,16 @@ entities: - type: Transform pos: 43.5,9.5 parent: 2 + - uid: 2167 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 - uid: 2192 components: - type: Transform @@ -26104,6 +29216,11 @@ entities: - type: Transform pos: 1.5,9.5 parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -38.5,-57.5 + parent: 2 - uid: 2208 components: - type: Transform @@ -26134,6 +29251,11 @@ entities: - type: Transform pos: 57.5,-49.5 parent: 2 + - uid: 2248 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 - uid: 2254 components: - type: Transform @@ -26144,11 +29266,6 @@ entities: - type: Transform pos: 51.5,-50.5 parent: 2 - - uid: 2276 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 2 - uid: 2279 components: - type: Transform @@ -26162,32 +29279,7 @@ entities: - uid: 2320 components: - type: Transform - pos: 31.5,36.5 - parent: 2 - - uid: 2322 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - - uid: 2323 - components: - - type: Transform - pos: 30.5,36.5 - parent: 2 - - uid: 2326 - components: - - type: Transform - pos: 30.5,33.5 - parent: 2 - - uid: 2329 - components: - - type: Transform - pos: 30.5,38.5 - parent: 2 - - uid: 2332 - components: - - type: Transform - pos: 30.5,31.5 + pos: -0.5,-7.5 parent: 2 - uid: 2334 components: @@ -26209,15 +29301,10 @@ entities: - type: Transform pos: -2.5,-21.5 parent: 2 - - uid: 2345 - components: - - type: Transform - pos: 31.5,32.5 - parent: 2 - - uid: 2346 + - uid: 2354 components: - type: Transform - pos: 30.5,32.5 + pos: -37.5,-57.5 parent: 2 - uid: 2360 components: @@ -26239,11 +29326,6 @@ entities: - type: Transform pos: -22.5,4.5 parent: 2 - - uid: 2389 - components: - - type: Transform - pos: -34.5,12.5 - parent: 2 - uid: 2423 components: - type: Transform @@ -26264,16 +29346,6 @@ entities: - type: Transform pos: -19.5,33.5 parent: 2 - - uid: 2441 - components: - - type: Transform - pos: 4.5,-0.5 - parent: 2 - - uid: 2442 - components: - - type: Transform - pos: 5.5,-0.5 - parent: 2 - uid: 2443 components: - type: Transform @@ -26284,11 +29356,6 @@ entities: - type: Transform pos: -11.5,0.5 parent: 2 - - uid: 2446 - components: - - type: Transform - pos: -5.5,-1.5 - parent: 2 - uid: 2447 components: - type: Transform @@ -26299,11 +29366,6 @@ entities: - type: Transform pos: -19.5,14.5 parent: 2 - - uid: 2456 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - uid: 2460 components: - type: Transform @@ -26314,11 +29376,6 @@ entities: - type: Transform pos: -9.5,0.5 parent: 2 - - uid: 2464 - components: - - type: Transform - pos: -9.5,-2.5 - parent: 2 - uid: 2468 components: - type: Transform @@ -26389,21 +29446,6 @@ entities: - type: Transform pos: 4.5,1.5 parent: 2 - - uid: 2482 - components: - - type: Transform - pos: 6.5,0.5 - parent: 2 - - uid: 2483 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 2 - - uid: 2484 - components: - - type: Transform - pos: 4.5,-2.5 - parent: 2 - uid: 2487 components: - type: Transform @@ -26414,11 +29456,6 @@ entities: - type: Transform pos: -18.5,28.5 parent: 2 - - uid: 2500 - components: - - type: Transform - pos: 10.5,-55.5 - parent: 2 - uid: 2502 components: - type: Transform @@ -26429,30 +29466,35 @@ entities: - type: Transform pos: -9.5,-16.5 parent: 2 + - uid: 2512 + components: + - type: Transform + pos: -24.5,-62.5 + parent: 2 - uid: 2513 components: - type: Transform pos: -17.5,31.5 parent: 2 - - uid: 2543 + - uid: 2514 components: - type: Transform - pos: -42.5,-25.5 + pos: -22.5,-62.5 parent: 2 - - uid: 2548 + - uid: 2522 components: - type: Transform - pos: -43.5,-25.5 + pos: -29.5,-62.5 parent: 2 - - uid: 2568 + - uid: 2523 components: - type: Transform - pos: -42.5,-39.5 + pos: -28.5,-62.5 parent: 2 - - uid: 2582 + - uid: 2568 components: - type: Transform - pos: -33.5,12.5 + pos: -12.5,-62.5 parent: 2 - uid: 2612 components: @@ -26464,6 +29506,21 @@ entities: - type: Transform pos: -32.5,11.5 parent: 2 + - uid: 2649 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: -29.5,-63.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: -13.5,-62.5 + parent: 2 - uid: 2705 components: - type: Transform @@ -26494,11 +29551,6 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 2758 - components: - - type: Transform - pos: -1.5,-13.5 - parent: 2 - uid: 2774 components: - type: Transform @@ -26629,10 +29681,10 @@ entities: - type: Transform pos: 53.5,-50.5 parent: 2 - - uid: 2826 + - uid: 2827 components: - type: Transform - pos: -44.5,-38.5 + pos: -11.5,-62.5 parent: 2 - uid: 2831 components: @@ -26694,11 +29746,6 @@ entities: - type: Transform pos: -25.5,11.5 parent: 2 - - uid: 2855 - components: - - type: Transform - pos: -6.5,-13.5 - parent: 2 - uid: 2857 components: - type: Transform @@ -26707,7 +29754,7 @@ entities: - uid: 2861 components: - type: Transform - pos: 14.5,11.5 + pos: 17.5,-7.5 parent: 2 - uid: 2864 components: @@ -26734,6 +29781,11 @@ entities: - type: Transform pos: -27.5,-3.5 parent: 2 + - uid: 2877 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 - uid: 2889 components: - type: Transform @@ -26742,22 +29794,32 @@ entities: - uid: 2892 components: - type: Transform - pos: -44.5,-40.5 + pos: -29.5,-60.5 parent: 2 - - uid: 2894 + - uid: 2904 components: - type: Transform - pos: -9.5,-51.5 + pos: 19.5,-7.5 parent: 2 - - uid: 2947 + - uid: 2922 components: - type: Transform - pos: -8.5,9.5 + pos: 20.5,-7.5 parent: 2 - - uid: 2978 + - uid: 2926 components: - type: Transform - pos: 22.5,-42.5 + pos: 20.5,-8.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: -8.5,9.5 parent: 2 - uid: 2988 components: @@ -26774,6 +29836,11 @@ entities: - type: Transform pos: 58.5,-49.5 parent: 2 + - uid: 2999 + components: + - type: Transform + pos: -36.5,-57.5 + parent: 2 - uid: 3003 components: - type: Transform @@ -26784,11 +29851,6 @@ entities: - type: Transform pos: -20.5,22.5 parent: 2 - - uid: 3025 - components: - - type: Transform - pos: -30.5,0.5 - parent: 2 - uid: 3036 components: - type: Transform @@ -26819,10 +29881,10 @@ entities: - type: Transform pos: 1.5,-35.5 parent: 2 - - uid: 3083 + - uid: 3099 components: - type: Transform - pos: 28.5,-10.5 + pos: -30.5,-10.5 parent: 2 - uid: 3104 components: @@ -26834,21 +29896,41 @@ entities: - type: Transform pos: 31.5,-62.5 parent: 2 - - uid: 3166 + - uid: 3119 components: - type: Transform - pos: 16.5,-0.5 + pos: -20.5,-11.5 + parent: 2 + - uid: 3184 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 + - uid: 3185 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + pos: -30.5,-12.5 parent: 2 - uid: 3198 components: - type: Transform - pos: 8.5,-18.5 + pos: -30.5,-11.5 parent: 2 - uid: 3200 components: - type: Transform pos: 31.5,-57.5 parent: 2 + - uid: 3204 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 - uid: 3278 components: - type: Transform @@ -26864,25 +29946,35 @@ entities: - type: Transform pos: 1.5,-36.5 parent: 2 - - uid: 3373 + - uid: 3390 components: - type: Transform - pos: 6.5,-18.5 + pos: -21.5,16.5 parent: 2 - - uid: 3390 + - uid: 3400 components: - type: Transform - pos: -21.5,16.5 + pos: -0.5,-6.5 parent: 2 - uid: 3463 components: - type: Transform pos: -9.5,9.5 parent: 2 - - uid: 3542 + - uid: 3498 components: - type: Transform - pos: -37.5,-58.5 + pos: -31.5,-44.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + pos: 15.5,-52.5 + parent: 2 + - uid: 3544 + components: + - type: Transform + pos: 14.5,-55.5 parent: 2 - uid: 3551 components: @@ -26934,135 +30026,125 @@ entities: - type: Transform pos: 1.5,-24.5 parent: 2 - - uid: 3707 - components: - - type: Transform - pos: 3.5,-38.5 - parent: 2 - - uid: 4068 - components: - - type: Transform - pos: 4.5,-6.5 - parent: 2 - - uid: 4117 + - uid: 3678 components: - type: Transform - pos: 8.5,10.5 + pos: -11.5,-54.5 parent: 2 - - uid: 4142 + - uid: 3697 components: - type: Transform - pos: 1.5,-5.5 + pos: 15.5,-54.5 parent: 2 - - uid: 4167 + - uid: 3701 components: - type: Transform - pos: 3.5,-37.5 + pos: 21.5,-56.5 parent: 2 - - uid: 4216 + - uid: 3703 components: - type: Transform - pos: -26.5,-22.5 + pos: 20.5,-56.5 parent: 2 - - uid: 4234 + - uid: 3707 components: - type: Transform - pos: -28.5,-34.5 + pos: 3.5,-38.5 parent: 2 - - uid: 4260 + - uid: 3815 components: - type: Transform - pos: -33.5,-38.5 + pos: 39.5,24.5 parent: 2 - - uid: 4261 + - uid: 3819 components: - type: Transform - pos: -33.5,-37.5 + pos: 36.5,21.5 parent: 2 - - uid: 4421 + - uid: 3822 components: - type: Transform - pos: 3.5,-36.5 + pos: 36.5,22.5 parent: 2 - - uid: 4463 + - uid: 3823 components: - type: Transform - pos: -39.5,-35.5 + pos: 35.5,23.5 parent: 2 - - uid: 4477 + - uid: 3824 components: - type: Transform - pos: -40.5,-33.5 + pos: 34.5,23.5 parent: 2 - - uid: 4509 + - uid: 3877 components: - type: Transform - pos: 9.5,11.5 + pos: -0.5,23.5 parent: 2 - - uid: 4556 + - uid: 3939 components: - type: Transform - pos: 2.5,-36.5 + pos: -29.5,-59.5 parent: 2 - - uid: 4590 + - uid: 3984 components: - type: Transform - pos: 10.5,11.5 + pos: 39.5,25.5 parent: 2 - - uid: 4599 + - uid: 4014 components: - type: Transform - pos: -2.5,-6.5 + pos: 24.5,-50.5 parent: 2 - - uid: 4600 + - uid: 4034 components: - type: Transform - pos: -3.5,-6.5 + pos: 24.5,-51.5 parent: 2 - - uid: 4601 + - uid: 4035 components: - type: Transform - pos: -4.5,-6.5 + pos: 24.5,-53.5 parent: 2 - - uid: 4602 + - uid: 4036 components: - type: Transform - pos: -4.5,-9.5 + pos: 24.5,-54.5 parent: 2 - - uid: 4603 + - uid: 4117 components: - type: Transform - pos: -4.5,-8.5 + pos: 8.5,10.5 parent: 2 - - uid: 4604 + - uid: 4142 components: - type: Transform - pos: -4.5,-7.5 + pos: 1.5,-5.5 parent: 2 - - uid: 4606 + - uid: 4167 components: - type: Transform - pos: 5.5,-6.5 + pos: 3.5,-37.5 parent: 2 - - uid: 4607 + - uid: 4421 components: - type: Transform - pos: 6.5,-6.5 + pos: 3.5,-36.5 parent: 2 - - uid: 4609 + - uid: 4509 components: - type: Transform - pos: 5.5,-2.5 + pos: 9.5,11.5 parent: 2 - - uid: 4610 + - uid: 4556 components: - type: Transform - pos: 6.5,-2.5 + pos: 2.5,-36.5 parent: 2 - - uid: 4611 + - uid: 4590 components: - type: Transform - pos: 6.5,-3.5 + pos: 10.5,11.5 parent: 2 - uid: 4628 components: @@ -27074,121 +30156,156 @@ entities: - type: Transform pos: 6.5,11.5 parent: 2 - - uid: 4652 + - uid: 4650 components: - type: Transform - pos: -30.5,-63.5 + pos: -22.5,-12.5 parent: 2 - uid: 4659 components: - type: Transform pos: 31.5,-65.5 parent: 2 - - uid: 4674 + - uid: 4675 components: - type: Transform - pos: -30.5,-22.5 + pos: 10.5,-17.5 parent: 2 - - uid: 4676 + - uid: 4727 components: - type: Transform - pos: -27.5,-21.5 + pos: -29.5,-61.5 parent: 2 - - uid: 4710 + - uid: 4790 components: - type: Transform - pos: 7.5,-55.5 + pos: 5.5,-17.5 parent: 2 - - uid: 4743 + - uid: 4803 components: - type: Transform - pos: 8.5,-50.5 + pos: -26.5,-46.5 parent: 2 - - uid: 4752 + - uid: 4804 components: - type: Transform - pos: 7.5,-50.5 + pos: -28.5,-44.5 parent: 2 - - uid: 4766 + - uid: 4805 components: - type: Transform - pos: 6.5,-50.5 + pos: -28.5,-45.5 parent: 2 - - uid: 4834 + - uid: 4824 components: - type: Transform - pos: 5.5,-18.5 + pos: -26.5,-62.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: -23.5,-62.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: -27.5,-62.5 parent: 2 - uid: 4877 components: - type: Transform pos: -32.5,3.5 parent: 2 - - uid: 4887 + - uid: 4968 components: - type: Transform - pos: -5.5,-13.5 + pos: -31.5,-48.5 parent: 2 - - uid: 4924 + - uid: 4989 components: - type: Transform - pos: -40.5,-34.5 + pos: -36.5,3.5 parent: 2 - - uid: 5020 + - uid: 4999 components: - type: Transform - pos: -27.5,-20.5 + pos: -30.5,-46.5 parent: 2 - - uid: 5028 + - uid: 5017 components: - type: Transform - pos: -30.5,-21.5 + pos: -31.5,-45.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: -25.5,-46.5 parent: 2 - uid: 5041 components: - type: Transform pos: 36.5,7.5 parent: 2 - - uid: 5044 + - uid: 5138 components: - type: Transform - pos: -29.5,-21.5 + pos: -35.5,3.5 parent: 2 - - uid: 5045 + - uid: 5173 components: - type: Transform - pos: -28.5,-21.5 + pos: -35.5,4.5 parent: 2 - - uid: 5202 + - uid: 5205 components: - type: Transform - pos: 8.5,-51.5 + pos: 2.5,-48.5 parent: 2 - uid: 5223 components: - type: Transform pos: 57.5,-60.5 parent: 2 + - uid: 5245 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 - uid: 5253 components: - type: Transform - pos: 8.5,-57.5 + pos: 1.5,-48.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: 0.5,-48.5 parent: 2 - uid: 5255 components: - type: Transform - pos: 8.5,-55.5 + pos: -0.5,-48.5 parent: 2 - uid: 5256 components: - type: Transform - pos: 8.5,-56.5 + pos: -1.5,-48.5 parent: 2 - uid: 5278 components: - type: Transform pos: -9.5,14.5 parent: 2 + - uid: 5291 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 - uid: 5320 components: - type: Transform @@ -27254,11 +30371,6 @@ entities: - type: Transform pos: 45.5,-4.5 parent: 2 - - uid: 5403 - components: - - type: Transform - pos: 34.5,-5.5 - parent: 2 - uid: 5410 components: - type: Transform @@ -27324,46 +30436,96 @@ entities: - type: Transform pos: -29.5,5.5 parent: 2 - - uid: 5489 + - uid: 5496 components: - type: Transform - pos: 18.5,31.5 + pos: 57.5,-53.5 parent: 2 - - uid: 5490 + - uid: 5503 components: - type: Transform - pos: 18.5,32.5 + pos: -25.5,-47.5 parent: 2 - - uid: 5496 + - uid: 5526 components: - type: Transform - pos: 57.5,-53.5 + pos: 57.5,-55.5 parent: 2 - - uid: 5526 + - uid: 5535 components: - type: Transform - pos: 57.5,-55.5 + pos: -27.5,-12.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 5555 + components: + - type: Transform + pos: -31.5,-47.5 parent: 2 - uid: 5567 components: - type: Transform pos: 57.5,-51.5 parent: 2 - - uid: 5586 + - uid: 5578 components: - type: Transform - pos: 4.5,-18.5 + pos: -2.5,-48.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: -37.5,-52.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: -28.5,-43.5 parent: 2 - uid: 5628 components: - type: Transform pos: 31.5,-59.5 parent: 2 + - uid: 5635 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 - uid: 5645 components: - type: Transform pos: 57.5,-50.5 parent: 2 + - uid: 5648 + components: + - type: Transform + pos: -30.5,-47.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: -3.5,-48.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: -4.5,-48.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: -5.5,-48.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: -6.5,-48.5 + parent: 2 - uid: 5720 components: - type: Transform @@ -27379,216 +30541,246 @@ entities: - type: Transform pos: 48.5,-49.5 parent: 2 + - uid: 5729 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 - uid: 5768 components: - type: Transform pos: -31.5,7.5 parent: 2 + - uid: 5802 + components: + - type: Transform + pos: -12.5,-26.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: -7.5,-48.5 + parent: 2 - uid: 5810 components: - type: Transform pos: -31.5,8.5 parent: 2 - - uid: 5872 + - uid: 5824 components: - type: Transform - pos: 34.5,13.5 + pos: 10.5,-52.5 parent: 2 - - uid: 6073 + - uid: 5846 components: - type: Transform - pos: -35.5,23.5 + pos: 10.5,0.5 parent: 2 - - uid: 6097 + - uid: 5847 components: - type: Transform - pos: 40.5,-10.5 + pos: 9.5,1.5 parent: 2 - - uid: 6100 + - uid: 5857 components: - type: Transform - pos: 41.5,-10.5 + pos: 13.5,-15.5 parent: 2 - - uid: 6126 + - uid: 5870 components: - type: Transform - pos: -6.5,22.5 + pos: -32.5,-4.5 parent: 2 - - uid: 6165 + - uid: 5893 components: - type: Transform - pos: -50.5,-30.5 + pos: 13.5,-13.5 parent: 2 - - uid: 6172 + - uid: 5894 components: - type: Transform - pos: -51.5,-30.5 + pos: 13.5,-14.5 parent: 2 - - uid: 6270 + - uid: 5899 components: - type: Transform - pos: 24.5,6.5 + pos: 13.5,-16.5 parent: 2 - - uid: 6275 + - uid: 5924 components: - type: Transform - pos: 24.5,7.5 + pos: 10.5,-51.5 parent: 2 - - uid: 6287 + - uid: 6029 components: - type: Transform - pos: 31.5,-67.5 + pos: 10.5,-50.5 parent: 2 - - uid: 6410 + - uid: 6032 components: - type: Transform - pos: 14.5,-53.5 + pos: 27.5,3.5 parent: 2 - - uid: 6481 + - uid: 6073 components: - type: Transform - pos: -34.5,9.5 + pos: -35.5,23.5 parent: 2 - - uid: 6501 + - uid: 6097 components: - type: Transform - pos: 36.5,11.5 + pos: 40.5,-10.5 parent: 2 - - uid: 6502 + - uid: 6100 components: - type: Transform - pos: 45.5,-1.5 + pos: 41.5,-10.5 parent: 2 - - uid: 6503 + - uid: 6126 components: - type: Transform - pos: 44.5,-1.5 + pos: -6.5,22.5 parent: 2 - - uid: 6565 + - uid: 6144 components: - type: Transform - pos: 21.5,1.5 + pos: 27.5,25.5 parent: 2 - - uid: 6573 + - uid: 6154 components: - type: Transform - pos: 20.5,1.5 + pos: 22.5,12.5 parent: 2 - - uid: 6574 + - uid: 6287 components: - type: Transform - pos: 22.5,1.5 + pos: 31.5,-67.5 parent: 2 - - uid: 6575 + - uid: 6316 components: - type: Transform - pos: 23.5,1.5 + pos: 28.5,-6.5 parent: 2 - - uid: 6576 + - uid: 6327 components: - type: Transform - pos: 23.5,2.5 + pos: -26.5,-4.5 parent: 2 - - uid: 6577 + - uid: 6330 components: - type: Transform - pos: 24.5,1.5 + pos: 24.5,-49.5 parent: 2 - - uid: 6579 + - uid: 6390 components: - type: Transform - pos: 31.5,-66.5 + pos: 14.5,-51.5 parent: 2 - - uid: 6580 + - uid: 6399 components: - type: Transform - pos: 2.5,28.5 + pos: 17.5,-57.5 parent: 2 - - uid: 6636 + - uid: 6404 components: - type: Transform - pos: -51.5,-33.5 + pos: 14.5,-54.5 parent: 2 - - uid: 6637 + - uid: 6409 components: - type: Transform - pos: 15.5,-4.5 + pos: 22.5,-56.5 parent: 2 - - uid: 6638 + - uid: 6410 components: - type: Transform - pos: 13.5,-5.5 + pos: 15.5,-51.5 parent: 2 - - uid: 6639 + - uid: 6440 components: - type: Transform - pos: -35.5,9.5 + pos: 11.5,-32.5 parent: 2 - - uid: 6642 + - uid: 6462 components: - type: Transform - pos: 31.5,-63.5 + pos: 15.5,-32.5 parent: 2 - - uid: 6657 + - uid: 6501 components: - type: Transform - pos: 25.5,-12.5 + pos: 36.5,11.5 parent: 2 - - uid: 6662 + - uid: 6502 components: - type: Transform - pos: 25.5,-11.5 + pos: 45.5,-1.5 parent: 2 - - uid: 6664 + - uid: 6503 components: - type: Transform - pos: 24.5,-11.5 + pos: 44.5,-1.5 parent: 2 - - uid: 6667 + - uid: 6516 components: - type: Transform - pos: 23.5,-11.5 + pos: -53.5,-22.5 parent: 2 - - uid: 6668 + - uid: 6542 components: - type: Transform - pos: 40.5,-9.5 + pos: 1.5,23.5 parent: 2 - - uid: 6672 + - uid: 6570 components: - type: Transform - pos: 23.5,-10.5 + pos: 0.5,-44.5 parent: 2 - - uid: 6673 + - uid: 6579 components: - type: Transform - pos: 23.5,-9.5 + pos: 31.5,-66.5 parent: 2 - - uid: 6674 + - uid: 6580 components: - type: Transform - pos: 23.5,-8.5 + pos: 2.5,28.5 parent: 2 - - uid: 6675 + - uid: 6619 components: - type: Transform - pos: 23.5,-7.5 + pos: 13.5,7.5 parent: 2 - - uid: 6677 + - uid: 6642 components: - type: Transform - pos: 23.5,-6.5 + pos: 31.5,-63.5 parent: 2 - - uid: 6683 + - uid: 6664 components: - type: Transform - pos: -51.5,-29.5 + pos: 15.5,20.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: 40.5,-9.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: 3.5,-44.5 parent: 2 - uid: 6723 components: - type: Transform pos: 35.5,-44.5 parent: 2 + - uid: 6737 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 - uid: 6786 components: - type: Transform @@ -27604,11 +30796,31 @@ entities: - type: Transform pos: -6.5,23.5 parent: 2 + - uid: 6836 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 2 + - uid: 6878 + components: + - type: Transform + pos: 26.5,-6.5 + parent: 2 - uid: 6889 components: - type: Transform pos: 35.5,6.5 parent: 2 + - uid: 6890 + components: + - type: Transform + pos: 15.5,-53.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 - uid: 6914 components: - type: Transform @@ -27624,6 +30836,31 @@ entities: - type: Transform pos: -30.5,24.5 parent: 2 + - uid: 6986 + components: + - type: Transform + pos: 15.5,-60.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: 15.5,-59.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: -30.5,1.5 + parent: 2 + - uid: 7023 + components: + - type: Transform + pos: 15.5,-58.5 + parent: 2 + - uid: 7024 + components: + - type: Transform + pos: 15.5,-57.5 + parent: 2 - uid: 7029 components: - type: Transform @@ -27679,11 +30916,26 @@ entities: - type: Transform pos: -9.5,-17.5 parent: 2 + - uid: 7138 + components: + - type: Transform + pos: 22.5,13.5 + parent: 2 - uid: 7160 components: - type: Transform pos: 1.5,28.5 parent: 2 + - uid: 7161 + components: + - type: Transform + pos: -51.5,-21.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -57.5,-55.5 + parent: 2 - uid: 7183 components: - type: Transform @@ -27699,10 +30951,15 @@ entities: - type: Transform pos: 40.5,-5.5 parent: 2 - - uid: 7237 + - uid: 7221 components: - type: Transform - pos: -22.5,-15.5 + pos: 14.5,-13.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: -56.5,-55.5 parent: 2 - uid: 7249 components: @@ -27784,350 +31041,185 @@ entities: - type: Transform pos: -30.5,17.5 parent: 2 - - uid: 7408 - components: - - type: Transform - pos: 16.5,-56.5 - parent: 2 - - uid: 7468 - components: - - type: Transform - pos: 5.5,26.5 - parent: 2 - - uid: 7553 - components: - - type: Transform - pos: 42.5,-37.5 - parent: 2 - - uid: 7564 - components: - - type: Transform - pos: 15.5,-56.5 - parent: 2 - - uid: 7584 - components: - - type: Transform - pos: 14.5,-56.5 - parent: 2 - - uid: 7625 - components: - - type: Transform - pos: -31.5,20.5 - parent: 2 - - uid: 7628 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 2 - - uid: 7674 + - uid: 7328 components: - type: Transform - pos: 0.5,-33.5 + pos: -55.5,-55.5 parent: 2 - - uid: 7676 + - uid: 7332 components: - type: Transform - pos: 48.5,-51.5 + pos: -59.5,-53.5 parent: 2 - - uid: 7743 + - uid: 7343 components: - type: Transform - pos: 3.5,28.5 + pos: -59.5,-52.5 parent: 2 - - uid: 7756 + - uid: 7362 components: - type: Transform - pos: 31.5,-58.5 + pos: -58.5,-53.5 parent: 2 - - uid: 7762 + - uid: 7364 components: - type: Transform - pos: 43.5,-37.5 + pos: -57.5,-53.5 parent: 2 - - uid: 7821 + - uid: 7408 components: - type: Transform - pos: -21.5,3.5 + pos: 16.5,-56.5 parent: 2 - - uid: 7822 + - uid: 7413 components: - type: Transform - pos: -21.5,5.5 + pos: -57.5,-54.5 parent: 2 - - uid: 7881 + - uid: 7468 components: - type: Transform - pos: 34.5,39.5 + pos: 5.5,26.5 parent: 2 - - uid: 7882 + - uid: 7511 components: - type: Transform - pos: 33.5,39.5 + pos: -56.5,-53.5 parent: 2 - - uid: 7883 + - uid: 7533 components: - type: Transform - pos: 32.5,39.5 + pos: -55.5,-53.5 parent: 2 - - uid: 7884 + - uid: 7553 components: - type: Transform - pos: 32.5,40.5 + pos: 42.5,-37.5 parent: 2 - - uid: 7885 + - uid: 7564 components: - type: Transform - pos: 32.5,41.5 + pos: 15.5,-56.5 parent: 2 - - uid: 7886 + - uid: 7579 components: - type: Transform - pos: 32.5,42.5 + pos: 17.5,8.5 parent: 2 - - uid: 7887 + - uid: 7625 components: - type: Transform - pos: 32.5,43.5 + pos: -31.5,20.5 parent: 2 - - uid: 7888 + - uid: 7636 components: - type: Transform - pos: 32.5,44.5 + pos: 27.5,22.5 parent: 2 - - uid: 7889 + - uid: 7669 components: - type: Transform - pos: 32.5,45.5 + pos: 25.5,-3.5 parent: 2 - - uid: 7890 + - uid: 7674 components: - type: Transform - pos: 33.5,44.5 + pos: 0.5,-33.5 parent: 2 - - uid: 7891 + - uid: 7676 components: - type: Transform - pos: 34.5,44.5 + pos: 48.5,-51.5 parent: 2 - - uid: 7892 + - uid: 7696 components: - type: Transform - pos: 31.5,44.5 + pos: 21.5,-42.5 parent: 2 - - uid: 7893 + - uid: 7704 components: - type: Transform - pos: 30.5,44.5 + pos: -28.5,-12.5 parent: 2 - - uid: 7894 + - uid: 7721 components: - type: Transform - pos: 31.5,41.5 + pos: -49.5,-53.5 parent: 2 - - uid: 7895 + - uid: 7743 components: - type: Transform - pos: 30.5,41.5 + pos: 3.5,28.5 parent: 2 - - uid: 7896 + - uid: 7756 components: - type: Transform - pos: 29.5,41.5 + pos: 31.5,-58.5 parent: 2 - - uid: 7897 + - uid: 7762 components: - type: Transform - pos: 29.5,42.5 + pos: 43.5,-37.5 parent: 2 - - uid: 7898 + - uid: 7821 components: - type: Transform - pos: 33.5,41.5 + pos: -21.5,3.5 parent: 2 - - uid: 7899 + - uid: 7822 components: - type: Transform - pos: 34.5,41.5 + pos: -21.5,5.5 parent: 2 - - uid: 7900 + - uid: 7840 components: - type: Transform - pos: 35.5,41.5 + pos: -50.5,-51.5 parent: 2 - - uid: 7901 + - uid: 7857 components: - type: Transform - pos: 35.5,42.5 + pos: 0.5,-11.5 parent: 2 - - uid: 7902 + - uid: 7861 components: - type: Transform - pos: 32.5,38.5 + pos: 25.5,13.5 parent: 2 - - uid: 7903 + - uid: 7874 components: - type: Transform - pos: 32.5,37.5 + pos: 25.5,14.5 parent: 2 - - uid: 7904 + - uid: 7889 components: - type: Transform - pos: 32.5,36.5 + pos: -4.5,-11.5 parent: 2 - - uid: 7905 + - uid: 7895 components: - type: Transform - pos: 33.5,36.5 + pos: 14.5,7.5 parent: 2 - - uid: 7906 + - uid: 7896 components: - type: Transform - pos: 34.5,36.5 + pos: 25.5,-2.5 parent: 2 - uid: 7907 components: - type: Transform - pos: 35.5,36.5 - parent: 2 - - uid: 7908 - components: - - type: Transform - pos: 36.5,36.5 - parent: 2 - - uid: 7909 - components: - - type: Transform - pos: 35.5,37.5 - parent: 2 - - uid: 7910 - components: - - type: Transform - pos: 35.5,38.5 - parent: 2 - - uid: 7911 - components: - - type: Transform - pos: 32.5,35.5 - parent: 2 - - uid: 7912 - components: - - type: Transform - pos: 32.5,34.5 + pos: 20.5,-11.5 parent: 2 - uid: 7913 components: - type: Transform - pos: 32.5,33.5 - parent: 2 - - uid: 7914 - components: - - type: Transform - pos: 32.5,32.5 - parent: 2 - - uid: 7915 - components: - - type: Transform - pos: 32.5,27.5 - parent: 2 - - uid: 7916 - components: - - type: Transform - pos: 32.5,25.5 - parent: 2 - - uid: 7917 - components: - - type: Transform - pos: 32.5,28.5 - parent: 2 - - uid: 7918 - components: - - type: Transform - pos: 32.5,26.5 - parent: 2 - - uid: 7919 - components: - - type: Transform - pos: 33.5,28.5 - parent: 2 - - uid: 7920 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 7921 - components: - - type: Transform - pos: 35.5,28.5 - parent: 2 - - uid: 7922 - components: - - type: Transform - pos: 36.5,28.5 - parent: 2 - - uid: 7923 - components: - - type: Transform - pos: 32.5,24.5 - parent: 2 - - uid: 7924 - components: - - type: Transform - pos: 32.5,23.5 - parent: 2 - - uid: 7925 - components: - - type: Transform - pos: 32.5,22.5 - parent: 2 - - uid: 7926 - components: - - type: Transform - pos: 32.5,21.5 - parent: 2 - - uid: 7927 - components: - - type: Transform - pos: 32.5,20.5 + pos: 20.5,-10.5 parent: 2 - uid: 7928 components: - type: Transform - pos: 31.5,20.5 - parent: 2 - - uid: 7929 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - - uid: 7930 - components: - - type: Transform - pos: 28.5,25.5 - parent: 2 - - uid: 7931 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 7932 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 7933 - components: - - type: Transform - pos: 29.5,24.5 - parent: 2 - - uid: 7934 - components: - - type: Transform - pos: 30.5,24.5 - parent: 2 - - uid: 7935 - components: - - type: Transform - pos: 31.5,24.5 + pos: 15.5,18.5 parent: 2 - uid: 7980 components: @@ -28139,56 +31231,21 @@ entities: - type: Transform pos: 40.5,-6.5 parent: 2 - - uid: 7989 - components: - - type: Transform - pos: -51.5,-31.5 - parent: 2 - - uid: 8029 - components: - - type: Transform - pos: -51.5,-28.5 - parent: 2 - - uid: 8035 - components: - - type: Transform - pos: -51.5,-32.5 - parent: 2 - - uid: 8082 - components: - - type: Transform - pos: -51.5,-34.5 - parent: 2 - - uid: 8084 + - uid: 8030 components: - type: Transform - pos: -39.5,-34.5 + pos: -45.5,-53.5 parent: 2 - uid: 8086 components: - type: Transform pos: 8.5,11.5 parent: 2 - - uid: 8087 - components: - - type: Transform - pos: 13.5,11.5 - parent: 2 - - uid: 8100 - components: - - type: Transform - pos: -40.5,-32.5 - parent: 2 - uid: 8102 components: - type: Transform pos: 11.5,11.5 parent: 2 - - uid: 8108 - components: - - type: Transform - pos: 12.5,11.5 - parent: 2 - uid: 8113 components: - type: Transform @@ -28199,35 +31256,20 @@ entities: - type: Transform pos: 0.5,11.5 parent: 2 - - uid: 8115 - components: - - type: Transform - pos: -51.5,-27.5 - parent: 2 - uid: 8163 components: - type: Transform pos: 7.5,11.5 parent: 2 - - uid: 8191 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 2 - uid: 8207 components: - type: Transform pos: 6.5,28.5 parent: 2 - - uid: 8220 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 2 - - uid: 8225 + - uid: 8234 components: - type: Transform - pos: -30.5,-23.5 + pos: -51.5,-52.5 parent: 2 - uid: 8236 components: @@ -28259,16 +31301,41 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 + - uid: 8284 + components: + - type: Transform + pos: -51.5,-57.5 + parent: 2 + - uid: 8286 + components: + - type: Transform + pos: -51.5,-51.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: -49.5,-51.5 + parent: 2 - uid: 8312 components: - type: Transform pos: -1.5,24.5 parent: 2 + - uid: 8332 + components: + - type: Transform + pos: -47.5,-53.5 + parent: 2 - uid: 8335 components: - type: Transform pos: 14.5,21.5 parent: 2 + - uid: 8348 + components: + - type: Transform + pos: -48.5,-53.5 + parent: 2 - uid: 8359 components: - type: Transform @@ -28289,30 +31356,20 @@ entities: - type: Transform pos: 5.5,28.5 parent: 2 - - uid: 8410 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - uid: 8411 components: - type: Transform pos: -51.5,-12.5 parent: 2 - - uid: 8436 - components: - - type: Transform - pos: -36.5,2.5 - parent: 2 - - uid: 8469 + - uid: 8480 components: - type: Transform - pos: 8.5,-54.5 + pos: -48.5,-12.5 parent: 2 - - uid: 8480 + - uid: 8495 components: - type: Transform - pos: -48.5,-12.5 + pos: 4.5,-17.5 parent: 2 - uid: 8499 components: @@ -28322,132 +31379,27 @@ entities: - uid: 8540 components: - type: Transform - pos: -21.5,-15.5 - parent: 2 - - uid: 8548 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 2 - - uid: 8568 - components: - - type: Transform - pos: 31.5,28.5 - parent: 2 - - uid: 8569 - components: - - type: Transform - pos: 30.5,28.5 - parent: 2 - - uid: 8570 - components: - - type: Transform - pos: 29.5,28.5 - parent: 2 - - uid: 8571 - components: - - type: Transform - pos: 28.5,28.5 - parent: 2 - - uid: 8572 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 8573 - components: - - type: Transform - pos: 33.5,24.5 - parent: 2 - - uid: 8574 - components: - - type: Transform - pos: 34.5,24.5 - parent: 2 - - uid: 8575 - components: - - type: Transform - pos: 35.5,24.5 + pos: 9.5,-17.5 parent: 2 - uid: 8576 components: - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 8577 - components: - - type: Transform - pos: 35.5,23.5 + pos: 27.5,11.5 parent: 2 - uid: 8578 components: - type: Transform - pos: 32.5,19.5 - parent: 2 - - uid: 8579 - components: - - type: Transform - pos: 32.5,18.5 - parent: 2 - - uid: 8580 - components: - - type: Transform - pos: 31.5,18.5 - parent: 2 - - uid: 8581 - components: - - type: Transform - pos: 30.5,18.5 - parent: 2 - - uid: 8582 - components: - - type: Transform - pos: 29.5,18.5 - parent: 2 - - uid: 8583 - components: - - type: Transform - pos: 32.5,17.5 - parent: 2 - - uid: 8584 - components: - - type: Transform - pos: 32.5,16.5 + pos: 27.5,10.5 parent: 2 - uid: 8585 components: - type: Transform - pos: 32.5,15.5 - parent: 2 - - uid: 8590 - components: - - type: Transform - pos: 30.5,15.5 - parent: 2 - - uid: 8592 - components: - - type: Transform - pos: 30.5,16.5 - parent: 2 - - uid: 8593 - components: - - type: Transform - pos: 31.5,15.5 - parent: 2 - - uid: 8595 - components: - - type: Transform - pos: 28.5,13.5 - parent: 2 - - uid: 8603 - components: - - type: Transform - pos: 33.5,12.5 + pos: 21.5,10.5 parent: 2 - - uid: 8604 + - uid: 8600 components: - type: Transform - pos: 34.5,12.5 + pos: 15.5,17.5 parent: 2 - uid: 8607 components: @@ -28509,11 +31461,6 @@ entities: - type: Transform pos: 44.5,8.5 parent: 2 - - uid: 8641 - components: - - type: Transform - pos: -20.5,-14.5 - parent: 2 - uid: 8646 components: - type: Transform @@ -28524,46 +31471,26 @@ entities: - type: Transform pos: 36.5,6.5 parent: 2 - - uid: 8686 - components: - - type: Transform - pos: 33.5,32.5 - parent: 2 - - uid: 8687 - components: - - type: Transform - pos: 34.5,32.5 - parent: 2 - - uid: 8688 + - uid: 8659 components: - type: Transform - pos: 35.5,32.5 + pos: -30.5,-52.5 parent: 2 - - uid: 8689 + - uid: 8673 components: - type: Transform - pos: 35.5,33.5 + pos: -50.5,-33.5 parent: 2 - - uid: 8690 + - uid: 8674 components: - type: Transform - pos: 35.5,31.5 + pos: -35.5,5.5 parent: 2 - uid: 8715 components: - type: Transform pos: -21.5,-9.5 parent: 2 - - uid: 8765 - components: - - type: Transform - pos: 8.5,-53.5 - parent: 2 - - uid: 8827 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 2 - uid: 8855 components: - type: Transform @@ -28599,11 +31526,6 @@ entities: - type: Transform pos: -23.5,-49.5 parent: 2 - - uid: 8966 - components: - - type: Transform - pos: -33.5,6.5 - parent: 2 - uid: 8982 components: - type: Transform @@ -28642,7 +31564,7 @@ entities: - uid: 9008 components: - type: Transform - pos: 14.5,22.5 + pos: 27.5,24.5 parent: 2 - uid: 9010 components: @@ -28759,11 +31681,6 @@ entities: - type: Transform pos: 48.5,2.5 parent: 2 - - uid: 9118 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 2 - uid: 9122 components: - type: Transform @@ -28774,81 +31691,71 @@ entities: - type: Transform pos: 44.5,-3.5 parent: 2 - - uid: 9127 + - uid: 9208 components: - type: Transform - pos: 28.5,14.5 + pos: 36.5,-40.5 parent: 2 - - uid: 9129 + - uid: 9233 components: - type: Transform - pos: 29.5,14.5 + pos: 0.5,-7.5 parent: 2 - - uid: 9188 + - uid: 9251 components: - type: Transform - pos: 12.5,-53.5 + pos: 2.5,-44.5 parent: 2 - - uid: 9208 + - uid: 9261 components: - type: Transform - pos: 36.5,-40.5 + pos: 2.5,-7.5 parent: 2 - - uid: 9209 + - uid: 9294 components: - type: Transform - pos: -28.5,-35.5 + pos: 1.5,-7.5 parent: 2 - - uid: 9250 + - uid: 9388 components: - type: Transform - pos: 13.5,-53.5 + pos: -47.5,-48.5 parent: 2 - - uid: 9264 + - uid: 9394 components: - type: Transform - pos: -35.5,-38.5 + pos: 24.5,-55.5 parent: 2 - - uid: 9308 + - uid: 9396 components: - type: Transform - pos: -20.5,-15.5 + pos: 24.5,-56.5 parent: 2 - - uid: 9346 + - uid: 9398 components: - type: Transform - pos: -4.5,-53.5 + pos: -48.5,-48.5 parent: 2 - - uid: 9350 + - uid: 9402 components: - type: Transform - pos: -23.5,-15.5 + pos: -49.5,-33.5 parent: 2 - - uid: 9526 + - uid: 9410 components: - type: Transform - pos: -34.5,6.5 + pos: 13.5,6.5 parent: 2 - - uid: 9546 + - uid: 9415 components: - type: Transform - pos: -20.5,-13.5 + pos: 15.5,-17.5 parent: 2 - uid: 9574 components: - type: Transform pos: -50.5,-12.5 parent: 2 - - uid: 9601 - components: - - type: Transform - pos: 28.5,9.5 - parent: 2 - - uid: 9602 - components: - - type: Transform - pos: 28.5,10.5 - parent: 2 - uid: 9637 components: - type: Transform @@ -28857,7 +31764,12 @@ entities: - uid: 9653 components: - type: Transform - pos: -33.5,9.5 + pos: 35.5,25.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: 26.5,-3.5 parent: 2 - uid: 9671 components: @@ -28874,6 +31786,11 @@ entities: - type: Transform pos: -69.5,-15.5 parent: 2 + - uid: 9724 + components: + - type: Transform + pos: -46.5,-53.5 + parent: 2 - uid: 9745 components: - type: Transform @@ -29004,6 +31921,11 @@ entities: - type: Transform pos: 27.5,-59.5 parent: 2 + - uid: 9798 + components: + - type: Transform + pos: -49.5,-48.5 + parent: 2 - uid: 9805 components: - type: Transform @@ -29184,15 +32106,20 @@ entities: - type: Transform pos: -24.5,-47.5 parent: 2 - - uid: 9924 + - uid: 9948 components: - type: Transform - pos: -24.5,-46.5 + pos: -46.5,-48.5 parent: 2 - - uid: 9925 + - uid: 9949 components: - type: Transform - pos: -24.5,-45.5 + pos: 35.5,26.5 + parent: 2 + - uid: 9950 + components: + - type: Transform + pos: 27.5,-6.5 parent: 2 - uid: 9952 components: @@ -29214,6 +32141,11 @@ entities: - type: Transform pos: -8.5,12.5 parent: 2 + - uid: 9987 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 - uid: 10001 components: - type: Transform @@ -29244,56 +32176,6 @@ entities: - type: Transform pos: 47.5,-52.5 parent: 2 - - uid: 10090 - components: - - type: Transform - pos: -35.5,3.5 - parent: 2 - - uid: 10099 - components: - - type: Transform - pos: -34.5,-38.5 - parent: 2 - - uid: 10105 - components: - - type: Transform - pos: 30.5,0.5 - parent: 2 - - uid: 10106 - components: - - type: Transform - pos: 29.5,0.5 - parent: 2 - - uid: 10107 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 - - uid: 10108 - components: - - type: Transform - pos: 28.5,1.5 - parent: 2 - - uid: 10109 - components: - - type: Transform - pos: 28.5,2.5 - parent: 2 - - uid: 10121 - components: - - type: Transform - pos: 28.5,3.5 - parent: 2 - - uid: 10122 - components: - - type: Transform - pos: 30.5,6.5 - parent: 2 - - uid: 10123 - components: - - type: Transform - pos: 31.5,6.5 - parent: 2 - uid: 10124 components: - type: Transform @@ -29319,26 +32201,6 @@ entities: - type: Transform pos: 32.5,2.5 parent: 2 - - uid: 10133 - components: - - type: Transform - pos: 32.5,1.5 - parent: 2 - - uid: 10134 - components: - - type: Transform - pos: 32.5,0.5 - parent: 2 - - uid: 10135 - components: - - type: Transform - pos: 32.5,-0.5 - parent: 2 - - uid: 10137 - components: - - type: Transform - pos: 32.5,-1.5 - parent: 2 - uid: 10138 components: - type: Transform @@ -29364,6 +32226,11 @@ entities: - type: Transform pos: 32.5,11.5 parent: 2 + - uid: 10155 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 - uid: 10157 components: - type: Transform @@ -29394,6 +32261,11 @@ entities: - type: Transform pos: 44.5,-4.5 parent: 2 + - uid: 10192 + components: + - type: Transform + pos: -52.5,-50.5 + parent: 2 - uid: 10206 components: - type: Transform @@ -29414,90 +32286,65 @@ entities: - type: Transform pos: 29.5,11.5 parent: 2 - - uid: 10210 + - uid: 10215 components: - type: Transform - pos: 23.5,-5.5 + pos: 10.5,-1.5 parent: 2 - - uid: 10211 + - uid: 10216 components: - type: Transform - pos: 23.5,-4.5 + pos: 9.5,-5.5 parent: 2 - - uid: 10212 + - uid: 10233 components: - type: Transform - pos: 22.5,-4.5 + pos: 0.5,-3.5 parent: 2 - - uid: 10213 + - uid: 10240 components: - type: Transform - pos: 21.5,-4.5 + pos: 3.5,-12.5 parent: 2 - - uid: 10214 + - uid: 10248 components: - type: Transform - pos: 21.5,-5.5 + pos: 4.5,-20.5 parent: 2 - - uid: 10215 + - uid: 10249 components: - type: Transform - pos: 20.5,-5.5 + pos: 4.5,-21.5 parent: 2 - - uid: 10216 + - uid: 10250 components: - type: Transform - pos: 24.5,-4.5 + pos: 4.5,-22.5 parent: 2 - - uid: 10217 + - uid: 10315 components: - type: Transform - pos: 25.5,-4.5 + pos: -4.5,-3.5 parent: 2 - - uid: 10218 + - uid: 10318 components: - type: Transform - pos: 25.5,-5.5 + pos: -3.5,-3.5 parent: 2 - - uid: 10219 + - uid: 10325 components: - type: Transform - pos: 26.5,-5.5 + pos: 57.5,-17.5 parent: 2 - - uid: 10220 + - uid: 10326 components: - type: Transform - pos: 27.5,-5.5 + pos: 56.5,-17.5 parent: 2 - - uid: 10248 + - uid: 10327 components: - type: Transform - pos: 4.5,-20.5 - parent: 2 - - uid: 10249 - components: - - type: Transform - pos: 4.5,-21.5 - parent: 2 - - uid: 10250 - components: - - type: Transform - pos: 4.5,-22.5 - parent: 2 - - uid: 10325 - components: - - type: Transform - pos: 57.5,-17.5 - parent: 2 - - uid: 10326 - components: - - type: Transform - pos: 56.5,-17.5 - parent: 2 - - uid: 10327 - components: - - type: Transform - pos: 54.5,-17.5 + pos: 54.5,-17.5 parent: 2 - uid: 10328 components: @@ -29764,340 +32611,175 @@ entities: - type: Transform pos: 44.5,-21.5 parent: 2 - - uid: 10443 - components: - - type: Transform - pos: 0.5,-32.5 - parent: 2 - - uid: 10447 - components: - - type: Transform - pos: -70.5,-15.5 - parent: 2 - - uid: 10448 - components: - - type: Transform - pos: -70.5,-9.5 - parent: 2 - - uid: 10453 - components: - - type: Transform - pos: -19.5,-13.5 - parent: 2 - - uid: 10454 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 2 - - uid: 10455 - components: - - type: Transform - pos: -24.5,-15.5 - parent: 2 - - uid: 10457 - components: - - type: Transform - pos: 34.5,14.5 - parent: 2 - - uid: 10473 - components: - - type: Transform - pos: 53.5,-52.5 - parent: 2 - - uid: 10500 - components: - - type: Transform - pos: 23.5,-15.5 - parent: 2 - - uid: 10530 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 2 - - uid: 10537 - components: - - type: Transform - pos: 21.5,-15.5 - parent: 2 - - uid: 10539 - components: - - type: Transform - pos: -32.5,-54.5 - parent: 2 - - uid: 10540 - components: - - type: Transform - pos: -33.5,-54.5 - parent: 2 - - uid: 10541 - components: - - type: Transform - pos: -34.5,-54.5 - parent: 2 - - uid: 10542 - components: - - type: Transform - pos: -31.5,-54.5 - parent: 2 - - uid: 10543 - components: - - type: Transform - pos: -30.5,-54.5 - parent: 2 - - uid: 10544 + - uid: 10385 components: - type: Transform - pos: -29.5,-54.5 + pos: -52.5,-49.5 parent: 2 - - uid: 10545 + - uid: 10386 components: - type: Transform - pos: -29.5,-55.5 + pos: -49.5,-52.5 parent: 2 - - uid: 10546 + - uid: 10388 components: - type: Transform - pos: -29.5,-56.5 + pos: -51.5,-53.5 parent: 2 - - uid: 10547 + - uid: 10391 components: - type: Transform - pos: -29.5,-57.5 + pos: -51.5,-55.5 parent: 2 - - uid: 10548 + - uid: 10392 components: - type: Transform - pos: -29.5,-58.5 + pos: -51.5,-56.5 parent: 2 - - uid: 10549 + - uid: 10393 components: - type: Transform - pos: -29.5,-59.5 + pos: -51.5,-54.5 parent: 2 - - uid: 10550 + - uid: 10394 components: - type: Transform - pos: -29.5,-60.5 + pos: -49.5,-50.5 parent: 2 - - uid: 10551 + - uid: 10443 components: - type: Transform - pos: -29.5,-61.5 + pos: 0.5,-32.5 parent: 2 - - uid: 10552 + - uid: 10447 components: - type: Transform - pos: -29.5,-62.5 + pos: -70.5,-15.5 parent: 2 - - uid: 10553 + - uid: 10448 components: - type: Transform - pos: -29.5,-63.5 + pos: -70.5,-9.5 parent: 2 - - uid: 10554 + - uid: 10473 components: - type: Transform - pos: -29.5,-64.5 + pos: 53.5,-52.5 parent: 2 - - uid: 10555 + - uid: 10476 components: - type: Transform - pos: -29.5,-65.5 + pos: -39.5,-54.5 parent: 2 - - uid: 10556 + - uid: 10509 components: - type: Transform - pos: -29.5,-66.5 + pos: -40.5,-54.5 parent: 2 - - uid: 10557 + - uid: 10523 components: - type: Transform - pos: -29.5,-67.5 + pos: -3.5,-14.5 parent: 2 - - uid: 10558 + - uid: 10530 components: - type: Transform - pos: -29.5,-68.5 + pos: 23.5,-16.5 parent: 2 - uid: 10566 components: - type: Transform pos: -31.5,22.5 parent: 2 - - uid: 10605 - components: - - type: Transform - pos: -30.5,-68.5 - parent: 2 - - uid: 10610 + - uid: 10570 components: - type: Transform - pos: -31.5,-68.5 + pos: 9.5,-16.5 parent: 2 - - uid: 10611 + - uid: 10591 components: - type: Transform - pos: -32.5,-63.5 + pos: 1.5,-14.5 parent: 2 - - uid: 10612 + - uid: 10592 components: - type: Transform - pos: -32.5,-64.5 + pos: 3.5,-14.5 parent: 2 - - uid: 10618 + - uid: 10605 components: - type: Transform - pos: -27.5,-63.5 + pos: -4.5,-10.5 parent: 2 - uid: 10619 components: - type: Transform - pos: -27.5,-64.5 - parent: 2 - - uid: 10620 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 2 - - uid: 10621 - components: - - type: Transform - pos: -27.5,-60.5 - parent: 2 - - uid: 10622 - components: - - type: Transform - pos: -32.5,-60.5 - parent: 2 - - uid: 10623 - components: - - type: Transform - pos: -32.5,-61.5 + pos: -4.5,-8.5 parent: 2 - uid: 10624 components: - type: Transform - pos: -31.5,-63.5 - parent: 2 - - uid: 10625 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 2 - - uid: 10626 - components: - - type: Transform - pos: -28.5,-63.5 - parent: 2 - - uid: 10629 - components: - - type: Transform - pos: -28.5,-61.5 - parent: 2 - - uid: 10630 - components: - - type: Transform - pos: -30.5,-58.5 - parent: 2 - - uid: 10631 - components: - - type: Transform - pos: -31.5,-58.5 - parent: 2 - - uid: 10632 - components: - - type: Transform - pos: -29.5,-53.5 - parent: 2 - - uid: 10633 - components: - - type: Transform - pos: -29.5,-52.5 - parent: 2 - - uid: 10634 - components: - - type: Transform - pos: -29.5,-51.5 - parent: 2 - - uid: 10635 - components: - - type: Transform - pos: -29.5,-50.5 - parent: 2 - - uid: 10636 - components: - - type: Transform - pos: -44.5,-52.5 - parent: 2 - - uid: 10637 - components: - - type: Transform - pos: -44.5,-53.5 - parent: 2 - - uid: 10638 - components: - - type: Transform - pos: -44.5,-54.5 + pos: -1.5,-7.5 parent: 2 - - uid: 10639 + - uid: 10674 components: - type: Transform - pos: -45.5,-54.5 + pos: 1.5,-11.5 parent: 2 - - uid: 10640 + - uid: 10675 components: - type: Transform - pos: -46.5,-54.5 + pos: 2.5,-3.5 parent: 2 - - uid: 10641 + - uid: 10676 components: - type: Transform - pos: -47.5,-54.5 + pos: 5.5,-14.5 parent: 2 - - uid: 10642 + - uid: 10677 components: - type: Transform - pos: -48.5,-54.5 + pos: 9.5,-14.5 parent: 2 - - uid: 10643 + - uid: 10712 components: - type: Transform - pos: -49.5,-54.5 + pos: 59.5,-52.5 parent: 2 - - uid: 10644 + - uid: 10728 components: - type: Transform - pos: -43.5,-54.5 + pos: 50.5,-31.5 parent: 2 - - uid: 10645 + - uid: 10731 components: - type: Transform - pos: -42.5,-54.5 + pos: 10.5,-2.5 parent: 2 - - uid: 10646 + - uid: 10734 components: - type: Transform - pos: -41.5,-54.5 + pos: 10.5,-3.5 parent: 2 - - uid: 10647 + - uid: 10735 components: - type: Transform - pos: -40.5,-54.5 + pos: -11.5,-2.5 parent: 2 - - uid: 10648 + - uid: 10741 components: - type: Transform - pos: -39.5,-54.5 + pos: 6.5,-0.5 parent: 2 - - uid: 10712 + - uid: 10743 components: - type: Transform - pos: 59.5,-52.5 + pos: -39.5,-57.5 parent: 2 - uid: 10746 components: - type: Transform - pos: -48.5,-31.5 + pos: 9.5,-0.5 parent: 2 - uid: 10813 components: @@ -30169,30 +32851,30 @@ entities: - type: Transform pos: 19.5,-49.5 parent: 2 - - uid: 10944 + - uid: 10948 components: - type: Transform - pos: 14.5,-55.5 + pos: 24.5,-52.5 parent: 2 - - uid: 10945 + - uid: 10950 components: - type: Transform - pos: 14.5,-54.5 + pos: 6.5,1.5 parent: 2 - - uid: 10974 + - uid: 11083 components: - type: Transform - pos: -44.5,-34.5 + pos: 17.5,14.5 parent: 2 - uid: 11108 components: - type: Transform pos: 30.5,-65.5 parent: 2 - - uid: 11147 + - uid: 11163 components: - type: Transform - pos: -35.5,2.5 + pos: 24.5,11.5 parent: 2 - uid: 11164 components: @@ -30204,35 +32886,60 @@ entities: - type: Transform pos: -21.5,11.5 parent: 2 - - uid: 11208 + - uid: 11172 components: - type: Transform - pos: 20.5,2.5 + pos: 16.5,29.5 parent: 2 - - uid: 11210 + - uid: 11184 components: - type: Transform - pos: 19.5,2.5 + pos: 13.5,-1.5 parent: 2 - - uid: 11211 + - uid: 11186 components: - type: Transform - pos: 19.5,3.5 + pos: 6.5,0.5 parent: 2 - - uid: 11212 + - uid: 11190 components: - type: Transform - pos: 20.5,0.5 + pos: 11.5,-1.5 parent: 2 - - uid: 11213 + - uid: 11192 components: - type: Transform - pos: 19.5,0.5 + pos: 10.5,-0.5 parent: 2 - - uid: 11214 + - uid: 11202 components: - type: Transform - pos: 19.5,-0.5 + pos: 10.5,-5.5 + parent: 2 + - uid: 11203 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 2 + - uid: 11204 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 11223 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - uid: 11227 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - uid: 11231 + components: + - type: Transform + pos: 16.5,-5.5 parent: 2 - uid: 11242 components: @@ -30244,6 +32951,11 @@ entities: - type: Transform pos: 57.5,-56.5 parent: 2 + - uid: 11268 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 - uid: 11289 components: - type: Transform @@ -30254,20 +32966,10 @@ entities: - type: Transform pos: 52.5,-52.5 parent: 2 - - uid: 11338 - components: - - type: Transform - pos: -2.5,-13.5 - parent: 2 - uid: 11340 components: - type: Transform - pos: -44.5,-35.5 - parent: 2 - - uid: 11341 - components: - - type: Transform - pos: -44.5,-36.5 + pos: -28.5,-11.5 parent: 2 - uid: 11432 components: @@ -30319,11 +33021,6 @@ entities: - type: Transform pos: 27.5,-44.5 parent: 2 - - uid: 11483 - components: - - type: Transform - pos: -28.5,-36.5 - parent: 2 - uid: 11484 components: - type: Transform @@ -30354,11 +33051,6 @@ entities: - type: Transform pos: 36.5,-41.5 parent: 2 - - uid: 11490 - components: - - type: Transform - pos: -29.5,-32.5 - parent: 2 - uid: 11494 components: - type: Transform @@ -30374,11 +33066,6 @@ entities: - type: Transform pos: 32.5,-44.5 parent: 2 - - uid: 11497 - components: - - type: Transform - pos: -34.5,-32.5 - parent: 2 - uid: 11508 components: - type: Transform @@ -30514,11 +33201,6 @@ entities: - type: Transform pos: 39.5,-31.5 parent: 2 - - uid: 11576 - components: - - type: Transform - pos: -26.5,-37.5 - parent: 2 - uid: 11593 components: - type: Transform @@ -30594,11 +33276,6 @@ entities: - type: Transform pos: -1.5,-44.5 parent: 2 - - uid: 11710 - components: - - type: Transform - pos: -0.5,-44.5 - parent: 2 - uid: 11711 components: - type: Transform @@ -30849,6 +33526,11 @@ entities: - type: Transform pos: -6.5,-34.5 parent: 2 + - uid: 11768 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 2 - uid: 11769 components: - type: Transform @@ -30924,6 +33606,11 @@ entities: - type: Transform pos: -10.5,-12.5 parent: 2 + - uid: 11815 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 - uid: 11816 components: - type: Transform @@ -30959,31 +33646,21 @@ entities: - type: Transform pos: -21.5,10.5 parent: 2 - - uid: 11831 + - uid: 11829 components: - type: Transform - pos: -10.5,9.5 + pos: 8.5,-17.5 parent: 2 - - uid: 11832 + - uid: 11831 components: - type: Transform - pos: -8.5,-51.5 + pos: -10.5,9.5 parent: 2 - uid: 11834 components: - type: Transform pos: -13.5,11.5 parent: 2 - - uid: 11849 - components: - - type: Transform - pos: -10.5,-38.5 - parent: 2 - - uid: 11850 - components: - - type: Transform - pos: -10.5,-39.5 - parent: 2 - uid: 11851 components: - type: Transform @@ -31034,6 +33711,16 @@ entities: - type: Transform pos: 57.5,-59.5 parent: 2 + - uid: 11871 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 11901 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 - uid: 11909 components: - type: Transform @@ -31129,115 +33816,35 @@ entities: - type: Transform pos: -11.5,-11.5 parent: 2 - - uid: 11994 - components: - - type: Transform - pos: 24.5,11.5 - parent: 2 - - uid: 11995 - components: - - type: Transform - pos: 24.5,10.5 - parent: 2 - - uid: 11996 - components: - - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 11997 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - - uid: 12003 - components: - - type: Transform - pos: 27.5,4.5 - parent: 2 - - uid: 12004 - components: - - type: Transform - pos: 28.5,4.5 - parent: 2 - - uid: 12005 - components: - - type: Transform - pos: 27.5,5.5 - parent: 2 - - uid: 12006 - components: - - type: Transform - pos: 27.5,6.5 - parent: 2 - - uid: 12007 - components: - - type: Transform - pos: 24.5,0.5 - parent: 2 - - uid: 12033 - components: - - type: Transform - pos: 13.5,0.5 - parent: 2 - - uid: 12034 - components: - - type: Transform - pos: 14.5,0.5 - parent: 2 - - uid: 12035 - components: - - type: Transform - pos: 15.5,0.5 - parent: 2 - - uid: 12036 - components: - - type: Transform - pos: 15.5,-0.5 - parent: 2 - - uid: 12037 - components: - - type: Transform - pos: 15.5,-1.5 - parent: 2 - - uid: 12038 - components: - - type: Transform - pos: 15.5,-2.5 - parent: 2 - - uid: 12039 - components: - - type: Transform - pos: 15.5,-3.5 - parent: 2 - - uid: 12041 + - uid: 11970 components: - type: Transform - pos: 15.5,1.5 + pos: 12.5,-17.5 parent: 2 - - uid: 12042 + - uid: 11977 components: - type: Transform - pos: 15.5,2.5 + pos: 15.5,-6.5 parent: 2 - - uid: 12043 + - uid: 11999 components: - type: Transform - pos: 15.5,3.5 + pos: -0.5,-3.5 parent: 2 - - uid: 12044 + - uid: 12017 components: - type: Transform - pos: 15.5,4.5 + pos: -2.5,-3.5 parent: 2 - - uid: 12045 + - uid: 12020 components: - type: Transform - pos: 15.5,6.5 + pos: -1.5,-3.5 parent: 2 - - uid: 12050 + - uid: 12021 components: - type: Transform - pos: 15.5,5.5 + pos: -4.5,-13.5 parent: 2 - uid: 12077 components: @@ -31369,25 +33976,15 @@ entities: - type: Transform pos: -11.5,24.5 parent: 2 - - uid: 12136 - components: - - type: Transform - pos: 16.5,3.5 - parent: 2 - - uid: 12289 - components: - - type: Transform - pos: 17.5,2.5 - parent: 2 - - uid: 12291 + - uid: 12256 components: - type: Transform - pos: 17.5,0.5 + pos: 4.5,-14.5 parent: 2 - - uid: 12292 + - uid: 12257 components: - type: Transform - pos: 17.5,-0.5 + pos: -0.5,-14.5 parent: 2 - uid: 12297 components: @@ -31404,4050 +34001,3930 @@ entities: - type: Transform pos: 6.5,9.5 parent: 2 - - uid: 12305 + - uid: 12308 components: - type: Transform - pos: 13.5,3.5 + pos: 2.5,-14.5 parent: 2 - - uid: 12306 + - uid: 12370 components: - type: Transform - pos: 13.5,2.5 + pos: -25.5,4.5 parent: 2 - - uid: 12308 + - uid: 12389 components: - type: Transform - pos: 13.5,1.5 + pos: -7.5,-3.5 parent: 2 - - uid: 12309 + - uid: 12477 components: - type: Transform - pos: 13.5,-0.5 + pos: 3.5,-13.5 parent: 2 - - uid: 12310 + - uid: 12484 components: - type: Transform - pos: 13.5,-1.5 + pos: -6.5,-3.5 parent: 2 - - uid: 12311 + - uid: 12489 components: - type: Transform - pos: 13.5,-2.5 + pos: 4.5,-3.5 parent: 2 - - uid: 12343 + - uid: 12499 components: - type: Transform - pos: -41.5,-34.5 + pos: 6.5,-14.5 parent: 2 - - uid: 12370 + - uid: 12509 components: - type: Transform - pos: -25.5,4.5 + pos: 9.5,-15.5 parent: 2 - - uid: 12402 + - uid: 12543 components: - type: Transform - pos: -26.5,-26.5 + pos: -4.5,-12.5 parent: 2 - - uid: 12403 + - uid: 12546 components: - type: Transform - pos: -27.5,-26.5 + pos: -7.5,-0.5 parent: 2 - - uid: 12404 + - uid: 12614 components: - type: Transform - pos: -28.5,-26.5 + pos: -22.5,16.5 parent: 2 - - uid: 12405 + - uid: 12632 components: - type: Transform - pos: -29.5,-26.5 + pos: -10.5,-54.5 parent: 2 - - uid: 12406 + - uid: 12759 components: - type: Transform - pos: -30.5,-26.5 + pos: 3.5,-94.5 parent: 2 - - uid: 12408 + - uid: 12760 components: - type: Transform - pos: -27.5,-27.5 + pos: 3.5,-99.5 parent: 2 - - uid: 12409 + - uid: 12761 components: - type: Transform - pos: -27.5,-28.5 + pos: -2.5,-95.5 parent: 2 - - uid: 12410 + - uid: 12762 components: - type: Transform - pos: -27.5,-29.5 + pos: 5.5,-95.5 parent: 2 - - uid: 12411 + - uid: 12763 components: - type: Transform - pos: -27.5,-30.5 + pos: -1.5,-95.5 parent: 2 - - uid: 12428 + - uid: 12764 components: - type: Transform - pos: -33.5,-34.5 + pos: 2.5,-89.5 parent: 2 - - uid: 12429 + - uid: 12765 components: - type: Transform - pos: -32.5,-34.5 + pos: 3.5,-96.5 parent: 2 - - uid: 12430 + - uid: 12766 components: - type: Transform - pos: -31.5,-34.5 + pos: 4.5,-95.5 parent: 2 - - uid: 12435 + - uid: 12768 components: - type: Transform - pos: -27.5,-37.5 + pos: 3.5,-90.5 parent: 2 - - uid: 12437 + - uid: 12769 components: - type: Transform - pos: -33.5,-35.5 + pos: 3.5,-95.5 parent: 2 - - uid: 12438 + - uid: 12840 components: - type: Transform - pos: -33.5,-36.5 + pos: -10.5,-61.5 parent: 2 - - uid: 12443 + - uid: 12841 components: - type: Transform - pos: -30.5,-32.5 + pos: -10.5,-60.5 parent: 2 - - uid: 12444 + - uid: 12842 components: - type: Transform - pos: -28.5,-33.5 + pos: -10.5,-62.5 parent: 2 - - uid: 12445 + - uid: 12843 components: - type: Transform - pos: -28.5,-32.5 + pos: -10.5,-63.5 parent: 2 - - uid: 12463 + - uid: 12854 components: - type: Transform - pos: -33.5,-25.5 + pos: -19.5,-47.5 parent: 2 - - uid: 12464 + - uid: 12883 components: - type: Transform - pos: -34.5,-25.5 + pos: -34.5,-4.5 parent: 2 - - uid: 12465 + - uid: 12955 components: - type: Transform - pos: -35.5,-25.5 + pos: -25.5,-41.5 parent: 2 - - uid: 12466 + - uid: 12956 components: - type: Transform - pos: -36.5,-25.5 + pos: -24.5,-41.5 parent: 2 - - uid: 12467 + - uid: 12957 components: - type: Transform - pos: -38.5,-25.5 + pos: -23.5,-41.5 parent: 2 - - uid: 12468 + - uid: 12958 components: - type: Transform - pos: -37.5,-25.5 + pos: -23.5,-40.5 parent: 2 - - uid: 12469 + - uid: 12959 components: - type: Transform - pos: -38.5,-24.5 + pos: -23.5,-39.5 parent: 2 - - uid: 12470 + - uid: 12960 components: - type: Transform - pos: -38.5,-23.5 + pos: -23.5,-38.5 parent: 2 - - uid: 12471 + - uid: 12961 components: - type: Transform - pos: -38.5,-22.5 + pos: -23.5,-37.5 parent: 2 - - uid: 12472 + - uid: 12962 components: - type: Transform - pos: -38.5,-21.5 + pos: -23.5,-36.5 parent: 2 - - uid: 12473 + - uid: 12963 components: - type: Transform - pos: -37.5,-21.5 + pos: -23.5,-35.5 parent: 2 - - uid: 12474 + - uid: 12964 components: - type: Transform - pos: -36.5,-21.5 + pos: -28.5,-4.5 parent: 2 - - uid: 12475 + - uid: 12965 components: - type: Transform - pos: -35.5,-21.5 + pos: -23.5,-32.5 parent: 2 - - uid: 12476 + - uid: 12966 components: - type: Transform - pos: -34.5,-21.5 + pos: -23.5,-33.5 parent: 2 - - uid: 12477 + - uid: 12969 components: - type: Transform - pos: -33.5,-21.5 + pos: -1.5,25.5 parent: 2 - - uid: 12478 + - uid: 12972 components: - type: Transform - pos: -38.5,-20.5 + pos: -33.5,14.5 parent: 2 - - uid: 12479 + - uid: 12979 components: - type: Transform - pos: -38.5,-19.5 + pos: 16.5,-4.5 parent: 2 - - uid: 12480 + - uid: 12992 components: - type: Transform - pos: -39.5,-19.5 + pos: 3.5,-10.5 parent: 2 - - uid: 12481 + - uid: 13004 components: - type: Transform - pos: -37.5,-19.5 + pos: 3.5,-7.5 parent: 2 - - uid: 12482 + - uid: 13024 components: - type: Transform - pos: -34.5,-20.5 + pos: 3.5,-8.5 parent: 2 - - uid: 12483 + - uid: 13028 components: - type: Transform - pos: -34.5,-19.5 + pos: -20.5,-5.5 parent: 2 - - uid: 12484 + - uid: 13034 components: - type: Transform - pos: -35.5,-19.5 + pos: 3.5,-9.5 parent: 2 - - uid: 12485 + - uid: 13067 components: - type: Transform - pos: -33.5,-19.5 + pos: 2.5,23.5 parent: 2 - - uid: 12509 + - uid: 13154 components: - type: Transform - pos: -44.5,-23.5 + pos: -7.5,9.5 parent: 2 - - uid: 12510 + - uid: 13155 components: - type: Transform - pos: -44.5,-22.5 + pos: 8.5,-3.5 parent: 2 - - uid: 12511 + - uid: 13185 components: - type: Transform - pos: -44.5,-24.5 + pos: -52.5,-22.5 parent: 2 - - uid: 12512 + - uid: 13198 components: - type: Transform - pos: -44.5,-21.5 + pos: 27.5,28.5 parent: 2 - - uid: 12513 + - uid: 13230 components: - type: Transform - pos: -44.5,-20.5 + pos: 9.5,9.5 parent: 2 - - uid: 12514 + - uid: 13235 components: - type: Transform - pos: -44.5,-19.5 + pos: -4.5,-14.5 parent: 2 - - uid: 12515 + - uid: 13238 components: - type: Transform - pos: -43.5,-19.5 + pos: -2.5,-14.5 parent: 2 - - uid: 12516 + - uid: 13239 components: - type: Transform - pos: -45.5,-22.5 + pos: -0.5,-11.5 parent: 2 - - uid: 12517 + - uid: 13240 components: - type: Transform - pos: -46.5,-22.5 + pos: 49.5,-31.5 parent: 2 - - uid: 12518 + - uid: 13244 components: - type: Transform - pos: -46.5,-21.5 + pos: 7.5,-3.5 parent: 2 - - uid: 12519 + - uid: 13247 components: - type: Transform - pos: -46.5,-23.5 + pos: 6.5,-3.5 parent: 2 - - uid: 12594 + - uid: 13256 components: - type: Transform - pos: -41.5,-40.5 + pos: -5.5,-3.5 parent: 2 - - uid: 12595 + - uid: 13260 components: - type: Transform - pos: -42.5,-40.5 + pos: 1.5,-3.5 parent: 2 - - uid: 12611 + - uid: 13263 components: - type: Transform - pos: -37.5,-34.5 + pos: 3.5,-3.5 parent: 2 - - uid: 12614 + - uid: 13275 components: - type: Transform - pos: -22.5,16.5 + pos: 48.5,-47.5 parent: 2 - - uid: 12616 + - uid: 13296 components: - type: Transform - pos: -47.5,-44.5 + pos: -3.5,-7.5 parent: 2 - - uid: 12617 + - uid: 13307 components: - type: Transform - pos: -47.5,-43.5 + pos: 51.5,-52.5 parent: 2 - - uid: 12618 + - uid: 13314 components: - type: Transform - pos: -48.5,-43.5 + pos: 31.5,-5.5 parent: 2 - - uid: 12619 + - uid: 13315 components: - type: Transform - pos: -49.5,-43.5 + pos: 31.5,-6.5 parent: 2 - - uid: 12620 + - uid: 13316 components: - type: Transform - pos: -51.5,-45.5 + pos: 31.5,-7.5 parent: 2 - - uid: 12621 + - uid: 13317 components: - type: Transform - pos: -50.5,-43.5 + pos: 31.5,-9.5 parent: 2 - - uid: 12623 + - uid: 13318 components: - type: Transform - pos: -50.5,-40.5 + pos: 31.5,-10.5 parent: 2 - - uid: 12624 + - uid: 13319 components: - type: Transform - pos: -51.5,-44.5 + pos: 31.5,-11.5 parent: 2 - - uid: 12625 + - uid: 13320 components: - type: Transform - pos: -51.5,-42.5 + pos: 31.5,-12.5 parent: 2 - - uid: 12626 + - uid: 13321 components: - type: Transform - pos: -50.5,-46.5 + pos: 31.5,-13.5 parent: 2 - - uid: 12627 + - uid: 13322 components: - type: Transform - pos: -50.5,-47.5 + pos: 31.5,-14.5 parent: 2 - - uid: 12628 + - uid: 13323 components: - type: Transform - pos: -50.5,-48.5 + pos: 31.5,-15.5 parent: 2 - - uid: 12629 + - uid: 13324 components: - type: Transform - pos: -51.5,-48.5 + pos: 31.5,-8.5 parent: 2 - - uid: 12630 + - uid: 13325 components: - type: Transform - pos: -49.5,-46.5 + pos: 31.5,-16.5 parent: 2 - - uid: 12631 + - uid: 13326 components: - type: Transform - pos: -48.5,-46.5 + pos: 31.5,-17.5 parent: 2 - - uid: 12632 + - uid: 13327 components: - type: Transform - pos: -48.5,-45.5 + pos: 31.5,-18.5 parent: 2 - - uid: 12633 + - uid: 13328 components: - type: Transform - pos: -51.5,-46.5 + pos: 30.5,-18.5 parent: 2 - - uid: 12634 + - uid: 13329 components: - type: Transform - pos: -52.5,-46.5 + pos: 29.5,-18.5 parent: 2 - - uid: 12635 + - uid: 13330 components: - type: Transform - pos: -53.5,-46.5 + pos: 28.5,-18.5 parent: 2 - - uid: 12636 + - uid: 13331 components: - type: Transform - pos: -53.5,-45.5 + pos: 27.5,-18.5 parent: 2 - - uid: 12637 + - uid: 13332 components: - type: Transform - pos: -50.5,-39.5 + pos: 26.5,-18.5 parent: 2 - - uid: 12638 + - uid: 13333 components: - type: Transform - pos: -50.5,-38.5 + pos: 31.5,-4.5 parent: 2 - - uid: 12639 + - uid: 13334 components: - type: Transform - pos: -51.5,-38.5 + pos: 31.5,-3.5 parent: 2 - - uid: 12640 + - uid: 13352 components: - type: Transform - pos: -51.5,-40.5 + pos: 30.5,-14.5 parent: 2 - - uid: 12641 + - uid: 13405 components: - type: Transform - pos: -52.5,-40.5 + pos: 1.5,-44.5 parent: 2 - - uid: 12642 + - uid: 13524 components: - type: Transform - pos: -53.5,-40.5 + pos: 3.5,9.5 parent: 2 - - uid: 12643 + - uid: 13616 components: - type: Transform - pos: -53.5,-41.5 + pos: -18.5,16.5 parent: 2 - - uid: 12644 + - uid: 13647 components: - type: Transform - pos: -51.5,-41.5 + pos: 26.5,29.5 parent: 2 - - uid: 12645 + - uid: 13678 components: - type: Transform - pos: -47.5,-29.5 + pos: -3.5,-11.5 parent: 2 - - uid: 12646 + - uid: 13679 components: - type: Transform - pos: -47.5,-30.5 + pos: -1.5,-14.5 parent: 2 - - uid: 12647 + - uid: 13681 components: - type: Transform - pos: -48.5,-30.5 + pos: 0.5,-14.5 parent: 2 - - uid: 12658 + - uid: 13694 components: - type: Transform - pos: -51.5,-35.5 + pos: 9.5,-3.5 parent: 2 - - uid: 12659 + - uid: 13695 components: - type: Transform - pos: -50.5,-35.5 + pos: 5.5,-3.5 parent: 2 - - uid: 12661 + - uid: 13700 components: - type: Transform - pos: -53.5,-33.5 + pos: -65.5,-8.5 parent: 2 - - uid: 12662 + - uid: 13701 components: - type: Transform - pos: -53.5,-32.5 + pos: -65.5,-15.5 parent: 2 - - uid: 12664 + - uid: 13702 components: - type: Transform - pos: -53.5,-28.5 + pos: -65.5,-17.5 parent: 2 - - uid: 12665 + - uid: 13707 components: - type: Transform - pos: -53.5,-27.5 + pos: 45.5,8.5 parent: 2 - - uid: 12667 + - uid: 13708 components: - type: Transform - pos: -51.5,-25.5 + pos: 46.5,-5.5 parent: 2 - - uid: 12668 + - uid: 13709 components: - type: Transform - pos: -50.5,-25.5 + pos: 47.5,-5.5 parent: 2 - - uid: 12671 + - uid: 13710 components: - type: Transform - pos: -48.5,-27.5 + pos: 48.5,-5.5 parent: 2 - - uid: 12672 + - uid: 13711 components: - type: Transform - pos: -48.5,-28.5 + pos: 49.5,-5.5 parent: 2 - - uid: 12678 + - uid: 13717 components: - type: Transform - pos: -32.5,-28.5 + pos: 49.5,-4.5 parent: 2 - - uid: 12679 + - uid: 13751 components: - type: Transform - pos: -32.5,-29.5 + pos: -51.5,-50.5 parent: 2 - - uid: 12680 + - uid: 13774 components: - type: Transform - pos: -32.5,-30.5 + pos: 28.5,29.5 parent: 2 - - uid: 12681 + - uid: 13784 components: - type: Transform - pos: -33.5,-30.5 + pos: 27.5,-14.5 parent: 2 - - uid: 12682 + - uid: 13785 components: - type: Transform - pos: -34.5,-30.5 + pos: -65.5,-7.5 parent: 2 - - uid: 12683 + - uid: 14145 components: - type: Transform - pos: -35.5,-30.5 + pos: 37.5,26.5 parent: 2 - - uid: 12684 + - uid: 14161 components: - type: Transform - pos: -36.5,-30.5 + pos: 45.5,-6.5 parent: 2 - - uid: 12685 + - uid: 14248 components: - type: Transform - pos: -37.5,-30.5 + pos: -21.5,22.5 parent: 2 - - uid: 12686 + - uid: 14277 components: - type: Transform - pos: -38.5,-30.5 + pos: -41.5,-54.5 parent: 2 - - uid: 12687 + - uid: 14338 components: - type: Transform - pos: -37.5,-29.5 + pos: 45.5,20.5 parent: 2 - - uid: 12688 + - uid: 14420 components: - type: Transform - pos: -37.5,-28.5 + pos: -8.5,-20.5 parent: 2 - - uid: 12689 + - uid: 14431 components: - type: Transform - pos: -34.5,-29.5 + pos: -14.5,14.5 parent: 2 - - uid: 12690 + - uid: 14432 components: - type: Transform - pos: -34.5,-28.5 + pos: -8.5,-19.5 parent: 2 - - uid: 12691 + - uid: 14433 components: - type: Transform - pos: -31.5,-30.5 + pos: -12.5,14.5 parent: 2 - - uid: 12692 + - uid: 14439 components: - type: Transform - pos: -30.5,-30.5 + pos: -21.5,-0.5 parent: 2 - - uid: 12698 + - uid: 14442 components: - type: Transform - pos: -50.5,-27.5 + pos: -12.5,11.5 parent: 2 - - uid: 12711 + - uid: 14470 components: - type: Transform - pos: 6.5,-55.5 + pos: -29.5,4.5 parent: 2 - - uid: 12712 + - uid: 14508 components: - type: Transform - pos: 6.5,-56.5 + pos: -18.5,15.5 parent: 2 - - uid: 12713 + - uid: 14529 components: - type: Transform - pos: 6.5,-54.5 + pos: -3.5,11.5 parent: 2 - - uid: 12718 + - uid: 14537 components: - type: Transform - pos: 11.5,-53.5 + pos: -8.5,-13.5 parent: 2 - - uid: 12726 + - uid: 14538 components: - type: Transform - pos: -8.5,-65.5 + pos: -7.5,-13.5 parent: 2 - - uid: 12729 + - uid: 14614 components: - type: Transform - pos: 11.5,-55.5 + pos: -28.5,4.5 parent: 2 - - uid: 12730 + - uid: 14615 components: - type: Transform - pos: 11.5,-54.5 + pos: -28.5,2.5 parent: 2 - - uid: 12731 + - uid: 14780 components: - type: Transform - pos: 11.5,-61.5 + pos: 5.5,23.5 parent: 2 - - uid: 12732 + - uid: 14786 components: - type: Transform - pos: 11.5,-62.5 + pos: -20.5,-9.5 parent: 2 - - uid: 12733 + - uid: 14804 components: - type: Transform - pos: 11.5,-63.5 + pos: -25.5,15.5 parent: 2 - - uid: 12734 + - uid: 14824 components: - type: Transform - pos: 11.5,-64.5 + pos: 41.5,20.5 parent: 2 - - uid: 12735 + - uid: 14831 components: - type: Transform - pos: 11.5,-65.5 + pos: -0.5,13.5 parent: 2 - - uid: 12736 + - uid: 14834 components: - type: Transform - pos: 11.5,-66.5 + pos: -23.5,16.5 parent: 2 - - uid: 12737 + - uid: 14837 components: - type: Transform - pos: 11.5,-67.5 + pos: -24.5,16.5 parent: 2 - - uid: 12738 + - uid: 14842 components: - type: Transform - pos: 11.5,-68.5 + pos: 23.5,-56.5 parent: 2 - - uid: 12739 + - uid: 14848 components: - type: Transform - pos: 11.5,-69.5 + pos: -3.5,-22.5 parent: 2 - - uid: 12740 + - uid: 14856 components: - type: Transform - pos: 11.5,-70.5 + pos: -9.5,-13.5 parent: 2 - - uid: 12741 + - uid: 14954 components: - type: Transform - pos: 11.5,-71.5 + pos: 46.5,-39.5 parent: 2 - - uid: 12742 + - uid: 15013 components: - type: Transform - pos: 10.5,-68.5 + pos: -25.5,16.5 parent: 2 - - uid: 12743 + - uid: 15032 components: - type: Transform - pos: 9.5,-68.5 + pos: -21.5,9.5 parent: 2 - - uid: 12744 + - uid: 15036 components: - type: Transform - pos: 8.5,-68.5 + pos: 50.5,20.5 parent: 2 - - uid: 12745 + - uid: 15060 components: - type: Transform - pos: 10.5,-61.5 + pos: 0.5,-95.5 parent: 2 - - uid: 12746 + - uid: 15061 components: - type: Transform - pos: 9.5,-61.5 + pos: 1.5,-95.5 parent: 2 - - uid: 12747 + - uid: 15062 components: - type: Transform - pos: 8.5,-61.5 + pos: -3.5,-95.5 parent: 2 - - uid: 12748 + - uid: 15067 components: - type: Transform - pos: 8.5,-62.5 + pos: 3.5,-92.5 parent: 2 - - uid: 12749 + - uid: 15068 components: - type: Transform - pos: 8.5,-67.5 + pos: 3.5,-93.5 parent: 2 - - uid: 12750 + - uid: 15070 components: - type: Transform - pos: 10.5,-64.5 + pos: 2.5,-95.5 parent: 2 - - uid: 12751 + - uid: 15072 components: - type: Transform - pos: 9.5,-64.5 + pos: 3.5,-89.5 parent: 2 - - uid: 12752 + - uid: 15073 components: - type: Transform - pos: 9.5,-65.5 + pos: 3.5,-91.5 parent: 2 - - uid: 12753 + - uid: 15074 components: - type: Transform - pos: 12.5,-61.5 + pos: 1.5,-89.5 parent: 2 - - uid: 12754 + - uid: 15100 components: - type: Transform - pos: 13.5,-61.5 + pos: -0.5,-95.5 parent: 2 - - uid: 12755 + - uid: 15158 components: - type: Transform - pos: 13.5,-60.5 + pos: 51.5,20.5 parent: 2 - - uid: 12756 + - uid: 15178 components: - type: Transform - pos: 13.5,-62.5 + pos: 44.5,-39.5 parent: 2 - - uid: 12757 + - uid: 15203 components: - type: Transform - pos: 13.5,-63.5 + pos: 46.5,23.5 parent: 2 - - uid: 12758 + - uid: 15217 components: - type: Transform - pos: 12.5,-68.5 + pos: 46.5,24.5 parent: 2 - - uid: 12759 + - uid: 15245 components: - type: Transform - pos: 13.5,-68.5 + pos: 46.5,25.5 parent: 2 - - uid: 12760 + - uid: 15266 components: - type: Transform - pos: 13.5,-67.5 + pos: 48.5,-29.5 parent: 2 - - uid: 12761 + - uid: 15267 components: - type: Transform - pos: 13.5,-66.5 + pos: 48.5,-30.5 parent: 2 - - uid: 12762 + - uid: 15268 components: - type: Transform - pos: 13.5,-69.5 + pos: 48.5,-31.5 parent: 2 - - uid: 12763 + - uid: 15318 components: - type: Transform - pos: 12.5,-71.5 + pos: 38.5,24.5 parent: 2 - - uid: 12764 + - uid: 15333 components: - type: Transform - pos: 13.5,-71.5 + pos: 37.5,24.5 parent: 2 - - uid: 12765 + - uid: 15339 components: - type: Transform - pos: 10.5,-71.5 + pos: 46.5,20.5 parent: 2 - - uid: 12766 + - uid: 15340 components: - type: Transform - pos: 9.5,-71.5 + pos: 46.5,21.5 parent: 2 - - uid: 12770 + - uid: 15341 components: - type: Transform - pos: 12.5,-64.5 + pos: 46.5,22.5 parent: 2 - - uid: 12771 + - uid: 15343 components: - type: Transform - pos: 13.5,-64.5 + pos: 42.5,20.5 parent: 2 - - uid: 12780 + - uid: 15350 components: - type: Transform - pos: -37.5,-36.5 + pos: -4.5,-22.5 parent: 2 - - uid: 12803 + - uid: 15374 components: - type: Transform - pos: -10.5,-64.5 + pos: 38.5,-14.5 parent: 2 - - uid: 12804 + - uid: 15390 components: - type: Transform - pos: -9.5,-64.5 + pos: -36.5,-4.5 parent: 2 - - uid: 12805 + - uid: 15460 components: - type: Transform - pos: -8.5,-64.5 + pos: -27.5,-5.5 parent: 2 - - uid: 12806 + - uid: 15487 components: - type: Transform - pos: -7.5,-64.5 + pos: 30.5,-36.5 parent: 2 - - uid: 12807 + - uid: 15488 components: - type: Transform - pos: -6.5,-64.5 + pos: 16.5,-20.5 parent: 2 - - uid: 12808 + - uid: 15489 components: - type: Transform - pos: -6.5,-65.5 + pos: 16.5,-21.5 parent: 2 - - uid: 12809 + - uid: 15490 components: - type: Transform - pos: -8.5,-59.5 + pos: 16.5,-22.5 parent: 2 - - uid: 12810 + - uid: 15491 components: - type: Transform - pos: -8.5,-60.5 + pos: 15.5,-22.5 parent: 2 - - uid: 12811 + - uid: 15492 components: - type: Transform - pos: -8.5,-61.5 + pos: 14.5,-22.5 parent: 2 - - uid: 12812 + - uid: 15493 components: - type: Transform - pos: -8.5,-62.5 + pos: 13.5,-22.5 parent: 2 - - uid: 12813 + - uid: 15494 components: - type: Transform - pos: -8.5,-63.5 + pos: 12.5,-22.5 parent: 2 - - uid: 12814 + - uid: 15495 components: - type: Transform - pos: -8.5,-66.5 + pos: 11.5,-22.5 parent: 2 - - uid: 12815 + - uid: 15496 components: - type: Transform - pos: -8.5,-67.5 + pos: 10.5,-22.5 parent: 2 - - uid: 12816 + - uid: 15497 components: - type: Transform - pos: -8.5,-68.5 + pos: 10.5,-23.5 parent: 2 - - uid: 12817 + - uid: 15498 components: - type: Transform - pos: -8.5,-69.5 + pos: 10.5,-24.5 parent: 2 - - uid: 12818 + - uid: 15499 components: - type: Transform - pos: -8.5,-70.5 + pos: 10.5,-25.5 parent: 2 - - uid: 12819 + - uid: 15500 components: - type: Transform - pos: -8.5,-71.5 + pos: 10.5,-26.5 parent: 2 - - uid: 12820 + - uid: 15501 components: - type: Transform - pos: -7.5,-71.5 + pos: 10.5,-27.5 parent: 2 - - uid: 12821 + - uid: 15502 components: - type: Transform - pos: -6.5,-71.5 + pos: 10.5,-28.5 parent: 2 - - uid: 12822 + - uid: 15503 components: - type: Transform - pos: -9.5,-71.5 + pos: 15.5,-23.5 parent: 2 - - uid: 12823 + - uid: 15504 components: - type: Transform - pos: -10.5,-71.5 + pos: 15.5,-24.5 parent: 2 - - uid: 12824 + - uid: 15505 components: - type: Transform - pos: -9.5,-68.5 + pos: 15.5,-25.5 parent: 2 - - uid: 12825 + - uid: 15506 components: - type: Transform - pos: -10.5,-68.5 + pos: 15.5,-26.5 parent: 2 - - uid: 12826 + - uid: 15507 components: - type: Transform - pos: -10.5,-69.5 + pos: 17.5,-21.5 parent: 2 - - uid: 12827 + - uid: 15508 components: - type: Transform - pos: -10.5,-67.5 + pos: 18.5,-21.5 parent: 2 - - uid: 12828 + - uid: 15509 components: - type: Transform - pos: -10.5,-66.5 + pos: 19.5,-21.5 parent: 2 - - uid: 12829 + - uid: 15510 components: - type: Transform - pos: -8.5,-68.5 + pos: 20.5,-21.5 parent: 2 - - uid: 12830 + - uid: 15511 components: - type: Transform - pos: -7.5,-68.5 + pos: 22.5,-21.5 parent: 2 - - uid: 12831 + - uid: 15512 components: - type: Transform - pos: -6.5,-68.5 + pos: 23.5,-21.5 parent: 2 - - uid: 12832 + - uid: 15513 components: - type: Transform - pos: -5.5,-68.5 + pos: 21.5,-21.5 parent: 2 - - uid: 12833 + - uid: 15517 components: - type: Transform - pos: -5.5,-67.5 + pos: 38.5,-19.5 parent: 2 - - uid: 12835 + - uid: 15518 components: - type: Transform - pos: -7.5,-61.5 + pos: 38.5,-20.5 parent: 2 - - uid: 12836 + - uid: 15519 components: - type: Transform - pos: -6.5,-61.5 + pos: 38.5,-21.5 parent: 2 - - uid: 12837 + - uid: 15520 components: - type: Transform - pos: -5.5,-61.5 + pos: 39.5,-21.5 parent: 2 - - uid: 12838 + - uid: 15521 components: - type: Transform - pos: -5.5,-62.5 + pos: 40.5,-21.5 parent: 2 - - uid: 12839 + - uid: 15522 components: - type: Transform - pos: -9.5,-61.5 + pos: 41.5,-21.5 parent: 2 - - uid: 12840 + - uid: 15523 components: - type: Transform - pos: -10.5,-61.5 + pos: 37.5,-21.5 parent: 2 - - uid: 12841 + - uid: 15524 components: - type: Transform - pos: -10.5,-60.5 + pos: 36.5,-21.5 parent: 2 - - uid: 12842 + - uid: 15525 components: - type: Transform - pos: -10.5,-62.5 + pos: 35.5,-21.5 parent: 2 - - uid: 12843 + - uid: 15526 components: - type: Transform - pos: -10.5,-63.5 + pos: 34.5,-21.5 parent: 2 - - uid: 12848 + - uid: 15527 components: - type: Transform - pos: -3.5,-54.5 + pos: 32.5,-21.5 parent: 2 - - uid: 12849 + - uid: 15528 components: - type: Transform - pos: -3.5,-55.5 + pos: 31.5,-21.5 parent: 2 - - uid: 12850 + - uid: 15529 components: - type: Transform - pos: -3.5,-56.5 + pos: 30.5,-21.5 parent: 2 - - uid: 12852 + - uid: 15530 components: - type: Transform - pos: -7.5,-52.5 + pos: 29.5,-21.5 parent: 2 - - uid: 12853 + - uid: 15531 components: - type: Transform - pos: -7.5,-51.5 + pos: 28.5,-21.5 parent: 2 - - uid: 12854 + - uid: 15532 components: - type: Transform - pos: -19.5,-47.5 + pos: 33.5,-21.5 parent: 2 - - uid: 12883 + - uid: 15533 components: - type: Transform - pos: -34.5,-4.5 + pos: 27.5,-21.5 parent: 2 - - uid: 12888 + - uid: 15534 components: - type: Transform - pos: -31.5,-56.5 + pos: 13.5,-34.5 parent: 2 - - uid: 12890 + - uid: 15535 components: - type: Transform - pos: -30.5,-56.5 + pos: 13.5,-33.5 parent: 2 - - uid: 12902 + - uid: 15536 components: - type: Transform - pos: -41.5,-49.5 + pos: 13.5,-32.5 parent: 2 - - uid: 12903 + - uid: 15537 components: - type: Transform - pos: -41.5,-47.5 + pos: 14.5,-32.5 parent: 2 - - uid: 12904 + - uid: 15539 components: - type: Transform - pos: -41.5,-46.5 + pos: 16.5,-32.5 parent: 2 - - uid: 12905 + - uid: 15540 components: - type: Transform - pos: -41.5,-45.5 + pos: 16.5,-31.5 parent: 2 - - uid: 12906 + - uid: 15541 components: - type: Transform - pos: -41.5,-44.5 + pos: 16.5,-30.5 parent: 2 - - uid: 12907 + - uid: 15542 components: - type: Transform - pos: -41.5,-48.5 + pos: 16.5,-29.5 parent: 2 - - uid: 12908 + - uid: 15543 components: - type: Transform - pos: -41.5,-43.5 + pos: 12.5,-32.5 parent: 2 - - uid: 12909 + - uid: 15545 components: - type: Transform - pos: -40.5,-43.5 + pos: 10.5,-32.5 parent: 2 - - uid: 12910 + - uid: 15546 components: - type: Transform - pos: -39.5,-43.5 + pos: 10.5,-33.5 parent: 2 - - uid: 12911 + - uid: 15547 components: - type: Transform - pos: -38.5,-43.5 + pos: 10.5,-34.5 parent: 2 - - uid: 12912 + - uid: 15548 components: - type: Transform - pos: -40.5,-40.5 + pos: 10.5,-35.5 parent: 2 - - uid: 12913 + - uid: 15549 components: - type: Transform - pos: -39.5,-40.5 + pos: 10.5,-36.5 parent: 2 - - uid: 12914 + - uid: 15550 components: - type: Transform - pos: -38.5,-40.5 + pos: 10.5,-37.5 parent: 2 - - uid: 12915 + - uid: 15551 components: - type: Transform - pos: -37.5,-40.5 + pos: 10.5,-38.5 parent: 2 - - uid: 12916 + - uid: 15552 components: - type: Transform - pos: -37.5,-39.5 + pos: 10.5,-39.5 parent: 2 - - uid: 12917 + - uid: 15553 components: - type: Transform - pos: -37.5,-38.5 + pos: 10.5,-40.5 parent: 2 - - uid: 12918 + - uid: 15554 components: - type: Transform - pos: -37.5,-37.5 + pos: 10.5,-41.5 parent: 2 - - uid: 12924 + - uid: 15555 components: - type: Transform - pos: -33.5,-42.5 + pos: 10.5,-42.5 parent: 2 - - uid: 12925 + - uid: 15556 components: - type: Transform - pos: -33.5,-43.5 + pos: 10.5,-43.5 parent: 2 - - uid: 12926 + - uid: 15557 components: - type: Transform - pos: -33.5,-44.5 + pos: 10.5,-44.5 parent: 2 - - uid: 12927 + - uid: 15558 components: - type: Transform - pos: -33.5,-45.5 + pos: 6.5,-30.5 parent: 2 - - uid: 12928 + - uid: 15559 components: - type: Transform - pos: -32.5,-44.5 + pos: 18.5,-41.5 parent: 2 - - uid: 12929 + - uid: 15560 components: - type: Transform - pos: -31.5,-44.5 + pos: 18.5,-42.5 parent: 2 - - uid: 12945 + - uid: 15561 components: - type: Transform - pos: -26.5,-39.5 + pos: 18.5,-43.5 parent: 2 - - uid: 12946 + - uid: 15562 components: - type: Transform - pos: -26.5,-40.5 + pos: 17.5,-43.5 parent: 2 - - uid: 12947 + - uid: 15563 components: - type: Transform - pos: -26.5,-41.5 + pos: 16.5,-43.5 parent: 2 - - uid: 12948 + - uid: 15564 components: - type: Transform - pos: -27.5,-41.5 + pos: 15.5,-43.5 parent: 2 - - uid: 12949 + - uid: 15565 components: - type: Transform - pos: -27.5,-42.5 + pos: 14.5,-43.5 parent: 2 - - uid: 12950 + - uid: 15573 components: - type: Transform - pos: -27.5,-43.5 + pos: 18.5,-47.5 parent: 2 - - uid: 12951 + - uid: 15575 components: - type: Transform - pos: -27.5,-44.5 + pos: 19.5,-48.5 parent: 2 - - uid: 12952 + - uid: 15576 components: - type: Transform - pos: -27.5,-45.5 + pos: 20.5,-48.5 parent: 2 - - uid: 12953 + - uid: 15577 components: - type: Transform - pos: -27.5,-46.5 + pos: 18.5,-40.5 parent: 2 - - uid: 12954 + - uid: 15578 components: - type: Transform - pos: -27.5,-47.5 + pos: 18.5,-39.5 parent: 2 - - uid: 12955 + - uid: 15579 components: - type: Transform - pos: -25.5,-41.5 + pos: 18.5,-38.5 parent: 2 - - uid: 12956 + - uid: 15580 components: - type: Transform - pos: -24.5,-41.5 + pos: 18.5,-37.5 parent: 2 - - uid: 12957 + - uid: 15581 components: - type: Transform - pos: -23.5,-41.5 + pos: 18.5,-36.5 parent: 2 - - uid: 12958 + - uid: 15582 components: - type: Transform - pos: -23.5,-40.5 + pos: 19.5,-36.5 parent: 2 - - uid: 12959 + - uid: 15583 components: - type: Transform - pos: -23.5,-39.5 + pos: 20.5,-36.5 parent: 2 - - uid: 12960 + - uid: 15584 components: - type: Transform - pos: -23.5,-38.5 + pos: 21.5,-36.5 parent: 2 - - uid: 12961 + - uid: 15585 components: - type: Transform - pos: -23.5,-37.5 + pos: 17.5,-38.5 parent: 2 - - uid: 12962 + - uid: 15586 components: - type: Transform - pos: -23.5,-36.5 + pos: 16.5,-38.5 parent: 2 - - uid: 12963 + - uid: 15587 components: - type: Transform - pos: -23.5,-35.5 + pos: 15.5,-38.5 parent: 2 - - uid: 12964 + - uid: 15588 components: - type: Transform - pos: -28.5,-4.5 + pos: 14.5,-38.5 parent: 2 - - uid: 12965 + - uid: 15589 components: - type: Transform - pos: -23.5,-32.5 + pos: 14.5,-37.5 parent: 2 - - uid: 12966 + - uid: 15590 components: - type: Transform - pos: -23.5,-33.5 + pos: 14.5,-36.5 parent: 2 - - uid: 12969 + - uid: 15591 components: - type: Transform - pos: -1.5,25.5 + pos: 10.5,-29.5 parent: 2 - - uid: 12972 + - uid: 15592 components: - type: Transform - pos: -33.5,14.5 + pos: 10.5,-30.5 parent: 2 - - uid: 12998 + - uid: 15593 components: - type: Transform - pos: -30.5,-24.5 + pos: 9.5,-30.5 parent: 2 - - uid: 12999 + - uid: 15594 components: - type: Transform - pos: -30.5,-25.5 + pos: 8.5,-30.5 parent: 2 - - uid: 13028 + - uid: 15595 components: - type: Transform - pos: -20.5,-5.5 + pos: 7.5,-30.5 parent: 2 - - uid: 13154 + - uid: 15596 components: - type: Transform - pos: -7.5,9.5 + pos: 7.5,-28.5 parent: 2 - - uid: 13183 + - uid: 15597 components: - type: Transform - pos: 11.5,6.5 + pos: 8.5,-28.5 parent: 2 - - uid: 13184 + - uid: 15598 components: - type: Transform - pos: 11.5,5.5 + pos: 9.5,-28.5 parent: 2 - - uid: 13185 + - uid: 15599 components: - type: Transform - pos: 10.5,5.5 + pos: 9.5,-34.5 parent: 2 - - uid: 13186 + - uid: 15600 components: - type: Transform - pos: 9.5,5.5 + pos: 8.5,-34.5 parent: 2 - - uid: 13204 + - uid: 15601 components: - type: Transform - pos: -27.5,-22.5 + pos: 7.5,-34.5 parent: 2 - - uid: 13230 + - uid: 15602 components: - type: Transform - pos: 9.5,9.5 + pos: 9.5,-38.5 parent: 2 - - uid: 13231 + - uid: 15603 components: - type: Transform - pos: 10.5,9.5 + pos: 8.5,-38.5 parent: 2 - - uid: 13275 + - uid: 15604 components: - type: Transform - pos: 48.5,-47.5 + pos: 7.5,-38.5 parent: 2 - - uid: 13277 + - uid: 15611 components: - type: Transform - pos: -7.5,-50.5 + pos: 6.5,-28.5 parent: 2 - - uid: 13278 + - uid: 15612 components: - type: Transform - pos: -7.5,-49.5 + pos: 6.5,-34.5 parent: 2 - - uid: 13279 + - uid: 15623 components: - type: Transform - pos: -7.5,-48.5 + pos: 30.5,-37.5 parent: 2 - - uid: 13280 + - uid: 15627 components: - type: Transform - pos: -6.5,-48.5 + pos: 28.5,-37.5 parent: 2 - - uid: 13281 + - uid: 15637 components: - type: Transform - pos: -5.5,-48.5 + pos: 28.5,-38.5 parent: 2 - - uid: 13282 + - uid: 15642 components: - type: Transform - pos: -4.5,-48.5 + pos: 28.5,-39.5 parent: 2 - - uid: 13283 + - uid: 15643 components: - type: Transform - pos: -3.5,-48.5 + pos: 31.5,-37.5 parent: 2 - - uid: 13284 + - uid: 15662 components: - type: Transform - pos: -2.5,-48.5 + pos: 32.5,-37.5 parent: 2 - - uid: 13285 + - uid: 15671 components: - type: Transform - pos: -1.5,-48.5 + pos: 33.5,-37.5 parent: 2 - - uid: 13286 + - uid: 15689 components: - type: Transform - pos: -0.5,-48.5 + pos: 34.5,-37.5 parent: 2 - - uid: 13287 + - uid: 15690 components: - type: Transform - pos: 0.5,-48.5 + pos: 35.5,-37.5 parent: 2 - - uid: 13288 + - uid: 15694 components: - type: Transform - pos: 1.5,-48.5 + pos: 45.5,-37.5 parent: 2 - - uid: 13289 + - uid: 15695 components: - type: Transform - pos: 2.5,-48.5 + pos: 45.5,-38.5 parent: 2 - - uid: 13290 + - uid: 15696 components: - type: Transform - pos: 3.5,-48.5 + pos: 45.5,-39.5 parent: 2 - - uid: 13291 + - uid: 15762 components: - type: Transform - pos: 4.5,-48.5 + pos: 36.5,-37.5 parent: 2 - - uid: 13292 + - uid: 15763 components: - type: Transform - pos: 5.5,-48.5 + pos: 37.5,-37.5 parent: 2 - - uid: 13293 + - uid: 15777 components: - type: Transform - pos: 6.5,-48.5 + pos: 38.5,-37.5 parent: 2 - - uid: 13295 + - uid: 15779 components: - type: Transform - pos: 1.5,-49.5 + pos: 39.5,-37.5 parent: 2 - - uid: 13296 + - uid: 15789 components: - type: Transform - pos: 1.5,-50.5 + pos: -55.5,-59.5 parent: 2 - - uid: 13297 + - uid: 15790 components: - type: Transform - pos: 1.5,-51.5 + pos: 38.5,-35.5 parent: 2 - - uid: 13298 + - uid: 15793 components: - type: Transform - pos: 2.5,-51.5 + pos: -61.5,-60.5 parent: 2 - - uid: 13299 + - uid: 15794 components: - type: Transform - pos: 3.5,-51.5 + pos: -57.5,-57.5 parent: 2 - - uid: 13300 + - uid: 15796 components: - type: Transform - pos: 4.5,-51.5 + pos: -57.5,-59.5 parent: 2 - - uid: 13301 + - uid: 15798 components: - type: Transform - pos: 0.5,-51.5 + pos: -61.5,-59.5 parent: 2 - - uid: 13302 + - uid: 15800 components: - type: Transform - pos: -0.5,-51.5 + pos: -56.5,-57.5 parent: 2 - - uid: 13303 + - uid: 15801 components: - type: Transform - pos: -1.5,-51.5 + pos: -60.5,-58.5 parent: 2 - - uid: 13307 + - uid: 15806 components: - type: Transform - pos: 51.5,-52.5 + pos: -57.5,-61.5 parent: 2 - - uid: 13313 + - uid: 15825 components: - type: Transform - pos: 32.5,-5.5 + pos: 38.5,-36.5 parent: 2 - - uid: 13314 + - uid: 15829 components: - type: Transform - pos: 31.5,-5.5 + pos: 40.5,-37.5 parent: 2 - - uid: 13315 + - uid: 15834 components: - type: Transform - pos: 31.5,-6.5 + pos: 41.5,21.5 parent: 2 - - uid: 13316 + - uid: 15853 components: - type: Transform - pos: 31.5,-7.5 + pos: -14.5,-50.5 parent: 2 - - uid: 13317 + - uid: 15992 components: - type: Transform - pos: 31.5,-9.5 + pos: -14.5,-48.5 parent: 2 - - uid: 13318 + - uid: 16022 components: - type: Transform - pos: 31.5,-10.5 + pos: 41.5,22.5 parent: 2 - - uid: 13319 + - uid: 16031 components: - type: Transform - pos: 31.5,-11.5 + pos: -15.5,11.5 parent: 2 - - uid: 13320 + - uid: 16044 components: - type: Transform - pos: 31.5,-12.5 + pos: 28.5,-14.5 parent: 2 - - uid: 13321 + - uid: 16046 components: - type: Transform - pos: 31.5,-13.5 + pos: -54.5,-22.5 parent: 2 - - uid: 13322 + - uid: 16064 components: - type: Transform - pos: 31.5,-14.5 + pos: -13.5,15.5 parent: 2 - - uid: 13323 + - uid: 16065 components: - type: Transform - pos: 31.5,-15.5 + pos: -15.5,10.5 parent: 2 - - uid: 13324 + - uid: 16066 components: - type: Transform - pos: 31.5,-8.5 + pos: -25.5,18.5 parent: 2 - - uid: 13325 + - uid: 16067 components: - type: Transform - pos: 31.5,-16.5 + pos: -13.5,12.5 parent: 2 - - uid: 13326 + - uid: 16069 components: - type: Transform - pos: 31.5,-17.5 + pos: -13.5,16.5 parent: 2 - - uid: 13327 + - uid: 16073 components: - type: Transform - pos: 31.5,-18.5 + pos: -15.5,9.5 parent: 2 - - uid: 13328 + - uid: 16074 components: - type: Transform - pos: 30.5,-18.5 + pos: -13.5,14.5 parent: 2 - - uid: 13329 + - uid: 16075 components: - type: Transform - pos: 29.5,-18.5 + pos: -13.5,13.5 parent: 2 - - uid: 13330 + - uid: 16076 components: - type: Transform - pos: 28.5,-18.5 + pos: -56.5,-59.5 parent: 2 - - uid: 13331 + - uid: 16084 components: - type: Transform - pos: 27.5,-18.5 + pos: 17.5,-56.5 parent: 2 - - uid: 13332 + - uid: 16085 components: - type: Transform - pos: 26.5,-18.5 + pos: 18.5,-56.5 parent: 2 - - uid: 13333 + - uid: 16086 components: - type: Transform - pos: 31.5,-4.5 + pos: 19.5,-56.5 parent: 2 - - uid: 13334 + - uid: 16087 components: - type: Transform - pos: 31.5,-3.5 + pos: -14.5,11.5 parent: 2 - - uid: 13335 + - uid: 16088 components: - type: Transform - pos: 30.5,-3.5 + pos: 27.5,-55.5 parent: 2 - - uid: 13336 + - uid: 16104 components: - type: Transform - pos: 29.5,-3.5 + pos: 29.5,-28.5 parent: 2 - - uid: 13337 + - uid: 16108 components: - type: Transform - pos: 28.5,-3.5 + pos: 29.5,-29.5 parent: 2 - - uid: 13338 + - uid: 16109 components: - type: Transform - pos: 27.5,-3.5 + pos: 29.5,-30.5 parent: 2 - - uid: 13524 + - uid: 16110 components: - type: Transform - pos: 3.5,9.5 + pos: 29.5,-31.5 parent: 2 - - uid: 13616 + - uid: 16112 components: - type: Transform - pos: -18.5,16.5 + pos: -32.5,12.5 parent: 2 - - uid: 13700 + - uid: 16114 components: - type: Transform - pos: -65.5,-8.5 + pos: -57.5,-60.5 parent: 2 - - uid: 13701 + - uid: 16193 components: - type: Transform - pos: -65.5,-15.5 + pos: 30.5,-31.5 parent: 2 - - uid: 13702 + - uid: 16205 components: - type: Transform - pos: -65.5,-17.5 + pos: 61.5,-54.5 parent: 2 - - uid: 13707 + - uid: 16207 components: - type: Transform - pos: 45.5,8.5 + pos: 62.5,-54.5 parent: 2 - - uid: 13708 + - uid: 16261 components: - type: Transform - pos: 46.5,-5.5 + pos: -27.5,-4.5 parent: 2 - - uid: 13709 + - uid: 16325 components: - type: Transform - pos: 47.5,-5.5 + pos: -56.5,-61.5 parent: 2 - - uid: 13710 + - uid: 16326 components: - type: Transform - pos: 48.5,-5.5 + pos: -63.5,-59.5 parent: 2 - - uid: 13711 + - uid: 16334 components: - type: Transform - pos: 49.5,-5.5 + pos: 38.5,26.5 parent: 2 - - uid: 13717 + - uid: 16350 components: - type: Transform - pos: 49.5,-4.5 + pos: -38.5,-34.5 parent: 2 - - uid: 13785 + - uid: 16351 components: - type: Transform - pos: -65.5,-7.5 + pos: -38.5,-35.5 parent: 2 - - uid: 13914 + - uid: 16363 components: - type: Transform - pos: 15.5,7.5 + pos: -38.5,-36.5 parent: 2 - - uid: 14161 + - uid: 16370 components: - type: Transform - pos: 45.5,-6.5 + pos: -36.5,-36.5 parent: 2 - - uid: 14210 + - uid: 16371 components: - type: Transform - pos: 15.5,11.5 + pos: -35.5,-36.5 parent: 2 - - uid: 14248 + - uid: 16372 components: - type: Transform - pos: -21.5,22.5 + pos: -34.5,-36.5 parent: 2 - - uid: 14258 + - uid: 16373 components: - type: Transform - pos: 15.5,8.5 + pos: -33.5,-36.5 parent: 2 - - uid: 14419 + - uid: 16374 components: - type: Transform - pos: -3.5,-13.5 + pos: -32.5,-36.5 parent: 2 - - uid: 14420 + - uid: 16375 components: - type: Transform - pos: -8.5,-20.5 + pos: -37.5,-36.5 parent: 2 - - uid: 14421 + - uid: 16376 components: - type: Transform - pos: -7.5,-55.5 + pos: -34.5,-37.5 parent: 2 - - uid: 14424 + - uid: 16377 components: - type: Transform - pos: -7.5,-56.5 + pos: -34.5,-38.5 parent: 2 - - uid: 14431 + - uid: 16378 components: - type: Transform - pos: -14.5,14.5 + pos: -33.5,-38.5 parent: 2 - - uid: 14432 + - uid: 16379 components: - type: Transform - pos: -8.5,-19.5 + pos: -34.5,-34.5 parent: 2 - - uid: 14433 + - uid: 16380 components: - type: Transform - pos: -12.5,14.5 + pos: -34.5,-35.5 parent: 2 - - uid: 14439 + - uid: 16381 components: - type: Transform - pos: -21.5,-0.5 + pos: -33.5,-41.5 parent: 2 - - uid: 14440 + - uid: 16382 components: - type: Transform - pos: -44.5,-37.5 + pos: -38.5,-37.5 parent: 2 - - uid: 14442 + - uid: 16383 components: - type: Transform - pos: -12.5,11.5 + pos: -38.5,-38.5 parent: 2 - - uid: 14470 + - uid: 16384 components: - type: Transform - pos: -29.5,4.5 + pos: -36.5,-42.5 parent: 2 - - uid: 14472 + - uid: 16385 components: - type: Transform - pos: 22.5,-15.5 + pos: -35.5,-42.5 parent: 2 - - uid: 14497 + - uid: 16386 components: - type: Transform - pos: 0.5,-44.5 + pos: -34.5,-42.5 parent: 2 - - uid: 14508 + - uid: 16387 components: - type: Transform - pos: -18.5,15.5 + pos: -33.5,-42.5 parent: 2 - - uid: 14519 + - uid: 16388 components: - type: Transform - pos: 10.5,-18.5 + pos: -32.5,-41.5 parent: 2 - - uid: 14520 + - uid: 16389 components: - type: Transform - pos: 11.5,-18.5 + pos: -31.5,-41.5 parent: 2 - - uid: 14521 + - uid: 16390 components: - type: Transform - pos: 9.5,-18.5 + pos: -30.5,-41.5 parent: 2 - - uid: 14522 + - uid: 16391 components: - type: Transform - pos: 12.5,-18.5 + pos: -29.5,-41.5 parent: 2 - - uid: 14529 + - uid: 16392 components: - type: Transform - pos: -3.5,11.5 + pos: -28.5,-41.5 parent: 2 - - uid: 14533 + - uid: 16394 components: - type: Transform - pos: -44.5,-39.5 + pos: -33.5,-43.5 parent: 2 - - uid: 14537 + - uid: 16395 components: - type: Transform - pos: -8.5,-13.5 + pos: -33.5,-44.5 parent: 2 - - uid: 14538 + - uid: 16396 components: - type: Transform - pos: -7.5,-13.5 + pos: -33.5,-45.5 parent: 2 - - uid: 14569 + - uid: 16420 components: - type: Transform - pos: -7.5,-53.5 + pos: -33.5,-46.5 parent: 2 - - uid: 14614 + - uid: 16475 components: - type: Transform - pos: -28.5,4.5 + pos: -33.5,-47.5 parent: 2 - - uid: 14615 + - uid: 16486 components: - type: Transform - pos: -28.5,2.5 + pos: -33.5,-48.5 parent: 2 - - uid: 14784 + - uid: 16539 components: - type: Transform - pos: 16.5,11.5 + pos: -66.5,-11.5 parent: 2 - - uid: 14786 + - uid: 16540 components: - type: Transform - pos: -20.5,-9.5 + pos: -66.5,-12.5 parent: 2 - - uid: 14795 + - uid: 16541 components: - type: Transform - pos: -7.5,-54.5 + pos: -65.5,-12.5 parent: 2 - - uid: 14799 + - uid: 16542 components: - type: Transform - pos: -4.5,-13.5 + pos: -65.5,-11.5 parent: 2 - - uid: 14804 + - uid: 16543 components: - type: Transform - pos: -25.5,15.5 + pos: -65.5,-10.5 parent: 2 - - uid: 14831 + - uid: 16544 components: - type: Transform - pos: -0.5,13.5 + pos: -66.5,-10.5 parent: 2 - - uid: 14834 + - uid: 16545 components: - type: Transform - pos: -23.5,16.5 + pos: -67.5,-10.5 parent: 2 - - uid: 14837 + - uid: 16546 components: - type: Transform - pos: -24.5,16.5 + pos: -68.5,-10.5 parent: 2 - - uid: 14848 + - uid: 16547 components: - type: Transform - pos: -3.5,-22.5 + pos: -69.5,-10.5 parent: 2 - - uid: 14856 + - uid: 16548 components: - type: Transform - pos: -9.5,-13.5 + pos: -69.5,-11.5 parent: 2 - - uid: 14954 + - uid: 16549 components: - type: Transform - pos: 46.5,-39.5 + pos: -69.5,-12.5 parent: 2 - - uid: 15013 + - uid: 16550 components: - type: Transform - pos: -25.5,16.5 + pos: -69.5,-13.5 parent: 2 - - uid: 15032 + - uid: 16551 components: - type: Transform - pos: -21.5,9.5 + pos: -69.5,-14.5 parent: 2 - - uid: 15178 + - uid: 16552 components: - type: Transform - pos: 44.5,-39.5 + pos: -68.5,-14.5 parent: 2 - - uid: 15266 + - uid: 16553 components: - type: Transform - pos: 48.5,-29.5 + pos: -67.5,-14.5 parent: 2 - - uid: 15267 + - uid: 16554 components: - type: Transform - pos: 48.5,-30.5 + pos: -66.5,-14.5 parent: 2 - - uid: 15268 + - uid: 16555 components: - type: Transform - pos: 48.5,-31.5 + pos: -65.5,-14.5 parent: 2 - - uid: 15303 + - uid: 16556 components: - type: Transform - pos: -41.5,-37.5 + pos: -65.5,-13.5 parent: 2 - - uid: 15350 + - uid: 16557 components: - type: Transform - pos: -4.5,-22.5 + pos: -63.5,-14.5 parent: 2 - - uid: 15374 + - uid: 16558 components: - type: Transform - pos: 38.5,-14.5 + pos: -63.5,-15.5 parent: 2 - - uid: 15390 + - uid: 16559 components: - type: Transform - pos: -36.5,-4.5 + pos: -62.5,-15.5 parent: 2 - - uid: 15460 + - uid: 16560 components: - type: Transform - pos: -27.5,-5.5 + pos: -61.5,-15.5 parent: 2 - - uid: 15487 + - uid: 16561 components: - type: Transform - pos: 30.5,-36.5 + pos: -63.5,-13.5 parent: 2 - - uid: 15488 + - uid: 16562 components: - type: Transform - pos: 16.5,-20.5 + pos: -63.5,-12.5 parent: 2 - - uid: 15489 + - uid: 16563 components: - type: Transform - pos: 16.5,-21.5 + pos: -62.5,-12.5 parent: 2 - - uid: 15490 + - uid: 16564 components: - type: Transform - pos: 16.5,-22.5 + pos: -61.5,-12.5 parent: 2 - - uid: 15491 + - uid: 16565 components: - type: Transform - pos: 15.5,-22.5 + pos: -62.5,-11.5 parent: 2 - - uid: 15492 + - uid: 16566 components: - type: Transform - pos: 14.5,-22.5 + pos: -62.5,-10.5 parent: 2 - - uid: 15493 + - uid: 16567 components: - type: Transform - pos: 13.5,-22.5 + pos: -62.5,-9.5 parent: 2 - - uid: 15494 + - uid: 16568 components: - type: Transform - pos: 12.5,-22.5 + pos: -61.5,-9.5 parent: 2 - - uid: 15495 + - uid: 16569 components: - type: Transform - pos: 11.5,-22.5 + pos: -60.5,-12.5 parent: 2 - - uid: 15496 + - uid: 16570 components: - type: Transform - pos: 10.5,-22.5 + pos: -59.5,-12.5 parent: 2 - - uid: 15497 + - uid: 16572 components: - type: Transform - pos: 10.5,-23.5 + pos: -56.5,-11.5 parent: 2 - - uid: 15498 + - uid: 16573 components: - type: Transform - pos: 10.5,-24.5 + pos: -56.5,-12.5 parent: 2 - - uid: 15499 + - uid: 16574 components: - type: Transform - pos: 10.5,-25.5 + pos: -55.5,-12.5 parent: 2 - - uid: 15500 + - uid: 16575 components: - type: Transform - pos: 10.5,-26.5 + pos: -54.5,-12.5 parent: 2 - - uid: 15501 + - uid: 16576 components: - type: Transform - pos: 10.5,-27.5 + pos: -53.5,-12.5 parent: 2 - - uid: 15502 + - uid: 16577 components: - type: Transform - pos: 10.5,-28.5 + pos: -52.5,-12.5 parent: 2 - - uid: 15503 + - uid: 16578 components: - type: Transform - pos: 15.5,-23.5 + pos: -55.5,-11.5 parent: 2 - - uid: 15504 + - uid: 16579 components: - type: Transform - pos: 15.5,-24.5 + pos: -33.5,-49.5 parent: 2 - - uid: 15505 + - uid: 16580 components: - type: Transform - pos: 15.5,-25.5 + pos: -49.5,-46.5 parent: 2 - - uid: 15506 + - uid: 16617 components: - type: Transform - pos: 15.5,-26.5 + pos: -49.5,-45.5 parent: 2 - - uid: 15507 + - uid: 16621 components: - type: Transform - pos: 17.5,-21.5 + pos: -58.5,-57.5 parent: 2 - - uid: 15508 + - uid: 16622 components: - type: Transform - pos: 18.5,-21.5 + pos: -58.5,-59.5 parent: 2 - - uid: 15509 + - uid: 16623 components: - type: Transform - pos: 19.5,-21.5 + pos: -62.5,-59.5 parent: 2 - - uid: 15510 + - uid: 16625 components: - type: Transform - pos: 20.5,-21.5 + pos: -35.5,-55.5 parent: 2 - - uid: 15511 + - uid: 16626 components: - type: Transform - pos: 22.5,-21.5 + pos: -34.5,-55.5 parent: 2 - - uid: 15512 + - uid: 16627 components: - type: Transform - pos: 23.5,-21.5 + pos: -33.5,-55.5 parent: 2 - - uid: 15513 + - uid: 16628 components: - type: Transform - pos: 21.5,-21.5 + pos: -33.5,-54.5 parent: 2 - - uid: 15517 + - uid: 16629 components: - type: Transform - pos: 38.5,-19.5 + pos: -33.5,-53.5 parent: 2 - - uid: 15518 + - uid: 16630 components: - type: Transform - pos: 38.5,-20.5 + pos: -32.5,-55.5 parent: 2 - - uid: 15519 + - uid: 16631 components: - type: Transform - pos: 38.5,-21.5 + pos: -31.5,-55.5 parent: 2 - - uid: 15520 + - uid: 16632 components: - type: Transform - pos: 39.5,-21.5 + pos: -30.5,-55.5 parent: 2 - - uid: 15521 + - uid: 16633 components: - type: Transform - pos: 40.5,-21.5 + pos: -30.5,-54.5 parent: 2 - - uid: 15522 + - uid: 16634 components: - type: Transform - pos: 41.5,-21.5 + pos: -30.5,-53.5 parent: 2 - - uid: 15523 + - uid: 16635 components: - type: Transform - pos: 37.5,-21.5 + pos: -33.5,-56.5 parent: 2 - - uid: 15524 + - uid: 16637 components: - type: Transform - pos: 36.5,-21.5 + pos: -33.5,-57.5 parent: 2 - - uid: 15525 + - uid: 16638 components: - type: Transform - pos: 35.5,-21.5 + pos: -33.5,-58.5 parent: 2 - - uid: 15526 + - uid: 16644 components: - type: Transform - pos: 34.5,-21.5 + pos: 31.5,-31.5 parent: 2 - - uid: 15527 + - uid: 16647 components: - type: Transform - pos: 32.5,-21.5 + pos: 21.5,-43.5 parent: 2 - - uid: 15528 + - uid: 16648 components: - type: Transform - pos: 31.5,-21.5 + pos: 19.5,-43.5 parent: 2 - - uid: 15529 + - uid: 16652 components: - type: Transform - pos: 30.5,-21.5 + pos: 20.5,-43.5 parent: 2 - - uid: 15530 + - uid: 16654 components: - type: Transform - pos: 29.5,-21.5 + pos: 22.5,-43.5 parent: 2 - - uid: 15531 + - uid: 16656 components: - type: Transform - pos: 28.5,-21.5 + pos: 32.5,-31.5 parent: 2 - - uid: 15532 + - uid: 16657 components: - type: Transform - pos: 33.5,-21.5 + pos: -33.5,-59.5 parent: 2 - - uid: 15533 + - uid: 16666 components: - type: Transform - pos: 27.5,-21.5 + pos: -33.5,-60.5 parent: 2 - - uid: 15534 + - uid: 16668 components: - type: Transform - pos: 13.5,-34.5 + pos: -33.5,-61.5 parent: 2 - - uid: 15535 + - uid: 16671 components: - type: Transform - pos: 13.5,-33.5 + pos: 33.5,-31.5 parent: 2 - - uid: 15536 + - uid: 16675 components: - type: Transform - pos: 13.5,-32.5 + pos: -33.5,-62.5 parent: 2 - - uid: 15537 + - uid: 16678 components: - type: Transform - pos: 14.5,-32.5 + pos: -33.5,-63.5 parent: 2 - - uid: 15538 + - uid: 16682 components: - type: Transform - pos: 15.5,-32.5 + pos: -33.5,-64.5 parent: 2 - - uid: 15539 + - uid: 16683 components: - type: Transform - pos: 16.5,-32.5 + pos: -33.5,-65.5 parent: 2 - - uid: 15540 + - uid: 16688 components: - type: Transform - pos: 16.5,-31.5 + pos: -36.5,-64.5 parent: 2 - - uid: 15541 + - uid: 16689 components: - type: Transform - pos: 16.5,-30.5 + pos: -59.5,-59.5 parent: 2 - - uid: 15542 + - uid: 16705 components: - type: Transform - pos: 16.5,-29.5 + pos: 3.5,-97.5 parent: 2 - - uid: 15543 + - uid: 16706 components: - type: Transform - pos: 12.5,-32.5 + pos: 3.5,-100.5 parent: 2 - - uid: 15544 + - uid: 16707 components: - type: Transform - pos: 11.5,-32.5 + pos: 3.5,-101.5 parent: 2 - - uid: 15545 + - uid: 16712 components: - type: Transform - pos: 10.5,-32.5 + pos: -36.5,-63.5 parent: 2 - - uid: 15546 + - uid: 16713 components: - type: Transform - pos: 10.5,-33.5 + pos: -36.5,-62.5 parent: 2 - - uid: 15547 + - uid: 16716 components: - type: Transform - pos: 10.5,-34.5 + pos: 34.5,-31.5 parent: 2 - - uid: 15548 + - uid: 16717 components: - type: Transform - pos: 10.5,-35.5 + pos: -35.5,-62.5 parent: 2 - - uid: 15549 + - uid: 16718 components: - type: Transform - pos: 10.5,-36.5 + pos: -34.5,-62.5 parent: 2 - - uid: 15550 + - uid: 16728 components: - type: Transform - pos: 10.5,-37.5 + pos: -58.5,-58.5 parent: 2 - - uid: 15551 + - uid: 16765 components: - type: Transform - pos: 10.5,-38.5 + pos: 35.5,-31.5 parent: 2 - - uid: 15552 + - uid: 16774 components: - type: Transform - pos: 10.5,-39.5 + pos: 36.5,-31.5 parent: 2 - - uid: 15553 + - uid: 16779 components: - type: Transform - pos: 10.5,-40.5 + pos: 37.5,-31.5 parent: 2 - - uid: 15554 + - uid: 16785 components: - type: Transform - pos: 10.5,-41.5 + pos: -35.5,-70.5 parent: 2 - - uid: 15555 + - uid: 16787 components: - type: Transform - pos: 10.5,-42.5 + pos: -34.5,-70.5 parent: 2 - - uid: 15556 + - uid: 16791 components: - type: Transform - pos: 10.5,-43.5 + pos: 29.5,-27.5 parent: 2 - - uid: 15557 + - uid: 16793 components: - type: Transform - pos: 10.5,-44.5 + pos: 29.5,-26.5 parent: 2 - - uid: 15558 + - uid: 16794 components: - type: Transform - pos: 6.5,-30.5 + pos: 29.5,-25.5 parent: 2 - - uid: 15559 + - uid: 16795 components: - type: Transform - pos: 18.5,-41.5 + pos: -33.5,-71.5 parent: 2 - - uid: 15560 + - uid: 16796 components: - type: Transform - pos: 18.5,-42.5 + pos: -33.5,-70.5 parent: 2 - - uid: 15561 + - uid: 16797 components: - type: Transform - pos: 18.5,-43.5 + pos: -33.5,-72.5 parent: 2 - - uid: 15562 + - uid: 16800 components: - type: Transform - pos: 17.5,-43.5 + pos: -33.5,-73.5 parent: 2 - - uid: 15563 + - uid: 16801 components: - type: Transform - pos: 16.5,-43.5 + pos: -33.5,-74.5 parent: 2 - - uid: 15564 + - uid: 16802 components: - type: Transform - pos: 15.5,-43.5 + pos: -33.5,-75.5 parent: 2 - - uid: 15565 + - uid: 16803 components: - type: Transform - pos: 14.5,-43.5 + pos: -33.5,-76.5 parent: 2 - - uid: 15569 + - uid: 16804 components: - type: Transform - pos: 14.5,-47.5 + pos: -33.5,-77.5 parent: 2 - - uid: 15573 + - uid: 16805 components: - type: Transform - pos: 18.5,-47.5 + pos: -33.5,-78.5 parent: 2 - - uid: 15575 + - uid: 16806 components: - type: Transform - pos: 19.5,-48.5 + pos: -33.5,-79.5 parent: 2 - - uid: 15576 + - uid: 16807 components: - type: Transform - pos: 20.5,-48.5 + pos: -33.5,-80.5 parent: 2 - - uid: 15577 + - uid: 16808 components: - type: Transform - pos: 18.5,-40.5 + pos: -33.5,-81.5 parent: 2 - - uid: 15578 + - uid: 16809 components: - type: Transform - pos: 18.5,-39.5 + pos: -33.5,-82.5 parent: 2 - - uid: 15579 + - uid: 16810 components: - type: Transform - pos: 18.5,-38.5 + pos: -33.5,-83.5 parent: 2 - - uid: 15580 + - uid: 16811 components: - type: Transform - pos: 18.5,-37.5 + pos: -36.5,-80.5 parent: 2 - - uid: 15581 + - uid: 16812 components: - type: Transform - pos: 18.5,-36.5 + pos: -36.5,-79.5 parent: 2 - - uid: 15582 + - uid: 16813 components: - type: Transform - pos: 19.5,-36.5 + pos: -30.5,-80.5 parent: 2 - - uid: 15583 + - uid: 16814 components: - type: Transform - pos: 20.5,-36.5 + pos: -30.5,-79.5 parent: 2 - - uid: 15584 + - uid: 16815 components: - type: Transform - pos: 21.5,-36.5 + pos: -31.5,-79.5 parent: 2 - - uid: 15585 + - uid: 16816 components: - type: Transform - pos: 17.5,-38.5 + pos: -32.5,-79.5 parent: 2 - - uid: 15586 + - uid: 16817 components: - type: Transform - pos: 16.5,-38.5 + pos: -35.5,-79.5 parent: 2 - - uid: 15587 + - uid: 16819 components: - type: Transform - pos: 15.5,-38.5 + pos: -34.5,-79.5 parent: 2 - - uid: 15588 + - uid: 16820 components: - type: Transform - pos: 14.5,-38.5 + pos: -37.5,-76.5 parent: 2 - - uid: 15589 + - uid: 16821 components: - type: Transform - pos: 14.5,-37.5 + pos: -36.5,-76.5 parent: 2 - - uid: 15590 + - uid: 16822 components: - type: Transform - pos: 14.5,-36.5 + pos: -35.5,-76.5 parent: 2 - - uid: 15591 + - uid: 16823 components: - type: Transform - pos: 10.5,-29.5 + pos: -34.5,-76.5 parent: 2 - - uid: 15592 + - uid: 16824 components: - type: Transform - pos: 10.5,-30.5 + pos: -32.5,-76.5 parent: 2 - - uid: 15593 + - uid: 16825 components: - type: Transform - pos: 9.5,-30.5 + pos: -31.5,-75.5 parent: 2 - - uid: 15594 + - uid: 16826 components: - type: Transform - pos: 8.5,-30.5 + pos: -31.5,-76.5 parent: 2 - - uid: 15595 + - uid: 16828 components: - type: Transform - pos: 7.5,-30.5 + pos: -31.5,-77.5 parent: 2 - - uid: 15596 + - uid: 16829 components: - type: Transform - pos: 7.5,-28.5 + pos: -31.5,-73.5 parent: 2 - - uid: 15597 + - uid: 16830 components: - type: Transform - pos: 8.5,-28.5 + pos: -31.5,-71.5 parent: 2 - - uid: 15598 + - uid: 16831 components: - type: Transform - pos: 9.5,-28.5 + pos: 28.5,-25.5 parent: 2 - - uid: 15599 + - uid: 16832 components: - type: Transform - pos: 9.5,-34.5 + pos: -31.5,-72.5 parent: 2 - - uid: 15600 + - uid: 16833 components: - type: Transform - pos: 8.5,-34.5 + pos: -36.5,-73.5 parent: 2 - - uid: 15601 + - uid: 16836 components: - type: Transform - pos: 7.5,-34.5 + pos: -36.5,-72.5 parent: 2 - - uid: 15602 + - uid: 16837 components: - type: Transform - pos: 9.5,-38.5 + pos: -36.5,-71.5 parent: 2 - - uid: 15603 + - uid: 16838 components: - type: Transform - pos: 8.5,-38.5 + pos: -35.5,-72.5 parent: 2 - - uid: 15604 + - uid: 16850 components: - type: Transform - pos: 7.5,-38.5 + pos: -34.5,-72.5 parent: 2 - - uid: 15605 + - uid: 16851 components: - type: Transform - pos: 9.5,-42.5 + pos: -32.5,-72.5 parent: 2 - - uid: 15606 + - uid: 16852 components: - type: Transform - pos: 8.5,-42.5 + pos: -37.5,-68.5 parent: 2 - - uid: 15607 + - uid: 16853 components: - type: Transform - pos: 7.5,-42.5 + pos: -36.5,-68.5 parent: 2 - - uid: 15608 + - uid: 16854 components: - type: Transform - pos: 9.5,-44.5 + pos: -35.5,-68.5 parent: 2 - - uid: 15609 + - uid: 16855 components: - type: Transform - pos: 8.5,-44.5 + pos: -34.5,-68.5 parent: 2 - - uid: 15610 + - uid: 16856 components: - type: Transform - pos: 7.5,-44.5 + pos: -33.5,-68.5 parent: 2 - - uid: 15611 + - uid: 16857 components: - type: Transform - pos: 6.5,-28.5 + pos: -33.5,-69.5 parent: 2 - - uid: 15612 + - uid: 16867 components: - type: Transform - pos: 6.5,-34.5 + pos: -60.5,-60.5 parent: 2 - - uid: 15613 + - uid: 16880 components: - type: Transform - pos: 6.5,-38.5 + pos: 3.5,-98.5 parent: 2 - - uid: 15614 + - uid: 16881 components: - type: Transform - pos: 6.5,-42.5 + pos: -37.5,-4.5 parent: 2 - - uid: 15615 + - uid: 16882 components: - type: Transform - pos: 6.5,-44.5 + pos: -35.5,-4.5 parent: 2 - - uid: 15623 + - uid: 16889 components: - type: Transform - pos: 30.5,-37.5 + pos: -60.5,-59.5 parent: 2 - - uid: 15627 + - uid: 16891 components: - type: Transform - pos: 28.5,-37.5 + pos: -61.5,-58.5 parent: 2 - - uid: 15637 + - uid: 16943 components: - type: Transform - pos: 28.5,-38.5 + pos: 44.5,20.5 parent: 2 - - uid: 15642 + - uid: 16985 components: - type: Transform - pos: 28.5,-39.5 + pos: 27.5,-25.5 parent: 2 - - uid: 15643 + - uid: 17021 components: - type: Transform - pos: 31.5,-37.5 + pos: 26.5,-25.5 parent: 2 - - uid: 15662 + - uid: 17025 components: - type: Transform - pos: 32.5,-37.5 + pos: 25.5,-25.5 parent: 2 - - uid: 15671 + - uid: 17058 components: - type: Transform - pos: 33.5,-37.5 + pos: -48.5,-44.5 parent: 2 - - uid: 15689 + - uid: 17059 components: - type: Transform - pos: 34.5,-37.5 + pos: -48.5,-45.5 parent: 2 - - uid: 15690 + - uid: 17061 components: - type: Transform - pos: 35.5,-37.5 + pos: -38.5,-4.5 parent: 2 - - uid: 15694 + - uid: 17064 components: - type: Transform - pos: 45.5,-37.5 + pos: -46.5,-45.5 parent: 2 - - uid: 15695 + - uid: 17071 components: - type: Transform - pos: 45.5,-38.5 + pos: -45.5,-45.5 parent: 2 - - uid: 15696 + - uid: 17072 components: - type: Transform - pos: 45.5,-39.5 + pos: -47.5,-45.5 parent: 2 - - uid: 15762 + - uid: 17074 components: - type: Transform - pos: 36.5,-37.5 + pos: -45.5,-44.5 parent: 2 - - uid: 15763 + - uid: 17078 components: - type: Transform - pos: 37.5,-37.5 + pos: -45.5,-42.5 parent: 2 - - uid: 15777 + - uid: 17086 components: - type: Transform - pos: 38.5,-37.5 + pos: -44.5,-42.5 parent: 2 - - uid: 15779 + - uid: 17087 components: - type: Transform - pos: 39.5,-37.5 + pos: -45.5,-43.5 parent: 2 - - uid: 15790 + - uid: 17091 components: - type: Transform - pos: 38.5,-35.5 + pos: -39.5,-4.5 parent: 2 - - uid: 15825 + - uid: 17092 components: - type: Transform - pos: 38.5,-36.5 + pos: 35.5,27.5 parent: 2 - - uid: 15829 + - uid: 17103 components: - type: Transform - pos: 40.5,-37.5 + pos: -48.5,-43.5 parent: 2 - - uid: 15853 + - uid: 17104 components: - type: Transform - pos: -14.5,-50.5 + pos: -48.5,-41.5 parent: 2 - - uid: 15992 + - uid: 17105 components: - type: Transform - pos: -14.5,-48.5 + pos: -48.5,-42.5 parent: 2 - - uid: 16031 + - uid: 17106 components: - type: Transform - pos: -15.5,11.5 + pos: -49.5,-41.5 parent: 2 - - uid: 16064 + - uid: 17107 components: - type: Transform - pos: -13.5,15.5 + pos: -49.5,-40.5 parent: 2 - - uid: 16065 + - uid: 17146 components: - type: Transform - pos: -15.5,10.5 + pos: -49.5,-35.5 parent: 2 - - uid: 16067 + - uid: 17147 components: - type: Transform - pos: -13.5,12.5 + pos: -48.5,-35.5 parent: 2 - - uid: 16069 + - uid: 17150 components: - type: Transform - pos: -13.5,16.5 + pos: -48.5,-36.5 parent: 2 - - uid: 16073 + - uid: 17155 components: - type: Transform - pos: -15.5,9.5 + pos: -48.5,-37.5 parent: 2 - - uid: 16074 + - uid: 17156 components: - type: Transform - pos: -13.5,14.5 + pos: -49.5,-37.5 parent: 2 - - uid: 16075 + - uid: 17176 components: - type: Transform - pos: -13.5,13.5 + pos: -50.5,-37.5 parent: 2 - - uid: 16084 + - uid: 17181 components: - type: Transform - pos: 17.5,-56.5 + pos: 9.5,-88.5 parent: 2 - - uid: 16085 + - uid: 17182 components: - type: Transform - pos: 18.5,-56.5 + pos: -51.5,-37.5 parent: 2 - - uid: 16086 + - uid: 17184 components: - type: Transform - pos: 19.5,-56.5 + pos: -47.5,-37.5 parent: 2 - - uid: 16087 + - uid: 17185 components: - type: Transform - pos: -14.5,11.5 + pos: -46.5,-37.5 parent: 2 - - uid: 16088 + - uid: 17206 components: - type: Transform - pos: 27.5,-55.5 + pos: -6.5,2.5 parent: 2 - - uid: 16089 + - uid: 17207 components: - type: Transform - pos: 26.5,-55.5 + pos: -7.5,3.5 parent: 2 - - uid: 16090 + - uid: 17208 components: - type: Transform - pos: 25.5,-55.5 + pos: -6.5,4.5 parent: 2 - - uid: 16091 + - uid: 17209 components: - type: Transform - pos: 24.5,-55.5 + pos: -6.5,5.5 parent: 2 - - uid: 16092 + - uid: 17210 components: - type: Transform - pos: 24.5,-56.5 + pos: -2.5,2.5 parent: 2 - - uid: 16093 + - uid: 17211 components: - type: Transform - pos: 23.5,-56.5 + pos: 1.5,5.5 parent: 2 - - uid: 16094 + - uid: 17212 components: - type: Transform - pos: 22.5,-56.5 + pos: -2.5,4.5 parent: 2 - - uid: 16104 + - uid: 17213 components: - type: Transform - pos: 29.5,-28.5 + pos: -2.5,5.5 parent: 2 - - uid: 16108 + - uid: 17214 components: - type: Transform - pos: 29.5,-29.5 + pos: 1.5,2.5 parent: 2 - - uid: 16109 + - uid: 17215 components: - type: Transform - pos: 29.5,-30.5 + pos: -5.5,3.5 parent: 2 - - uid: 16110 + - uid: 17216 components: - type: Transform - pos: 29.5,-31.5 + pos: 1.5,4.5 parent: 2 - - uid: 16112 + - uid: 17218 components: - type: Transform - pos: -32.5,12.5 + pos: -4.5,3.5 parent: 2 - - uid: 16193 + - uid: 17219 components: - type: Transform - pos: 30.5,-31.5 + pos: -3.5,3.5 parent: 2 - - uid: 16205 + - uid: 17220 components: - type: Transform - pos: 61.5,-54.5 + pos: -2.5,3.5 parent: 2 - - uid: 16207 + - uid: 17221 components: - type: Transform - pos: 62.5,-54.5 + pos: -1.5,3.5 parent: 2 - - uid: 16261 + - uid: 17222 components: - type: Transform - pos: -27.5,-4.5 + pos: -0.5,3.5 parent: 2 - - uid: 16320 + - uid: 17223 components: - type: Transform - pos: -25.5,-15.5 + pos: 0.5,3.5 parent: 2 - - uid: 16539 + - uid: 17224 components: - type: Transform - pos: -66.5,-11.5 + pos: 1.5,3.5 parent: 2 - - uid: 16540 + - uid: 17225 components: - type: Transform - pos: -66.5,-12.5 + pos: 2.5,3.5 parent: 2 - - uid: 16541 + - uid: 17226 components: - type: Transform - pos: -65.5,-12.5 + pos: 3.5,3.5 parent: 2 - - uid: 16542 + - uid: 17227 components: - type: Transform - pos: -65.5,-11.5 + pos: 4.5,3.5 parent: 2 - - uid: 16543 + - uid: 17228 components: - type: Transform - pos: -65.5,-10.5 + pos: -45.5,-37.5 parent: 2 - - uid: 16544 + - uid: 17229 components: - type: Transform - pos: -66.5,-10.5 + pos: -44.5,-37.5 parent: 2 - - uid: 16545 + - uid: 17230 components: - type: Transform - pos: -67.5,-10.5 + pos: -43.5,-37.5 parent: 2 - - uid: 16546 + - uid: 17231 components: - type: Transform - pos: -68.5,-10.5 + pos: 0.5,7.5 parent: 2 - - uid: 16547 + - uid: 17232 components: - type: Transform - pos: -69.5,-10.5 + pos: -1.5,7.5 parent: 2 - - uid: 16548 + - uid: 17233 components: - type: Transform - pos: -69.5,-11.5 + pos: -3.5,7.5 parent: 2 - - uid: 16549 + - uid: 17234 components: - type: Transform - pos: -69.5,-12.5 + pos: -5.5,7.5 parent: 2 - - uid: 16550 + - uid: 17235 components: - type: Transform - pos: -69.5,-13.5 + pos: -7.5,7.5 parent: 2 - - uid: 16551 + - uid: 17236 components: - type: Transform - pos: -69.5,-14.5 + pos: -6.5,7.5 parent: 2 - - uid: 16552 + - uid: 17237 components: - type: Transform - pos: -68.5,-14.5 + pos: -4.5,7.5 parent: 2 - - uid: 16553 + - uid: 17238 components: - type: Transform - pos: -67.5,-14.5 + pos: -2.5,7.5 parent: 2 - - uid: 16554 + - uid: 17239 components: - type: Transform - pos: -66.5,-14.5 + pos: -0.5,7.5 parent: 2 - - uid: 16555 + - uid: 17240 components: - type: Transform - pos: -65.5,-14.5 + pos: 1.5,7.5 parent: 2 - - uid: 16556 + - uid: 17241 components: - type: Transform - pos: -65.5,-13.5 + pos: 1.5,6.5 parent: 2 - - uid: 16557 + - uid: 17243 components: - type: Transform - pos: -63.5,-14.5 + pos: -2.5,6.5 parent: 2 - - uid: 16558 + - uid: 17244 components: - type: Transform - pos: -63.5,-15.5 + pos: -6.5,6.5 parent: 2 - - uid: 16559 + - uid: 17249 components: - type: Transform - pos: -62.5,-15.5 + pos: -42.5,-37.5 parent: 2 - - uid: 16560 + - uid: 17250 components: - type: Transform - pos: -61.5,-15.5 + pos: -43.5,-38.5 parent: 2 - - uid: 16561 + - uid: 17252 components: - type: Transform - pos: -63.5,-13.5 + pos: -43.5,-39.5 parent: 2 - - uid: 16562 + - uid: 17260 components: - type: Transform - pos: -63.5,-12.5 + pos: 7.5,-94.5 parent: 2 - - uid: 16563 + - uid: 17262 components: - type: Transform - pos: -62.5,-12.5 + pos: -45.5,-40.5 parent: 2 - - uid: 16564 + - uid: 17263 components: - type: Transform - pos: -61.5,-12.5 + pos: -44.5,-40.5 parent: 2 - - uid: 16565 + - uid: 17283 components: - type: Transform - pos: -62.5,-11.5 + pos: -43.5,-40.5 parent: 2 - - uid: 16566 + - uid: 17285 components: - type: Transform - pos: -62.5,-10.5 + pos: 7.5,-91.5 parent: 2 - - uid: 16567 + - uid: 17287 components: - type: Transform - pos: -62.5,-9.5 + pos: -42.5,-40.5 parent: 2 - - uid: 16568 + - uid: 17292 components: - type: Transform - pos: -61.5,-9.5 + pos: 43.5,20.5 parent: 2 - - uid: 16569 + - uid: 17295 components: - type: Transform - pos: -60.5,-12.5 + pos: -41.5,-40.5 parent: 2 - - uid: 16570 + - uid: 17320 components: - type: Transform - pos: -59.5,-12.5 + pos: -5.5,24.5 parent: 2 - - uid: 16572 + - uid: 17353 components: - type: Transform - pos: -56.5,-11.5 + pos: 37.5,25.5 parent: 2 - - uid: 16573 + - uid: 17419 components: - type: Transform - pos: -56.5,-12.5 + pos: -34.5,6.5 parent: 2 - - uid: 16574 + - uid: 17488 components: - type: Transform - pos: -55.5,-12.5 + pos: -36.5,2.5 parent: 2 - - uid: 16575 + - uid: 17493 components: - type: Transform - pos: -54.5,-12.5 + pos: 37.5,23.5 parent: 2 - - uid: 16576 + - uid: 17497 components: - type: Transform - pos: -53.5,-12.5 + pos: 27.5,-32.5 parent: 2 - - uid: 16577 + - uid: 17498 components: - type: Transform - pos: -52.5,-12.5 + pos: 28.5,-32.5 parent: 2 - - uid: 16578 + - uid: 17499 components: - type: Transform - pos: -55.5,-11.5 + pos: 28.5,-33.5 parent: 2 - - uid: 16644 + - uid: 17500 components: - type: Transform - pos: 31.5,-31.5 + pos: 28.5,-34.5 parent: 2 - - uid: 16647 + - uid: 17501 components: - type: Transform - pos: 21.5,-43.5 + pos: 28.5,-35.5 parent: 2 - - uid: 16648 + - uid: 17502 components: - type: Transform - pos: 19.5,-43.5 + pos: 28.5,-36.5 parent: 2 - - uid: 16652 + - uid: 17503 components: - type: Transform - pos: 20.5,-43.5 + pos: 29.5,-34.5 parent: 2 - - uid: 16654 + - uid: 17504 components: - type: Transform - pos: 22.5,-43.5 + pos: 30.5,-34.5 parent: 2 - - uid: 16655 + - uid: 17505 components: - type: Transform - pos: 22.5,-41.5 + pos: 31.5,-34.5 parent: 2 - - uid: 16656 + - uid: 17506 components: - type: Transform - pos: 32.5,-31.5 + pos: 31.5,-35.5 parent: 2 - - uid: 16657 + - uid: 17507 components: - type: Transform - pos: -19.5,-57.5 + pos: 32.5,-35.5 parent: 2 - - uid: 16671 + - uid: 17508 components: - type: Transform - pos: 33.5,-31.5 + pos: 33.5,-35.5 parent: 2 - - uid: 16716 + - uid: 17509 components: - type: Transform - pos: 34.5,-31.5 + pos: 33.5,-34.5 parent: 2 - - uid: 16728 + - uid: 17514 components: - type: Transform - pos: -27.5,-3.5 + pos: 33.5,-33.5 parent: 2 - - uid: 16765 + - uid: 17515 components: - type: Transform - pos: 35.5,-31.5 + pos: 32.5,-33.5 parent: 2 - - uid: 16774 + - uid: 17518 components: - type: Transform - pos: 36.5,-31.5 + pos: 31.5,-33.5 parent: 2 - - uid: 16779 + - uid: 17526 components: - type: Transform - pos: 37.5,-31.5 + pos: 40.5,-31.5 parent: 2 - - uid: 16781 + - uid: 17536 components: - type: Transform - pos: -12.5,-63.5 + pos: -43.5,-36.5 parent: 2 - - uid: 16782 + - uid: 17537 components: - type: Transform - pos: -12.5,-64.5 + pos: -43.5,-35.5 parent: 2 - - uid: 16791 + - uid: 17538 components: - type: Transform - pos: 29.5,-27.5 + pos: -43.5,-34.5 parent: 2 - - uid: 16793 + - uid: 17539 components: - type: Transform - pos: 29.5,-26.5 + pos: -41.5,-37.5 parent: 2 - - uid: 16794 + - uid: 17567 components: - type: Transform - pos: 29.5,-25.5 + pos: 30.5,-77.5 parent: 2 - - uid: 16800 + - uid: 17590 components: - type: Transform - pos: -12.5,-65.5 + pos: 34.5,19.5 parent: 2 - - uid: 16802 + - uid: 17591 components: - type: Transform - pos: -19.5,-58.5 + pos: 37.5,22.5 parent: 2 - - uid: 16803 + - uid: 17599 components: - type: Transform - pos: -20.5,-58.5 + pos: -13.5,-37.5 parent: 2 - - uid: 16804 + - uid: 17600 components: - type: Transform - pos: -21.5,-58.5 + pos: -12.5,-37.5 parent: 2 - - uid: 16805 + - uid: 17601 components: - type: Transform - pos: -21.5,-59.5 + pos: -11.5,-37.5 parent: 2 - - uid: 16806 + - uid: 17602 components: - type: Transform - pos: -21.5,-60.5 + pos: -10.5,-37.5 parent: 2 - - uid: 16807 + - uid: 17603 components: - type: Transform - pos: -21.5,-61.5 + pos: -9.5,-37.5 parent: 2 - - uid: 16808 + - uid: 17604 components: - type: Transform - pos: -21.5,-62.5 + pos: -8.5,-37.5 parent: 2 - - uid: 16809 + - uid: 17605 components: - type: Transform - pos: -22.5,-63.5 + pos: -9.5,-41.5 parent: 2 - - uid: 16810 + - uid: 17606 components: - type: Transform - pos: -21.5,-63.5 + pos: -8.5,-41.5 parent: 2 - - uid: 16811 + - uid: 17611 components: - type: Transform - pos: -20.5,-63.5 + pos: -48.5,-34.5 parent: 2 - - uid: 16812 + - uid: 17613 components: - type: Transform - pos: -19.5,-63.5 + pos: 30.5,-78.5 parent: 2 - - uid: 16813 + - uid: 17614 components: - type: Transform - pos: -18.5,-63.5 + pos: 29.5,-78.5 parent: 2 - - uid: 16814 + - uid: 17622 components: - type: Transform - pos: -17.5,-63.5 + pos: -48.5,-33.5 parent: 2 - - uid: 16815 + - uid: 17623 components: - type: Transform - pos: -16.5,-63.5 + pos: -46.5,-26.5 parent: 2 - - uid: 16816 + - uid: 17625 components: - type: Transform - pos: -14.5,-63.5 + pos: -48.5,-26.5 parent: 2 - - uid: 16817 + - uid: 17626 components: - type: Transform - pos: -13.5,-63.5 + pos: -47.5,-26.5 parent: 2 - - uid: 16819 + - uid: 17633 components: - type: Transform - pos: -15.5,-63.5 + pos: -48.5,-27.5 parent: 2 - - uid: 16821 + - uid: 17634 components: - type: Transform - pos: -11.5,-65.5 + pos: 29.5,-79.5 parent: 2 - - uid: 16822 + - uid: 17635 components: - type: Transform - pos: -22.5,-62.5 + pos: -48.5,-28.5 parent: 2 - - uid: 16823 + - uid: 17637 components: - type: Transform - pos: -23.5,-62.5 + pos: 29.5,-80.5 parent: 2 - - uid: 16824 + - uid: 17638 components: - type: Transform - pos: -24.5,-62.5 + pos: 29.5,-14.5 parent: 2 - - uid: 16825 + - uid: 17639 components: - type: Transform - pos: -25.5,-62.5 + pos: 30.5,-80.5 parent: 2 - - uid: 16826 + - uid: 17645 components: - type: Transform - pos: -26.5,-62.5 + pos: 31.5,-80.5 parent: 2 - - uid: 16831 + - uid: 17646 components: - type: Transform - pos: 28.5,-25.5 + pos: 31.5,-79.5 parent: 2 - - uid: 16881 + - uid: 17647 components: - type: Transform - pos: -37.5,-4.5 + pos: 26.5,-14.5 parent: 2 - - uid: 16882 + - uid: 17649 components: - type: Transform - pos: -35.5,-4.5 + pos: -48.5,-22.5 parent: 2 - - uid: 16985 + - uid: 17650 components: - type: Transform - pos: 27.5,-25.5 + pos: -49.5,-22.5 parent: 2 - - uid: 17021 + - uid: 17652 components: - type: Transform - pos: 26.5,-25.5 + pos: -50.5,-22.5 parent: 2 - - uid: 17025 + - uid: 17654 components: - type: Transform - pos: 25.5,-25.5 + pos: 31.5,-78.5 parent: 2 - - uid: 17061 + - uid: 17658 components: - type: Transform - pos: -38.5,-4.5 + pos: -51.5,-22.5 parent: 2 - - uid: 17091 + - uid: 17660 components: - type: Transform - pos: -39.5,-4.5 + pos: 30.5,-76.5 parent: 2 - - uid: 17149 + - uid: 17661 components: - type: Transform - pos: -38.5,-54.5 + pos: -48.5,-20.5 parent: 2 - - uid: 17151 + - uid: 17662 components: - type: Transform - pos: -37.5,-54.5 + pos: 1.5,-26.5 parent: 2 - - uid: 17152 + - uid: 17663 components: - type: Transform - pos: -37.5,-55.5 + pos: 0.5,-26.5 parent: 2 - - uid: 17153 + - uid: 17664 components: - type: Transform - pos: -37.5,-56.5 + pos: -0.5,-26.5 parent: 2 - - uid: 17154 + - uid: 17665 components: - type: Transform - pos: -37.5,-57.5 + pos: 2.5,-25.5 parent: 2 - - uid: 17206 + - uid: 17666 components: - type: Transform - pos: -6.5,2.5 + pos: 3.5,-25.5 parent: 2 - - uid: 17207 + - uid: 17667 components: - type: Transform - pos: -7.5,3.5 + pos: 4.5,-25.5 parent: 2 - - uid: 17208 + - uid: 17668 components: - type: Transform - pos: -6.5,4.5 + pos: 5.5,-25.5 parent: 2 - - uid: 17209 + - uid: 17669 components: - type: Transform - pos: -6.5,5.5 + pos: 6.5,-25.5 parent: 2 - - uid: 17210 + - uid: 17670 components: - type: Transform - pos: -2.5,2.5 + pos: 7.5,-25.5 parent: 2 - - uid: 17211 + - uid: 17671 components: - type: Transform - pos: 1.5,5.5 + pos: -1.5,-26.5 parent: 2 - - uid: 17212 + - uid: 17672 components: - type: Transform - pos: -2.5,4.5 + pos: -49.5,-20.5 parent: 2 - - uid: 17213 + - uid: 17673 components: - type: Transform - pos: -2.5,5.5 + pos: -48.5,-21.5 parent: 2 - - uid: 17214 + - uid: 17687 components: - type: Transform - pos: 1.5,2.5 + pos: 30.5,-75.5 parent: 2 - - uid: 17215 + - uid: 17688 components: - type: Transform - pos: -5.5,3.5 + pos: 30.5,-74.5 parent: 2 - - uid: 17216 + - uid: 17689 components: - type: Transform - pos: 1.5,4.5 + pos: 30.5,-73.5 parent: 2 - - uid: 17218 + - uid: 17690 components: - type: Transform - pos: -4.5,3.5 + pos: 30.5,-72.5 parent: 2 - - uid: 17219 + - uid: 17691 components: - type: Transform - pos: -3.5,3.5 + pos: 30.5,-71.5 parent: 2 - - uid: 17220 + - uid: 17692 components: - type: Transform - pos: -2.5,3.5 + pos: 30.5,-70.5 parent: 2 - - uid: 17221 + - uid: 17693 components: - type: Transform - pos: -1.5,3.5 + pos: 30.5,-69.5 parent: 2 - - uid: 17222 + - uid: 17694 components: - type: Transform - pos: -0.5,3.5 + pos: 30.5,-68.5 parent: 2 - - uid: 17223 + - uid: 17695 components: - type: Transform - pos: 0.5,3.5 + pos: 30.5,-67.5 parent: 2 - - uid: 17224 + - uid: 17704 components: - type: Transform - pos: 1.5,3.5 + pos: 33.5,19.5 parent: 2 - - uid: 17225 + - uid: 17812 components: - type: Transform - pos: 2.5,3.5 + pos: -63.5,-58.5 parent: 2 - - uid: 17226 + - uid: 17834 components: - type: Transform - pos: 3.5,3.5 + pos: -50.5,-26.5 parent: 2 - - uid: 17227 + - uid: 17835 components: - type: Transform - pos: 4.5,3.5 + pos: 52.5,-51.5 parent: 2 - - uid: 17228 + - uid: 17856 components: - type: Transform - pos: 4.5,6.5 + pos: 32.5,21.5 parent: 2 - - uid: 17229 + - uid: 17857 components: - type: Transform - pos: 3.5,6.5 + pos: -50.5,-27.5 parent: 2 - - uid: 17230 + - uid: 17859 components: - type: Transform - pos: 2.5,6.5 + pos: -49.5,-27.5 parent: 2 - - uid: 17231 + - uid: 17863 components: - type: Transform - pos: 0.5,7.5 + pos: 35.5,18.5 parent: 2 - - uid: 17232 + - uid: 17864 components: - type: Transform - pos: -1.5,7.5 + pos: 34.5,18.5 parent: 2 - - uid: 17233 + - uid: 17867 components: - type: Transform - pos: -3.5,7.5 + pos: 37.5,18.5 parent: 2 - - uid: 17234 + - uid: 17868 components: - type: Transform - pos: -5.5,7.5 + pos: 36.5,18.5 parent: 2 - - uid: 17235 + - uid: 17873 components: - type: Transform - pos: -7.5,7.5 + pos: 39.5,-14.5 parent: 2 - - uid: 17236 + - uid: 17876 components: - type: Transform - pos: -6.5,7.5 + pos: -48.5,-29.5 parent: 2 - - uid: 17237 + - uid: 17877 components: - type: Transform - pos: -4.5,7.5 + pos: -56.5,-28.5 parent: 2 - - uid: 17238 + - uid: 17879 components: - type: Transform - pos: -2.5,7.5 + pos: -55.5,-28.5 parent: 2 - - uid: 17239 + - uid: 17882 components: - type: Transform - pos: -0.5,7.5 + pos: -54.5,-28.5 parent: 2 - - uid: 17240 + - uid: 17885 components: - type: Transform - pos: 1.5,7.5 + pos: -54.5,-29.5 parent: 2 - - uid: 17241 + - uid: 17886 components: - type: Transform - pos: 1.5,6.5 + pos: -54.5,-30.5 parent: 2 - - uid: 17243 + - uid: 17948 components: - type: Transform - pos: -2.5,6.5 + pos: -53.5,-30.5 parent: 2 - - uid: 17244 + - uid: 17953 components: - type: Transform - pos: -6.5,6.5 + pos: -52.5,-30.5 parent: 2 - - uid: 17320 + - uid: 17955 components: - type: Transform - pos: -5.5,24.5 + pos: -51.5,-30.5 parent: 2 - - uid: 17497 + - uid: 17957 components: - type: Transform - pos: 27.5,-32.5 + pos: -57.5,-28.5 parent: 2 - - uid: 17498 + - uid: 17967 components: - type: Transform - pos: 28.5,-32.5 + pos: -58.5,-28.5 parent: 2 - - uid: 17499 + - uid: 17974 components: - type: Transform - pos: 28.5,-33.5 + pos: -26.5,20.5 parent: 2 - - uid: 17500 + - uid: 17977 components: - type: Transform - pos: 28.5,-34.5 + pos: -32.5,23.5 parent: 2 - - uid: 17501 + - uid: 17986 components: - type: Transform - pos: 28.5,-35.5 + pos: -58.5,-29.5 parent: 2 - - uid: 17502 + - uid: 17987 components: - type: Transform - pos: 28.5,-36.5 + pos: -58.5,-30.5 parent: 2 - - uid: 17503 + - uid: 17988 components: - type: Transform - pos: 29.5,-34.5 + pos: -58.5,-32.5 parent: 2 - - uid: 17504 + - uid: 17989 components: - type: Transform - pos: 30.5,-34.5 + pos: -59.5,-32.5 parent: 2 - - uid: 17505 + - uid: 17990 components: - type: Transform - pos: 31.5,-34.5 + pos: -60.5,-32.5 parent: 2 - - uid: 17506 + - uid: 17991 components: - type: Transform - pos: 31.5,-35.5 + pos: -60.5,-31.5 parent: 2 - - uid: 17507 + - uid: 17992 components: - type: Transform - pos: 32.5,-35.5 + pos: -60.5,-30.5 parent: 2 - - uid: 17508 + - uid: 17993 components: - type: Transform - pos: 33.5,-35.5 + pos: -60.5,-29.5 parent: 2 - - uid: 17509 + - uid: 17994 components: - type: Transform - pos: 33.5,-34.5 + pos: -60.5,-28.5 parent: 2 - - uid: 17514 + - uid: 17995 components: - type: Transform - pos: 33.5,-33.5 + pos: -60.5,-27.5 parent: 2 - - uid: 17515 + - uid: 17996 components: - type: Transform - pos: 32.5,-33.5 + pos: -59.5,-27.5 parent: 2 - - uid: 17518 + - uid: 17997 components: - type: Transform - pos: 31.5,-33.5 + pos: -58.5,-27.5 parent: 2 - - uid: 17526 + - uid: 18000 components: - type: Transform - pos: 40.5,-31.5 + pos: -55.5,-26.5 parent: 2 - - uid: 17567 + - uid: 18001 components: - type: Transform - pos: 30.5,-77.5 + pos: -54.5,-26.5 parent: 2 - - uid: 17599 + - uid: 18002 components: - type: Transform - pos: -13.5,-37.5 + pos: -55.5,-32.5 parent: 2 - - uid: 17600 + - uid: 18003 components: - type: Transform - pos: -12.5,-37.5 + pos: -54.5,-32.5 parent: 2 - - uid: 17601 + - uid: 18029 components: - type: Transform - pos: -11.5,-37.5 + pos: -13.5,-0.5 parent: 2 - - uid: 17602 + - uid: 18030 components: - type: Transform - pos: -10.5,-37.5 + pos: -14.5,-0.5 parent: 2 - - uid: 17603 + - uid: 18031 components: - type: Transform - pos: -9.5,-37.5 + pos: -15.5,-0.5 parent: 2 - - uid: 17604 + - uid: 18032 components: - type: Transform - pos: -8.5,-37.5 + pos: -15.5,-1.5 parent: 2 - - uid: 17605 + - uid: 18033 components: - type: Transform - pos: -9.5,-41.5 + pos: -15.5,-3.5 parent: 2 - - uid: 17606 + - uid: 18034 components: - type: Transform - pos: -8.5,-41.5 + pos: -15.5,-4.5 parent: 2 - - uid: 17613 + - uid: 18035 components: - type: Transform - pos: 30.5,-78.5 + pos: -15.5,-2.5 parent: 2 - - uid: 17614 + - uid: 18036 components: - type: Transform - pos: 29.5,-78.5 + pos: -16.5,-4.5 parent: 2 - - uid: 17634 + - uid: 18037 components: - type: Transform - pos: 29.5,-79.5 + pos: -16.5,-5.5 parent: 2 - - uid: 17637 + - uid: 18038 components: - type: Transform - pos: 29.5,-80.5 + pos: -16.5,-6.5 parent: 2 - - uid: 17639 + - uid: 18039 components: - type: Transform - pos: 30.5,-80.5 + pos: -16.5,-7.5 parent: 2 - - uid: 17645 + - uid: 18040 components: - type: Transform - pos: 31.5,-80.5 + pos: -16.5,-8.5 parent: 2 - - uid: 17646 + - uid: 18041 components: - type: Transform - pos: 31.5,-79.5 + pos: -16.5,-9.5 parent: 2 - - uid: 17654 + - uid: 18042 components: - type: Transform - pos: 31.5,-78.5 + pos: -16.5,-10.5 parent: 2 - - uid: 17660 + - uid: 18043 components: - type: Transform - pos: 30.5,-76.5 + pos: -16.5,-11.5 parent: 2 - - uid: 17662 + - uid: 18044 components: - type: Transform - pos: 1.5,-26.5 + pos: -16.5,-12.5 parent: 2 - - uid: 17663 + - uid: 18045 components: - type: Transform - pos: 0.5,-26.5 + pos: -16.5,-13.5 parent: 2 - - uid: 17664 + - uid: 18046 components: - type: Transform - pos: -0.5,-26.5 + pos: -16.5,-14.5 parent: 2 - - uid: 17665 + - uid: 18047 components: - type: Transform - pos: 2.5,-25.5 + pos: -54.5,-31.5 parent: 2 - - uid: 17666 + - uid: 18048 components: - type: Transform - pos: 3.5,-25.5 + pos: -54.5,-27.5 parent: 2 - - uid: 17667 + - uid: 18050 components: - type: Transform - pos: 4.5,-25.5 + pos: -58.5,-31.5 parent: 2 - - uid: 17668 + - uid: 18051 components: - type: Transform - pos: 5.5,-25.5 + pos: -31.5,-23.5 parent: 2 - - uid: 17669 + - uid: 18064 components: - type: Transform - pos: 6.5,-25.5 + pos: 23.5,11.5 parent: 2 - - uid: 17670 + - uid: 18067 components: - type: Transform - pos: 7.5,-25.5 + pos: 22.5,11.5 parent: 2 - - uid: 17671 + - uid: 18068 components: - type: Transform - pos: -1.5,-26.5 + pos: 39.5,18.5 parent: 2 - - uid: 17672 + - uid: 18069 components: - type: Transform - pos: 1.5,-21.5 + pos: 20.5,11.5 parent: 2 - - uid: 17673 + - uid: 18070 components: - type: Transform - pos: 1.5,-20.5 + pos: 20.5,12.5 parent: 2 - - uid: 17674 + - uid: 18071 components: - type: Transform - pos: 1.5,-19.5 + pos: 20.5,13.5 parent: 2 - - uid: 17675 + - uid: 18072 components: - type: Transform - pos: 1.5,-18.5 + pos: 20.5,10.5 parent: 2 - - uid: 17676 + - uid: 18081 components: - type: Transform - pos: 1.5,-17.5 + pos: 44.5,11.5 parent: 2 - - uid: 17677 + - uid: 18082 components: - type: Transform - pos: 1.5,-16.5 + pos: 45.5,11.5 parent: 2 - - uid: 17678 + - uid: 18083 components: - type: Transform - pos: 6.5,-17.5 + pos: 46.5,11.5 parent: 2 - - uid: 17679 + - uid: 18084 components: - type: Transform - pos: 6.5,-16.5 + pos: 47.5,11.5 parent: 2 - - uid: 17680 + - uid: 18085 components: - type: Transform - pos: 6.5,-15.5 + pos: 44.5,10.5 parent: 2 - - uid: 17681 + - uid: 18086 components: - type: Transform - pos: 7.5,-15.5 + pos: 46.5,8.5 parent: 2 - - uid: 17682 + - uid: 18087 components: - type: Transform - pos: 8.5,-15.5 + pos: 47.5,8.5 parent: 2 - - uid: 17687 + - uid: 18088 components: - type: Transform - pos: 30.5,-75.5 + pos: 48.5,11.5 parent: 2 - - uid: 17688 + - uid: 18089 components: - type: Transform - pos: 30.5,-74.5 + pos: 48.5,8.5 parent: 2 - - uid: 17689 + - uid: 18090 components: - type: Transform - pos: 30.5,-73.5 + pos: -34.5,17.5 parent: 2 - - uid: 17690 + - uid: 18342 components: - type: Transform - pos: 30.5,-72.5 + pos: 38.5,18.5 parent: 2 - - uid: 17691 + - uid: 18401 components: - type: Transform - pos: 30.5,-71.5 + pos: 40.5,18.5 parent: 2 - - uid: 17692 + - uid: 18402 components: - type: Transform - pos: 30.5,-70.5 + pos: 38.5,21.5 parent: 2 - - uid: 17693 + - uid: 18404 components: - type: Transform - pos: 30.5,-69.5 + pos: 38.5,22.5 parent: 2 - - uid: 17694 + - uid: 18405 components: - type: Transform - pos: 30.5,-68.5 + pos: 39.5,21.5 parent: 2 - - uid: 17695 + - uid: 18406 components: - type: Transform - pos: 30.5,-67.5 + pos: 40.5,21.5 parent: 2 - - uid: 17835 + - uid: 18413 components: - type: Transform - pos: 52.5,-51.5 + pos: 27.5,23.5 parent: 2 - - uid: 17873 + - uid: 18454 components: - type: Transform - pos: 39.5,-14.5 + pos: 58.5,-52.5 parent: 2 - - uid: 17974 + - uid: 18553 components: - type: Transform - pos: -26.5,20.5 + pos: -31.5,-24.5 parent: 2 - - uid: 17977 + - uid: 18554 components: - type: Transform - pos: -32.5,23.5 + pos: -4.5,9.5 parent: 2 - - uid: 17995 + - uid: 18555 components: - type: Transform - pos: 13.5,-18.5 + pos: -2.5,9.5 parent: 2 - - uid: 18029 + - uid: 18556 components: - type: Transform - pos: -13.5,-0.5 + pos: -1.5,9.5 parent: 2 - - uid: 18030 + - uid: 18557 components: - type: Transform - pos: -14.5,-0.5 + pos: -3.5,9.5 parent: 2 - - uid: 18031 + - uid: 18558 components: - type: Transform - pos: -15.5,-0.5 + pos: -30.5,-24.5 parent: 2 - - uid: 18032 + - uid: 18559 components: - type: Transform - pos: -15.5,-1.5 + pos: -29.5,-24.5 parent: 2 - - uid: 18033 + - uid: 18562 components: - type: Transform - pos: -15.5,-3.5 + pos: -3.5,10.5 parent: 2 - - uid: 18034 + - uid: 18565 components: - type: Transform - pos: -15.5,-4.5 + pos: -5.5,9.5 parent: 2 - - uid: 18035 + - uid: 18568 components: - type: Transform - pos: -15.5,-2.5 + pos: -28.5,-24.5 parent: 2 - - uid: 18036 + - uid: 18569 components: - type: Transform - pos: -16.5,-4.5 + pos: -27.5,-24.5 parent: 2 - - uid: 18037 + - uid: 18570 components: - type: Transform - pos: -16.5,-5.5 + pos: 41.5,-31.5 parent: 2 - - uid: 18038 + - uid: 18573 components: - type: Transform - pos: -16.5,-6.5 + pos: -29.5,-22.5 parent: 2 - - uid: 18039 + - uid: 18574 components: - type: Transform - pos: -16.5,-7.5 + pos: -28.5,-22.5 parent: 2 - - uid: 18040 + - uid: 18575 components: - type: Transform - pos: -16.5,-8.5 + pos: -29.5,-28.5 parent: 2 - - uid: 18041 + - uid: 18576 components: - type: Transform - pos: -16.5,-9.5 + pos: -30.5,-22.5 parent: 2 - - uid: 18042 + - uid: 18578 components: - type: Transform - pos: -16.5,-10.5 + pos: -30.5,-28.5 parent: 2 - - uid: 18043 + - uid: 18582 components: - type: Transform - pos: -16.5,-11.5 + pos: -31.5,-28.5 parent: 2 - - uid: 18044 + - uid: 18583 components: - type: Transform - pos: -16.5,-12.5 + pos: -31.5,-29.5 parent: 2 - - uid: 18045 + - uid: 18586 components: - type: Transform - pos: -16.5,-13.5 + pos: -31.5,-30.5 parent: 2 - - uid: 18046 + - uid: 18612 components: - type: Transform - pos: -16.5,-14.5 + pos: -31.5,-31.5 parent: 2 - - uid: 18064 - components: - - type: Transform - pos: 23.5,11.5 - parent: 2 - - uid: 18067 - components: - - type: Transform - pos: 22.5,11.5 - parent: 2 - - uid: 18068 - components: - - type: Transform - pos: 21.5,11.5 - parent: 2 - - uid: 18069 - components: - - type: Transform - pos: 20.5,11.5 - parent: 2 - - uid: 18070 - components: - - type: Transform - pos: 20.5,12.5 - parent: 2 - - uid: 18071 - components: - - type: Transform - pos: 20.5,13.5 - parent: 2 - - uid: 18072 - components: - - type: Transform - pos: 20.5,10.5 - parent: 2 - - uid: 18081 - components: - - type: Transform - pos: 44.5,11.5 - parent: 2 - - uid: 18082 - components: - - type: Transform - pos: 45.5,11.5 - parent: 2 - - uid: 18083 - components: - - type: Transform - pos: 46.5,11.5 - parent: 2 - - uid: 18084 - components: - - type: Transform - pos: 47.5,11.5 - parent: 2 - - uid: 18085 - components: - - type: Transform - pos: 44.5,10.5 - parent: 2 - - uid: 18086 - components: - - type: Transform - pos: 46.5,8.5 - parent: 2 - - uid: 18087 - components: - - type: Transform - pos: 47.5,8.5 - parent: 2 - - uid: 18088 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - - uid: 18089 - components: - - type: Transform - pos: 48.5,8.5 - parent: 2 - - uid: 18090 - components: - - type: Transform - pos: -34.5,17.5 - parent: 2 - - uid: 18193 - components: - - type: Transform - pos: 15.5,-18.5 - parent: 2 - - uid: 18454 - components: - - type: Transform - pos: 58.5,-52.5 - parent: 2 - - uid: 18554 - components: - - type: Transform - pos: -4.5,9.5 - parent: 2 - - uid: 18555 - components: - - type: Transform - pos: -2.5,9.5 - parent: 2 - - uid: 18556 - components: - - type: Transform - pos: -1.5,9.5 - parent: 2 - - uid: 18557 - components: - - type: Transform - pos: -3.5,9.5 - parent: 2 - - uid: 18562 - components: - - type: Transform - pos: -3.5,10.5 - parent: 2 - - uid: 18565 + - uid: 18633 components: - type: Transform - pos: -5.5,9.5 + pos: -30.5,-31.5 parent: 2 - - uid: 18570 + - uid: 18637 components: - type: Transform - pos: 41.5,-31.5 + pos: -29.5,-31.5 parent: 2 - - uid: 18614 + - uid: 18638 components: - type: Transform - pos: 33.5,-5.5 + pos: -28.5,-31.5 parent: 2 - uid: 18646 components: @@ -35744,6 +38221,11 @@ entities: - type: Transform pos: 57.5,-39.5 parent: 2 + - uid: 18754 + components: + - type: Transform + pos: 36.5,24.5 + parent: 2 - uid: 18758 components: - type: Transform @@ -35752,42 +38234,107 @@ entities: - uid: 18799 components: - type: Transform - pos: -28.5,-37.5 + pos: -27.5,-31.5 + parent: 2 + - uid: 18816 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 18857 + components: + - type: Transform + pos: -25.5,-31.5 + parent: 2 + - uid: 18861 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 18862 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 18870 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 18871 + components: + - type: Transform + pos: -25.5,-28.5 parent: 2 - uid: 18872 components: - type: Transform - pos: -43.5,-26.5 + pos: -26.5,-28.5 parent: 2 - uid: 18873 components: - type: Transform - pos: -43.5,-27.5 + pos: -27.5,-28.5 parent: 2 - uid: 18874 components: - type: Transform - pos: -42.5,-27.5 + pos: -28.5,-28.5 parent: 2 - uid: 18875 components: - type: Transform - pos: -39.5,-25.5 + pos: -28.5,-27.5 parent: 2 - uid: 18876 components: - type: Transform - pos: -40.5,-25.5 + pos: -28.5,-26.5 + parent: 2 + - uid: 18885 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 18887 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 18888 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 18890 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 18893 + components: + - type: Transform + pos: -25.5,-18.5 parent: 2 - uid: 18895 components: - type: Transform - pos: 28.5,-9.5 + pos: -24.5,-19.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: -26.5,-20.5 parent: 2 - uid: 18898 components: - type: Transform - pos: 30.5,-9.5 + pos: -27.5,-20.5 + parent: 2 + - uid: 18907 + components: + - type: Transform + pos: -27.5,-21.5 parent: 2 - uid: 18924 components: @@ -35829,6 +38376,16 @@ entities: - type: Transform pos: 3.5,-30.5 parent: 2 + - uid: 18940 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 18941 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 - uid: 18956 components: - type: Transform @@ -35844,35 +38401,75 @@ entities: - type: Transform pos: 48.5,-36.5 parent: 2 + - uid: 18965 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 18966 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 18978 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 - uid: 18990 components: - type: Transform - pos: 13.5,-11.5 + pos: -35.5,-15.5 parent: 2 - uid: 18991 components: - type: Transform - pos: 12.5,-11.5 + pos: -36.5,-15.5 parent: 2 - uid: 18992 components: - type: Transform - pos: 14.5,-12.5 + pos: -37.5,-15.5 parent: 2 - uid: 18993 components: - type: Transform - pos: 15.5,-11.5 + pos: -38.5,-15.5 parent: 2 - uid: 18994 components: - type: Transform - pos: 16.5,-11.5 + pos: -36.5,-14.5 parent: 2 - uid: 18995 components: - type: Transform - pos: 14.5,-13.5 + pos: -36.5,-13.5 + parent: 2 + - uid: 18997 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 18998 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 19002 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 19003 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 19010 + components: + - type: Transform + pos: -40.5,-14.5 parent: 2 - uid: 19012 components: @@ -35894,15 +38491,60 @@ entities: - type: Transform pos: 36.5,-39.5 parent: 2 + - uid: 19016 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 - uid: 19017 components: - type: Transform - pos: -33.5,-32.5 + pos: -39.5,-14.5 parent: 2 - uid: 19018 components: - type: Transform - pos: -33.5,-33.5 + pos: -30.5,-15.5 + parent: 2 + - uid: 19019 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 19020 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 19021 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 19022 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 19023 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 19024 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 19045 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 19046 + components: + - type: Transform + pos: -21.5,-15.5 parent: 2 - uid: 19090 components: @@ -35914,21 +38556,176 @@ entities: - type: Transform pos: 49.5,2.5 parent: 2 + - uid: 19153 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 19162 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 19163 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 19189 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 19192 + components: + - type: Transform + pos: 9.5,-90.5 + parent: 2 + - uid: 19196 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 19198 + components: + - type: Transform + pos: -33.5,-19.5 + parent: 2 + - uid: 19200 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 19208 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 19221 + components: + - type: Transform + pos: 8.5,-88.5 + parent: 2 + - uid: 19225 + components: + - type: Transform + pos: 9.5,-89.5 + parent: 2 + - uid: 19230 + components: + - type: Transform + pos: -36.5,-19.5 + parent: 2 + - uid: 19233 + components: + - type: Transform + pos: -35.5,-19.5 + parent: 2 + - uid: 19251 + components: + - type: Transform + pos: 7.5,-88.5 + parent: 2 + - uid: 19252 + components: + - type: Transform + pos: 7.5,-92.5 + parent: 2 + - uid: 19255 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 2 + - uid: 19268 + components: + - type: Transform + pos: 7.5,-89.5 + parent: 2 - uid: 19287 components: - type: Transform pos: 45.5,-52.5 parent: 2 + - uid: 19549 + components: + - type: Transform + pos: -34.5,-19.5 + parent: 2 + - uid: 19553 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 19555 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 19556 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 19558 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 - uid: 19605 components: - type: Transform pos: 42.5,9.5 parent: 2 + - uid: 19627 + components: + - type: Transform + pos: -33.5,-11.5 + parent: 2 + - uid: 19759 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 + - uid: 19773 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 19877 + components: + - type: Transform + pos: 6.5,23.5 + parent: 2 - uid: 19880 components: - type: Transform pos: 48.5,-52.5 parent: 2 + - uid: 19884 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 19972 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 19990 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 19991 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 20004 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 - uid: 20104 components: - type: Transform @@ -35984,10 +38781,175 @@ entities: - type: Transform pos: -71.5,-15.5 parent: 2 + - uid: 20121 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 20134 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 20135 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 20139 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 20140 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 + - uid: 20141 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 20143 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 20155 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 20183 + components: + - type: Transform + pos: 7.5,-93.5 + parent: 2 + - uid: 20184 + components: + - type: Transform + pos: 6.5,-95.5 + parent: 2 + - uid: 20186 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 20191 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 20200 + components: + - type: Transform + pos: -32.5,-19.5 + parent: 2 + - uid: 20212 + components: + - type: Transform + pos: -36.5,-21.5 + parent: 2 + - uid: 20213 + components: + - type: Transform + pos: 7.5,-95.5 + parent: 2 + - uid: 20216 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 20218 + components: + - type: Transform + pos: 7.5,-90.5 + parent: 2 + - uid: 20226 + components: + - type: Transform + pos: -36.5,-23.5 + parent: 2 + - uid: 20233 + components: + - type: Transform + pos: -43.5,-23.5 + parent: 2 - uid: 20238 components: - type: Transform - pos: -25.5,-22.5 + pos: -42.5,-23.5 + parent: 2 + - uid: 20259 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 20260 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - uid: 20261 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 20262 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 + - uid: 20265 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 20266 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 20269 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 20270 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 20271 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 20272 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 20273 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 20274 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 20275 + components: + - type: Transform + pos: -43.5,-20.5 + parent: 2 + - uid: 20276 + components: + - type: Transform + pos: -43.5,-21.5 parent: 2 - uid: 20280 components: @@ -36004,20 +38966,35 @@ entities: - type: Transform pos: 36.5,3.5 parent: 2 + - uid: 20283 + components: + - type: Transform + pos: -43.5,-22.5 + parent: 2 + - uid: 20286 + components: + - type: Transform + pos: -43.5,-24.5 + parent: 2 + - uid: 20287 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 - uid: 20387 components: - type: Transform pos: -7.5,13.5 parent: 2 - - uid: 20388 + - uid: 20389 components: - type: Transform - pos: -6.5,-53.5 + pos: 14.5,-56.5 parent: 2 - - uid: 20389 + - uid: 20408 components: - type: Transform - pos: -6.5,-54.5 + pos: 33.5,25.5 parent: 2 - uid: 20426 components: @@ -36084,11 +39061,6 @@ entities: - type: Transform pos: -41.5,-3.5 parent: 2 - - uid: 20496 - components: - - type: Transform - pos: -34.5,3.5 - parent: 2 - uid: 20497 components: - type: Transform @@ -36099,65 +39071,85 @@ entities: - type: Transform pos: -33.5,1.5 parent: 2 - - uid: 20499 + - uid: 20502 components: - type: Transform - pos: -34.5,4.5 + pos: 16.5,25.5 parent: 2 - - uid: 20500 + - uid: 20513 components: - type: Transform - pos: -34.5,5.5 + pos: 16.5,30.5 parent: 2 - - uid: 20501 + - uid: 20524 components: - type: Transform - pos: -33.5,5.5 + pos: -26.5,-37.5 parent: 2 - uid: 20525 components: - type: Transform pos: -44.5,-7.5 parent: 2 + - uid: 20531 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - uid: 20532 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 20533 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 20535 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 20536 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 - uid: 20537 components: - type: Transform - pos: -34.5,-5.5 + pos: -28.5,-35.5 parent: 2 - uid: 20538 components: - type: Transform - pos: -34.5,-6.5 + pos: -28.5,-34.5 parent: 2 - uid: 20539 components: - type: Transform - pos: -34.5,-7.5 + pos: -29.5,-34.5 parent: 2 - uid: 20540 components: - type: Transform - pos: -34.5,-8.5 - parent: 2 - - uid: 20541 - components: - - type: Transform - pos: -33.5,-8.5 + pos: -30.5,-34.5 parent: 2 - uid: 20542 components: - type: Transform - pos: -32.5,-8.5 + pos: -29.5,-37.5 parent: 2 - uid: 20543 components: - type: Transform - pos: -31.5,-8.5 + pos: -28.5,-39.5 parent: 2 - uid: 20544 components: - type: Transform - pos: -35.5,-8.5 + pos: -29.5,-39.5 parent: 2 - uid: 20545 components: @@ -36204,6 +39196,11 @@ entities: - type: Transform pos: -36.5,-8.5 parent: 2 + - uid: 20555 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 - uid: 20558 components: - type: Transform @@ -36314,11 +39311,6 @@ entities: - type: Transform pos: -39.5,5.5 parent: 2 - - uid: 20619 - components: - - type: Transform - pos: -5.5,-53.5 - parent: 2 - uid: 20621 components: - type: Transform @@ -36334,11 +39326,6 @@ entities: - type: Transform pos: 48.5,-44.5 parent: 2 - - uid: 20630 - components: - - type: Transform - pos: -36.5,9.5 - parent: 2 - uid: 20631 components: - type: Transform @@ -36354,6 +39341,11 @@ entities: - type: Transform pos: -10.5,14.5 parent: 2 + - uid: 20639 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 - uid: 20640 components: - type: Transform @@ -36374,30655 +39366,34938 @@ entities: - type: Transform pos: 43.5,11.5 parent: 2 - - uid: 20668 + - uid: 20644 components: - type: Transform - pos: -30.5,-0.5 + pos: -44.5,-29.5 parent: 2 - - uid: 20693 + - uid: 20645 components: - type: Transform - pos: -27.5,-57.5 + pos: -45.5,-29.5 parent: 2 - - uid: 20694 + - uid: 20646 components: - type: Transform - pos: -27.5,-58.5 + pos: -44.5,-28.5 parent: 2 - - uid: 20695 + - uid: 20647 components: - type: Transform - pos: -28.5,-58.5 + pos: -43.5,-28.5 parent: 2 - - uid: 20696 + - uid: 20648 components: - type: Transform - pos: -49.5,-55.5 + pos: -42.5,-28.5 parent: 2 - - uid: 20697 + - uid: 20649 components: - type: Transform - pos: -49.5,-53.5 + pos: -41.5,-28.5 parent: 2 - - uid: 20698 + - uid: 20650 components: - type: Transform - pos: -46.5,-56.5 + pos: -40.5,-28.5 parent: 2 - - uid: 20699 + - uid: 20651 components: - type: Transform - pos: -45.5,-56.5 + pos: -40.5,-29.5 parent: 2 - - uid: 20700 + - uid: 20652 components: - type: Transform - pos: -44.5,-56.5 + pos: -40.5,-30.5 parent: 2 - - uid: 20701 + - uid: 20653 components: - type: Transform - pos: -45.5,-55.5 + pos: -40.5,-31.5 parent: 2 - - uid: 20728 + - uid: 20654 components: - type: Transform - pos: -4.5,-1.5 + pos: -44.5,-31.5 parent: 2 - - uid: 20733 + - uid: 20655 components: - type: Transform - pos: -6.5,-4.5 + pos: -43.5,-31.5 parent: 2 - - uid: 20750 + - uid: 20659 components: - type: Transform - pos: -38.5,-58.5 + pos: -42.5,-31.5 parent: 2 - - uid: 20751 + - uid: 20668 components: - type: Transform - pos: -39.5,-58.5 + pos: -41.5,-31.5 parent: 2 - - uid: 20752 + - uid: 20669 components: - type: Transform - pos: -40.5,-58.5 + pos: -44.5,-30.5 parent: 2 - - uid: 20757 + - uid: 20673 components: - type: Transform - pos: -5.5,-4.5 + pos: 27.5,27.5 parent: 2 - - uid: 20771 + - uid: 20674 components: - type: Transform - pos: -32.5,2.5 + pos: 27.5,30.5 parent: 2 - - uid: 20774 + - uid: 20694 components: - type: Transform - pos: -32.5,1.5 + pos: -34.5,-31.5 parent: 2 - - uid: 20793 + - uid: 20695 components: - type: Transform - pos: -32.5,4.5 + pos: -38.5,-32.5 parent: 2 - - uid: 20794 + - uid: 20704 components: - type: Transform - pos: -4.5,-4.5 + pos: -37.5,-32.5 parent: 2 - - uid: 20795 + - uid: 20705 components: - type: Transform - pos: -3.5,-4.5 + pos: -36.5,-32.5 parent: 2 - - uid: 20796 + - uid: 20707 components: - type: Transform - pos: -2.5,-4.5 + pos: -35.5,-32.5 parent: 2 - - uid: 20797 + - uid: 20708 components: - type: Transform - pos: -1.5,-4.5 + pos: -34.5,-32.5 parent: 2 - - uid: 20798 + - uid: 20710 components: - type: Transform - pos: -7.5,-1.5 + pos: -34.5,-30.5 parent: 2 - - uid: 20800 + - uid: 20711 components: - type: Transform - pos: -6.5,-1.5 + pos: -34.5,-29.5 parent: 2 - - uid: 20802 + - uid: 20717 components: - type: Transform - pos: -8.5,-1.5 + pos: -34.5,-28.5 parent: 2 - - uid: 20805 + - uid: 20720 components: - type: Transform - pos: 1.5,-1.5 + pos: -34.5,-27.5 parent: 2 - - uid: 20806 + - uid: 20721 components: - type: Transform - pos: -3.5,-1.5 + pos: -35.5,-27.5 parent: 2 - - uid: 20807 + - uid: 20723 components: - type: Transform - pos: -2.5,-1.5 + pos: -36.5,-27.5 parent: 2 - - uid: 20808 + - uid: 20725 components: - type: Transform - pos: -1.5,-1.5 + pos: -37.5,-27.5 parent: 2 - - uid: 20809 + - uid: 20728 components: - type: Transform - pos: -0.5,-1.5 + pos: -38.5,-27.5 parent: 2 - - uid: 20810 + - uid: 20730 components: - type: Transform - pos: 0.5,-1.5 + pos: -36.5,-31.5 parent: 2 - - uid: 20811 + - uid: 20731 components: - type: Transform - pos: 2.5,-1.5 + pos: -38.5,-30.5 parent: 2 - - uid: 20812 + - uid: 20733 components: - type: Transform - pos: 3.5,-1.5 + pos: -38.5,-29.5 parent: 2 - - uid: 20813 + - uid: 20735 components: - type: Transform - pos: 4.5,-1.5 + pos: -36.5,-29.5 parent: 2 - - uid: 20825 + - uid: 20736 components: - type: Transform - pos: -25.5,-54.5 + pos: -36.5,-30.5 parent: 2 - - uid: 20826 + - uid: 20739 components: - type: Transform - pos: -25.5,-55.5 + pos: -35.5,-29.5 parent: 2 - - uid: 20827 + - uid: 20740 components: - type: Transform - pos: -25.5,-56.5 + pos: -39.5,-29.5 parent: 2 - - uid: 20828 + - uid: 20771 components: - type: Transform - pos: -26.5,-56.5 + pos: -32.5,2.5 parent: 2 -- proto: CableApcStack - entities: - - uid: 1898 + - uid: 20774 components: - type: Transform - pos: -13.486356,-10.375069 + pos: -32.5,1.5 parent: 2 - - uid: 3392 + - uid: 20785 components: - type: Transform - pos: -16.35442,-25.386759 + pos: 27.5,29.5 parent: 2 - - uid: 4347 + - uid: 20786 components: - type: Transform - pos: 38.445034,-24.375977 + pos: 21.5,22.5 parent: 2 - - uid: 8452 + - uid: 20788 components: - type: Transform - pos: -55.347515,-13.502788 + pos: -56.5,-52.5 parent: 2 - - uid: 10655 + - uid: 20789 components: - type: Transform - pos: -31.298944,-59.721985 + pos: 23.5,24.5 parent: 2 - - uid: 12674 + - uid: 20793 components: - type: Transform - pos: -6.4329424,-15.015114 + pos: -32.5,4.5 parent: 2 - - uid: 13026 + - uid: 20795 components: - type: Transform - pos: -4.0583553,-23.375748 + pos: -37.5,-42.5 parent: 2 - - uid: 14674 + - uid: 20796 components: - type: Transform - pos: 11.527697,-19.487476 + pos: -38.5,-42.5 parent: 2 - - uid: 18969 + - uid: 20797 components: - type: Transform - pos: -33.466095,4.7338076 + pos: -38.5,-43.5 parent: 2 -- proto: CableApcStack10 - entities: - - uid: 8880 + - uid: 20798 components: - type: Transform - pos: 48.56237,-11.409377 + pos: -38.5,-44.5 parent: 2 - - uid: 20122 + - uid: 20800 components: - type: Transform - pos: 15.51598,13.566172 + pos: -38.5,-45.5 parent: 2 -- proto: CablecuffsBroken - entities: - - uid: 2226 + - uid: 20802 components: - type: Transform - pos: 52.73436,-36.2627 + pos: -38.5,-46.5 parent: 2 -- proto: CableHV - entities: - - uid: 5 + - uid: 20805 components: - type: Transform - pos: -11.5,25.5 + pos: -38.5,-47.5 parent: 2 - - uid: 32 + - uid: 20806 components: - type: Transform - pos: -34.5,23.5 + pos: -38.5,-41.5 parent: 2 - - uid: 40 + - uid: 20811 components: - type: Transform - pos: -11.5,23.5 + pos: -45.5,-46.5 parent: 2 - - uid: 43 + - uid: 20812 components: - type: Transform - pos: 14.5,-15.5 + pos: -45.5,-47.5 parent: 2 - - uid: 82 + - uid: 20813 components: - type: Transform - pos: -13.5,22.5 + pos: -45.5,-48.5 parent: 2 - - uid: 88 + - uid: 20825 components: - type: Transform - pos: -32.5,-49.5 + pos: -25.5,-54.5 parent: 2 - - uid: 108 + - uid: 20826 components: - type: Transform - pos: -21.5,-27.5 + pos: -25.5,-55.5 parent: 2 - - uid: 255 + - uid: 20827 components: - type: Transform - pos: 7.5,-15.5 + pos: -25.5,-56.5 parent: 2 - - uid: 257 + - uid: 20828 components: - type: Transform - pos: 8.5,-15.5 + pos: -26.5,-56.5 parent: 2 - - uid: 276 + - uid: 20840 components: - type: Transform - pos: -11.5,-53.5 + pos: 14.5,-60.5 parent: 2 - - uid: 277 + - uid: 20898 components: - type: Transform - pos: -12.5,-53.5 + pos: 14.5,-61.5 parent: 2 - - uid: 281 + - uid: 20899 components: - type: Transform - pos: -10.5,-55.5 + pos: 14.5,-62.5 parent: 2 - - uid: 292 + - uid: 20900 components: - type: Transform - pos: -32.5,-51.5 + pos: 12.5,-69.5 parent: 2 - - uid: 300 + - uid: 20901 components: - type: Transform - pos: -22.5,-27.5 + pos: 11.5,-69.5 parent: 2 - - uid: 301 + - uid: 20902 components: - type: Transform - pos: -8.5,-22.5 + pos: 10.5,-69.5 parent: 2 - - uid: 324 + - uid: 20903 components: - type: Transform - pos: 36.5,10.5 + pos: 10.5,-70.5 parent: 2 - - uid: 347 + - uid: 20904 components: - type: Transform - pos: -10.5,-53.5 + pos: 10.5,-71.5 parent: 2 - - uid: 455 + - uid: 20905 components: - type: Transform - pos: 41.5,-32.5 + pos: 10.5,-72.5 parent: 2 - - uid: 481 + - uid: 20906 components: - type: Transform - pos: -51.5,-54.5 + pos: 10.5,-73.5 parent: 2 - - uid: 485 + - uid: 20907 components: - type: Transform - pos: -14.5,-18.5 + pos: 10.5,-74.5 parent: 2 - - uid: 487 + - uid: 20908 components: - type: Transform - pos: -14.5,-20.5 + pos: 10.5,-75.5 parent: 2 - - uid: 525 + - uid: 20909 components: - type: Transform - pos: -9.5,-55.5 + pos: 10.5,-76.5 parent: 2 - - uid: 527 + - uid: 20910 components: - type: Transform - pos: -8.5,-55.5 + pos: 10.5,-77.5 parent: 2 - - uid: 591 + - uid: 20911 components: - type: Transform - pos: 2.5,-36.5 + pos: 10.5,-78.5 parent: 2 - - uid: 660 + - uid: 20912 components: - type: Transform - pos: -13.5,21.5 + pos: 10.5,-68.5 parent: 2 - - uid: 767 + - uid: 20913 components: - type: Transform - pos: 3.5,-26.5 + pos: 10.5,-67.5 parent: 2 - - uid: 800 + - uid: 20914 components: - type: Transform - pos: -56.5,20.5 + pos: 10.5,-66.5 parent: 2 - - uid: 803 + - uid: 20915 components: - type: Transform - pos: -56.5,14.5 + pos: 10.5,-65.5 parent: 2 - - uid: 804 + - uid: 20916 components: - type: Transform - pos: -30.5,21.5 + pos: 10.5,-64.5 parent: 2 - - uid: 805 + - uid: 20917 components: - type: Transform - pos: -54.5,20.5 + pos: 10.5,-63.5 parent: 2 - - uid: 811 + - uid: 20918 components: - type: Transform - pos: -45.5,10.5 + pos: 10.5,-62.5 parent: 2 - - uid: 829 + - uid: 20919 components: - type: Transform - pos: -44.5,10.5 + pos: 10.5,-61.5 parent: 2 - - uid: 833 + - uid: 20920 components: - type: Transform - pos: -47.5,10.5 + pos: 7.5,-66.5 parent: 2 - - uid: 834 + - uid: 20921 components: - type: Transform - pos: -44.5,12.5 + pos: 7.5,-67.5 parent: 2 - - uid: 837 + - uid: 20922 components: - type: Transform - pos: -52.5,12.5 + pos: 8.5,-68.5 parent: 2 - - uid: 843 + - uid: 20923 components: - type: Transform - pos: -45.5,28.5 + pos: 8.5,-67.5 parent: 2 - - uid: 844 + - uid: 20924 components: - type: Transform - pos: 20.5,-3.5 + pos: 9.5,-67.5 parent: 2 - - uid: 901 + - uid: 20925 components: - type: Transform - pos: 12.5,-15.5 + pos: 9.5,-74.5 parent: 2 - - uid: 904 + - uid: 20926 components: - type: Transform - pos: -48.5,11.5 + pos: 8.5,-71.5 parent: 2 - - uid: 905 + - uid: 20927 components: - type: Transform - pos: -27.5,20.5 + pos: 8.5,-70.5 parent: 2 - - uid: 910 + - uid: 20928 components: - type: Transform - pos: -55.5,20.5 + pos: 9.5,-70.5 parent: 2 - - uid: 912 + - uid: 20929 components: - type: Transform - pos: -52.5,10.5 + pos: 8.5,-74.5 parent: 2 - - uid: 919 + - uid: 20930 components: - type: Transform - pos: -53.5,10.5 + pos: 7.5,-74.5 parent: 2 - - uid: 923 + - uid: 20931 components: - type: Transform - pos: -55.5,14.5 + pos: 7.5,-75.5 parent: 2 - - uid: 940 + - uid: 20932 components: - type: Transform - pos: -52.5,14.5 + pos: 8.5,-73.5 parent: 2 - - uid: 1031 + - uid: 20933 components: - type: Transform - pos: 18.5,-9.5 + pos: 8.5,-77.5 parent: 2 - - uid: 1071 + - uid: 20934 components: - type: Transform - pos: -55.5,29.5 + pos: 8.5,-78.5 parent: 2 - - uid: 1072 + - uid: 20935 components: - type: Transform - pos: -55.5,25.5 + pos: 12.5,-78.5 parent: 2 - - uid: 1074 + - uid: 20936 components: - type: Transform - pos: -26.5,20.5 + pos: 12.5,-77.5 parent: 2 - - uid: 1075 + - uid: 20937 components: - type: Transform - pos: -29.5,20.5 + pos: 11.5,-78.5 parent: 2 - - uid: 1087 + - uid: 20938 components: - type: Transform - pos: -28.5,20.5 + pos: 9.5,-78.5 parent: 2 - - uid: 1096 + - uid: 20939 components: - type: Transform - pos: -30.5,22.5 + pos: 12.5,-73.5 parent: 2 - - uid: 1165 + - uid: 20940 components: - type: Transform - pos: -55.5,26.5 + pos: 12.5,-74.5 parent: 2 - - uid: 1166 + - uid: 20941 components: - type: Transform - pos: -55.5,28.5 + pos: 12.5,-75.5 parent: 2 - - uid: 1180 + - uid: 20942 components: - type: Transform - pos: -25.5,-19.5 + pos: 11.5,-74.5 parent: 2 - - uid: 1193 + - uid: 20943 components: - type: Transform - pos: -48.5,15.5 + pos: 12.5,-71.5 parent: 2 - - uid: 1194 + - uid: 20944 components: - type: Transform - pos: -51.5,25.5 + pos: 11.5,-71.5 parent: 2 - - uid: 1195 + - uid: 20945 components: - type: Transform - pos: -51.5,26.5 + pos: 12.5,-67.5 parent: 2 - - uid: 1205 + - uid: 20946 components: - type: Transform - pos: -45.5,14.5 + pos: 11.5,-67.5 parent: 2 - - uid: 1206 + - uid: 20947 components: - type: Transform - pos: -46.5,14.5 + pos: 7.5,-63.5 parent: 2 - - uid: 1209 + - uid: 20948 components: - type: Transform - pos: -48.5,14.5 + pos: 7.5,-62.5 parent: 2 - - uid: 1210 + - uid: 20949 components: - type: Transform - pos: -47.5,14.5 + pos: 8.5,-62.5 parent: 2 - - uid: 1211 + - uid: 20950 components: - type: Transform - pos: -49.5,28.5 + pos: 9.5,-62.5 parent: 2 - - uid: 1212 + - uid: 20951 components: - type: Transform - pos: -47.5,27.5 + pos: -4.5,-66.5 parent: 2 - - uid: 1213 + - uid: 20952 components: - type: Transform - pos: -49.5,26.5 + pos: -4.5,-67.5 parent: 2 - - uid: 1214 + - uid: 20953 components: - type: Transform - pos: -47.5,25.5 + pos: -5.5,-68.5 parent: 2 - - uid: 1217 + - uid: 20954 components: - type: Transform - pos: -51.5,28.5 + pos: -5.5,-67.5 parent: 2 - - uid: 1218 + - uid: 20955 components: - type: Transform - pos: -44.5,14.5 + pos: -6.5,-67.5 parent: 2 - - uid: 1219 + - uid: 20956 components: - type: Transform - pos: -51.5,27.5 + pos: -7.5,-67.5 parent: 2 - - uid: 1220 + - uid: 20957 components: - type: Transform - pos: -49.5,29.5 + pos: -7.5,-68.5 parent: 2 - - uid: 1229 + - uid: 20958 components: - type: Transform - pos: -51.5,29.5 + pos: -7.5,-69.5 parent: 2 - - uid: 1230 + - uid: 20959 components: - type: Transform - pos: -2.5,-22.5 + pos: -7.5,-70.5 parent: 2 - - uid: 1232 + - uid: 20960 components: - type: Transform - pos: -18.5,20.5 + pos: -7.5,-71.5 parent: 2 - - uid: 1233 + - uid: 20961 components: - type: Transform - pos: -13.5,14.5 + pos: -7.5,-72.5 parent: 2 - - uid: 1235 + - uid: 20962 components: - type: Transform - pos: -13.5,11.5 + pos: -7.5,-73.5 parent: 2 - - uid: 1241 + - uid: 20963 components: - type: Transform - pos: 1.5,-21.5 + pos: -7.5,-74.5 parent: 2 - - uid: 1243 + - uid: 20964 components: - type: Transform - pos: -13.5,13.5 + pos: -7.5,-75.5 parent: 2 - - uid: 1244 + - uid: 20965 components: - type: Transform - pos: -20.5,20.5 + pos: -7.5,-76.5 parent: 2 - - uid: 1268 + - uid: 20966 components: - type: Transform - pos: 1.5,-18.5 + pos: -7.5,-77.5 parent: 2 - - uid: 1270 + - uid: 20967 components: - type: Transform - pos: -19.5,20.5 + pos: -7.5,-78.5 parent: 2 - - uid: 1273 + - uid: 20968 components: - type: Transform - pos: 2.5,-25.5 + pos: -8.5,-78.5 parent: 2 - - uid: 1313 + - uid: 20969 components: - type: Transform - pos: -22.5,20.5 + pos: -6.5,-78.5 parent: 2 - - uid: 1314 + - uid: 20970 components: - type: Transform - pos: -14.5,11.5 + pos: -5.5,-78.5 parent: 2 - - uid: 1315 + - uid: 20971 components: - type: Transform - pos: -12.5,11.5 + pos: -5.5,-77.5 parent: 2 - - uid: 1316 + - uid: 20972 components: - type: Transform - pos: -11.5,11.5 + pos: -9.5,-78.5 parent: 2 - - uid: 1317 + - uid: 20973 components: - type: Transform - pos: -10.5,11.5 + pos: -9.5,-77.5 parent: 2 - - uid: 1353 + - uid: 20974 components: - type: Transform - pos: -21.5,20.5 + pos: -9.5,-73.5 parent: 2 - - uid: 1408 + - uid: 20975 components: - type: Transform - pos: -13.5,12.5 + pos: -9.5,-74.5 parent: 2 - - uid: 1409 + - uid: 20976 components: - type: Transform - pos: -15.5,11.5 + pos: -9.5,-75.5 parent: 2 - - uid: 1436 + - uid: 20977 components: - type: Transform - pos: 1.5,-27.5 + pos: -8.5,-74.5 parent: 2 - - uid: 1507 + - uid: 20978 components: - type: Transform - pos: -23.5,-19.5 + pos: -6.5,-74.5 parent: 2 - - uid: 1511 + - uid: 20979 components: - type: Transform - pos: 6.5,-15.5 + pos: -5.5,-74.5 parent: 2 - - uid: 1531 + - uid: 20980 components: - type: Transform - pos: -21.5,-19.5 + pos: -4.5,-74.5 parent: 2 - - uid: 1633 + - uid: 20981 components: - type: Transform - pos: 25.5,-39.5 + pos: -9.5,-71.5 parent: 2 - - uid: 1677 + - uid: 20982 components: - type: Transform - pos: -58.5,-50.5 + pos: -5.5,-73.5 parent: 2 - - uid: 1680 + - uid: 20983 components: - type: Transform - pos: -58.5,-52.5 + pos: -4.5,-75.5 parent: 2 - - uid: 1686 + - uid: 20984 components: - type: Transform - pos: 2.5,-27.5 + pos: -8.5,-71.5 parent: 2 - - uid: 1688 + - uid: 20985 components: - type: Transform - pos: -68.5,-48.5 + pos: -9.5,-67.5 parent: 2 - - uid: 1689 + - uid: 20986 components: - type: Transform - pos: 0.5,-27.5 + pos: -9.5,-68.5 parent: 2 - - uid: 1694 + - uid: 20987 components: - type: Transform - pos: -47.5,12.5 + pos: -9.5,-69.5 parent: 2 - - uid: 1704 + - uid: 20988 components: - type: Transform - pos: -60.5,-51.5 + pos: -8.5,-68.5 parent: 2 - - uid: 1721 + - uid: 20989 components: - type: Transform - pos: -48.5,12.5 + pos: -5.5,-70.5 parent: 2 - - uid: 1748 + - uid: 20990 components: - type: Transform - pos: -60.5,-52.5 + pos: -5.5,-71.5 parent: 2 - - uid: 1750 + - uid: 20991 components: - type: Transform - pos: -62.5,-48.5 + pos: -6.5,-70.5 parent: 2 - - uid: 1756 + - uid: 20992 components: - type: Transform - pos: -64.5,-51.5 + pos: -7.5,-66.5 parent: 2 - - uid: 1783 + - uid: 20993 components: - type: Transform - pos: -60.5,-50.5 + pos: -7.5,-64.5 parent: 2 - - uid: 1785 + - uid: 20994 components: - type: Transform - pos: -45.5,12.5 + pos: -7.5,-63.5 parent: 2 - - uid: 1796 + - uid: 20995 components: - type: Transform - pos: -60.5,-49.5 + pos: -7.5,-62.5 parent: 2 - - uid: 1821 + - uid: 20996 components: - type: Transform - pos: -60.5,-48.5 + pos: -7.5,-61.5 parent: 2 - - uid: 1823 + - uid: 20997 components: - type: Transform - pos: -58.5,-51.5 + pos: -7.5,-60.5 parent: 2 - - uid: 1824 + - uid: 20998 components: - type: Transform - pos: -58.5,-48.5 + pos: -7.5,-59.5 parent: 2 - - uid: 1825 + - uid: 20999 components: - type: Transform - pos: -58.5,-49.5 + pos: -7.5,-65.5 parent: 2 - - uid: 1826 + - uid: 21002 components: - type: Transform - pos: -64.5,-52.5 + pos: -4.5,-62.5 parent: 2 - - uid: 1827 + - uid: 21003 components: - type: Transform - pos: -66.5,-49.5 + pos: -4.5,-63.5 parent: 2 - - uid: 1845 + - uid: 21004 components: - type: Transform - pos: -66.5,-58.5 + pos: -5.5,-62.5 parent: 2 - - uid: 1847 + - uid: 21005 components: - type: Transform - pos: -4.5,-11.5 + pos: -6.5,-62.5 parent: 2 - - uid: 1858 + - uid: 21008 components: - type: Transform - pos: -66.5,-50.5 + pos: -1.5,-57.5 parent: 2 - - uid: 1859 + - uid: 21009 components: - type: Transform - pos: -66.5,-51.5 + pos: -1.5,-56.5 parent: 2 - - uid: 1860 + - uid: 21010 components: - type: Transform - pos: -10.5,-54.5 + pos: -2.5,-56.5 parent: 2 - - uid: 1861 + - uid: 21011 components: - type: Transform - pos: -66.5,-52.5 + pos: -3.5,-56.5 parent: 2 - - uid: 1862 + - uid: 21012 components: - type: Transform - pos: -68.5,-57.5 + pos: -4.5,-56.5 parent: 2 - - uid: 1865 + - uid: 21013 components: - type: Transform - pos: -68.5,-56.5 + pos: -5.5,-56.5 parent: 2 - - uid: 1867 + - uid: 21014 components: - type: Transform - pos: -68.5,-58.5 + pos: -6.5,-56.5 parent: 2 - - uid: 1868 + - uid: 21015 components: - type: Transform - pos: -66.5,-48.5 + pos: -7.5,-56.5 parent: 2 - - uid: 1873 + - uid: 21016 components: - type: Transform - pos: -68.5,-49.5 + pos: -0.5,-56.5 parent: 2 - - uid: 1875 + - uid: 21017 components: - type: Transform - pos: -68.5,-50.5 + pos: 0.5,-56.5 parent: 2 - - uid: 1877 + - uid: 21018 components: - type: Transform - pos: -68.5,-51.5 + pos: 1.5,-56.5 parent: 2 - - uid: 1881 + - uid: 21019 components: - type: Transform - pos: -46.5,12.5 + pos: 3.5,-56.5 parent: 2 - - uid: 1905 + - uid: 21020 components: - type: Transform - pos: -45.5,27.5 + pos: 4.5,-56.5 parent: 2 - - uid: 1907 + - uid: 21021 components: - type: Transform - pos: -62.5,-56.5 + pos: 5.5,-56.5 parent: 2 - - uid: 1925 + - uid: 21022 components: - type: Transform - pos: -62.5,-57.5 + pos: 6.5,-56.5 parent: 2 - - uid: 2033 + - uid: 21023 components: - type: Transform - pos: -62.5,-58.5 + pos: 7.5,-56.5 parent: 2 - - uid: 2046 + - uid: 21024 components: - type: Transform - pos: -64.5,-56.5 + pos: 8.5,-56.5 parent: 2 - - uid: 2093 + - uid: 21025 components: - type: Transform - pos: -15.5,-19.5 + pos: 9.5,-56.5 parent: 2 - - uid: 2102 + - uid: 21026 components: - type: Transform - pos: 1.5,-19.5 + pos: 10.5,-56.5 parent: 2 - - uid: 2107 + - uid: 21027 components: - type: Transform - pos: -1.5,-22.5 + pos: 2.5,-56.5 parent: 2 - - uid: 2111 + - uid: 21028 components: - type: Transform - pos: 1.5,-15.5 + pos: -4.5,-59.5 parent: 2 - - uid: 2122 + - uid: 21029 components: - type: Transform - pos: 1.5,-24.5 + pos: -3.5,-59.5 parent: 2 - - uid: 2123 + - uid: 21030 components: - type: Transform - pos: -64.5,-57.5 + pos: -2.5,-59.5 parent: 2 - - uid: 2125 + - uid: 21031 components: - type: Transform - pos: 4.5,-15.5 + pos: -0.5,-58.5 parent: 2 - - uid: 2127 + - uid: 21032 components: - type: Transform - pos: 3.5,-15.5 + pos: 0.5,-58.5 parent: 2 - - uid: 2128 + - uid: 21033 components: - type: Transform - pos: 2.5,-15.5 + pos: 1.5,-58.5 parent: 2 - - uid: 2133 + - uid: 21034 components: - type: Transform - pos: 1.5,-17.5 + pos: 2.5,-58.5 parent: 2 - - uid: 2142 + - uid: 21035 components: - type: Transform - pos: -64.5,-58.5 + pos: 3.5,-58.5 parent: 2 - - uid: 2149 + - uid: 21036 components: - type: Transform - pos: -60.5,-56.5 + pos: 5.5,-59.5 parent: 2 - - uid: 2164 + - uid: 21037 components: - type: Transform - pos: -68.5,-52.5 + pos: 6.5,-59.5 parent: 2 - - uid: 2165 + - uid: 21038 components: - type: Transform - pos: -2.5,-19.5 + pos: 7.5,-59.5 parent: 2 - - uid: 2166 + - uid: 21039 components: - type: Transform - pos: -4.5,-16.5 + pos: 6.5,-57.5 parent: 2 - - uid: 2167 + - uid: 21040 components: - type: Transform - pos: -66.5,-56.5 + pos: 6.5,-58.5 parent: 2 - - uid: 2173 + - uid: 21041 components: - type: Transform - pos: -4.5,-13.5 + pos: 1.5,-57.5 parent: 2 - - uid: 2174 + - uid: 21042 components: - type: Transform - pos: -4.5,-15.5 + pos: -3.5,-57.5 parent: 2 - - uid: 2175 + - uid: 21043 components: - type: Transform - pos: -4.5,-14.5 + pos: -3.5,-58.5 parent: 2 - - uid: 2176 + - uid: 21044 components: - type: Transform - pos: -4.5,-12.5 + pos: -5.5,-57.5 parent: 2 - - uid: 2177 + - uid: 21045 components: - type: Transform - pos: 7.5,-23.5 + pos: -5.5,-55.5 parent: 2 - - uid: 2184 + - uid: 21046 components: - type: Transform - pos: -8.5,-26.5 + pos: -4.5,-54.5 parent: 2 - - uid: 2185 + - uid: 21047 components: - type: Transform - pos: 7.5,-22.5 + pos: -3.5,-54.5 parent: 2 - - uid: 2199 + - uid: 21048 components: - type: Transform - pos: -66.5,-57.5 + pos: -2.5,-54.5 parent: 2 - - uid: 2215 + - uid: 21049 components: - type: Transform - pos: -4.5,-22.5 + pos: 0.5,-54.5 parent: 2 - - uid: 2217 + - uid: 21050 components: - type: Transform - pos: -2.5,-18.5 + pos: 2.5,-54.5 parent: 2 - - uid: 2219 + - uid: 21051 components: - type: Transform - pos: -3.5,-19.5 + pos: 1.5,-54.5 parent: 2 - - uid: 2223 + - uid: 21052 components: - type: Transform - pos: -13.5,-12.5 + pos: 1.5,-55.5 parent: 2 - - uid: 2224 + - uid: 21053 components: - type: Transform - pos: -14.5,-12.5 + pos: -3.5,-55.5 parent: 2 - - uid: 2225 + - uid: 21123 components: - type: Transform - pos: -15.5,-12.5 + pos: 12.5,-49.5 parent: 2 - - uid: 2228 + - uid: 21124 components: - type: Transform - pos: -13.5,-13.5 + pos: 11.5,-49.5 parent: 2 - - uid: 2242 + - uid: 21125 components: - type: Transform - pos: -13.5,-20.5 + pos: 10.5,-49.5 parent: 2 - - uid: 2244 + - uid: 21126 components: - type: Transform - pos: 0.5,-22.5 + pos: 1.5,-49.5 parent: 2 - - uid: 2245 + - uid: 21127 components: - type: Transform - pos: -2.5,-20.5 + pos: 1.5,-50.5 parent: 2 - - uid: 2264 + - uid: 21128 components: - type: Transform - pos: -55.5,23.5 + pos: 1.5,-51.5 parent: 2 - - uid: 2272 + - uid: 21129 components: - type: Transform - pos: -6.5,-18.5 + pos: -7.5,-49.5 parent: 2 - - uid: 2299 + - uid: 21130 components: - type: Transform - pos: -5.5,-18.5 + pos: -7.5,-50.5 parent: 2 - - uid: 2343 + - uid: 21131 components: - type: Transform - pos: 5.5,-15.5 + pos: -7.5,-52.5 parent: 2 - - uid: 2380 + - uid: 21132 components: - type: Transform - pos: -18.5,18.5 + pos: -7.5,-51.5 parent: 2 - - uid: 2449 + - uid: 21136 components: - type: Transform - pos: -54.5,16.5 + pos: 1.5,-52.5 parent: 2 - - uid: 2459 + - uid: 21144 components: - type: Transform - pos: -53.5,16.5 + pos: 3.5,-48.5 parent: 2 - - uid: 2491 + - uid: 21145 components: - type: Transform - pos: -13.5,-21.5 + pos: 4.5,-48.5 parent: 2 - - uid: 2498 + - uid: 21146 components: - type: Transform - pos: 1.5,-16.5 + pos: 5.5,-48.5 parent: 2 - - uid: 2508 + - uid: 21147 components: - type: Transform - pos: 38.5,-31.5 + pos: 6.5,-48.5 parent: 2 - - uid: 2510 + - uid: 21148 components: - type: Transform - pos: -3.5,-20.5 + pos: 7.5,-48.5 parent: 2 - - uid: 2555 + - uid: 21149 components: - type: Transform - pos: 39.5,-31.5 + pos: 8.5,-48.5 parent: 2 - - uid: 2570 + - uid: 21150 components: - type: Transform - pos: -9.5,-26.5 + pos: 9.5,-48.5 parent: 2 - - uid: 2593 + - uid: 21151 components: - type: Transform - pos: -13.5,20.5 + pos: 10.5,-48.5 parent: 2 - - uid: 2601 + - uid: 21152 components: - type: Transform - pos: -7.5,-18.5 + pos: -7.5,-79.5 parent: 2 - - uid: 2621 + - uid: 21153 components: - type: Transform - pos: -13.5,17.5 + pos: 10.5,-79.5 parent: 2 - - uid: 2622 + - uid: 21210 components: - type: Transform - pos: -14.5,20.5 + pos: -44.5,-48.5 parent: 2 - - uid: 2626 + - uid: 21211 components: - type: Transform - pos: -13.5,19.5 + pos: -43.5,-48.5 parent: 2 - - uid: 2627 + - uid: 21212 components: - type: Transform - pos: -15.5,4.5 + pos: -42.5,-48.5 parent: 2 - - uid: 2628 + - uid: 21287 components: - type: Transform - pos: -15.5,5.5 + pos: 17.5,6.5 parent: 2 - - uid: 2629 + - uid: 21296 components: - type: Transform - pos: -15.5,6.5 + pos: 17.5,7.5 parent: 2 - - uid: 2630 + - uid: 21326 components: - type: Transform - pos: -15.5,7.5 + pos: 18.5,6.5 parent: 2 - - uid: 2631 + - uid: 21327 components: - type: Transform - pos: -15.5,8.5 + pos: 19.5,6.5 parent: 2 - - uid: 2632 + - uid: 21328 components: - type: Transform - pos: -15.5,9.5 + pos: 20.5,6.5 parent: 2 - - uid: 2633 + - uid: 21329 components: - type: Transform - pos: -15.5,10.5 + pos: 21.5,6.5 parent: 2 - - uid: 2634 + - uid: 21330 components: - type: Transform - pos: -56.5,23.5 + pos: 22.5,6.5 parent: 2 - - uid: 2635 + - uid: 21331 components: - type: Transform - pos: -25.5,20.5 + pos: 23.5,6.5 parent: 2 - - uid: 2643 + - uid: 21332 components: - type: Transform - pos: -15.5,-2.5 + pos: 24.5,6.5 parent: 2 - - uid: 2644 + - uid: 21333 components: - type: Transform - pos: -15.5,-3.5 + pos: 25.5,6.5 parent: 2 - - uid: 2645 + - uid: 21334 components: - type: Transform - pos: -15.5,-4.5 + pos: 16.5,6.5 parent: 2 - - uid: 2646 + - uid: 21335 components: - type: Transform - pos: -16.5,-4.5 + pos: 15.5,6.5 parent: 2 - - uid: 2647 + - uid: 21336 components: - type: Transform - pos: -16.5,-5.5 + pos: 15.5,7.5 parent: 2 - - uid: 2648 + - uid: 21337 components: - type: Transform - pos: -16.5,-6.5 + pos: 15.5,8.5 parent: 2 - - uid: 2651 + - uid: 21338 components: - type: Transform - pos: -20.5,14.5 + pos: 15.5,9.5 parent: 2 - - uid: 2652 + - uid: 21339 components: - type: Transform - pos: 40.5,-31.5 + pos: 15.5,10.5 parent: 2 - - uid: 2666 + - uid: 21340 components: - type: Transform - pos: 27.5,-39.5 + pos: 15.5,11.5 parent: 2 - - uid: 2668 + - uid: 21341 components: - type: Transform - pos: -45.5,25.5 + pos: 16.5,5.5 parent: 2 - - uid: 2677 + - uid: 21342 components: - type: Transform - pos: 37.5,-31.5 + pos: 16.5,4.5 parent: 2 - - uid: 2731 + - uid: 21343 components: - type: Transform - pos: -52.5,16.5 + pos: 16.5,3.5 parent: 2 - - uid: 2732 + - uid: 21344 components: - type: Transform - pos: -53.5,14.5 + pos: 16.5,2.5 parent: 2 - - uid: 2733 + - uid: 21345 components: - type: Transform - pos: -54.5,14.5 + pos: 16.5,1.5 parent: 2 - - uid: 2734 + - uid: 21346 components: - type: Transform - pos: -56.5,16.5 + pos: 16.5,0.5 parent: 2 - - uid: 2735 + - uid: 21358 components: - type: Transform - pos: -55.5,16.5 + pos: 22.5,24.5 parent: 2 - - uid: 2749 + - uid: 21366 components: - type: Transform - pos: -3.5,-22.5 + pos: 25.5,23.5 parent: 2 - - uid: 2751 + - uid: 21374 components: - type: Transform - pos: -0.5,-22.5 + pos: -34.5,12.5 parent: 2 - - uid: 2769 + - uid: 21382 components: - type: Transform - pos: -5.5,-22.5 + pos: 25.5,7.5 parent: 2 - - uid: 2771 + - uid: 21383 components: - type: Transform - pos: -5.5,-17.5 + pos: 26.5,7.5 parent: 2 - - uid: 2775 + - uid: 21384 components: - type: Transform - pos: -4.5,-17.5 + pos: 27.5,7.5 parent: 2 - - uid: 2813 + - uid: 21385 components: - type: Transform - pos: -14.5,-19.5 + pos: 28.5,7.5 parent: 2 - - uid: 2814 + - uid: 21386 components: - type: Transform - pos: 1.5,-23.5 + pos: 29.5,7.5 parent: 2 - - uid: 2815 + - uid: 21427 components: - type: Transform - pos: -1.5,-19.5 + pos: 7.5,-42.5 parent: 2 - - uid: 2819 + - uid: 21428 components: - type: Transform - pos: -18.5,19.5 + pos: 8.5,-42.5 parent: 2 - - uid: 2886 + - uid: 21429 components: - type: Transform - pos: -57.5,23.5 + pos: 9.5,-42.5 parent: 2 - - uid: 2887 + - uid: 21430 components: - type: Transform - pos: -53.5,20.5 + pos: 7.5,-44.5 parent: 2 - - uid: 2888 + - uid: 21431 components: - type: Transform - pos: -45.5,29.5 + pos: 8.5,-44.5 parent: 2 - - uid: 2890 + - uid: 21432 components: - type: Transform - pos: -54.5,25.5 + pos: 9.5,-44.5 parent: 2 - - uid: 2964 + - uid: 21457 components: - type: Transform - pos: -50.5,25.5 + pos: 22.5,23.5 parent: 2 - - uid: 2965 + - uid: 21486 components: - type: Transform - pos: -46.5,25.5 + pos: -35.5,12.5 parent: 2 - - uid: 2982 + - uid: 21487 components: - type: Transform - pos: -9.5,-21.5 + pos: -36.5,12.5 parent: 2 - - uid: 3006 + - uid: 21490 components: - type: Transform - pos: -56.5,18.5 + pos: -64.5,-58.5 parent: 2 - - uid: 3015 + - uid: 21492 components: - type: Transform - pos: -13.5,18.5 + pos: -63.5,-57.5 parent: 2 - - uid: 3018 + - uid: 21493 components: - type: Transform - pos: -16.5,20.5 + pos: -63.5,-56.5 parent: 2 - - uid: 3019 + - uid: 21598 components: - type: Transform - pos: 7.5,11.5 + pos: -42.5,-57.5 parent: 2 - - uid: 3031 + - uid: 21599 components: - type: Transform - pos: -9.5,11.5 + pos: -43.5,-57.5 parent: 2 - - uid: 3032 + - uid: 21601 components: - type: Transform - pos: -13.5,16.5 + pos: -40.5,-57.5 parent: 2 - - uid: 3045 + - uid: 21602 components: - type: Transform - pos: -15.5,20.5 + pos: -41.5,-57.5 parent: 2 - - uid: 3095 + - uid: 21613 components: - type: Transform - pos: -18.5,14.5 + pos: 26.5,22.5 parent: 2 - - uid: 3109 + - uid: 21628 components: - type: Transform - pos: -3.5,-17.5 + pos: -38.5,-58.5 parent: 2 - - uid: 3112 + - uid: 21629 components: - type: Transform - pos: -7.5,-22.5 + pos: -39.5,-58.5 parent: 2 - - uid: 3125 + - uid: 21630 components: - type: Transform - pos: 34.5,-37.5 + pos: -41.5,-58.5 parent: 2 - - uid: 3174 + - uid: 21631 components: - type: Transform - pos: -24.5,-19.5 + pos: -42.5,-58.5 parent: 2 - - uid: 3203 + - uid: 21634 components: - type: Transform - pos: 1.5,-22.5 + pos: -51.5,-58.5 parent: 2 - - uid: 3320 + - uid: 21669 components: - type: Transform - pos: -8.5,-42.5 + pos: 27.5,26.5 parent: 2 - - uid: 3326 + - uid: 21670 components: - type: Transform - pos: 16.5,-17.5 + pos: 34.5,27.5 parent: 2 - - uid: 3407 + - uid: 21671 components: - type: Transform - pos: -13.5,15.5 + pos: 28.5,27.5 parent: 2 - - uid: 3462 + - uid: 21776 components: - type: Transform - pos: -26.5,-41.5 + pos: 23.5,-0.5 parent: 2 - - uid: 3476 + - uid: 21777 components: - type: Transform - pos: 28.5,-37.5 + pos: 22.5,-0.5 parent: 2 - - uid: 3477 + - uid: 21778 components: - type: Transform - pos: 16.5,-15.5 + pos: 21.5,-0.5 parent: 2 - - uid: 3514 + - uid: 21779 components: - type: Transform - pos: 32.5,-37.5 + pos: 20.5,-0.5 parent: 2 - - uid: 3528 + - uid: 21780 components: - type: Transform - pos: 18.5,-7.5 + pos: 20.5,0.5 parent: 2 - - uid: 3560 + - uid: 21781 components: - type: Transform - pos: 30.5,-37.5 + pos: 20.5,1.5 parent: 2 - - uid: 3565 + - uid: 21782 components: - type: Transform - pos: -2.5,-23.5 + pos: 20.5,2.5 parent: 2 - - uid: 3569 + - uid: 21783 components: - type: Transform - pos: 21.5,9.5 + pos: 20.5,3.5 parent: 2 - - uid: 3572 + - uid: 21787 components: - type: Transform - pos: 21.5,7.5 + pos: 26.5,-0.5 parent: 2 - - uid: 3590 + - uid: 21788 components: - type: Transform - pos: 13.5,-15.5 + pos: 26.5,0.5 parent: 2 - - uid: 3622 + - uid: 21789 components: - type: Transform - pos: 27.5,-37.5 + pos: 26.5,1.5 parent: 2 - - uid: 3660 + - uid: 21790 components: - type: Transform - pos: -22.5,-19.5 + pos: 26.5,2.5 parent: 2 - - uid: 3681 + - uid: 21791 components: - type: Transform - pos: 27.5,-38.5 + pos: 26.5,3.5 parent: 2 - - uid: 3890 + - uid: 21792 components: - type: Transform - pos: 3.5,-34.5 + pos: 28.5,3.5 parent: 2 - - uid: 3893 + - uid: 21802 components: - type: Transform - pos: 21.5,6.5 + pos: -34.5,9.5 parent: 2 - - uid: 3894 + - uid: 21806 components: - type: Transform - pos: 21.5,8.5 + pos: 32.5,25.5 parent: 2 - - uid: 3907 + - uid: 21819 components: - type: Transform - pos: -17.5,-27.5 + pos: 27.5,9.5 parent: 2 - - uid: 3917 + - uid: 21825 components: - type: Transform - pos: -16.5,-27.5 + pos: 23.5,-3.5 parent: 2 - - uid: 3933 + - uid: 21826 components: - type: Transform - pos: 16.5,-19.5 + pos: 22.5,-3.5 parent: 2 - - uid: 3966 + - uid: 21827 components: - type: Transform - pos: -15.5,-27.5 + pos: 21.5,-3.5 parent: 2 - - uid: 3967 + - uid: 21828 components: - type: Transform - pos: -14.5,-27.5 + pos: 19.5,-3.5 parent: 2 - - uid: 3968 + - uid: 21829 components: - type: Transform - pos: -13.5,-27.5 + pos: 18.5,-3.5 parent: 2 - - uid: 3969 + - uid: 21830 components: - type: Transform - pos: -12.5,-27.5 + pos: 17.5,-3.5 parent: 2 - - uid: 3970 + - uid: 21831 components: - type: Transform - pos: -12.5,-28.5 + pos: 20.5,-3.5 parent: 2 - - uid: 3971 + - uid: 21832 components: - type: Transform - pos: -11.5,-28.5 + pos: 16.5,-3.5 parent: 2 - - uid: 3972 + - uid: 21833 components: - type: Transform - pos: -10.5,-28.5 + pos: 16.5,-9.5 parent: 2 - - uid: 3973 + - uid: 21834 components: - type: Transform - pos: -9.5,-28.5 + pos: 16.5,-10.5 parent: 2 - - uid: 3974 + - uid: 21835 components: - type: Transform - pos: -8.5,-28.5 + pos: 16.5,-11.5 parent: 2 - - uid: 3975 + - uid: 21839 components: - type: Transform - pos: -7.5,-28.5 + pos: 27.5,-3.5 parent: 2 - - uid: 3976 + - uid: 21840 components: - type: Transform - pos: -6.5,-28.5 + pos: 28.5,-3.5 parent: 2 - - uid: 3977 + - uid: 21846 components: - type: Transform - pos: -5.5,-28.5 + pos: -33.5,12.5 parent: 2 - - uid: 3978 + - uid: 21864 components: - type: Transform - pos: -4.5,-28.5 + pos: 48.5,20.5 parent: 2 - - uid: 3979 + - uid: 21866 components: - type: Transform - pos: -3.5,-28.5 + pos: 49.5,20.5 parent: 2 - - uid: 3980 + - uid: 21875 components: - type: Transform - pos: -2.5,-28.5 + pos: -34.5,4.5 parent: 2 - - uid: 3981 + - uid: 21889 components: - type: Transform - pos: -1.5,-28.5 + pos: 35.5,24.5 parent: 2 - - uid: 3982 + - uid: 21898 components: - type: Transform - pos: -0.5,-28.5 + pos: -33.5,6.5 parent: 2 - - uid: 3988 + - uid: 21916 components: - type: Transform - pos: 3.5,-33.5 + pos: 16.5,31.5 parent: 2 - - uid: 3989 + - uid: 21917 components: - type: Transform - pos: 3.5,-32.5 + pos: -33.5,4.5 parent: 2 - - uid: 3990 + - uid: 21935 components: - type: Transform - pos: 3.5,-31.5 + pos: -53.5,-53.5 parent: 2 - - uid: 3991 + - uid: 21936 components: - type: Transform - pos: 3.5,-30.5 + pos: -52.5,-53.5 parent: 2 - - uid: 3992 + - uid: 21939 components: - type: Transform - pos: 3.5,-29.5 + pos: 31.5,26.5 parent: 2 - - uid: 3993 + - uid: 21940 components: - type: Transform - pos: 3.5,-28.5 + pos: 32.5,26.5 parent: 2 - - uid: 4009 + - uid: 21956 components: - type: Transform - pos: -7.5,-27.5 + pos: -54.5,-53.5 parent: 2 - - uid: 4010 + - uid: 21957 components: - type: Transform - pos: -7.5,-26.5 + pos: 41.5,18.5 parent: 2 - - uid: 4011 + - uid: 21959 components: - type: Transform - pos: -18.5,-27.5 + pos: 41.5,19.5 parent: 2 - - uid: 4012 + - uid: 21972 components: - type: Transform - pos: -19.5,-27.5 + pos: 18.5,14.5 parent: 2 - - uid: 4013 + - uid: 21975 components: - type: Transform - pos: -20.5,-27.5 + pos: 22.5,10.5 parent: 2 - - uid: 4026 + - uid: 21978 components: - type: Transform - pos: 3.5,-36.5 + pos: -35.5,9.5 parent: 2 - - uid: 4027 + - uid: 21981 components: - type: Transform - pos: 3.5,-35.5 + pos: 22.5,22.5 parent: 2 - - uid: 4028 + - uid: 21985 components: - type: Transform - pos: 1.5,-36.5 + pos: -36.5,9.5 parent: 2 - - uid: 4029 + - uid: 21986 components: - type: Transform - pos: 1.5,-37.5 + pos: 25.5,22.5 parent: 2 - - uid: 4030 + - uid: 21987 components: - type: Transform - pos: 3.5,-37.5 + pos: 23.5,22.5 parent: 2 - - uid: 4031 + - uid: 21988 components: - type: Transform - pos: 3.5,-38.5 + pos: 24.5,22.5 parent: 2 - - uid: 4032 + - uid: 21992 components: - type: Transform - pos: 3.5,-39.5 + pos: 25.5,12.5 parent: 2 - - uid: 4033 + - uid: 21993 components: - type: Transform - pos: 3.5,-40.5 + pos: 25.5,11.5 parent: 2 - - uid: 4034 + - uid: 22000 components: - type: Transform - pos: 3.5,-41.5 + pos: 16.5,26.5 parent: 2 - - uid: 4035 + - uid: 22023 components: - type: Transform - pos: 3.5,-42.5 + pos: 16.5,27.5 parent: 2 - - uid: 4036 + - uid: 22033 components: - type: Transform - pos: 3.5,-43.5 + pos: 16.5,33.5 parent: 2 - - uid: 4037 + - uid: 22044 components: - type: Transform - pos: 3.5,-44.5 + pos: 16.5,28.5 parent: 2 - - uid: 4038 + - uid: 22061 components: - type: Transform - pos: 3.5,-45.5 + pos: 29.5,-4.5 parent: 2 - - uid: 4042 + - uid: 22062 components: - type: Transform - pos: 2.5,-48.5 + pos: 30.5,-4.5 parent: 2 - - uid: 4305 + - uid: 22084 components: - type: Transform - pos: -7.5,-19.5 + pos: 15.5,21.5 parent: 2 - - uid: 4308 + - uid: 22129 components: - type: Transform - pos: 29.5,-37.5 + pos: 26.5,27.5 parent: 2 - - uid: 4309 + - uid: 22174 components: - type: Transform - pos: 31.5,-37.5 + pos: 51.5,-31.5 parent: 2 - - uid: 4310 + - uid: 22175 components: - type: Transform - pos: 33.5,-37.5 + pos: 52.5,-31.5 parent: 2 - - uid: 4394 + - uid: 22277 components: - type: Transform - pos: 46.5,2.5 + pos: 19.5,-40.5 parent: 2 - - uid: 4413 + - uid: 22278 components: - type: Transform - pos: 24.5,-40.5 + pos: 20.5,-40.5 parent: 2 - - uid: 4415 + - uid: 22279 components: - type: Transform - pos: 24.5,-42.5 + pos: 21.5,-40.5 parent: 2 - - uid: 4416 + - uid: 22289 components: - type: Transform - pos: 24.5,-41.5 + pos: 26.5,4.5 parent: 2 - - uid: 4417 + - uid: 22335 components: - type: Transform - pos: 5.5,-25.5 + pos: 25.5,16.5 parent: 2 - - uid: 4473 + - uid: 22336 components: - type: Transform - pos: 3.5,-27.5 + pos: 24.5,16.5 parent: 2 - - uid: 4503 + - uid: 22337 components: - type: Transform - pos: 4.5,-25.5 + pos: 23.5,16.5 parent: 2 - - uid: 4755 + - uid: 22338 components: - type: Transform - pos: -8.5,-54.5 + pos: 23.5,17.5 parent: 2 - - uid: 4792 + - uid: 22339 components: - type: Transform - pos: -1.5,-18.5 + pos: 23.5,18.5 parent: 2 - - uid: 4841 + - uid: 22340 components: - type: Transform - pos: 6.5,-25.5 + pos: 22.5,18.5 parent: 2 - - uid: 5019 + - uid: 22341 components: - type: Transform - pos: -2.5,-17.5 + pos: 21.5,18.5 parent: 2 - - uid: 5039 + - uid: 22461 components: - type: Transform - pos: -8.5,-52.5 + pos: 20.5,18.5 parent: 2 - - uid: 5040 + - uid: 22463 components: - type: Transform - pos: -8.5,-51.5 + pos: 26.5,18.5 parent: 2 - - uid: 5086 + - uid: 22464 components: - type: Transform - pos: -8.5,-49.5 + pos: 26.5,17.5 parent: 2 - - uid: 5120 + - uid: 22465 components: - type: Transform - pos: -8.5,-50.5 + pos: 26.5,16.5 parent: 2 - - uid: 5200 + - uid: 22498 components: - type: Transform - pos: 37.5,6.5 + pos: 32.5,14.5 parent: 2 - - uid: 5201 + - uid: 22500 components: - type: Transform - pos: 38.5,6.5 + pos: 20.5,14.5 parent: 2 - - uid: 5358 + - uid: 22541 components: - type: Transform - pos: 65.5,7.5 + pos: -24.5,-34.5 parent: 2 - - uid: 5450 + - uid: 22542 components: - type: Transform - pos: -36.5,23.5 + pos: -12.5,-24.5 parent: 2 - - uid: 5455 + - uid: 22543 components: - type: Transform - pos: -37.5,23.5 + pos: -12.5,-25.5 parent: 2 - - uid: 5461 + - uid: 22544 components: - type: Transform - pos: -54.5,18.5 + pos: -13.5,-24.5 parent: 2 - - uid: 5462 + - uid: 22604 components: - type: Transform - pos: -55.5,18.5 + pos: -24.5,-12.5 parent: 2 - - uid: 5463 + - uid: 22605 components: - type: Transform - pos: -53.5,18.5 + pos: -24.5,-11.5 parent: 2 - - uid: 5530 + - uid: 22631 components: - type: Transform - pos: -3.5,-18.5 + pos: 33.5,8.5 parent: 2 - - uid: 5575 + - uid: 22632 components: - type: Transform - pos: -58.5,-59.5 + pos: 34.5,8.5 parent: 2 - - uid: 5576 + - uid: 22633 components: - type: Transform - pos: -64.5,-60.5 + pos: 28.5,13.5 parent: 2 - - uid: 5577 + - uid: 22634 components: - type: Transform - pos: -64.5,-59.5 + pos: 28.5,14.5 parent: 2 - - uid: 5580 + - uid: 22700 components: - type: Transform - pos: -66.5,-60.5 + pos: -31.5,-0.5 parent: 2 - - uid: 5581 + - uid: 22701 components: - type: Transform - pos: -66.5,-59.5 + pos: -30.5,-0.5 parent: 2 - - uid: 5582 + - uid: 22735 components: - type: Transform - pos: -68.5,-59.5 + pos: 7.5,23.5 parent: 2 - - uid: 5583 + - uid: 22788 components: - type: Transform - pos: -68.5,-60.5 + pos: 8.5,23.5 parent: 2 - - uid: 5598 + - uid: 22789 components: - type: Transform - pos: -49.5,25.5 + pos: -0.5,19.5 parent: 2 - - uid: 5613 + - uid: 22790 components: - type: Transform - pos: -47.5,26.5 + pos: 0.5,19.5 parent: 2 - - uid: 5654 + - uid: 22791 components: - type: Transform - pos: -35.5,23.5 + pos: 1.5,19.5 parent: 2 - - uid: 5725 + - uid: 22792 components: - type: Transform - pos: -58.5,-60.5 + pos: 2.5,19.5 parent: 2 - - uid: 5921 + - uid: 22793 components: - type: Transform - pos: -2.5,-8.5 + pos: 3.5,19.5 parent: 2 - - uid: 6026 + - uid: 22794 components: - type: Transform - pos: -62.5,-60.5 + pos: 5.5,19.5 parent: 2 - - uid: 6032 + - uid: 22795 components: - type: Transform - pos: -62.5,-59.5 + pos: 6.5,19.5 parent: 2 - - uid: 6052 + - uid: 22796 components: - type: Transform - pos: 35.5,6.5 + pos: 7.5,19.5 parent: 2 - - uid: 6056 + - uid: 22797 components: - type: Transform - pos: 41.5,6.5 + pos: 8.5,19.5 parent: 2 - - uid: 6070 + - uid: 22798 components: - type: Transform - pos: 34.5,6.5 + pos: 9.5,19.5 parent: 2 - - uid: 6084 + - uid: 22799 components: - type: Transform - pos: 21.5,10.5 + pos: 10.5,19.5 parent: 2 - - uid: 6098 + - uid: 22800 components: - type: Transform - pos: -60.5,-60.5 + pos: 11.5,16.5 parent: 2 - - uid: 6101 + - uid: 22801 components: - type: Transform - pos: -3.5,-8.5 + pos: 11.5,15.5 parent: 2 - - uid: 6107 +- proto: CableApcStack + entities: + - uid: 1898 components: - type: Transform - pos: 33.5,6.5 + pos: -13.486356,-10.375069 parent: 2 - - uid: 6113 + - uid: 3392 components: - type: Transform - pos: -60.5,-59.5 + pos: -16.35442,-25.386759 parent: 2 - - uid: 6123 + - uid: 4347 components: - type: Transform - pos: -4.5,-8.5 + pos: 38.445034,-24.375977 parent: 2 - - uid: 6124 + - uid: 8452 components: - type: Transform - pos: 18.5,-8.5 + pos: -55.347515,-13.502788 parent: 2 - - uid: 6137 + - uid: 13026 components: - type: Transform - pos: -4.5,-10.5 + pos: -4.0583553,-23.375748 parent: 2 - - uid: 6164 + - uid: 18969 components: - type: Transform - pos: 25.5,-18.5 + pos: -34.510525,5.670819 parent: 2 - - uid: 6229 +- proto: CableApcStack10 + entities: + - uid: 8880 components: - type: Transform - pos: -8.5,-53.5 + pos: 48.56237,-11.409377 parent: 2 - - uid: 6303 + - uid: 20122 components: - type: Transform - pos: 23.5,-15.5 + pos: 15.51598,13.566172 parent: 2 - - uid: 6304 +- proto: CablecuffsBroken + entities: + - uid: 2226 components: - type: Transform - pos: 21.5,-15.5 + pos: 52.73436,-36.2627 parent: 2 - - uid: 6309 +- proto: CableHV + entities: + - uid: 5 components: - type: Transform - pos: 23.5,-16.5 + pos: -11.5,25.5 parent: 2 - - uid: 6343 + - uid: 32 components: - type: Transform - pos: 23.5,-19.5 + pos: -34.5,23.5 parent: 2 - - uid: 6398 + - uid: 40 components: - type: Transform - pos: 23.5,-18.5 + pos: -11.5,23.5 parent: 2 - - uid: 6414 + - uid: 82 components: - type: Transform - pos: 23.5,-17.5 + pos: -13.5,22.5 parent: 2 - - uid: 6504 + - uid: 108 components: - type: Transform - pos: 40.5,6.5 + pos: -21.5,-27.5 parent: 2 - - uid: 6548 + - uid: 136 components: - type: Transform - pos: 25.5,2.5 + pos: 4.5,-45.5 parent: 2 - - uid: 6551 + - uid: 218 components: - type: Transform - pos: 25.5,1.5 + pos: 25.5,15.5 parent: 2 - - uid: 6552 + - uid: 277 components: - type: Transform - pos: 25.5,0.5 + pos: -12.5,-53.5 parent: 2 - - uid: 6553 + - uid: 281 components: - type: Transform - pos: 25.5,-0.5 + pos: -10.5,-55.5 parent: 2 - - uid: 6557 + - uid: 299 components: - type: Transform - pos: 25.5,3.5 + pos: -8.5,-24.5 parent: 2 - - uid: 6558 + - uid: 300 components: - type: Transform - pos: 24.5,3.5 + pos: -22.5,-27.5 parent: 2 - - uid: 6584 + - uid: 301 components: - type: Transform - pos: 24.5,-3.5 + pos: -8.5,-22.5 parent: 2 - - uid: 6585 + - uid: 324 components: - type: Transform - pos: 23.5,-3.5 + pos: 36.5,10.5 parent: 2 - - uid: 6586 + - uid: 326 components: - type: Transform - pos: 23.5,-4.5 + pos: 17.5,-33.5 parent: 2 - - uid: 6587 + - uid: 425 components: - type: Transform - pos: 23.5,-5.5 + pos: -26.5,-41.5 parent: 2 - - uid: 6596 + - uid: 455 components: - type: Transform - pos: 17.5,-14.5 + pos: 41.5,-32.5 parent: 2 - - uid: 6601 + - uid: 485 components: - type: Transform - pos: 18.5,-11.5 + pos: -14.5,-18.5 parent: 2 - - uid: 6602 + - uid: 487 components: - type: Transform - pos: 17.5,-13.5 + pos: -14.5,-20.5 parent: 2 - - uid: 6628 + - uid: 504 components: - type: Transform - pos: 23.5,-6.5 + pos: 13.5,-33.5 parent: 2 - - uid: 6629 + - uid: 525 components: - type: Transform - pos: 23.5,-7.5 + pos: -9.5,-55.5 parent: 2 - - uid: 6630 + - uid: 591 components: - type: Transform - pos: 23.5,-8.5 + pos: 2.5,-36.5 parent: 2 - - uid: 6643 + - uid: 660 components: - type: Transform - pos: 22.5,-8.5 + pos: -13.5,21.5 parent: 2 - - uid: 6646 + - uid: 767 components: - type: Transform - pos: 21.5,-9.5 + pos: 3.5,-26.5 parent: 2 - - uid: 6647 + - uid: 775 components: - type: Transform - pos: 21.5,-8.5 + pos: 19.5,-33.5 parent: 2 - - uid: 6648 + - uid: 800 components: - type: Transform - pos: 21.5,-10.5 + pos: -56.5,20.5 parent: 2 - - uid: 6649 + - uid: 803 components: - type: Transform - pos: 21.5,-11.5 + pos: -56.5,14.5 parent: 2 - - uid: 6666 + - uid: 804 components: - type: Transform - pos: -4.5,-9.5 + pos: -30.5,21.5 parent: 2 - - uid: 6707 + - uid: 805 components: - type: Transform - pos: 39.5,6.5 + pos: -54.5,20.5 parent: 2 - - uid: 6751 + - uid: 811 components: - type: Transform - pos: -55.5,27.5 + pos: -45.5,10.5 parent: 2 - - uid: 6777 + - uid: 829 components: - type: Transform - pos: 24.5,-39.5 + pos: -44.5,10.5 parent: 2 - - uid: 6836 + - uid: 833 components: - type: Transform - pos: 22.5,-15.5 + pos: -47.5,10.5 parent: 2 - - uid: 6886 + - uid: 834 components: - type: Transform - pos: -21.5,14.5 + pos: -44.5,12.5 parent: 2 - - uid: 6893 + - uid: 837 components: - type: Transform - pos: 22.5,-43.5 + pos: -52.5,12.5 parent: 2 - - uid: 6894 + - uid: 843 components: - type: Transform - pos: 21.5,-43.5 + pos: -45.5,28.5 parent: 2 - - uid: 6895 + - uid: 904 components: - type: Transform - pos: 20.5,-43.5 + pos: -48.5,11.5 parent: 2 - - uid: 6896 + - uid: 905 components: - type: Transform - pos: 19.5,-43.5 + pos: -27.5,20.5 parent: 2 - - uid: 6897 + - uid: 910 components: - type: Transform - pos: 18.5,-43.5 + pos: -55.5,20.5 parent: 2 - - uid: 6898 + - uid: 912 components: - type: Transform - pos: 17.5,-43.5 + pos: -52.5,10.5 parent: 2 - - uid: 6899 + - uid: 919 components: - type: Transform - pos: 16.5,-43.5 + pos: -53.5,10.5 parent: 2 - - uid: 6900 + - uid: 923 components: - type: Transform - pos: 15.5,-43.5 + pos: -55.5,14.5 parent: 2 - - uid: 6901 + - uid: 940 components: - type: Transform - pos: 14.5,-43.5 + pos: -52.5,14.5 parent: 2 - - uid: 6902 + - uid: 949 components: - type: Transform - pos: 12.5,-43.5 + pos: 26.5,16.5 parent: 2 - - uid: 6903 + - uid: 1071 components: - type: Transform - pos: 11.5,-43.5 + pos: -55.5,29.5 parent: 2 - - uid: 6904 + - uid: 1072 components: - type: Transform - pos: 13.5,-43.5 + pos: -55.5,25.5 parent: 2 - - uid: 6959 + - uid: 1074 components: - type: Transform - pos: -15.5,1.5 + pos: -26.5,20.5 parent: 2 - - uid: 7013 + - uid: 1075 components: - type: Transform - pos: -6.5,-22.5 + pos: -29.5,20.5 parent: 2 - - uid: 7017 + - uid: 1087 components: - type: Transform - pos: -1.5,-17.5 + pos: -28.5,20.5 parent: 2 - - uid: 7036 + - uid: 1096 components: - type: Transform - pos: 1.5,-25.5 + pos: -30.5,22.5 parent: 2 - - uid: 7045 + - uid: 1165 components: - type: Transform - pos: -12.5,-21.5 + pos: -55.5,26.5 parent: 2 - - uid: 7047 + - uid: 1166 components: - type: Transform - pos: -11.5,-21.5 + pos: -55.5,28.5 parent: 2 - - uid: 7061 + - uid: 1193 components: - type: Transform - pos: -38.5,23.5 + pos: -48.5,15.5 parent: 2 - - uid: 7096 + - uid: 1194 components: - type: Transform - pos: -10.5,-21.5 + pos: -51.5,25.5 parent: 2 - - uid: 7108 + - uid: 1195 components: - type: Transform - pos: -45.5,16.5 + pos: -51.5,26.5 parent: 2 - - uid: 7114 + - uid: 1205 components: - type: Transform - pos: -44.5,16.5 + pos: -45.5,14.5 parent: 2 - - uid: 7206 + - uid: 1206 components: - type: Transform - pos: -24.5,20.5 + pos: -46.5,14.5 parent: 2 - - uid: 7530 + - uid: 1209 components: - type: Transform - pos: -23.5,20.5 + pos: -48.5,14.5 parent: 2 - - uid: 7595 + - uid: 1210 components: - type: Transform - pos: -15.5,0.5 + pos: -47.5,14.5 parent: 2 - - uid: 7732 + - uid: 1211 components: - type: Transform - pos: -47.5,16.5 + pos: -49.5,28.5 parent: 2 - - uid: 7745 + - uid: 1212 components: - type: Transform - pos: -48.5,18.5 + pos: -47.5,27.5 parent: 2 - - uid: 7746 + - uid: 1213 components: - type: Transform - pos: -48.5,16.5 + pos: -49.5,26.5 parent: 2 - - uid: 7763 + - uid: 1214 components: - type: Transform - pos: -4.5,11.5 + pos: -47.5,25.5 parent: 2 - - uid: 7782 + - uid: 1217 components: - type: Transform - pos: -8.5,11.5 + pos: -51.5,28.5 parent: 2 - - uid: 7804 + - uid: 1218 components: - type: Transform - pos: -2.5,11.5 + pos: -44.5,14.5 parent: 2 - - uid: 7984 + - uid: 1219 components: - type: Transform - pos: -46.5,16.5 + pos: -51.5,27.5 parent: 2 - - uid: 8034 + - uid: 1220 components: - type: Transform - pos: -15.5,2.5 + pos: -49.5,29.5 parent: 2 - - uid: 8048 + - uid: 1229 components: - type: Transform - pos: -47.5,28.5 + pos: -51.5,29.5 parent: 2 - - uid: 8121 + - uid: 1230 components: - type: Transform - pos: -6.5,11.5 + pos: -2.5,-22.5 parent: 2 - - uid: 8134 + - uid: 1232 components: - type: Transform - pos: -7.5,11.5 + pos: -18.5,20.5 parent: 2 - - uid: 8213 + - uid: 1233 components: - type: Transform - pos: 9.5,11.5 + pos: -13.5,14.5 parent: 2 - - uid: 8221 + - uid: 1235 components: - type: Transform - pos: -2.5,-21.5 + pos: -13.5,11.5 parent: 2 - - uid: 8311 + - uid: 1243 components: - type: Transform - pos: -44.5,18.5 + pos: -13.5,13.5 parent: 2 - - uid: 8330 + - uid: 1244 components: - type: Transform - pos: -53.5,25.5 + pos: -20.5,20.5 parent: 2 - - uid: 8334 + - uid: 1270 components: - type: Transform - pos: -52.5,11.5 + pos: -19.5,20.5 parent: 2 - - uid: 8352 + - uid: 1273 components: - type: Transform - pos: -49.5,27.5 + pos: 2.5,-25.5 parent: 2 - - uid: 8366 + - uid: 1313 components: - type: Transform - pos: -17.5,20.5 + pos: -22.5,20.5 parent: 2 - - uid: 8397 + - uid: 1314 components: - type: Transform - pos: -45.5,18.5 + pos: -14.5,11.5 parent: 2 - - uid: 8423 + - uid: 1315 components: - type: Transform - pos: -46.5,18.5 + pos: -12.5,11.5 parent: 2 - - uid: 8424 + - uid: 1316 components: - type: Transform - pos: -47.5,18.5 + pos: -11.5,11.5 parent: 2 - - uid: 8433 + - uid: 1317 components: - type: Transform - pos: 67.5,8.5 + pos: -10.5,11.5 parent: 2 - - uid: 8434 + - uid: 1353 components: - type: Transform - pos: 65.5,4.5 + pos: -21.5,20.5 parent: 2 - - uid: 8447 + - uid: 1408 components: - type: Transform - pos: 59.5,8.5 + pos: -13.5,12.5 parent: 2 - - uid: 8458 + - uid: 1409 components: - type: Transform - pos: 67.5,4.5 + pos: -15.5,11.5 parent: 2 - - uid: 8459 + - uid: 1436 components: - type: Transform - pos: 67.5,7.5 + pos: 1.5,-27.5 parent: 2 - - uid: 8460 + - uid: 1507 components: - type: Transform - pos: 65.5,8.5 + pos: -23.5,-19.5 parent: 2 - - uid: 8474 + - uid: 1511 components: - type: Transform - pos: -19.5,14.5 + pos: 31.5,-10.5 parent: 2 - - uid: 8504 + - uid: 1531 components: - type: Transform - pos: 67.5,5.5 + pos: -21.5,-19.5 parent: 2 - - uid: 8509 + - uid: 1633 components: - type: Transform - pos: 63.5,4.5 + pos: 25.5,-39.5 parent: 2 - - uid: 8632 + - uid: 1652 components: - type: Transform - pos: 36.5,7.5 + pos: -33.5,-15.5 parent: 2 - - uid: 8640 + - uid: 1655 components: - type: Transform - pos: 36.5,6.5 + pos: -35.5,-15.5 parent: 2 - - uid: 8678 + - uid: 1662 components: - type: Transform - pos: 36.5,11.5 + pos: -36.5,-14.5 parent: 2 - - uid: 8709 + - uid: 1666 components: - type: Transform - pos: -18.5,16.5 + pos: -36.5,-13.5 parent: 2 - - uid: 8712 + - uid: 1669 components: - type: Transform - pos: 36.5,12.5 + pos: -34.5,-15.5 parent: 2 - - uid: 8781 + - uid: 1671 components: - type: Transform - pos: 46.5,3.5 + pos: -36.5,-12.5 parent: 2 - - uid: 8798 + - uid: 1682 components: - type: Transform - pos: 67.5,6.5 + pos: -0.5,-9.5 parent: 2 - - uid: 8799 + - uid: 1686 components: - type: Transform - pos: 61.5,6.5 + pos: 2.5,-27.5 parent: 2 - - uid: 8800 + - uid: 1689 components: - type: Transform - pos: 65.5,5.5 + pos: 0.5,-27.5 parent: 2 - - uid: 8801 + - uid: 1694 components: - type: Transform - pos: 63.5,5.5 + pos: -47.5,12.5 parent: 2 - - uid: 8805 + - uid: 1700 components: - type: Transform - pos: 61.5,8.5 + pos: -37.5,-12.5 parent: 2 - - uid: 8806 + - uid: 1708 components: - type: Transform - pos: 63.5,6.5 + pos: -36.5,-15.5 parent: 2 - - uid: 8807 + - uid: 1721 components: - type: Transform - pos: 63.5,7.5 + pos: -48.5,12.5 parent: 2 - - uid: 8808 + - uid: 1785 components: - type: Transform - pos: 59.5,5.5 + pos: -45.5,12.5 parent: 2 - - uid: 8809 + - uid: 1814 components: - type: Transform - pos: 61.5,4.5 + pos: -30.5,-15.5 parent: 2 - - uid: 8810 + - uid: 1825 components: - type: Transform - pos: 59.5,4.5 + pos: -39.5,-48.5 parent: 2 - - uid: 8811 + - uid: 1826 components: - type: Transform - pos: 57.5,8.5 + pos: -40.5,-48.5 parent: 2 - - uid: 8812 + - uid: 1833 components: - type: Transform - pos: 57.5,5.5 + pos: 0.5,-18.5 parent: 2 - - uid: 8813 + - uid: 1845 components: - type: Transform - pos: 58.5,4.5 + pos: -43.5,-48.5 parent: 2 - - uid: 8814 + - uid: 1881 components: - type: Transform - pos: 62.5,4.5 + pos: -46.5,12.5 parent: 2 - - uid: 8815 + - uid: 1905 components: - type: Transform - pos: 66.5,4.5 + pos: -45.5,27.5 parent: 2 - - uid: 8816 + - uid: 2093 components: - type: Transform - pos: 70.5,4.5 + pos: -15.5,-19.5 parent: 2 - - uid: 8817 + - uid: 2107 components: - type: Transform - pos: 70.5,0.5 + pos: -1.5,-22.5 parent: 2 - - uid: 8818 + - uid: 2114 components: - type: Transform - pos: 57.5,7.5 + pos: -4.5,-13.5 parent: 2 - - uid: 8819 + - uid: 2122 components: - type: Transform - pos: 57.5,6.5 + pos: 1.5,-24.5 parent: 2 - - uid: 8820 + - uid: 2133 components: - type: Transform - pos: 66.5,0.5 + pos: 1.5,-17.5 parent: 2 - - uid: 8821 + - uid: 2165 components: - type: Transform - pos: 62.5,0.5 + pos: -2.5,-19.5 parent: 2 - - uid: 8822 + - uid: 2166 components: - type: Transform - pos: 58.5,0.5 + pos: -4.5,-16.5 parent: 2 - - uid: 8823 + - uid: 2168 components: - type: Transform - pos: 52.5,2.5 + pos: 0.5,-19.5 parent: 2 - - uid: 8824 + - uid: 2177 components: - type: Transform - pos: 61.5,5.5 + pos: 7.5,-23.5 parent: 2 - - uid: 8825 + - uid: 2184 components: - type: Transform - pos: 73.5,2.5 + pos: -8.5,-26.5 parent: 2 - - uid: 8826 + - uid: 2185 components: - type: Transform - pos: 72.5,2.5 + pos: 7.5,-22.5 parent: 2 - - uid: 8830 + - uid: 2215 components: - type: Transform - pos: 71.5,2.5 + pos: -4.5,-22.5 parent: 2 - - uid: 8841 + - uid: 2217 components: - type: Transform - pos: 45.5,3.5 + pos: -2.5,-18.5 parent: 2 - - uid: 8842 + - uid: 2219 components: - type: Transform - pos: 44.5,3.5 + pos: -3.5,-19.5 parent: 2 - - uid: 8843 + - uid: 2223 components: - type: Transform - pos: 44.5,2.5 + pos: -13.5,-12.5 parent: 2 - - uid: 8844 + - uid: 2224 components: - type: Transform - pos: 43.5,2.5 + pos: -14.5,-12.5 parent: 2 - - uid: 8845 + - uid: 2225 components: - type: Transform - pos: 42.5,2.5 + pos: -15.5,-12.5 parent: 2 - - uid: 8846 + - uid: 2228 components: - type: Transform - pos: 41.5,2.5 + pos: -13.5,-13.5 parent: 2 - - uid: 8847 + - uid: 2242 components: - type: Transform - pos: 41.5,3.5 + pos: -13.5,-20.5 parent: 2 - - uid: 8848 + - uid: 2245 components: - type: Transform - pos: 41.5,4.5 + pos: -2.5,-20.5 parent: 2 - - uid: 8849 + - uid: 2264 components: - type: Transform - pos: 41.5,5.5 + pos: -55.5,23.5 parent: 2 - - uid: 8860 + - uid: 2272 components: - type: Transform - pos: 36.5,9.5 + pos: -6.5,-18.5 parent: 2 - - uid: 8875 + - uid: 2299 components: - type: Transform - pos: -26.5,-19.5 + pos: -5.5,-18.5 parent: 2 - - uid: 8883 + - uid: 2337 components: - type: Transform - pos: -15.5,3.5 + pos: -8.5,-25.5 parent: 2 - - uid: 8892 + - uid: 2380 components: - type: Transform - pos: 32.5,-2.5 + pos: -18.5,18.5 parent: 2 - - uid: 8893 + - uid: 2449 components: - type: Transform - pos: 32.5,-3.5 + pos: -54.5,16.5 parent: 2 - - uid: 8914 + - uid: 2459 components: - type: Transform - pos: 47.5,2.5 + pos: -53.5,16.5 parent: 2 - - uid: 8915 + - uid: 2491 components: - type: Transform - pos: 48.5,2.5 + pos: -13.5,-21.5 parent: 2 - - uid: 8916 + - uid: 2508 components: - type: Transform - pos: 49.5,2.5 + pos: 38.5,-31.5 parent: 2 - - uid: 8917 + - uid: 2510 components: - type: Transform - pos: 50.5,2.5 + pos: -3.5,-20.5 parent: 2 - - uid: 8918 + - uid: 2555 components: - type: Transform - pos: 51.5,2.5 + pos: 39.5,-31.5 parent: 2 - - uid: 8920 + - uid: 2570 components: - type: Transform - pos: 59.5,6.5 + pos: -9.5,-26.5 parent: 2 - - uid: 8921 + - uid: 2593 components: - type: Transform - pos: 59.5,7.5 + pos: -13.5,20.5 parent: 2 - - uid: 8930 + - uid: 2601 components: - type: Transform - pos: -47.5,29.5 + pos: -7.5,-18.5 parent: 2 - - uid: 8933 + - uid: 2621 components: - type: Transform - pos: 65.5,6.5 + pos: -13.5,17.5 parent: 2 - - uid: 8939 + - uid: 2622 components: - type: Transform - pos: 63.5,8.5 + pos: -14.5,20.5 parent: 2 - - uid: 8940 + - uid: 2626 components: - type: Transform - pos: 61.5,7.5 + pos: -13.5,19.5 parent: 2 - - uid: 8948 + - uid: 2627 components: - type: Transform - pos: -54.5,12.5 + pos: -15.5,4.5 parent: 2 - - uid: 8951 + - uid: 2628 components: - type: Transform - pos: -31.5,24.5 + pos: -15.5,5.5 parent: 2 - - uid: 8957 + - uid: 2629 components: - type: Transform - pos: -31.5,23.5 + pos: -15.5,6.5 parent: 2 - - uid: 8958 + - uid: 2630 components: - type: Transform - pos: -32.5,23.5 + pos: -15.5,7.5 parent: 2 - - uid: 8967 + - uid: 2631 components: - type: Transform - pos: -1.5,11.5 + pos: -15.5,8.5 parent: 2 - - uid: 8974 + - uid: 2632 components: - type: Transform - pos: 71.5,-1.5 + pos: -15.5,9.5 parent: 2 - - uid: 8975 + - uid: 2633 components: - type: Transform - pos: 3.5,11.5 + pos: -15.5,10.5 parent: 2 - - uid: 8976 + - uid: 2634 components: - type: Transform - pos: 71.5,-2.5 + pos: -56.5,23.5 parent: 2 - - uid: 8977 + - uid: 2635 components: - type: Transform - pos: 71.5,-3.5 + pos: -25.5,20.5 parent: 2 - - uid: 8978 + - uid: 2643 components: - type: Transform - pos: 69.5,-3.5 + pos: -15.5,-2.5 parent: 2 - - uid: 8979 + - uid: 2644 components: - type: Transform - pos: 69.5,-1.5 + pos: -15.5,-3.5 parent: 2 - - uid: 8985 + - uid: 2645 components: - type: Transform - pos: 69.5,-2.5 + pos: -15.5,-4.5 parent: 2 - - uid: 8986 + - uid: 2646 components: - type: Transform - pos: 71.5,4.5 + pos: -16.5,-4.5 parent: 2 - - uid: 8987 + - uid: 2647 components: - type: Transform - pos: 71.5,5.5 + pos: -16.5,-5.5 parent: 2 - - uid: 8988 + - uid: 2648 components: - type: Transform - pos: 71.5,6.5 + pos: -16.5,-6.5 parent: 2 - - uid: 8989 + - uid: 2651 components: - type: Transform - pos: 71.5,7.5 + pos: -20.5,14.5 parent: 2 - - uid: 8991 + - uid: 2652 components: - type: Transform - pos: 71.5,8.5 + pos: 40.5,-31.5 parent: 2 - - uid: 8996 + - uid: 2666 components: - type: Transform - pos: 1.5,11.5 + pos: 27.5,-39.5 parent: 2 - - uid: 9007 + - uid: 2668 components: - type: Transform - pos: -5.5,11.5 + pos: -45.5,25.5 parent: 2 - - uid: 9009 + - uid: 2677 components: - type: Transform - pos: 8.5,11.5 + pos: 37.5,-31.5 parent: 2 - - uid: 9020 + - uid: 2680 components: - type: Transform - pos: 69.5,-3.5 + pos: -7.5,-50.5 parent: 2 - - uid: 9021 + - uid: 2698 components: - type: Transform - pos: 69.5,0.5 + pos: -26.5,-15.5 parent: 2 - - uid: 9022 + - uid: 2703 components: - type: Transform - pos: 71.5,0.5 + pos: -7.5,-53.5 parent: 2 - - uid: 9023 + - uid: 2704 components: - type: Transform - pos: 71.5,-0.5 + pos: -25.5,-15.5 parent: 2 - - uid: 9024 + - uid: 2731 components: - type: Transform - pos: 61.5,-1.5 + pos: -52.5,16.5 parent: 2 - - uid: 9025 + - uid: 2732 components: - type: Transform - pos: 61.5,-0.5 + pos: -53.5,14.5 parent: 2 - - uid: 9026 + - uid: 2733 components: - type: Transform - pos: 61.5,0.5 + pos: -54.5,14.5 parent: 2 - - uid: 9027 + - uid: 2734 components: - type: Transform - pos: 63.5,0.5 + pos: -56.5,16.5 parent: 2 - - uid: 9028 + - uid: 2735 components: - type: Transform - pos: 63.5,-0.5 + pos: -55.5,16.5 parent: 2 - - uid: 9029 + - uid: 2738 components: - type: Transform - pos: 63.5,-1.5 + pos: -7.5,-55.5 parent: 2 - - uid: 9030 + - uid: 2749 components: - type: Transform - pos: 63.5,-2.5 + pos: -3.5,-22.5 parent: 2 - - uid: 9032 + - uid: 2751 components: - type: Transform - pos: 63.5,-3.5 + pos: -0.5,-22.5 parent: 2 - - uid: 9065 + - uid: 2753 components: - type: Transform - pos: 65.5,-3.5 + pos: -29.5,-15.5 parent: 2 - - uid: 9071 + - uid: 2760 components: - type: Transform - pos: 65.5,-2.5 + pos: -17.5,-15.5 parent: 2 - - uid: 9072 + - uid: 2761 components: - type: Transform - pos: 65.5,-1.5 + pos: -18.5,-15.5 parent: 2 - - uid: 9107 + - uid: 2762 components: - type: Transform - pos: 65.5,-0.5 + pos: -19.5,-15.5 parent: 2 - - uid: 9121 + - uid: 2763 components: - type: Transform - pos: 36.5,8.5 + pos: -20.5,-15.5 parent: 2 - - uid: 9161 + - uid: 2769 components: - type: Transform - pos: 23.5,-43.5 + pos: -5.5,-22.5 parent: 2 - - uid: 9162 + - uid: 2771 components: - type: Transform - pos: 24.5,-43.5 + pos: -5.5,-17.5 parent: 2 - - uid: 9163 + - uid: 2775 components: - type: Transform - pos: 24.5,-44.5 + pos: -4.5,-17.5 parent: 2 - - uid: 9164 + - uid: 2813 components: - type: Transform - pos: 24.5,-45.5 + pos: -14.5,-19.5 parent: 2 - - uid: 9165 + - uid: 2814 components: - type: Transform - pos: 24.5,-46.5 + pos: 1.5,-23.5 parent: 2 - - uid: 9166 + - uid: 2815 components: - type: Transform - pos: 24.5,-47.5 + pos: -1.5,-19.5 parent: 2 - - uid: 9167 + - uid: 2819 components: - type: Transform - pos: 24.5,-48.5 + pos: -18.5,19.5 parent: 2 - - uid: 9168 + - uid: 2886 components: - type: Transform - pos: 24.5,-49.5 + pos: -57.5,23.5 parent: 2 - - uid: 9169 + - uid: 2887 components: - type: Transform - pos: 24.5,-50.5 + pos: -53.5,20.5 parent: 2 - - uid: 9170 + - uid: 2888 components: - type: Transform - pos: 24.5,-51.5 + pos: -45.5,29.5 parent: 2 - - uid: 9171 + - uid: 2890 components: - type: Transform - pos: 25.5,-51.5 + pos: -54.5,25.5 parent: 2 - - uid: 9172 + - uid: 2918 components: - type: Transform - pos: 26.5,-51.5 + pos: -3.5,-9.5 parent: 2 - - uid: 9173 + - uid: 2964 components: - type: Transform - pos: 27.5,-51.5 + pos: -50.5,25.5 parent: 2 - - uid: 9174 + - uid: 2965 components: - type: Transform - pos: 27.5,-50.5 + pos: -46.5,25.5 parent: 2 - - uid: 9175 + - uid: 2982 components: - type: Transform - pos: 28.5,-50.5 + pos: -9.5,-21.5 parent: 2 - - uid: 9189 + - uid: 3006 components: - type: Transform - pos: 9.5,-48.5 + pos: -56.5,18.5 parent: 2 - - uid: 9190 + - uid: 3015 components: - type: Transform - pos: 10.5,-47.5 + pos: -13.5,18.5 parent: 2 - - uid: 9191 + - uid: 3018 components: - type: Transform - pos: 10.5,-48.5 + pos: -16.5,20.5 parent: 2 - - uid: 9192 + - uid: 3019 components: - type: Transform - pos: 10.5,-46.5 + pos: 7.5,11.5 parent: 2 - - uid: 9193 + - uid: 3031 components: - type: Transform - pos: 10.5,-45.5 + pos: -9.5,11.5 parent: 2 - - uid: 9195 + - uid: 3032 components: - type: Transform - pos: 10.5,-44.5 + pos: -13.5,16.5 parent: 2 - - uid: 9196 + - uid: 3045 components: - type: Transform - pos: 7.5,-48.5 + pos: -15.5,20.5 parent: 2 - - uid: 9197 + - uid: 3095 components: - type: Transform - pos: 6.5,-48.5 + pos: -18.5,14.5 parent: 2 - - uid: 9198 + - uid: 3109 components: - type: Transform - pos: 8.5,-48.5 + pos: -3.5,-17.5 parent: 2 - - uid: 9199 + - uid: 3112 components: - type: Transform - pos: 5.5,-48.5 + pos: -7.5,-22.5 parent: 2 - - uid: 9200 + - uid: 3125 components: - type: Transform - pos: 4.5,-48.5 + pos: 34.5,-37.5 parent: 2 - - uid: 9201 + - uid: 3154 components: - type: Transform - pos: 3.5,-48.5 + pos: 0.5,-17.5 parent: 2 - - uid: 9216 + - uid: 3155 components: - type: Transform - pos: -24.5,-41.5 + pos: 0.5,-20.5 parent: 2 - - uid: 9217 + - uid: 3161 components: - type: Transform - pos: -23.5,-41.5 + pos: 0.5,-21.5 parent: 2 - - uid: 9218 + - uid: 3174 components: - type: Transform - pos: -22.5,-41.5 + pos: -24.5,-19.5 parent: 2 - - uid: 9219 + - uid: 3203 components: - type: Transform - pos: -21.5,-41.5 + pos: 1.5,-22.5 parent: 2 - - uid: 9220 + - uid: 3320 components: - type: Transform - pos: -20.5,-41.5 + pos: -8.5,-42.5 parent: 2 - - uid: 9221 + - uid: 3407 components: - type: Transform - pos: -19.5,-41.5 + pos: -13.5,15.5 parent: 2 - - uid: 9222 + - uid: 3476 components: - type: Transform - pos: -18.5,-41.5 + pos: 28.5,-37.5 parent: 2 - - uid: 9223 + - uid: 3514 components: - type: Transform - pos: -17.5,-41.5 + pos: 32.5,-37.5 parent: 2 - - uid: 9224 + - uid: 3560 components: - type: Transform - pos: -16.5,-41.5 + pos: 30.5,-37.5 parent: 2 - - uid: 9225 + - uid: 3565 components: - type: Transform - pos: -14.5,-41.5 + pos: -2.5,-23.5 parent: 2 - - uid: 9226 + - uid: 3569 components: - type: Transform - pos: -13.5,-41.5 + pos: 21.5,9.5 parent: 2 - - uid: 9227 + - uid: 3572 components: - type: Transform - pos: -12.5,-41.5 + pos: -4.5,-11.5 parent: 2 - - uid: 9228 + - uid: 3622 components: - type: Transform - pos: -11.5,-41.5 + pos: 27.5,-37.5 parent: 2 - - uid: 9229 + - uid: 3660 components: - type: Transform - pos: -10.5,-41.5 + pos: -22.5,-19.5 parent: 2 - - uid: 9230 + - uid: 3681 components: - type: Transform - pos: -9.5,-41.5 + pos: 27.5,-38.5 parent: 2 - - uid: 9231 + - uid: 3890 components: - type: Transform - pos: -8.5,-41.5 + pos: 3.5,-34.5 parent: 2 - - uid: 9232 + - uid: 3907 components: - type: Transform - pos: -15.5,-41.5 + pos: -17.5,-27.5 parent: 2 - - uid: 9234 + - uid: 3917 components: - type: Transform - pos: -8.5,-43.5 + pos: -16.5,-27.5 parent: 2 - - uid: 9235 + - uid: 3966 components: - type: Transform - pos: -8.5,-44.5 + pos: -15.5,-27.5 parent: 2 - - uid: 9236 + - uid: 3967 components: - type: Transform - pos: -8.5,-45.5 + pos: -14.5,-27.5 parent: 2 - - uid: 9237 + - uid: 3968 components: - type: Transform - pos: -8.5,-46.5 + pos: -13.5,-27.5 parent: 2 - - uid: 9238 + - uid: 3969 components: - type: Transform - pos: -8.5,-47.5 + pos: -12.5,-27.5 parent: 2 - - uid: 9239 + - uid: 3970 components: - type: Transform - pos: 1.5,-48.5 + pos: -12.5,-28.5 parent: 2 - - uid: 9240 + - uid: 3971 components: - type: Transform - pos: 0.5,-48.5 + pos: -11.5,-28.5 parent: 2 - - uid: 9241 + - uid: 3972 components: - type: Transform - pos: -0.5,-48.5 + pos: -10.5,-28.5 parent: 2 - - uid: 9242 + - uid: 3973 components: - type: Transform - pos: -1.5,-48.5 + pos: -9.5,-28.5 parent: 2 - - uid: 9243 + - uid: 3974 components: - type: Transform - pos: -2.5,-48.5 + pos: -8.5,-28.5 parent: 2 - - uid: 9244 + - uid: 3975 components: - type: Transform - pos: -4.5,-48.5 + pos: -7.5,-28.5 parent: 2 - - uid: 9245 + - uid: 3976 components: - type: Transform - pos: -5.5,-48.5 + pos: -6.5,-28.5 parent: 2 - - uid: 9246 + - uid: 3977 components: - type: Transform - pos: -6.5,-48.5 + pos: -5.5,-28.5 parent: 2 - - uid: 9247 + - uid: 3978 components: - type: Transform - pos: -7.5,-48.5 + pos: -4.5,-28.5 parent: 2 - - uid: 9248 + - uid: 3979 components: - type: Transform - pos: -3.5,-48.5 + pos: -3.5,-28.5 parent: 2 - - uid: 9249 + - uid: 3980 components: - type: Transform - pos: -8.5,-48.5 + pos: -2.5,-28.5 parent: 2 - - uid: 9354 + - uid: 3981 components: - type: Transform - pos: -50.5,-11.5 + pos: -1.5,-28.5 parent: 2 - - uid: 9577 + - uid: 3982 components: - type: Transform - pos: -27.5,-19.5 + pos: -0.5,-28.5 parent: 2 - - uid: 9622 + - uid: 3988 components: - type: Transform - pos: 7.5,-25.5 + pos: 3.5,-33.5 parent: 2 - - uid: 9736 + - uid: 3989 components: - type: Transform - pos: -15.5,-56.5 + pos: 3.5,-32.5 parent: 2 - - uid: 9737 + - uid: 3990 components: - type: Transform - pos: -15.5,-55.5 + pos: 3.5,-31.5 parent: 2 - - uid: 9738 + - uid: 3991 components: - type: Transform - pos: -15.5,-54.5 + pos: 3.5,-30.5 parent: 2 - - uid: 9740 + - uid: 3992 components: - type: Transform - pos: -14.5,-54.5 + pos: 3.5,-29.5 parent: 2 - - uid: 9741 + - uid: 3993 components: - type: Transform - pos: -13.5,-54.5 + pos: 3.5,-28.5 parent: 2 - - uid: 9742 + - uid: 4011 components: - type: Transform - pos: -12.5,-54.5 + pos: -18.5,-27.5 parent: 2 - - uid: 9762 + - uid: 4012 components: - type: Transform - pos: -15.5,-57.5 + pos: -19.5,-27.5 parent: 2 - - uid: 9763 + - uid: 4013 components: - type: Transform - pos: -15.5,-58.5 + pos: -20.5,-27.5 parent: 2 - - uid: 9764 + - uid: 4026 components: - type: Transform - pos: -16.5,-58.5 + pos: 3.5,-36.5 parent: 2 - - uid: 9765 + - uid: 4027 components: - type: Transform - pos: -17.5,-58.5 + pos: 3.5,-35.5 parent: 2 - - uid: 9766 + - uid: 4028 components: - type: Transform - pos: -18.5,-58.5 + pos: 1.5,-36.5 parent: 2 - - uid: 9767 + - uid: 4029 components: - type: Transform - pos: -19.5,-58.5 + pos: 1.5,-37.5 parent: 2 - - uid: 9768 + - uid: 4030 components: - type: Transform - pos: -19.5,-57.5 + pos: 3.5,-37.5 parent: 2 - - uid: 10093 + - uid: 4031 components: - type: Transform - pos: 32.5,6.5 + pos: 3.5,-38.5 parent: 2 - - uid: 10094 + - uid: 4032 components: - type: Transform - pos: 32.5,5.5 + pos: 3.5,-39.5 parent: 2 - - uid: 10095 + - uid: 4033 components: - type: Transform - pos: 32.5,4.5 + pos: 3.5,-40.5 parent: 2 - - uid: 10096 + - uid: 4042 components: - type: Transform - pos: 32.5,3.5 + pos: 2.5,-48.5 parent: 2 - - uid: 10097 + - uid: 4236 components: - type: Transform - pos: 32.5,2.5 + pos: 3.5,-17.5 parent: 2 - - uid: 10098 + - uid: 4303 components: - type: Transform - pos: 32.5,1.5 + pos: 4.5,-17.5 parent: 2 - - uid: 10100 + - uid: 4305 components: - type: Transform - pos: 32.5,-0.5 + pos: -7.5,-19.5 parent: 2 - - uid: 10101 + - uid: 4308 components: - type: Transform - pos: 32.5,-1.5 + pos: 29.5,-37.5 parent: 2 - - uid: 10110 + - uid: 4309 components: - type: Transform - pos: -25.5,-41.5 + pos: 31.5,-37.5 parent: 2 - - uid: 10112 + - uid: 4310 components: - type: Transform - pos: -27.5,-41.5 + pos: 33.5,-37.5 parent: 2 - - uid: 10113 + - uid: 4322 components: - type: Transform - pos: -27.5,-42.5 + pos: 2.5,-17.5 parent: 2 - - uid: 10114 + - uid: 4394 components: - type: Transform - pos: -27.5,-43.5 + pos: 46.5,2.5 parent: 2 - - uid: 10115 + - uid: 4413 components: - type: Transform - pos: -27.5,-44.5 + pos: 24.5,-40.5 parent: 2 - - uid: 10116 + - uid: 4415 components: - type: Transform - pos: -27.5,-45.5 + pos: 24.5,-42.5 parent: 2 - - uid: 10117 + - uid: 4416 components: - type: Transform - pos: -27.5,-46.5 + pos: 24.5,-41.5 parent: 2 - - uid: 10118 + - uid: 4417 components: - type: Transform - pos: -27.5,-47.5 + pos: 5.5,-25.5 parent: 2 - - uid: 10136 + - uid: 4473 components: - type: Transform - pos: -28.5,-48.5 + pos: 3.5,-27.5 parent: 2 - - uid: 10163 + - uid: 4503 components: - type: Transform - pos: 25.5,-3.5 + pos: 4.5,-25.5 parent: 2 - - uid: 10164 + - uid: 4765 components: - type: Transform - pos: 27.5,-3.5 + pos: -4.5,-9.5 parent: 2 - - uid: 10165 + - uid: 4792 components: - type: Transform - pos: 28.5,-3.5 + pos: -1.5,-18.5 parent: 2 - - uid: 10166 + - uid: 4841 components: - type: Transform - pos: 29.5,-3.5 + pos: 6.5,-25.5 parent: 2 - - uid: 10167 + - uid: 4991 components: - type: Transform - pos: 30.5,-3.5 + pos: 25.5,13.5 parent: 2 - - uid: 10168 + - uid: 5015 components: - type: Transform - pos: 31.5,-3.5 + pos: 15.5,-17.5 parent: 2 - - uid: 10169 + - uid: 5019 components: - type: Transform - pos: 26.5,-3.5 + pos: -2.5,-17.5 parent: 2 - - uid: 10176 + - uid: 5068 components: - type: Transform - pos: 15.5,10.5 + pos: -23.5,-15.5 parent: 2 - - uid: 10177 + - uid: 5070 components: - type: Transform - pos: 16.5,10.5 + pos: -24.5,-15.5 parent: 2 - - uid: 10181 + - uid: 5081 components: - type: Transform - pos: 20.5,10.5 + pos: -21.5,-15.5 parent: 2 - - uid: 10186 + - uid: 5200 components: - type: Transform - pos: 27.5,-18.5 + pos: 37.5,6.5 parent: 2 - - uid: 10187 + - uid: 5201 components: - type: Transform - pos: 21.5,5.5 + pos: 38.5,6.5 parent: 2 - - uid: 10188 + - uid: 5275 components: - type: Transform - pos: 21.5,4.5 + pos: 23.5,-15.5 parent: 2 - - uid: 10189 + - uid: 5284 components: - type: Transform - pos: 21.5,3.5 + pos: -28.5,-15.5 parent: 2 - - uid: 10190 + - uid: 5335 components: - type: Transform - pos: 21.5,2.5 + pos: 37.5,14.5 parent: 2 - - uid: 10192 + - uid: 5358 components: - type: Transform - pos: 21.5,1.5 + pos: 65.5,7.5 parent: 2 - - uid: 10194 + - uid: 5433 components: - type: Transform - pos: 22.5,1.5 + pos: 4.5,-44.5 parent: 2 - - uid: 10195 + - uid: 5450 components: - type: Transform - pos: 24.5,1.5 + pos: -36.5,23.5 parent: 2 - - uid: 10196 + - uid: 5455 components: - type: Transform - pos: 23.5,1.5 + pos: -37.5,23.5 parent: 2 - - uid: 10204 + - uid: 5461 components: - type: Transform - pos: 28.5,-18.5 + pos: -54.5,18.5 parent: 2 - - uid: 10205 + - uid: 5462 components: - type: Transform - pos: 29.5,-18.5 + pos: -55.5,18.5 parent: 2 - - uid: 10222 + - uid: 5463 components: - type: Transform - pos: 30.5,-18.5 + pos: -53.5,18.5 parent: 2 - - uid: 10223 + - uid: 5530 components: - type: Transform - pos: 26.5,-18.5 + pos: -3.5,-18.5 parent: 2 - - uid: 10224 + - uid: 5598 components: - type: Transform - pos: 18.5,-5.5 + pos: -49.5,25.5 parent: 2 - - uid: 10225 + - uid: 5613 components: - type: Transform - pos: 18.5,-4.5 + pos: -47.5,26.5 parent: 2 - - uid: 10226 + - uid: 5617 components: - type: Transform - pos: 18.5,-3.5 + pos: -44.5,-48.5 parent: 2 - - uid: 10227 + - uid: 5639 components: - type: Transform - pos: 19.5,-3.5 + pos: -41.5,-48.5 parent: 2 - - uid: 10228 + - uid: 5654 components: - type: Transform - pos: 18.5,-6.5 + pos: -35.5,23.5 parent: 2 - - uid: 10253 + - uid: 5757 components: - type: Transform - pos: -23.5,-22.5 + pos: -29.5,-19.5 parent: 2 - - uid: 10256 + - uid: 5850 components: - type: Transform - pos: 21.5,-3.5 + pos: 16.5,-17.5 parent: 2 - - uid: 10258 + - uid: 5851 components: - type: Transform - pos: 3.5,-46.5 + pos: 25.5,14.5 parent: 2 - - uid: 10259 + - uid: 5852 components: - type: Transform - pos: 3.5,-47.5 + pos: 21.5,8.5 parent: 2 - - uid: 10260 + - uid: 5853 components: - type: Transform - pos: 7.5,-21.5 + pos: 23.5,7.5 parent: 2 - - uid: 10264 + - uid: 5879 components: - type: Transform - pos: -0.5,-27.5 + pos: -11.5,-56.5 parent: 2 - - uid: 10265 + - uid: 5880 components: - type: Transform - pos: 7.5,-24.5 + pos: -12.5,-56.5 parent: 2 - - uid: 10266 + - uid: 5887 components: - type: Transform - pos: 3.5,-25.5 + pos: 4.5,-46.5 parent: 2 - - uid: 10267 + - uid: 5890 components: - type: Transform - pos: 23.5,-20.5 + pos: 19.5,-13.5 parent: 2 - - uid: 10268 + - uid: 5891 components: - type: Transform - pos: 30.5,-21.5 + pos: 21.5,-13.5 parent: 2 - - uid: 10269 + - uid: 5897 components: - type: Transform - pos: 29.5,-21.5 + pos: 24.5,-33.5 parent: 2 - - uid: 10270 + - uid: 5949 components: - type: Transform - pos: 28.5,-21.5 + pos: 24.5,-38.5 parent: 2 - - uid: 10271 + - uid: 5951 components: - type: Transform - pos: 27.5,-21.5 + pos: 38.5,14.5 parent: 2 - - uid: 10272 + - uid: 5954 components: - type: Transform - pos: 26.5,-21.5 + pos: 24.5,-34.5 parent: 2 - - uid: 10273 + - uid: 5964 components: - type: Transform - pos: 24.5,-21.5 + pos: 31.5,-0.5 parent: 2 - - uid: 10274 + - uid: 6006 components: - type: Transform - pos: 23.5,-21.5 + pos: 24.5,-36.5 parent: 2 - - uid: 10275 + - uid: 6026 components: - type: Transform - pos: 22.5,-21.5 + pos: 31.5,-1.5 parent: 2 - - uid: 10276 + - uid: 6038 components: - type: Transform - pos: 21.5,-21.5 + pos: 22.5,-13.5 parent: 2 - - uid: 10277 + - uid: 6041 components: - type: Transform - pos: 20.5,-21.5 + pos: -4.5,-10.5 parent: 2 - - uid: 10278 + - uid: 6052 components: - type: Transform - pos: 19.5,-21.5 + pos: 35.5,6.5 parent: 2 - - uid: 10279 + - uid: 6056 components: - type: Transform - pos: 18.5,-21.5 + pos: 41.5,6.5 parent: 2 - - uid: 10280 + - uid: 6070 components: - type: Transform - pos: 17.5,-21.5 + pos: 34.5,6.5 parent: 2 - - uid: 10281 + - uid: 6084 components: - type: Transform - pos: 16.5,-21.5 + pos: 21.5,10.5 parent: 2 - - uid: 10282 + - uid: 6104 components: - type: Transform - pos: 15.5,-21.5 + pos: 5.5,-17.5 parent: 2 - - uid: 10283 + - uid: 6107 components: - type: Transform - pos: 14.5,-21.5 + pos: 33.5,6.5 parent: 2 - - uid: 10284 + - uid: 6151 components: - type: Transform - pos: 25.5,-21.5 + pos: -31.5,-15.5 parent: 2 - - uid: 10285 + - uid: 6164 components: - type: Transform - pos: 12.5,-21.5 + pos: 25.5,-18.5 parent: 2 - - uid: 10286 + - uid: 6208 components: - type: Transform - pos: 11.5,-21.5 + pos: -32.5,-15.5 parent: 2 - - uid: 10287 + - uid: 6228 components: - type: Transform - pos: 13.5,-21.5 + pos: -27.5,-15.5 parent: 2 - - uid: 10288 + - uid: 6247 components: - type: Transform - pos: 9.5,-21.5 + pos: -22.5,-15.5 parent: 2 - - uid: 10289 + - uid: 6258 components: - type: Transform - pos: 8.5,-21.5 + pos: 8.5,-17.5 parent: 2 - - uid: 10290 + - uid: 6259 components: - type: Transform - pos: 10.5,-21.5 + pos: 25.5,-10.5 parent: 2 - - uid: 10291 + - uid: 6266 components: - type: Transform - pos: 22.5,-3.5 + pos: 23.5,-8.5 parent: 2 - - uid: 10308 + - uid: 6268 components: - type: Transform - pos: 31.5,-21.5 + pos: 16.5,-18.5 parent: 2 - - uid: 10309 + - uid: 6280 components: - type: Transform - pos: 31.5,-20.5 + pos: 31.5,-12.5 parent: 2 - - uid: 10310 + - uid: 6281 components: - type: Transform - pos: 31.5,-19.5 + pos: 23.5,-14.5 parent: 2 - - uid: 10311 + - uid: 6284 components: - type: Transform - pos: 31.5,-18.5 + pos: 31.5,-13.5 parent: 2 - - uid: 10386 + - uid: 6289 components: - type: Transform - pos: -45.5,-55.5 + pos: 10.5,-17.5 parent: 2 - - uid: 10392 + - uid: 6304 components: - type: Transform - pos: -44.5,-55.5 + pos: 14.5,-17.5 parent: 2 - - uid: 10401 + - uid: 6309 components: - type: Transform - pos: -46.5,-55.5 + pos: 23.5,-16.5 parent: 2 - - uid: 10402 + - uid: 6312 components: - type: Transform - pos: -46.5,-54.5 + pos: 24.5,-10.5 parent: 2 - - uid: 10403 + - uid: 6313 components: - type: Transform - pos: -47.5,-54.5 + pos: 23.5,-10.5 parent: 2 - - uid: 10404 + - uid: 6341 components: - type: Transform - pos: -48.5,-54.5 + pos: 23.5,-9.5 parent: 2 - - uid: 10405 + - uid: 6343 components: - type: Transform - pos: -49.5,-54.5 + pos: 23.5,-19.5 parent: 2 - - uid: 10406 + - uid: 6372 components: - type: Transform - pos: -50.5,-54.5 + pos: 23.5,-7.5 parent: 2 - - uid: 10407 + - uid: 6388 components: - type: Transform - pos: -43.5,-54.5 + pos: 23.5,-6.5 parent: 2 - - uid: 10408 + - uid: 6393 components: - type: Transform - pos: -43.5,-55.5 + pos: 26.5,-10.5 parent: 2 - - uid: 10409 + - uid: 6398 components: - type: Transform - pos: -43.5,-53.5 + pos: 23.5,-18.5 parent: 2 - - uid: 10410 + - uid: 6403 components: - type: Transform - pos: -42.5,-54.5 + pos: 6.5,-17.5 parent: 2 - - uid: 10411 + - uid: 6414 components: - type: Transform - pos: -41.5,-54.5 + pos: 23.5,-17.5 parent: 2 - - uid: 10417 + - uid: 6447 components: - type: Transform - pos: -33.5,-51.5 + pos: -7.5,-51.5 parent: 2 - - uid: 10418 + - uid: 6448 components: - type: Transform - pos: -34.5,-51.5 + pos: -7.5,-54.5 parent: 2 - - uid: 10419 + - uid: 6450 components: - type: Transform - pos: -35.5,-51.5 + pos: -8.5,-55.5 parent: 2 - - uid: 10420 + - uid: 6466 components: - type: Transform - pos: -36.5,-51.5 + pos: 27.5,-10.5 parent: 2 - - uid: 10421 + - uid: 6504 components: - type: Transform - pos: -37.5,-51.5 + pos: 40.5,6.5 parent: 2 - - uid: 10422 + - uid: 6549 components: - type: Transform - pos: -37.5,-52.5 + pos: 13.5,-13.5 parent: 2 - - uid: 10423 + - uid: 6586 components: - type: Transform - pos: -37.5,-53.5 + pos: 11.5,-17.5 parent: 2 - - uid: 10424 + - uid: 6587 components: - type: Transform - pos: -37.5,-54.5 + pos: 9.5,-17.5 parent: 2 - - uid: 10425 + - uid: 6659 components: - type: Transform - pos: -38.5,-54.5 + pos: 31.5,-2.5 parent: 2 - - uid: 10426 + - uid: 6703 components: - type: Transform - pos: -39.5,-54.5 + pos: -7.5,-52.5 parent: 2 - - uid: 10427 + - uid: 6707 components: - type: Transform - pos: -40.5,-54.5 + pos: 39.5,6.5 parent: 2 - - uid: 10428 + - uid: 6751 components: - type: Transform - pos: -30.5,-48.5 + pos: -55.5,27.5 parent: 2 - - uid: 10429 + - uid: 6777 components: - type: Transform - pos: -29.5,-48.5 + pos: 24.5,-39.5 parent: 2 - - uid: 10431 + - uid: 6879 components: - type: Transform - pos: -27.5,-48.5 + pos: -4.5,-15.5 parent: 2 - - uid: 10434 + - uid: 6886 components: - type: Transform - pos: -52.5,-54.5 + pos: -21.5,14.5 parent: 2 - - uid: 10437 + - uid: 6959 components: - type: Transform - pos: -23.5,-27.5 + pos: -15.5,1.5 parent: 2 - - uid: 10472 + - uid: 6973 components: - type: Transform - pos: -64.5,-50.5 + pos: -38.5,-12.5 parent: 2 - - uid: 10502 + - uid: 6990 components: - type: Transform - pos: -70.5,-54.5 + pos: 21.5,-33.5 parent: 2 - - uid: 10503 + - uid: 7011 components: - type: Transform - pos: -69.5,-54.5 + pos: 29.5,-10.5 parent: 2 - - uid: 10504 + - uid: 7012 components: - type: Transform - pos: -68.5,-54.5 + pos: 30.5,-10.5 parent: 2 - - uid: 11107 + - uid: 7013 components: - type: Transform - pos: 10.5,-43.5 + pos: -6.5,-22.5 parent: 2 - - uid: 11216 + - uid: 7017 components: - type: Transform - pos: 21.5,11.5 + pos: -1.5,-17.5 parent: 2 - - uid: 11217 + - uid: 7036 components: - type: Transform - pos: 22.5,11.5 + pos: 1.5,-25.5 parent: 2 - - uid: 11218 + - uid: 7045 components: - type: Transform - pos: 23.5,11.5 + pos: -12.5,-21.5 parent: 2 - - uid: 11219 + - uid: 7047 components: - type: Transform - pos: 24.5,11.5 + pos: -11.5,-21.5 parent: 2 - - uid: 11220 + - uid: 7061 components: - type: Transform - pos: 24.5,12.5 + pos: -38.5,23.5 parent: 2 - - uid: 11221 + - uid: 7096 components: - type: Transform - pos: 24.5,13.5 + pos: -10.5,-21.5 parent: 2 - - uid: 11222 + - uid: 7108 components: - type: Transform - pos: 23.5,13.5 + pos: -45.5,16.5 parent: 2 - - uid: 11223 + - uid: 7114 components: - type: Transform - pos: 23.5,14.5 + pos: -44.5,16.5 parent: 2 - - uid: 11325 + - uid: 7133 components: - type: Transform - pos: -11.5,24.5 + pos: 21.5,7.5 parent: 2 - - uid: 11415 + - uid: 7141 components: - type: Transform - pos: 26.5,-39.5 + pos: 24.5,7.5 parent: 2 - - uid: 11417 + - uid: 7152 components: - type: Transform - pos: 36.5,-31.5 + pos: -10.5,-56.5 parent: 2 - - uid: 11418 + - uid: 7179 components: - type: Transform - pos: 41.5,-31.5 + pos: 10.5,-33.5 parent: 2 - - uid: 11833 + - uid: 7202 components: - type: Transform - pos: 1.5,-20.5 + pos: 23.5,-13.5 parent: 2 - - uid: 12064 + - uid: 7204 components: - type: Transform - pos: 59.5,-3.5 + pos: 16.5,-13.5 parent: 2 - - uid: 12137 + - uid: 7206 components: - type: Transform - pos: -16.5,-12.5 + pos: -24.5,20.5 parent: 2 - - uid: 12138 + - uid: 7223 components: - type: Transform - pos: -16.5,-13.5 + pos: 14.5,-13.5 parent: 2 - - uid: 12205 + - uid: 7325 components: - type: Transform - pos: -9.5,-22.5 + pos: 15.5,-13.5 parent: 2 - - uid: 12313 + - uid: 7392 components: - type: Transform - pos: -0.5,11.5 + pos: 20.5,-13.5 parent: 2 - - uid: 12314 + - uid: 7500 components: - type: Transform - pos: 5.5,11.5 + pos: 4.5,-42.5 parent: 2 - - uid: 12326 + - uid: 7530 components: - type: Transform - pos: 0.5,11.5 + pos: -23.5,20.5 parent: 2 - - uid: 12327 + - uid: 7562 components: - type: Transform - pos: 12.5,11.5 + pos: -12.5,-55.5 parent: 2 - - uid: 12332 + - uid: 7595 components: - type: Transform - pos: 2.5,11.5 + pos: -15.5,0.5 parent: 2 - - uid: 12333 + - uid: 7604 components: - type: Transform - pos: 4.5,11.5 + pos: 4.5,-41.5 parent: 2 - - uid: 12440 + - uid: 7695 components: - type: Transform - pos: -8.5,-19.5 + pos: 22.5,7.5 parent: 2 - - uid: 12448 + - uid: 7728 components: - type: Transform - pos: 32.5,0.5 + pos: 18.5,-13.5 parent: 2 - - uid: 12669 + - uid: 7732 components: - type: Transform - pos: -23.5,-24.5 + pos: -47.5,16.5 parent: 2 - - uid: 12715 + - uid: 7734 components: - type: Transform - pos: -23.5,-26.5 + pos: 17.5,-13.5 parent: 2 - - uid: 12893 + - uid: 7745 components: - type: Transform - pos: -16.5,-11.5 + pos: -48.5,18.5 parent: 2 - - uid: 12894 + - uid: 7746 components: - type: Transform - pos: -16.5,-10.5 + pos: -48.5,16.5 parent: 2 - - uid: 12895 + - uid: 7763 components: - type: Transform - pos: -16.5,-9.5 + pos: -4.5,11.5 parent: 2 - - uid: 12896 + - uid: 7782 components: - type: Transform - pos: -16.5,-8.5 + pos: -8.5,11.5 parent: 2 - - uid: 12897 + - uid: 7789 components: - type: Transform - pos: -16.5,-7.5 + pos: 4.5,-47.5 parent: 2 - - uid: 12985 + - uid: 7804 components: - type: Transform - pos: -18.5,17.5 + pos: -2.5,11.5 parent: 2 - - uid: 12997 + - uid: 7984 components: - type: Transform - pos: 6.5,11.5 + pos: -46.5,16.5 parent: 2 - - uid: 13009 + - uid: 8034 components: - type: Transform - pos: 10.5,11.5 + pos: -15.5,2.5 parent: 2 - - uid: 13092 + - uid: 8048 components: - type: Transform - pos: -18.5,15.5 + pos: -47.5,28.5 parent: 2 - - uid: 13160 + - uid: 8121 components: - type: Transform - pos: 17.5,10.5 + pos: -6.5,11.5 parent: 2 - - uid: 13170 + - uid: 8134 components: - type: Transform - pos: -27.5,-18.5 + pos: -7.5,11.5 parent: 2 - - uid: 13173 + - uid: 8213 components: - type: Transform - pos: -3.5,11.5 + pos: 9.5,11.5 parent: 2 - - uid: 13345 + - uid: 8221 components: - type: Transform - pos: -16.5,-17.5 + pos: -2.5,-21.5 parent: 2 - - uid: 13350 + - uid: 8311 components: - type: Transform - pos: 18.5,10.5 + pos: -44.5,18.5 parent: 2 - - uid: 13621 + - uid: 8330 components: - type: Transform - pos: 19.5,10.5 + pos: -53.5,25.5 parent: 2 - - uid: 14249 + - uid: 8334 components: - type: Transform - pos: 13.5,11.5 + pos: -52.5,11.5 parent: 2 - - uid: 14250 + - uid: 8352 components: - type: Transform - pos: 15.5,11.5 + pos: -49.5,27.5 parent: 2 - - uid: 14251 + - uid: 8366 components: - type: Transform - pos: 14.5,11.5 + pos: -17.5,20.5 parent: 2 - - uid: 14252 + - uid: 8397 components: - type: Transform - pos: 11.5,11.5 + pos: -45.5,18.5 parent: 2 - - uid: 14254 + - uid: 8423 components: - type: Transform - pos: -12.5,22.5 + pos: -46.5,18.5 parent: 2 - - uid: 14264 + - uid: 8424 components: - type: Transform - pos: 59.5,-1.5 + pos: -47.5,18.5 parent: 2 - - uid: 14285 + - uid: 8433 components: - type: Transform - pos: -11.5,22.5 + pos: 67.5,8.5 parent: 2 - - uid: 14398 + - uid: 8434 components: - type: Transform - pos: 17.5,-12.5 + pos: 65.5,4.5 parent: 2 - - uid: 14435 + - uid: 8447 components: - type: Transform - pos: -23.5,-23.5 + pos: 59.5,8.5 parent: 2 - - uid: 14534 + - uid: 8458 components: - type: Transform - pos: -23.5,-25.5 + pos: 67.5,4.5 parent: 2 - - uid: 15379 + - uid: 8459 components: - type: Transform - pos: -23.5,-20.5 + pos: 67.5,7.5 parent: 2 - - uid: 15387 + - uid: 8460 components: - type: Transform - pos: -23.5,-21.5 + pos: 65.5,8.5 parent: 2 - - uid: 15477 + - uid: 8474 components: - type: Transform - pos: 9.5,-15.5 + pos: -19.5,14.5 parent: 2 - - uid: 15659 + - uid: 8475 components: - type: Transform - pos: -32.5,-48.5 + pos: 0.5,-22.5 parent: 2 - - uid: 15705 + - uid: 8504 components: - type: Transform - pos: -62.5,-49.5 + pos: 67.5,5.5 parent: 2 - - uid: 15713 + - uid: 8509 components: - type: Transform - pos: -64.5,-48.5 + pos: 63.5,4.5 parent: 2 - - uid: 15714 + - uid: 8523 components: - type: Transform - pos: -62.5,-51.5 + pos: -4.5,-12.5 parent: 2 - - uid: 15767 + - uid: 8548 components: - type: Transform - pos: -62.5,-52.5 + pos: 42.5,14.5 parent: 2 - - uid: 15785 + - uid: 8632 components: - type: Transform - pos: -64.5,-49.5 + pos: 36.5,7.5 parent: 2 - - uid: 15786 + - uid: 8640 components: - type: Transform - pos: -62.5,-50.5 + pos: 36.5,6.5 parent: 2 - - uid: 15789 + - uid: 8678 components: - type: Transform - pos: -58.5,-56.5 + pos: 36.5,11.5 parent: 2 - - uid: 15795 + - uid: 8686 components: - type: Transform - pos: -67.5,-52.5 + pos: 31.5,7.5 parent: 2 - - uid: 15796 + - uid: 8691 components: - type: Transform - pos: -63.5,-56.5 + pos: 29.5,7.5 parent: 2 - - uid: 15797 + - uid: 8692 components: - type: Transform - pos: -67.5,-56.5 + pos: 30.5,7.5 parent: 2 - - uid: 15798 + - uid: 8709 components: - type: Transform - pos: -59.5,-52.5 + pos: -18.5,16.5 parent: 2 - - uid: 15801 + - uid: 8712 components: - type: Transform - pos: -58.5,-58.5 + pos: 36.5,12.5 parent: 2 - - uid: 15802 + - uid: 8781 components: - type: Transform - pos: -63.5,-52.5 + pos: 46.5,3.5 parent: 2 - - uid: 15806 + - uid: 8798 components: - type: Transform - pos: -60.5,-57.5 + pos: 67.5,6.5 parent: 2 - - uid: 15807 + - uid: 8799 components: - type: Transform - pos: -60.5,-58.5 + pos: 61.5,6.5 parent: 2 - - uid: 15808 + - uid: 8800 components: - type: Transform - pos: -58.5,-57.5 + pos: 65.5,5.5 parent: 2 - - uid: 15809 + - uid: 8801 components: - type: Transform - pos: -59.5,-56.5 + pos: 63.5,5.5 parent: 2 - - uid: 15813 + - uid: 8805 components: - type: Transform - pos: -16.5,-19.5 + pos: 61.5,8.5 parent: 2 - - uid: 15814 + - uid: 8806 components: - type: Transform - pos: -16.5,-18.5 + pos: 63.5,6.5 parent: 2 - - uid: 15816 + - uid: 8807 components: - type: Transform - pos: -19.5,-19.5 + pos: 63.5,7.5 parent: 2 - - uid: 15817 + - uid: 8808 components: - type: Transform - pos: -20.5,-19.5 + pos: 59.5,5.5 parent: 2 - - uid: 15818 + - uid: 8809 components: - type: Transform - pos: -18.5,-19.5 + pos: 61.5,4.5 parent: 2 - - uid: 15820 + - uid: 8810 components: - type: Transform - pos: -17.5,-19.5 + pos: 59.5,4.5 parent: 2 - - uid: 15821 + - uid: 8811 components: - type: Transform - pos: -16.5,-15.5 + pos: 57.5,8.5 parent: 2 - - uid: 15822 + - uid: 8812 components: - type: Transform - pos: -16.5,-16.5 + pos: 57.5,5.5 parent: 2 - - uid: 15826 + - uid: 8813 components: - type: Transform - pos: 17.5,-11.5 + pos: 58.5,4.5 parent: 2 - - uid: 15827 + - uid: 8814 components: - type: Transform - pos: 16.5,-18.5 + pos: 62.5,4.5 parent: 2 - - uid: 15831 + - uid: 8815 components: - type: Transform - pos: 16.5,-16.5 + pos: 66.5,4.5 parent: 2 - - uid: 15833 + - uid: 8816 components: - type: Transform - pos: 18.5,-10.5 + pos: 70.5,4.5 parent: 2 - - uid: 15850 + - uid: 8817 components: - type: Transform - pos: 10.5,-15.5 + pos: 70.5,0.5 parent: 2 - - uid: 15862 + - uid: 8818 components: - type: Transform - pos: 20.5,-15.5 + pos: 57.5,7.5 parent: 2 - - uid: 15869 + - uid: 8819 components: - type: Transform - pos: 18.5,-15.5 + pos: 57.5,6.5 parent: 2 - - uid: 15876 + - uid: 8820 components: - type: Transform - pos: 19.5,-15.5 + pos: 66.5,0.5 parent: 2 - - uid: 15943 + - uid: 8821 components: - type: Transform - pos: -63.5,-8.5 + pos: 62.5,0.5 parent: 2 - - uid: 16011 + - uid: 8822 components: - type: Transform - pos: 17.5,-15.5 + pos: 58.5,0.5 parent: 2 - - uid: 16137 + - uid: 8823 components: - type: Transform - pos: 15.5,-15.5 + pos: 52.5,2.5 parent: 2 - - uid: 16233 + - uid: 8824 components: - type: Transform - pos: 11.5,-15.5 + pos: 61.5,5.5 parent: 2 - - uid: 16269 + - uid: 8825 components: - type: Transform - pos: -62.5,-8.5 + pos: 73.5,2.5 parent: 2 - - uid: 16270 + - uid: 8826 components: - type: Transform - pos: -62.5,-10.5 + pos: 72.5,2.5 parent: 2 - - uid: 16272 + - uid: 8830 components: - type: Transform - pos: -61.5,-8.5 + pos: 71.5,2.5 parent: 2 - - uid: 16274 + - uid: 8841 components: - type: Transform - pos: -62.5,-10.5 + pos: 45.5,3.5 parent: 2 - - uid: 16277 + - uid: 8842 components: - type: Transform - pos: -62.5,-9.5 + pos: 44.5,3.5 parent: 2 - - uid: 16278 + - uid: 8843 components: - type: Transform - pos: -62.5,-11.5 + pos: 44.5,2.5 parent: 2 - - uid: 16279 + - uid: 8844 components: - type: Transform - pos: -62.5,-12.5 + pos: 43.5,2.5 parent: 2 - - uid: 16280 + - uid: 8845 components: - type: Transform - pos: -61.5,-12.5 + pos: 42.5,2.5 parent: 2 - - uid: 16281 + - uid: 8846 components: - type: Transform - pos: -60.5,-12.5 + pos: 41.5,2.5 parent: 2 - - uid: 16282 + - uid: 8847 components: - type: Transform - pos: -59.5,-12.5 + pos: 41.5,3.5 parent: 2 - - uid: 16283 + - uid: 8848 components: - type: Transform - pos: -58.5,-12.5 + pos: 41.5,4.5 parent: 2 - - uid: 16284 + - uid: 8849 components: - type: Transform - pos: -57.5,-12.5 + pos: 41.5,5.5 parent: 2 - - uid: 16285 + - uid: 8860 components: - type: Transform - pos: -56.5,-12.5 + pos: 36.5,9.5 parent: 2 - - uid: 16286 + - uid: 8883 components: - type: Transform - pos: -55.5,-12.5 + pos: -15.5,3.5 parent: 2 - - uid: 16287 + - uid: 8914 components: - type: Transform - pos: -54.5,-12.5 + pos: 47.5,2.5 parent: 2 - - uid: 16288 + - uid: 8915 components: - type: Transform - pos: -53.5,-12.5 + pos: 48.5,2.5 parent: 2 - - uid: 16289 + - uid: 8916 components: - type: Transform - pos: -51.5,-12.5 + pos: 49.5,2.5 parent: 2 - - uid: 16290 + - uid: 8917 components: - type: Transform - pos: -50.5,-12.5 + pos: 50.5,2.5 parent: 2 - - uid: 16291 + - uid: 8918 components: - type: Transform - pos: -49.5,-12.5 + pos: 51.5,2.5 parent: 2 - - uid: 16292 + - uid: 8920 components: - type: Transform - pos: -48.5,-12.5 + pos: 59.5,6.5 parent: 2 - - uid: 16293 + - uid: 8921 components: - type: Transform - pos: -47.5,-12.5 + pos: 59.5,7.5 parent: 2 - - uid: 16294 + - uid: 8930 components: - type: Transform - pos: -46.5,-12.5 + pos: -47.5,29.5 parent: 2 - - uid: 16295 + - uid: 8933 components: - type: Transform - pos: -45.5,-12.5 + pos: 65.5,6.5 parent: 2 - - uid: 16296 + - uid: 8939 components: - type: Transform - pos: -44.5,-12.5 + pos: 63.5,8.5 parent: 2 - - uid: 16297 + - uid: 8940 components: - type: Transform - pos: -52.5,-12.5 + pos: 61.5,7.5 parent: 2 - - uid: 16298 + - uid: 8948 components: - type: Transform - pos: -43.5,-12.5 + pos: -54.5,12.5 parent: 2 - - uid: 16299 + - uid: 8951 components: - type: Transform - pos: -42.5,-12.5 + pos: -31.5,24.5 parent: 2 - - uid: 16300 + - uid: 8957 components: - type: Transform - pos: -40.5,-12.5 + pos: -31.5,23.5 parent: 2 - - uid: 16301 + - uid: 8958 components: - type: Transform - pos: -39.5,-12.5 + pos: -32.5,23.5 parent: 2 - - uid: 16302 + - uid: 8964 components: - type: Transform - pos: -38.5,-12.5 + pos: 3.5,-41.5 parent: 2 - - uid: 16303 + - uid: 8967 components: - type: Transform - pos: -41.5,-12.5 + pos: -1.5,11.5 parent: 2 - - uid: 16304 + - uid: 8974 components: - type: Transform - pos: -38.5,-13.5 + pos: 71.5,-1.5 parent: 2 - - uid: 16305 + - uid: 8975 components: - type: Transform - pos: -38.5,-14.5 + pos: 3.5,11.5 parent: 2 - - uid: 16306 + - uid: 8976 components: - type: Transform - pos: -38.5,-15.5 + pos: 71.5,-2.5 parent: 2 - - uid: 16307 + - uid: 8977 components: - type: Transform - pos: -38.5,-16.5 + pos: 71.5,-3.5 parent: 2 - - uid: 16308 + - uid: 8978 components: - type: Transform - pos: -37.5,-16.5 + pos: 69.5,-3.5 parent: 2 - - uid: 16309 + - uid: 8979 components: - type: Transform - pos: -36.5,-16.5 + pos: 69.5,-1.5 parent: 2 - - uid: 16310 + - uid: 8985 components: - type: Transform - pos: -35.5,-16.5 + pos: 69.5,-2.5 parent: 2 - - uid: 16311 + - uid: 8986 components: - type: Transform - pos: -34.5,-16.5 + pos: 71.5,4.5 parent: 2 - - uid: 16312 + - uid: 8987 components: - type: Transform - pos: -33.5,-16.5 + pos: 71.5,5.5 parent: 2 - - uid: 16313 + - uid: 8988 components: - type: Transform - pos: -31.5,-16.5 + pos: 71.5,6.5 parent: 2 - - uid: 16314 + - uid: 8989 components: - type: Transform - pos: -30.5,-16.5 + pos: 71.5,7.5 parent: 2 - - uid: 16315 + - uid: 8991 components: - type: Transform - pos: -29.5,-16.5 + pos: 71.5,8.5 parent: 2 - - uid: 16316 + - uid: 8996 components: - type: Transform - pos: -28.5,-16.5 + pos: 1.5,11.5 parent: 2 - - uid: 16317 + - uid: 9007 components: - type: Transform - pos: -27.5,-16.5 + pos: -5.5,11.5 parent: 2 - - uid: 16318 + - uid: 9009 components: - type: Transform - pos: -26.5,-16.5 + pos: 8.5,11.5 parent: 2 - - uid: 16319 + - uid: 9020 components: - type: Transform - pos: -25.5,-16.5 + pos: 69.5,-3.5 parent: 2 - - uid: 16322 + - uid: 9021 components: - type: Transform - pos: -32.5,-16.5 + pos: 69.5,0.5 parent: 2 - - uid: 16323 + - uid: 9022 components: - type: Transform - pos: -23.5,-15.5 + pos: 71.5,0.5 parent: 2 - - uid: 16324 + - uid: 9023 components: - type: Transform - pos: -22.5,-15.5 + pos: 71.5,-0.5 parent: 2 - - uid: 16325 + - uid: 9024 components: - type: Transform - pos: -21.5,-15.5 + pos: 61.5,-1.5 parent: 2 - - uid: 16326 + - uid: 9025 components: - type: Transform - pos: -20.5,-15.5 + pos: 61.5,-0.5 parent: 2 - - uid: 16327 + - uid: 9026 components: - type: Transform - pos: -20.5,-14.5 + pos: 61.5,0.5 parent: 2 - - uid: 16328 + - uid: 9027 components: - type: Transform - pos: -19.5,-14.5 + pos: 63.5,0.5 parent: 2 - - uid: 16329 + - uid: 9028 components: - type: Transform - pos: -25.5,-15.5 + pos: 63.5,-0.5 parent: 2 - - uid: 16330 + - uid: 9029 components: - type: Transform - pos: -24.5,-15.5 + pos: 63.5,-1.5 parent: 2 - - uid: 16637 + - uid: 9030 components: - type: Transform - pos: -18.5,-14.5 + pos: 63.5,-2.5 parent: 2 - - uid: 16638 + - uid: 9032 components: - type: Transform - pos: -17.5,-14.5 + pos: 63.5,-3.5 parent: 2 - - uid: 16639 + - uid: 9065 components: - type: Transform - pos: -16.5,-14.5 + pos: 65.5,-3.5 parent: 2 - - uid: 17287 + - uid: 9071 components: - type: Transform - pos: 25.5,-2.5 + pos: 65.5,-2.5 parent: 2 - - uid: 17297 + - uid: 9072 components: - type: Transform - pos: 59.5,-2.5 + pos: 65.5,-1.5 parent: 2 - - uid: 17301 + - uid: 9107 components: - type: Transform - pos: 59.5,0.5 + pos: 65.5,-0.5 parent: 2 - - uid: 17747 + - uid: 9121 components: - type: Transform - pos: 34.5,-36.5 + pos: 36.5,8.5 parent: 2 - - uid: 17748 + - uid: 9162 components: - type: Transform - pos: 34.5,-35.5 + pos: 24.5,-43.5 parent: 2 - - uid: 17749 + - uid: 9163 components: - type: Transform - pos: 34.5,-34.5 + pos: 24.5,-44.5 parent: 2 - - uid: 17759 + - uid: 9164 components: - type: Transform - pos: 57.5,4.5 + pos: 24.5,-45.5 parent: 2 - - uid: 17764 + - uid: 9165 components: - type: Transform - pos: -45.5,26.5 + pos: 24.5,-46.5 parent: 2 - - uid: 17767 + - uid: 9166 components: - type: Transform - pos: -52.5,19.5 + pos: 24.5,-47.5 parent: 2 - - uid: 17768 + - uid: 9167 components: - type: Transform - pos: -55.5,10.5 + pos: 24.5,-48.5 parent: 2 - - uid: 17769 + - uid: 9168 components: - type: Transform - pos: -48.5,19.5 + pos: 24.5,-49.5 parent: 2 - - uid: 17770 + - uid: 9169 components: - type: Transform - pos: -56.5,10.5 + pos: 24.5,-50.5 parent: 2 - - uid: 17805 + - uid: 9170 components: - type: Transform - pos: 65.5,0.5 + pos: 24.5,-51.5 parent: 2 - - uid: 17830 + - uid: 9171 components: - type: Transform - pos: 69.5,6.5 + pos: 25.5,-51.5 parent: 2 - - uid: 17832 + - uid: 9172 components: - type: Transform - pos: 69.5,8.5 + pos: 26.5,-51.5 parent: 2 - - uid: 17836 + - uid: 9173 components: - type: Transform - pos: 34.5,-33.5 + pos: 27.5,-51.5 parent: 2 - - uid: 17838 + - uid: 9174 components: - type: Transform - pos: 34.5,-32.5 + pos: 27.5,-50.5 parent: 2 - - uid: 17839 + - uid: 9175 components: - type: Transform - pos: 69.5,4.5 + pos: 28.5,-50.5 parent: 2 - - uid: 17841 + - uid: 9189 components: - type: Transform - pos: 69.5,7.5 + pos: 9.5,-48.5 parent: 2 - - uid: 17871 + - uid: 9190 components: - type: Transform - pos: 34.5,-31.5 + pos: 10.5,-47.5 parent: 2 - - uid: 17884 + - uid: 9191 components: - type: Transform - pos: 35.5,-31.5 + pos: 10.5,-48.5 parent: 2 - - uid: 17902 + - uid: 9192 components: - type: Transform - pos: -30.5,20.5 + pos: 10.5,-46.5 parent: 2 - - uid: 17920 + - uid: 9193 components: - type: Transform - pos: -48.5,10.5 + pos: 10.5,-45.5 parent: 2 - - uid: 17931 + - uid: 9195 components: - type: Transform - pos: -53.5,12.5 + pos: 10.5,-44.5 parent: 2 - - uid: 17932 + - uid: 9196 components: - type: Transform - pos: -54.5,10.5 + pos: 7.5,-48.5 parent: 2 - - uid: 17933 + - uid: 9197 components: - type: Transform - pos: -46.5,10.5 + pos: 6.5,-48.5 parent: 2 - - uid: 17937 + - uid: 9198 components: - type: Transform - pos: 67.5,0.5 + pos: 8.5,-48.5 parent: 2 - - uid: 17938 + - uid: 9199 components: - type: Transform - pos: 67.5,-0.5 + pos: 5.5,-48.5 parent: 2 - - uid: 17944 + - uid: 9200 components: - type: Transform - pos: 67.5,-1.5 + pos: 4.5,-48.5 parent: 2 - - uid: 17945 + - uid: 9201 components: - type: Transform - pos: 67.5,-2.5 + pos: 3.5,-48.5 parent: 2 - - uid: 17947 + - uid: 9216 components: - type: Transform - pos: 67.5,-3.5 + pos: -24.5,-41.5 parent: 2 - - uid: 17978 + - uid: 9217 components: - type: Transform - pos: -28.5,23.5 + pos: -23.5,-41.5 parent: 2 - - uid: 17981 + - uid: 9218 components: - type: Transform - pos: -28.5,22.5 + pos: -22.5,-41.5 parent: 2 - - uid: 18128 + - uid: 9219 components: - type: Transform - pos: 69.5,-0.5 + pos: -21.5,-41.5 parent: 2 - - uid: 18129 + - uid: 9220 components: - type: Transform - pos: 69.5,5.5 + pos: -20.5,-41.5 parent: 2 - - uid: 18154 + - uid: 9221 components: - type: Transform - pos: 59.5,-0.5 + pos: -19.5,-41.5 parent: 2 - - uid: 18155 + - uid: 9222 components: - type: Transform - pos: 57.5,-0.5 + pos: -18.5,-41.5 parent: 2 - - uid: 18159 + - uid: 9223 components: - type: Transform - pos: -33.5,23.5 + pos: -17.5,-41.5 parent: 2 - - uid: 18213 + - uid: 9224 components: - type: Transform - pos: -45.5,20.5 + pos: -16.5,-41.5 parent: 2 - - uid: 18214 + - uid: 9225 components: - type: Transform - pos: -47.5,20.5 + pos: -14.5,-41.5 parent: 2 - - uid: 18215 + - uid: 9226 components: - type: Transform - pos: -53.5,28.5 + pos: -13.5,-41.5 parent: 2 - - uid: 18216 + - uid: 9227 components: - type: Transform - pos: -53.5,29.5 + pos: -12.5,-41.5 parent: 2 - - uid: 18217 + - uid: 9228 components: - type: Transform - pos: -44.5,20.5 + pos: -11.5,-41.5 parent: 2 - - uid: 18218 + - uid: 9229 components: - type: Transform - pos: -48.5,20.5 + pos: -10.5,-41.5 parent: 2 - - uid: 18219 + - uid: 9230 components: - type: Transform - pos: -52.5,20.5 + pos: -9.5,-41.5 parent: 2 - - uid: 18225 + - uid: 9231 components: - type: Transform - pos: -52.5,15.5 + pos: -8.5,-41.5 parent: 2 - - uid: 18226 + - uid: 9232 components: - type: Transform - pos: -46.5,20.5 + pos: -15.5,-41.5 parent: 2 - - uid: 18237 + - uid: 9234 components: - type: Transform - pos: -53.5,27.5 + pos: -8.5,-43.5 parent: 2 - - uid: 18240 + - uid: 9235 components: - type: Transform - pos: -52.5,18.5 + pos: -8.5,-44.5 parent: 2 - - uid: 18242 + - uid: 9236 components: - type: Transform - pos: -53.5,26.5 + pos: -8.5,-45.5 parent: 2 - - uid: 18350 + - uid: 9237 components: - type: Transform - pos: -30.5,24.5 + pos: -8.5,-46.5 parent: 2 - - uid: 18352 + - uid: 9238 components: - type: Transform - pos: -29.5,22.5 + pos: -8.5,-47.5 parent: 2 - - uid: 18362 + - uid: 9239 components: - type: Transform - pos: -56.5,12.5 + pos: 1.5,-48.5 parent: 2 - - uid: 18365 + - uid: 9240 components: - type: Transform - pos: -29.5,24.5 + pos: 0.5,-48.5 parent: 2 - - uid: 18377 + - uid: 9241 components: - type: Transform - pos: -55.5,12.5 + pos: -0.5,-48.5 parent: 2 - - uid: 18381 + - uid: 9242 components: - type: Transform - pos: -29.5,23.5 + pos: -1.5,-48.5 parent: 2 - - uid: 18597 + - uid: 9243 components: - type: Transform - pos: 61.5,-3.5 + pos: -2.5,-48.5 parent: 2 - - uid: 18598 + - uid: 9244 components: - type: Transform - pos: 57.5,-1.5 + pos: -4.5,-48.5 parent: 2 - - uid: 18599 + - uid: 9245 components: - type: Transform - pos: 57.5,-3.5 + pos: -5.5,-48.5 parent: 2 - - uid: 18602 + - uid: 9246 components: - type: Transform - pos: 57.5,0.5 + pos: -6.5,-48.5 parent: 2 - - uid: 18607 + - uid: 9247 components: - type: Transform - pos: 61.5,-2.5 + pos: -7.5,-48.5 parent: 2 - - uid: 18608 + - uid: 9248 components: - type: Transform - pos: 57.5,-2.5 + pos: -3.5,-48.5 parent: 2 - - uid: 18904 + - uid: 9249 components: - type: Transform - pos: -15.5,-0.5 + pos: -8.5,-48.5 parent: 2 - - uid: 18905 + - uid: 9351 components: - type: Transform - pos: -15.5,-1.5 + pos: 7.5,-17.5 parent: 2 - - uid: 18935 + - uid: 9354 components: - type: Transform - pos: -1.5,-8.5 + pos: -50.5,-11.5 parent: 2 - - uid: 18936 + - uid: 9496 components: - type: Transform - pos: -0.5,-8.5 + pos: 12.5,-33.5 parent: 2 - - uid: 18937 + - uid: 9514 components: - type: Transform - pos: 0.5,-8.5 + pos: 16.5,-33.5 parent: 2 - - uid: 18938 + - uid: 9516 components: - type: Transform - pos: -3.5,-11.5 + pos: 15.5,-33.5 parent: 2 - - uid: 18939 + - uid: 9519 components: - type: Transform - pos: -1.5,-11.5 + pos: 24.5,-37.5 parent: 2 - - uid: 18940 + - uid: 9521 components: - type: Transform - pos: -0.5,-11.5 + pos: 25.5,12.5 parent: 2 - - uid: 18941 + - uid: 9615 components: - type: Transform - pos: -2.5,-11.5 + pos: 31.5,-11.5 parent: 2 - - uid: 19162 + - uid: 9622 components: - type: Transform - pos: -31.5,-48.5 + pos: 7.5,-25.5 parent: 2 - - uid: 19884 + - uid: 9644 components: - type: Transform - pos: -32.5,-50.5 + pos: 31.5,-8.5 parent: 2 - - uid: 20004 + - uid: 9657 components: - type: Transform - pos: 25.5,-1.5 + pos: -8.5,-23.5 parent: 2 - - uid: 20765 + - uid: 9665 components: - type: Transform - pos: -16.5,-55.5 + pos: 28.5,-10.5 parent: 2 -- proto: CableHVStack - entities: - - uid: 3012 + - uid: 9736 components: - type: Transform - pos: -6.6450443,-14.737694 + pos: -15.5,-56.5 parent: 2 - - uid: 3391 + - uid: 9737 components: - type: Transform - pos: -16.573278,-25.136585 + pos: -15.5,-55.5 parent: 2 - - uid: 10653 + - uid: 9738 components: - type: Transform - pos: -31.632442,-59.28418 + pos: -15.5,-54.5 parent: 2 - - uid: 10756 + - uid: 9740 components: - type: Transform - pos: -55.592247,-13.290644 + pos: -14.5,-54.5 parent: 2 - - uid: 17986 + - uid: 9741 components: - type: Transform - pos: 12.482157,-19.503796 + pos: -13.5,-54.5 parent: 2 - - uid: 18184 + - uid: 9742 components: - type: Transform - pos: -29.499138,22.607857 + pos: -12.5,-54.5 parent: 2 -- proto: CableMV - entities: - - uid: 8 + - uid: 9762 components: - type: Transform - pos: -3.5,-22.5 + pos: -15.5,-57.5 parent: 2 - - uid: 10 + - uid: 9763 components: - type: Transform - pos: -5.5,-22.5 + pos: -15.5,-58.5 parent: 2 - - uid: 33 + - uid: 9764 components: - type: Transform - pos: -22.5,22.5 + pos: -16.5,-58.5 parent: 2 - - uid: 54 + - uid: 9765 components: - type: Transform - pos: 41.5,-1.5 + pos: -17.5,-58.5 parent: 2 - - uid: 64 + - uid: 9766 components: - type: Transform - pos: -28.5,6.5 + pos: -18.5,-58.5 parent: 2 - - uid: 77 + - uid: 9767 components: - type: Transform - pos: -19.5,28.5 + pos: -19.5,-58.5 parent: 2 - - uid: 78 + - uid: 9768 components: - type: Transform - pos: -19.5,27.5 + pos: -19.5,-57.5 parent: 2 - - uid: 95 + - uid: 9939 components: - type: Transform - pos: -20.5,-51.5 + pos: 22.5,10.5 parent: 2 - - uid: 172 + - uid: 10068 components: - type: Transform - pos: -25.5,11.5 + pos: 36.5,14.5 parent: 2 - - uid: 174 + - uid: 10070 components: - type: Transform - pos: -13.5,-53.5 + pos: 24.5,-35.5 parent: 2 - - uid: 191 + - uid: 10079 components: - type: Transform - pos: -13.5,19.5 + pos: 39.5,14.5 parent: 2 - - uid: 193 + - uid: 10093 components: - type: Transform - pos: -1.5,25.5 + pos: 32.5,6.5 parent: 2 - - uid: 198 + - uid: 10110 components: - type: Transform - pos: 6.5,-18.5 + pos: -25.5,-41.5 parent: 2 - - uid: 204 + - uid: 10168 components: - type: Transform - pos: -0.5,25.5 + pos: 31.5,-3.5 parent: 2 - - uid: 217 + - uid: 10176 components: - type: Transform - pos: -30.5,-54.5 + pos: 15.5,10.5 parent: 2 - - uid: 239 + - uid: 10177 components: - type: Transform - pos: 2.5,25.5 + pos: 16.5,10.5 parent: 2 - - uid: 242 + - uid: 10181 components: - type: Transform - pos: 3.5,25.5 + pos: 20.5,10.5 parent: 2 - - uid: 261 + - uid: 10185 components: - type: Transform - pos: 4.5,20.5 + pos: 12.5,-17.5 parent: 2 - - uid: 264 + - uid: 10186 components: - type: Transform - pos: 5.5,25.5 + pos: 27.5,-18.5 parent: 2 - - uid: 269 + - uid: 10204 components: - type: Transform - pos: -19.5,14.5 + pos: 28.5,-18.5 parent: 2 - - uid: 274 + - uid: 10205 components: - type: Transform - pos: -3.5,24.5 + pos: 29.5,-18.5 parent: 2 - - uid: 278 + - uid: 10213 components: - type: Transform - pos: -5.5,24.5 + pos: -1.5,-9.5 parent: 2 - - uid: 282 + - uid: 10217 components: - type: Transform - pos: -4.5,24.5 + pos: -2.5,-9.5 parent: 2 - - uid: 289 + - uid: 10220 components: - type: Transform - pos: -44.5,-38.5 + pos: 13.5,-17.5 parent: 2 - - uid: 316 + - uid: 10222 components: - type: Transform - pos: -11.5,24.5 + pos: 30.5,-18.5 parent: 2 - - uid: 321 + - uid: 10223 components: - type: Transform - pos: -11.5,23.5 + pos: 26.5,-18.5 parent: 2 - - uid: 335 + - uid: 10253 components: - type: Transform - pos: -25.5,12.5 + pos: -23.5,-22.5 parent: 2 - - uid: 343 + - uid: 10260 components: - type: Transform - pos: 31.5,-9.5 + pos: 7.5,-21.5 parent: 2 - - uid: 348 + - uid: 10264 components: - type: Transform - pos: -12.5,-53.5 + pos: -0.5,-27.5 parent: 2 - - uid: 355 + - uid: 10265 components: - type: Transform - pos: 6.5,25.5 + pos: 7.5,-24.5 parent: 2 - - uid: 359 + - uid: 10266 components: - type: Transform - pos: 7.5,25.5 + pos: 3.5,-25.5 parent: 2 - - uid: 363 + - uid: 10267 components: - type: Transform - pos: 31.5,-11.5 + pos: 23.5,-20.5 parent: 2 - - uid: 403 + - uid: 10268 components: - type: Transform - pos: 31.5,-10.5 + pos: 30.5,-21.5 parent: 2 - - uid: 419 + - uid: 10269 components: - type: Transform - pos: -44.5,-36.5 + pos: 29.5,-21.5 parent: 2 - - uid: 426 + - uid: 10270 components: - type: Transform - pos: -28.5,0.5 + pos: 28.5,-21.5 parent: 2 - - uid: 428 + - uid: 10271 components: - type: Transform - pos: -24.5,11.5 + pos: 27.5,-21.5 parent: 2 - - uid: 458 + - uid: 10272 components: - type: Transform - pos: -0.5,11.5 + pos: 26.5,-21.5 parent: 2 - - uid: 488 + - uid: 10273 components: - type: Transform - pos: -7.5,-17.5 + pos: 24.5,-21.5 parent: 2 - - uid: 508 + - uid: 10274 components: - type: Transform - pos: -8.5,22.5 + pos: 23.5,-21.5 parent: 2 - - uid: 514 + - uid: 10275 components: - type: Transform - pos: -7.5,22.5 + pos: 22.5,-21.5 parent: 2 - - uid: 516 + - uid: 10276 components: - type: Transform - pos: -6.5,22.5 + pos: 21.5,-21.5 parent: 2 - - uid: 517 + - uid: 10277 components: - type: Transform - pos: -11.5,22.5 + pos: 20.5,-21.5 parent: 2 - - uid: 518 + - uid: 10278 components: - type: Transform - pos: -10.5,22.5 + pos: 19.5,-21.5 parent: 2 - - uid: 519 + - uid: 10279 components: - type: Transform - pos: -9.5,22.5 + pos: 18.5,-21.5 parent: 2 - - uid: 523 + - uid: 10280 components: - type: Transform - pos: 8.5,16.5 + pos: 17.5,-21.5 parent: 2 - - uid: 524 + - uid: 10281 components: - type: Transform - pos: 8.5,15.5 + pos: 16.5,-21.5 parent: 2 - - uid: 529 + - uid: 10282 components: - type: Transform - pos: -0.5,26.5 + pos: 15.5,-21.5 parent: 2 - - uid: 533 + - uid: 10283 components: - type: Transform - pos: 7.5,17.5 + pos: 14.5,-21.5 parent: 2 - - uid: 535 + - uid: 10284 components: - type: Transform - pos: 8.5,17.5 + pos: 25.5,-21.5 parent: 2 - - uid: 537 + - uid: 10285 components: - type: Transform - pos: 6.5,17.5 + pos: 12.5,-21.5 parent: 2 - - uid: 543 + - uid: 10286 components: - type: Transform - pos: -0.5,27.5 + pos: 11.5,-21.5 parent: 2 - - uid: 551 + - uid: 10287 components: - type: Transform - pos: -27.5,14.5 + pos: 13.5,-21.5 parent: 2 - - uid: 552 + - uid: 10288 components: - type: Transform - pos: -26.5,14.5 + pos: 9.5,-21.5 parent: 2 - - uid: 563 + - uid: 10289 components: - type: Transform - pos: 31.5,-8.5 + pos: 8.5,-21.5 parent: 2 - - uid: 584 + - uid: 10290 components: - type: Transform - pos: 10.5,25.5 + pos: 10.5,-21.5 parent: 2 - - uid: 599 + - uid: 10308 components: - type: Transform - pos: -22.5,20.5 + pos: 31.5,-21.5 parent: 2 - - uid: 649 + - uid: 10309 components: - type: Transform - pos: 31.5,-7.5 + pos: 31.5,-20.5 parent: 2 - - uid: 661 + - uid: 10310 components: - type: Transform - pos: -25.5,14.5 + pos: 31.5,-19.5 parent: 2 - - uid: 681 + - uid: 10311 components: - type: Transform - pos: 36.5,11.5 + pos: 31.5,-18.5 parent: 2 - - uid: 687 + - uid: 10437 components: - type: Transform - pos: 36.5,12.5 + pos: -23.5,-27.5 parent: 2 - - uid: 723 + - uid: 10462 components: - type: Transform - pos: 31.5,-5.5 + pos: -4.5,-14.5 parent: 2 - - uid: 769 + - uid: 10480 components: - type: Transform - pos: -8.5,21.5 + pos: -42.5,-48.5 parent: 2 - - uid: 770 + - uid: 10644 components: - type: Transform - pos: -8.5,19.5 + pos: -47.5,-48.5 parent: 2 - - uid: 771 + - uid: 10683 components: - type: Transform - pos: -9.5,19.5 + pos: 28.5,7.5 parent: 2 - - uid: 778 + - uid: 10716 components: - type: Transform - pos: -8.5,20.5 + pos: -76.5,-56.5 parent: 2 - - uid: 860 + - uid: 10730 components: - type: Transform - pos: -29.5,-55.5 + pos: -76.5,-57.5 parent: 2 - - uid: 890 + - uid: 10740 components: - type: Transform - pos: 13.5,-53.5 + pos: 11.5,-33.5 parent: 2 - - uid: 911 + - uid: 10773 components: - type: Transform - pos: -31.5,21.5 + pos: -76.5,-60.5 parent: 2 - - uid: 1078 + - uid: 11107 components: - type: Transform - pos: -13.5,15.5 + pos: 10.5,-43.5 parent: 2 - - uid: 1093 + - uid: 11177 components: - type: Transform - pos: 39.5,-14.5 + pos: 31.5,-9.5 parent: 2 - - uid: 1215 + - uid: 11179 components: - type: Transform - pos: 41.5,6.5 + pos: 24.5,11.5 parent: 2 - - uid: 1240 + - uid: 11180 components: - type: Transform - pos: -24.5,7.5 + pos: -45.5,-48.5 parent: 2 - - uid: 1272 + - uid: 11201 components: - type: Transform - pos: -23.5,7.5 + pos: -49.5,-49.5 parent: 2 - - uid: 1278 + - uid: 11208 components: - type: Transform - pos: -7.5,-16.5 + pos: -49.5,-50.5 parent: 2 - - uid: 1281 + - uid: 11217 components: - type: Transform - pos: -7.5,-15.5 + pos: 22.5,11.5 parent: 2 - - uid: 1287 + - uid: 11218 components: - type: Transform - pos: -11.5,-21.5 + pos: 23.5,11.5 parent: 2 - - uid: 1288 + - uid: 11219 components: - type: Transform - pos: -13.5,-21.5 + pos: -61.5,-59.5 parent: 2 - - uid: 1289 + - uid: 11220 components: - type: Transform - pos: -36.5,-41.5 + pos: -49.5,-52.5 parent: 2 - - uid: 1291 + - uid: 11240 components: - type: Transform - pos: -12.5,-21.5 + pos: -49.5,-53.5 parent: 2 - - uid: 1300 + - uid: 11245 components: - type: Transform - pos: -29.5,0.5 + pos: -49.5,-54.5 parent: 2 - - uid: 1309 + - uid: 11260 components: - type: Transform - pos: 4.5,11.5 + pos: -49.5,-51.5 parent: 2 - - uid: 1310 + - uid: 11270 components: - type: Transform - pos: 4.5,15.5 + pos: -49.5,-58.5 parent: 2 - - uid: 1311 + - uid: 11316 components: - type: Transform - pos: 4.5,12.5 + pos: -50.5,-58.5 parent: 2 - - uid: 1334 + - uid: 11319 components: - type: Transform - pos: -41.5,-37.5 + pos: -49.5,-57.5 parent: 2 - - uid: 1335 + - uid: 11325 components: - type: Transform - pos: -41.5,-35.5 + pos: -11.5,24.5 parent: 2 - - uid: 1338 + - uid: 11384 components: - type: Transform - pos: 8.5,25.5 + pos: -49.5,-55.5 parent: 2 - - uid: 1339 + - uid: 11415 components: - type: Transform - pos: 9.5,25.5 + pos: 26.5,-39.5 parent: 2 - - uid: 1340 + - uid: 11417 components: - type: Transform - pos: 4.5,19.5 + pos: 36.5,-31.5 parent: 2 - - uid: 1341 + - uid: 11418 components: - type: Transform - pos: 4.5,25.5 + pos: 41.5,-31.5 parent: 2 - - uid: 1344 + - uid: 11507 components: - type: Transform - pos: 13.5,22.5 + pos: -49.5,-48.5 parent: 2 - - uid: 1345 + - uid: 11788 components: - type: Transform - pos: 13.5,21.5 + pos: -48.5,-48.5 parent: 2 - - uid: 1346 + - uid: 11891 components: - type: Transform - pos: 5.5,17.5 + pos: 13.5,-16.5 parent: 2 - - uid: 1347 + - uid: 11986 components: - type: Transform - pos: 11.5,25.5 + pos: 13.5,-15.5 parent: 2 - - uid: 1348 + - uid: 11996 components: - type: Transform - pos: -41.5,-34.5 + pos: 13.5,-14.5 parent: 2 - - uid: 1351 + - uid: 12030 components: - type: Transform - pos: 1.5,25.5 + pos: -29.5,-18.5 parent: 2 - - uid: 1352 + - uid: 12064 components: - type: Transform - pos: 4.5,18.5 + pos: 59.5,-3.5 parent: 2 - - uid: 1379 + - uid: 12137 components: - type: Transform - pos: 13.5,24.5 + pos: -16.5,-12.5 parent: 2 - - uid: 1380 + - uid: 12138 components: - type: Transform - pos: 13.5,23.5 + pos: -16.5,-13.5 parent: 2 - - uid: 1382 + - uid: 12205 components: - type: Transform - pos: -42.5,-39.5 + pos: -9.5,-22.5 parent: 2 - - uid: 1391 + - uid: 12229 components: - type: Transform - pos: 12.5,25.5 + pos: -33.5,-16.5 parent: 2 - - uid: 1399 + - uid: 12233 components: - type: Transform - pos: 13.5,25.5 + pos: -49.5,-56.5 parent: 2 - - uid: 1400 + - uid: 12286 components: - type: Transform - pos: 4.5,17.5 + pos: -33.5,-17.5 parent: 2 - - uid: 1434 + - uid: 12287 components: - type: Transform - pos: 0.5,25.5 + pos: -33.5,-18.5 parent: 2 - - uid: 1450 + - uid: 12288 components: - type: Transform - pos: -29.5,-56.5 + pos: -33.5,-19.5 parent: 2 - - uid: 1483 + - uid: 12289 components: - type: Transform - pos: -31.5,-54.5 + pos: -32.5,-19.5 parent: 2 - - uid: 1490 + - uid: 12291 components: - type: Transform - pos: -26.5,0.5 + pos: -31.5,-19.5 parent: 2 - - uid: 1502 + - uid: 12292 components: - type: Transform - pos: 4.5,23.5 + pos: -30.5,-19.5 parent: 2 - - uid: 1504 + - uid: 12313 components: - type: Transform - pos: 4.5,22.5 + pos: -0.5,11.5 parent: 2 - - uid: 1521 + - uid: 12314 components: - type: Transform - pos: 4.5,21.5 + pos: 5.5,11.5 parent: 2 - - uid: 1522 + - uid: 12326 components: - type: Transform - pos: 4.5,24.5 + pos: 0.5,11.5 parent: 2 - - uid: 1549 + - uid: 12327 components: - type: Transform - pos: -43.5,-25.5 + pos: 12.5,11.5 parent: 2 - - uid: 1554 + - uid: 12332 components: - type: Transform - pos: -42.5,-25.5 + pos: 2.5,11.5 parent: 2 - - uid: 1690 + - uid: 12333 components: - type: Transform - pos: -41.5,-44.5 + pos: 4.5,11.5 parent: 2 - - uid: 1693 + - uid: 12352 components: - type: Transform - pos: -41.5,-46.5 + pos: -51.5,-59.5 parent: 2 - - uid: 1703 + - uid: 12367 components: - type: Transform - pos: -32.5,-51.5 + pos: -51.5,-58.5 parent: 2 - - uid: 1720 + - uid: 12375 components: - type: Transform - pos: -31.5,-48.5 + pos: -55.5,-59.5 parent: 2 - - uid: 1734 + - uid: 12376 components: - type: Transform - pos: -32.5,-48.5 + pos: -54.5,-59.5 parent: 2 - - uid: 1774 + - uid: 12440 components: - type: Transform - pos: 31.5,-6.5 + pos: -8.5,-19.5 parent: 2 - - uid: 1801 + - uid: 12510 components: - type: Transform - pos: -0.5,-5.5 + pos: 44.5,14.5 parent: 2 - - uid: 1803 + - uid: 12560 components: - type: Transform - pos: -3.5,-4.5 + pos: 27.5,7.5 parent: 2 - - uid: 1851 + - uid: 12669 components: - type: Transform - pos: -4.5,-4.5 + pos: -23.5,-24.5 parent: 2 - - uid: 1855 + - uid: 12715 components: - type: Transform - pos: -2.5,-5.5 + pos: -23.5,-26.5 parent: 2 - - uid: 2017 + - uid: 12893 components: - type: Transform - pos: -6.5,-4.5 + pos: -16.5,-11.5 parent: 2 - - uid: 2050 + - uid: 12894 components: - type: Transform - pos: 41.5,0.5 + pos: -16.5,-10.5 parent: 2 - - uid: 2051 + - uid: 12895 components: - type: Transform - pos: 41.5,1.5 + pos: -16.5,-9.5 parent: 2 - - uid: 2052 + - uid: 12896 components: - type: Transform - pos: 41.5,2.5 + pos: -16.5,-8.5 parent: 2 - - uid: 2068 + - uid: 12897 components: - type: Transform - pos: -25.5,-22.5 + pos: -16.5,-7.5 parent: 2 - - uid: 2116 + - uid: 12985 components: - type: Transform - pos: -7.5,-4.5 + pos: -18.5,17.5 parent: 2 - - uid: 2144 + - uid: 12997 components: - type: Transform - pos: 41.5,-0.5 + pos: 6.5,11.5 parent: 2 - - uid: 2151 + - uid: 13009 components: - type: Transform - pos: -9.5,-17.5 + pos: 10.5,11.5 parent: 2 - - uid: 2160 + - uid: 13035 components: - type: Transform - pos: -7.5,-22.5 + pos: 31.5,-14.5 parent: 2 - - uid: 2181 + - uid: 13092 components: - type: Transform - pos: -23.5,-4.5 + pos: -18.5,15.5 parent: 2 - - uid: 2200 + - uid: 13118 components: - type: Transform - pos: 36.5,-21.5 + pos: -29.5,-41.5 parent: 2 - - uid: 2201 + - uid: 13160 components: - type: Transform - pos: 37.5,-21.5 + pos: 17.5,10.5 parent: 2 - - uid: 2231 + - uid: 13173 components: - type: Transform - pos: -25.5,20.5 + pos: -3.5,11.5 parent: 2 - - uid: 2271 + - uid: 13313 components: - type: Transform - pos: -19.5,22.5 + pos: -53.5,-59.5 parent: 2 - - uid: 2274 + - uid: 13335 components: - type: Transform - pos: -7.5,-20.5 + pos: -52.5,-59.5 parent: 2 - - uid: 2330 + - uid: 13345 components: - type: Transform - pos: -8.5,-17.5 + pos: -16.5,-17.5 parent: 2 - - uid: 2331 + - uid: 13350 components: - type: Transform - pos: -6.5,-19.5 + pos: 18.5,10.5 parent: 2 - - uid: 2361 + - uid: 13621 components: - type: Transform - pos: -8.5,-13.5 + pos: 19.5,10.5 parent: 2 - - uid: 2362 + - uid: 13729 components: - type: Transform - pos: -24.5,4.5 + pos: -46.5,-48.5 parent: 2 - - uid: 2364 + - uid: 13739 components: - type: Transform - pos: -20.5,4.5 + pos: 4.5,-43.5 parent: 2 - - uid: 2368 + - uid: 13742 components: - type: Transform - pos: -18.5,14.5 + pos: 25.5,7.5 parent: 2 - - uid: 2369 + - uid: 13760 components: - type: Transform - pos: -20.5,16.5 + pos: -27.5,-41.5 parent: 2 - - uid: 2374 + - uid: 13763 components: - type: Transform - pos: -8.5,-12.5 + pos: 26.5,7.5 parent: 2 - - uid: 2375 + - uid: 13786 components: - type: Transform - pos: -8.5,-11.5 + pos: -28.5,-41.5 parent: 2 - - uid: 2399 + - uid: 14249 components: - type: Transform - pos: 5.5,-15.5 + pos: 13.5,11.5 parent: 2 - - uid: 2401 + - uid: 14250 components: - type: Transform - pos: 3.5,-15.5 + pos: 15.5,11.5 parent: 2 - - uid: 2416 + - uid: 14251 components: - type: Transform - pos: -8.5,-10.5 + pos: 14.5,11.5 parent: 2 - - uid: 2417 + - uid: 14252 components: - type: Transform - pos: -8.5,-9.5 + pos: 11.5,11.5 parent: 2 - - uid: 2418 + - uid: 14254 components: - type: Transform - pos: -8.5,-8.5 + pos: -12.5,22.5 parent: 2 - - uid: 2419 + - uid: 14264 components: - type: Transform - pos: -8.5,-7.5 + pos: 59.5,-1.5 parent: 2 - - uid: 2420 + - uid: 14285 components: - type: Transform - pos: -8.5,-6.5 + pos: -11.5,22.5 parent: 2 - - uid: 2421 + - uid: 14435 components: - type: Transform - pos: -8.5,-5.5 + pos: -23.5,-23.5 parent: 2 - - uid: 2424 + - uid: 14534 components: - type: Transform - pos: -7.5,-5.5 + pos: -23.5,-25.5 parent: 2 - - uid: 2430 + - uid: 14784 components: - type: Transform - pos: -23.5,20.5 + pos: 31.5,-15.5 parent: 2 - - uid: 2458 + - uid: 14789 components: - type: Transform - pos: 38.5,-14.5 + pos: 31.5,-16.5 parent: 2 - - uid: 2462 + - uid: 14790 components: - type: Transform - pos: 37.5,-14.5 + pos: 31.5,-17.5 parent: 2 - - uid: 2463 + - uid: 14791 components: - type: Transform - pos: -19.5,25.5 + pos: 31.5,-7.5 parent: 2 - - uid: 2465 + - uid: 14793 components: - type: Transform - pos: -19.5,26.5 + pos: 31.5,-6.5 parent: 2 - - uid: 2466 + - uid: 14794 components: - type: Transform - pos: -18.5,28.5 + pos: 31.5,-5.5 parent: 2 - - uid: 2486 + - uid: 14796 components: - type: Transform - pos: -19.5,24.5 + pos: 31.5,-4.5 parent: 2 - - uid: 2496 + - uid: 15145 components: - type: Transform - pos: 15.5,-18.5 + pos: -31.5,-41.5 parent: 2 - - uid: 2501 + - uid: 15146 components: - type: Transform - pos: 8.5,-57.5 + pos: -30.5,-41.5 parent: 2 - - uid: 2503 + - uid: 15147 components: - type: Transform - pos: 10.5,-57.5 + pos: -32.5,-41.5 parent: 2 - - uid: 2504 + - uid: 15148 components: - type: Transform - pos: 9.5,-57.5 + pos: -33.5,-41.5 parent: 2 - - uid: 2512 + - uid: 15149 components: - type: Transform - pos: -41.5,-33.5 + pos: -34.5,-41.5 parent: 2 - - uid: 2514 + - uid: 15157 components: - type: Transform - pos: -41.5,-36.5 + pos: -35.5,-41.5 parent: 2 - - uid: 2516 + - uid: 15160 components: - type: Transform - pos: -40.5,-37.5 + pos: -37.5,-41.5 parent: 2 - - uid: 2549 + - uid: 15174 components: - type: Transform - pos: -2.5,-4.5 + pos: -36.5,-41.5 parent: 2 - - uid: 2625 + - uid: 15189 components: - type: Transform - pos: -18.5,9.5 + pos: -38.5,-41.5 parent: 2 - - uid: 2639 + - uid: 15190 components: - type: Transform - pos: -23.5,4.5 + pos: -38.5,-42.5 parent: 2 - - uid: 2641 + - uid: 15195 components: - type: Transform - pos: -24.5,14.5 + pos: -38.5,-43.5 parent: 2 - - uid: 2673 + - uid: 15196 components: - type: Transform - pos: 1.5,-15.5 + pos: -38.5,-44.5 parent: 2 - - uid: 2683 + - uid: 15218 components: - type: Transform - pos: -8.5,-36.5 + pos: -38.5,-45.5 parent: 2 - - uid: 2689 + - uid: 15219 components: - type: Transform - pos: -32.5,-49.5 + pos: -38.5,-46.5 parent: 2 - - uid: 2690 + - uid: 15231 components: - type: Transform - pos: -32.5,-50.5 + pos: -76.5,-59.5 parent: 2 - - uid: 2711 + - uid: 15232 components: - type: Transform - pos: -25.5,-3.5 + pos: -76.5,-58.5 parent: 2 - - uid: 2712 + - uid: 15233 components: - type: Transform - pos: -25.5,-4.5 + pos: -38.5,-47.5 parent: 2 - - uid: 2713 + - uid: 15234 components: - type: Transform - pos: -25.5,-2.5 + pos: -38.5,-48.5 parent: 2 - - uid: 2714 + - uid: 15250 components: - type: Transform - pos: -25.5,-0.5 + pos: -78.5,-54.5 parent: 2 - - uid: 2715 + - uid: 15379 components: - type: Transform - pos: -25.5,-1.5 + pos: -23.5,-20.5 parent: 2 - - uid: 2716 + - uid: 15387 components: - type: Transform - pos: -25.5,0.5 + pos: -23.5,-21.5 parent: 2 - - uid: 2717 + - uid: 15799 components: - type: Transform - pos: -25.5,1.5 + pos: -59.5,-59.5 parent: 2 - - uid: 2718 + - uid: 15802 components: - type: Transform - pos: -25.5,3.5 + pos: -58.5,-58.5 parent: 2 - - uid: 2719 + - uid: 15808 components: - type: Transform - pos: -25.5,4.5 + pos: -56.5,-58.5 parent: 2 - - uid: 2720 + - uid: 15809 components: - type: Transform - pos: -25.5,2.5 + pos: -55.5,-60.5 parent: 2 - - uid: 2721 + - uid: 15811 components: - type: Transform - pos: -25.5,5.5 + pos: -62.5,-59.5 parent: 2 - - uid: 2722 + - uid: 15813 components: - type: Transform - pos: -25.5,6.5 + pos: -16.5,-19.5 parent: 2 - - uid: 2723 + - uid: 15814 components: - type: Transform - pos: -25.5,7.5 + pos: -16.5,-18.5 parent: 2 - - uid: 2724 + - uid: 15816 components: - type: Transform - pos: -25.5,8.5 + pos: -19.5,-19.5 parent: 2 - - uid: 2725 + - uid: 15817 components: - type: Transform - pos: -25.5,9.5 + pos: -20.5,-19.5 parent: 2 - - uid: 2726 + - uid: 15818 components: - type: Transform - pos: -25.5,10.5 + pos: -18.5,-19.5 parent: 2 - - uid: 2727 + - uid: 15820 components: - type: Transform - pos: -25.5,13.5 + pos: -17.5,-19.5 parent: 2 - - uid: 2760 + - uid: 15821 components: - type: Transform - pos: 4.5,-15.5 + pos: -16.5,-15.5 parent: 2 - - uid: 2761 + - uid: 15822 components: - type: Transform - pos: 2.5,-15.5 + pos: -16.5,-16.5 parent: 2 - - uid: 2767 + - uid: 15943 components: - type: Transform - pos: -24.5,-4.5 + pos: -63.5,-8.5 parent: 2 - - uid: 2828 + - uid: 16063 components: - type: Transform - pos: -11.5,11.5 + pos: -57.5,-58.5 parent: 2 - - uid: 2837 + - uid: 16070 components: - type: Transform - pos: -10.5,11.5 + pos: -55.5,-58.5 parent: 2 - - uid: 2842 + - uid: 16115 components: - type: Transform - pos: -27.5,0.5 + pos: -60.5,-59.5 parent: 2 - - uid: 2865 + - uid: 16195 components: - type: Transform - pos: -27.5,9.5 + pos: -58.5,-59.5 parent: 2 - - uid: 2872 + - uid: 16269 components: - type: Transform - pos: -26.5,8.5 + pos: -62.5,-8.5 parent: 2 - - uid: 2873 + - uid: 16270 components: - type: Transform - pos: -24.5,8.5 + pos: -62.5,-10.5 parent: 2 - - uid: 2882 + - uid: 16272 components: - type: Transform - pos: -19.5,23.5 + pos: -61.5,-8.5 parent: 2 - - uid: 2910 + - uid: 16274 components: - type: Transform - pos: -2.5,-6.5 + pos: -62.5,-10.5 parent: 2 - - uid: 2917 + - uid: 16277 components: - type: Transform - pos: 11.5,-53.5 + pos: -62.5,-9.5 parent: 2 - - uid: 2948 + - uid: 16278 components: - type: Transform - pos: -10.5,10.5 + pos: -62.5,-11.5 parent: 2 - - uid: 2950 + - uid: 16279 components: - type: Transform - pos: -23.5,16.5 + pos: -62.5,-12.5 parent: 2 - - uid: 2976 + - uid: 16280 components: - type: Transform - pos: -24.5,20.5 + pos: -61.5,-12.5 parent: 2 - - uid: 3028 + - uid: 16281 components: - type: Transform - pos: -25.5,16.5 + pos: -60.5,-12.5 parent: 2 - - uid: 3034 + - uid: 16282 components: - type: Transform - pos: -22.5,21.5 + pos: -59.5,-12.5 parent: 2 - - uid: 3129 + - uid: 16283 components: - type: Transform - pos: -20.5,20.5 + pos: -58.5,-12.5 parent: 2 - - uid: 3340 + - uid: 16284 components: - type: Transform - pos: 35.5,6.5 + pos: -57.5,-12.5 parent: 2 - - uid: 3357 + - uid: 16285 components: - type: Transform - pos: -22.5,4.5 + pos: -56.5,-12.5 parent: 2 - - uid: 3402 + - uid: 16286 components: - type: Transform - pos: -32.5,13.5 + pos: -55.5,-12.5 parent: 2 - - uid: 3571 + - uid: 16287 components: - type: Transform - pos: -13.5,18.5 + pos: -54.5,-12.5 parent: 2 - - uid: 3588 + - uid: 16288 components: - type: Transform - pos: 1.5,11.5 + pos: -53.5,-12.5 parent: 2 - - uid: 3598 + - uid: 16289 components: - type: Transform - pos: 27.5,6.5 + pos: -51.5,-12.5 parent: 2 - - uid: 3607 + - uid: 16290 components: - type: Transform - pos: 27.5,4.5 + pos: -50.5,-12.5 parent: 2 - - uid: 3643 + - uid: 16291 components: - type: Transform - pos: 27.5,5.5 + pos: -49.5,-12.5 parent: 2 - - uid: 3656 + - uid: 16292 components: - type: Transform - pos: 26.5,6.5 + pos: -48.5,-12.5 parent: 2 - - uid: 3670 + - uid: 16293 components: - type: Transform - pos: 28.5,3.5 + pos: -47.5,-12.5 parent: 2 - - uid: 3671 + - uid: 16294 components: - type: Transform - pos: 28.5,4.5 + pos: -46.5,-12.5 parent: 2 - - uid: 3674 + - uid: 16295 components: - type: Transform - pos: 1.5,-35.5 + pos: -45.5,-12.5 parent: 2 - - uid: 3960 + - uid: 16296 components: - type: Transform - pos: -13.5,20.5 + pos: -44.5,-12.5 parent: 2 - - uid: 4016 + - uid: 16297 components: - type: Transform - pos: -14.5,-48.5 + pos: -52.5,-12.5 parent: 2 - - uid: 4062 + - uid: 16298 components: - type: Transform - pos: -15.5,20.5 + pos: -43.5,-12.5 parent: 2 - - uid: 4116 + - uid: 16299 components: - type: Transform - pos: -16.5,20.5 + pos: -42.5,-12.5 parent: 2 - - uid: 4168 + - uid: 16300 components: - type: Transform - pos: -22.5,-4.5 + pos: -40.5,-12.5 parent: 2 - - uid: 4176 + - uid: 16301 components: - type: Transform - pos: 41.5,-3.5 + pos: -39.5,-12.5 parent: 2 - - uid: 4187 + - uid: 16303 components: - type: Transform - pos: 31.5,-16.5 + pos: -41.5,-12.5 parent: 2 - - uid: 4296 + - uid: 16329 components: - type: Transform - pos: 31.5,-15.5 + pos: -58.5,-60.5 parent: 2 - - uid: 4311 + - uid: 16639 components: - type: Transform - pos: 14.5,-54.5 + pos: -16.5,-14.5 parent: 2 - - uid: 4339 + - uid: 16687 components: - type: Transform - pos: 31.5,-17.5 + pos: 36.5,13.5 parent: 2 - - uid: 4398 + - uid: 16922 components: - type: Transform - pos: 38.5,-31.5 + pos: 20.5,-33.5 parent: 2 - - uid: 4584 + - uid: 17174 components: - type: Transform - pos: 41.5,-31.5 + pos: 22.5,-33.5 parent: 2 - - uid: 4589 + - uid: 17297 components: - type: Transform - pos: -5.5,-4.5 + pos: 59.5,-2.5 parent: 2 - - uid: 4595 + - uid: 17301 components: - type: Transform - pos: -1.5,-6.5 + pos: 59.5,0.5 parent: 2 - - uid: 4596 + - uid: 17747 components: - type: Transform - pos: -0.5,-6.5 + pos: 34.5,-36.5 parent: 2 - - uid: 4612 + - uid: 17748 components: - type: Transform - pos: 4.5,16.5 + pos: 34.5,-35.5 parent: 2 - - uid: 4614 + - uid: 17749 components: - type: Transform - pos: -0.5,12.5 + pos: 34.5,-34.5 parent: 2 - - uid: 4615 + - uid: 17759 components: - type: Transform - pos: 0.5,11.5 + pos: 57.5,4.5 parent: 2 - - uid: 4625 + - uid: 17764 components: - type: Transform - pos: -13.5,17.5 + pos: -45.5,26.5 parent: 2 - - uid: 4631 + - uid: 17767 components: - type: Transform - pos: -13.5,16.5 + pos: -52.5,19.5 parent: 2 - - uid: 4634 + - uid: 17768 components: - type: Transform - pos: -13.5,14.5 + pos: -55.5,10.5 parent: 2 - - uid: 4636 + - uid: 17769 components: - type: Transform - pos: -24.5,16.5 + pos: -48.5,19.5 parent: 2 - - uid: 4657 + - uid: 17770 components: - type: Transform - pos: 31.5,-14.5 + pos: -56.5,10.5 parent: 2 - - uid: 4669 + - uid: 17805 components: - type: Transform - pos: 31.5,-13.5 + pos: 65.5,0.5 parent: 2 - - uid: 4679 + - uid: 17813 components: - type: Transform - pos: 31.5,-12.5 + pos: -75.5,-56.5 parent: 2 - - uid: 4806 + - uid: 17818 components: - type: Transform - pos: -26.5,-22.5 + pos: -74.5,-56.5 parent: 2 - - uid: 4823 + - uid: 17819 components: - type: Transform - pos: -29.5,-21.5 + pos: -74.5,-57.5 parent: 2 - - uid: 4840 + - uid: 17820 components: - type: Transform - pos: 34.5,-40.5 + pos: -74.5,-58.5 parent: 2 - - uid: 4900 + - uid: 17822 components: - type: Transform - pos: -44.5,-31.5 + pos: -74.5,-59.5 parent: 2 - - uid: 4966 + - uid: 17826 components: - type: Transform - pos: -28.5,-21.5 + pos: -74.5,-60.5 parent: 2 - - uid: 5005 + - uid: 17827 components: - type: Transform - pos: -2.5,-23.5 + pos: -72.5,-60.5 parent: 2 - - uid: 5016 + - uid: 17830 components: - type: Transform - pos: -27.5,-22.5 + pos: 69.5,6.5 parent: 2 - - uid: 5400 + - uid: 17832 components: - type: Transform - pos: -21.5,22.5 + pos: 69.5,8.5 parent: 2 - - uid: 5402 + - uid: 17836 components: - type: Transform - pos: -20.5,22.5 + pos: 34.5,-33.5 parent: 2 - - uid: 5517 + - uid: 17838 components: - type: Transform - pos: -14.5,20.5 + pos: 34.5,-32.5 parent: 2 - - uid: 5524 + - uid: 17839 components: - type: Transform - pos: -7.5,-14.5 + pos: 69.5,4.5 parent: 2 - - uid: 5555 + - uid: 17841 components: - type: Transform - pos: -29.5,-36.5 + pos: 69.5,7.5 parent: 2 - - uid: 5840 + - uid: 17843 components: - type: Transform - pos: -6.5,23.5 + pos: -72.5,-59.5 parent: 2 - - uid: 5873 + - uid: 17846 components: - type: Transform - pos: -6.5,24.5 + pos: -72.5,-58.5 parent: 2 - - uid: 5884 + - uid: 17871 components: - type: Transform - pos: -2.5,24.5 + pos: 34.5,-31.5 parent: 2 - - uid: 5886 + - uid: 17884 components: - type: Transform - pos: 36.5,8.5 + pos: 35.5,-31.5 parent: 2 - - uid: 5914 + - uid: 17887 components: - type: Transform - pos: -2.5,25.5 + pos: -72.5,-57.5 parent: 2 - - uid: 6072 + - uid: 17899 components: - type: Transform - pos: 2.5,11.5 + pos: -72.5,-56.5 parent: 2 - - uid: 6169 + - uid: 17902 components: - type: Transform - pos: 42.5,2.5 + pos: -30.5,20.5 parent: 2 - - uid: 6183 + - uid: 17920 components: - type: Transform - pos: 41.5,-32.5 + pos: -48.5,10.5 parent: 2 - - uid: 6201 + - uid: 17931 components: - type: Transform - pos: 16.5,-56.5 + pos: -53.5,12.5 parent: 2 - - uid: 6235 + - uid: 17932 components: - type: Transform - pos: 39.5,-31.5 + pos: -54.5,10.5 parent: 2 - - uid: 6242 + - uid: 17933 components: - type: Transform - pos: 40.5,-31.5 + pos: -46.5,10.5 parent: 2 - - uid: 6244 + - uid: 17937 components: - type: Transform - pos: 43.5,2.5 + pos: 67.5,0.5 parent: 2 - - uid: 6252 + - uid: 17938 components: - type: Transform - pos: 2.5,-40.5 + pos: 67.5,-0.5 parent: 2 - - uid: 6282 + - uid: 17944 components: - type: Transform - pos: 1.5,-36.5 + pos: 67.5,-1.5 parent: 2 - - uid: 6289 + - uid: 17945 components: - type: Transform - pos: 4.5,-18.5 + pos: 67.5,-2.5 parent: 2 - - uid: 6290 + - uid: 17947 components: - type: Transform - pos: 5.5,-18.5 + pos: 67.5,-3.5 parent: 2 - - uid: 6480 + - uid: 17978 components: - type: Transform - pos: -18.5,16.5 + pos: -28.5,23.5 parent: 2 - - uid: 6560 + - uid: 17981 components: - type: Transform - pos: 24.5,3.5 + pos: -28.5,22.5 parent: 2 - - uid: 6561 + - uid: 18128 components: - type: Transform - pos: 24.5,2.5 + pos: 69.5,-0.5 parent: 2 - - uid: 6562 + - uid: 18129 components: - type: Transform - pos: 23.5,2.5 + pos: 69.5,5.5 parent: 2 - - uid: 6588 + - uid: 18150 components: - type: Transform - pos: 16.5,-20.5 + pos: -71.5,-56.5 parent: 2 - - uid: 6634 + - uid: 18154 components: - type: Transform - pos: 32.5,-5.5 + pos: 59.5,-0.5 parent: 2 - - uid: 6651 + - uid: 18155 components: - type: Transform - pos: 21.5,-11.5 + pos: 57.5,-0.5 parent: 2 - - uid: 6652 + - uid: 18159 components: - type: Transform - pos: 22.5,-11.5 + pos: -33.5,23.5 parent: 2 - - uid: 6653 + - uid: 18188 components: - type: Transform - pos: 23.5,-11.5 + pos: -70.5,-56.5 parent: 2 - - uid: 6654 + - uid: 18213 components: - type: Transform - pos: 24.5,-11.5 + pos: -45.5,20.5 parent: 2 - - uid: 6655 + - uid: 18214 components: - type: Transform - pos: 25.5,-11.5 + pos: -47.5,20.5 parent: 2 - - uid: 6656 + - uid: 18215 components: - type: Transform - pos: 25.5,-12.5 + pos: -53.5,28.5 parent: 2 - - uid: 6688 + - uid: 18216 components: - type: Transform - pos: 42.5,8.5 + pos: -53.5,29.5 parent: 2 - - uid: 6702 + - uid: 18217 components: - type: Transform - pos: -7.5,-21.5 + pos: -44.5,20.5 parent: 2 - - uid: 6752 + - uid: 18218 components: - type: Transform - pos: -22.5,-3.5 + pos: -48.5,20.5 parent: 2 - - uid: 6857 + - uid: 18219 components: - type: Transform - pos: 35.5,-40.5 + pos: -52.5,20.5 parent: 2 - - uid: 6990 + - uid: 18225 components: - type: Transform - pos: 33.5,6.5 + pos: -52.5,15.5 parent: 2 - - uid: 6991 + - uid: 18226 components: - type: Transform - pos: 34.5,6.5 + pos: -46.5,20.5 parent: 2 - - uid: 7031 + - uid: 18237 components: - type: Transform - pos: -7.5,-19.5 + pos: -53.5,27.5 parent: 2 - - uid: 7032 + - uid: 18240 components: - type: Transform - pos: -7.5,-18.5 + pos: -52.5,18.5 parent: 2 - - uid: 7084 + - uid: 18242 components: - type: Transform - pos: -14.5,-49.5 + pos: -53.5,26.5 parent: 2 - - uid: 7091 + - uid: 18266 components: - type: Transform - pos: 1.5,-16.5 + pos: -70.5,-57.5 parent: 2 - - uid: 7095 + - uid: 18275 components: - type: Transform - pos: 40.5,-5.5 + pos: -70.5,-58.5 parent: 2 - - uid: 7105 + - uid: 18311 components: - type: Transform - pos: 10.5,-15.5 + pos: -70.5,-59.5 parent: 2 - - uid: 7110 + - uid: 18350 components: - type: Transform - pos: 13.5,-15.5 + pos: -30.5,24.5 parent: 2 - - uid: 7122 + - uid: 18352 components: - type: Transform - pos: -9.5,-16.5 + pos: -29.5,22.5 parent: 2 - - uid: 7194 + - uid: 18362 components: - type: Transform - pos: 40.5,6.5 + pos: -56.5,12.5 parent: 2 - - uid: 7234 + - uid: 18365 components: - type: Transform - pos: -21.5,16.5 + pos: -29.5,24.5 parent: 2 - - uid: 7240 + - uid: 18377 components: - type: Transform - pos: 1.5,-17.5 + pos: -55.5,12.5 parent: 2 - - uid: 7259 + - uid: 18381 components: - type: Transform - pos: 26.5,-51.5 + pos: -29.5,23.5 parent: 2 - - uid: 7260 + - uid: 18597 components: - type: Transform - pos: 27.5,-50.5 + pos: 61.5,-3.5 parent: 2 - - uid: 7321 + - uid: 18598 components: - type: Transform - pos: -35.5,-54.5 + pos: 57.5,-1.5 parent: 2 - - uid: 7355 + - uid: 18599 components: - type: Transform - pos: 33.5,2.5 + pos: 57.5,-3.5 parent: 2 - - uid: 7356 + - uid: 18600 components: - type: Transform - pos: 34.5,2.5 + pos: -70.5,-60.5 parent: 2 - - uid: 7357 + - uid: 18602 components: - type: Transform - pos: 35.5,2.5 + pos: 57.5,0.5 parent: 2 - - uid: 7391 + - uid: 18607 components: - type: Transform - pos: 36.5,2.5 + pos: 61.5,-2.5 parent: 2 - - uid: 7394 + - uid: 18608 components: - type: Transform - pos: 36.5,1.5 + pos: 57.5,-2.5 parent: 2 - - uid: 7395 + - uid: 18609 components: - type: Transform - pos: 36.5,0.5 + pos: -68.5,-60.5 parent: 2 - - uid: 7396 + - uid: 18614 components: - type: Transform - pos: 36.5,-0.5 + pos: -68.5,-59.5 parent: 2 - - uid: 7415 + - uid: 18726 components: - type: Transform - pos: 27.5,-51.5 + pos: 18.5,-33.5 parent: 2 - - uid: 7502 + - uid: 18853 components: - type: Transform - pos: 41.5,8.5 + pos: 14.5,-33.5 parent: 2 - - uid: 7826 + - uid: 18891 components: - type: Transform - pos: 36.5,9.5 + pos: -68.5,-58.5 parent: 2 - - uid: 7849 + - uid: 18904 components: - type: Transform - pos: 32.5,15.5 + pos: -15.5,-0.5 parent: 2 - - uid: 7850 + - uid: 18905 components: - type: Transform - pos: 32.5,17.5 + pos: -15.5,-1.5 parent: 2 - - uid: 7851 + - uid: 18918 components: - type: Transform - pos: 32.5,18.5 + pos: -7.5,-49.5 parent: 2 - - uid: 7852 + - uid: 18980 components: - type: Transform - pos: 32.5,19.5 + pos: -68.5,-57.5 parent: 2 - - uid: 7853 + - uid: 18981 components: - type: Transform - pos: 32.5,20.5 + pos: -68.5,-56.5 parent: 2 - - uid: 7854 + - uid: 18982 components: - type: Transform - pos: 32.5,21.5 + pos: -67.5,-56.5 parent: 2 - - uid: 7855 + - uid: 19025 components: - type: Transform - pos: 32.5,16.5 + pos: -66.5,-56.5 parent: 2 - - uid: 7857 + - uid: 19026 components: - type: Transform - pos: 32.5,22.5 + pos: -66.5,-57.5 parent: 2 - - uid: 7858 + - uid: 19027 components: - type: Transform - pos: 32.5,23.5 + pos: -66.5,-58.5 parent: 2 - - uid: 7859 + - uid: 19164 components: - type: Transform - pos: 32.5,24.5 + pos: -66.5,-59.5 parent: 2 - - uid: 7860 + - uid: 20154 components: - type: Transform - pos: 32.5,25.5 + pos: -66.5,-60.5 parent: 2 - - uid: 7861 + - uid: 20156 components: - type: Transform - pos: 32.5,26.5 + pos: -77.5,-54.5 parent: 2 - - uid: 7862 + - uid: 20157 components: - type: Transform - pos: 32.5,27.5 + pos: -76.5,-54.5 parent: 2 - - uid: 7863 + - uid: 20158 components: - type: Transform - pos: 32.5,28.5 + pos: -76.5,-48.5 parent: 2 - - uid: 7864 + - uid: 20263 components: - type: Transform - pos: 32.5,29.5 + pos: -76.5,-49.5 parent: 2 - - uid: 7865 + - uid: 20264 components: - type: Transform - pos: 32.5,30.5 + pos: -76.5,-50.5 parent: 2 - - uid: 7866 + - uid: 20696 components: - type: Transform - pos: 32.5,31.5 + pos: -76.5,-51.5 parent: 2 - - uid: 7867 + - uid: 20697 components: - type: Transform - pos: 32.5,32.5 + pos: -76.5,-52.5 parent: 2 - - uid: 7868 + - uid: 20698 components: - type: Transform - pos: 32.5,33.5 + pos: -75.5,-52.5 parent: 2 - - uid: 7869 + - uid: 20699 components: - type: Transform - pos: 32.5,34.5 + pos: -74.5,-52.5 parent: 2 - - uid: 7870 + - uid: 20700 components: - type: Transform - pos: 32.5,35.5 + pos: -74.5,-51.5 parent: 2 - - uid: 7871 + - uid: 20701 components: - type: Transform - pos: 32.5,36.5 + pos: -74.5,-50.5 parent: 2 - - uid: 7872 + - uid: 20732 components: - type: Transform - pos: 32.5,37.5 + pos: 26.5,18.5 parent: 2 - - uid: 7873 + - uid: 20741 components: - type: Transform - pos: 32.5,38.5 + pos: -74.5,-49.5 parent: 2 - - uid: 7874 + - uid: 20742 components: - type: Transform - pos: 32.5,39.5 + pos: -74.5,-48.5 parent: 2 - - uid: 7875 + - uid: 20743 components: - type: Transform - pos: 33.5,39.5 + pos: -63.5,-58.5 parent: 2 - - uid: 7876 + - uid: 20744 components: - type: Transform - pos: 34.5,39.5 + pos: -72.5,-48.5 parent: 2 - - uid: 7879 + - uid: 20745 components: - type: Transform - pos: 31.5,20.5 + pos: -72.5,-49.5 parent: 2 - - uid: 7880 + - uid: 20746 components: - type: Transform - pos: 30.5,20.5 + pos: -72.5,-50.5 parent: 2 - - uid: 7949 + - uid: 20747 components: - type: Transform - pos: -21.5,4.5 + pos: -72.5,-51.5 parent: 2 - - uid: 8066 + - uid: 20748 components: - type: Transform - pos: -17.5,20.5 + pos: -72.5,-52.5 parent: 2 - - uid: 8098 + - uid: 20749 components: - type: Transform - pos: 4.5,13.5 + pos: -71.5,-52.5 parent: 2 - - uid: 8099 + - uid: 20750 components: - type: Transform - pos: 4.5,14.5 + pos: -70.5,-52.5 parent: 2 - - uid: 8219 + - uid: 20751 components: - type: Transform - pos: -8.5,-51.5 + pos: -70.5,-51.5 parent: 2 - - uid: 8252 + - uid: 20752 components: - type: Transform - pos: -30.5,-21.5 + pos: -70.5,-50.5 parent: 2 - - uid: 8274 + - uid: 20754 components: - type: Transform - pos: 40.5,-6.5 + pos: -70.5,-49.5 parent: 2 - - uid: 8316 + - uid: 20765 components: - type: Transform - pos: -12.5,-12.5 + pos: -16.5,-55.5 parent: 2 - - uid: 8340 + - uid: 20807 components: - type: Transform - pos: 8.5,-15.5 + pos: -70.5,-48.5 parent: 2 - - uid: 8457 + - uid: 20808 components: - type: Transform - pos: -11.5,25.5 + pos: -68.5,-48.5 parent: 2 - - uid: 8512 + - uid: 20809 components: - type: Transform - pos: 11.5,-15.5 + pos: -68.5,-49.5 parent: 2 - - uid: 8547 + - uid: 20810 components: - type: Transform - pos: 3.5,11.5 + pos: -68.5,-50.5 parent: 2 - - uid: 8642 + - uid: 20824 components: - type: Transform - pos: 16.5,-17.5 + pos: -68.5,-51.5 parent: 2 - - uid: 8643 + - uid: 21092 components: - type: Transform - pos: 44.5,8.5 + pos: 10.5,-49.5 parent: 2 - - uid: 8644 + - uid: 21093 components: - type: Transform - pos: 44.5,7.5 + pos: 10.5,-50.5 parent: 2 - - uid: 8653 + - uid: 21094 components: - type: Transform - pos: 41.5,7.5 + pos: 10.5,-51.5 parent: 2 - - uid: 8655 + - uid: 21095 components: - type: Transform - pos: 36.5,7.5 + pos: 10.5,-52.5 parent: 2 - - uid: 8661 + - uid: 21096 components: - type: Transform - pos: 43.5,8.5 + pos: 10.5,-53.5 parent: 2 - - uid: 8674 + - uid: 21097 components: - type: Transform - pos: 36.5,10.5 + pos: 10.5,-54.5 parent: 2 - - uid: 8683 + - uid: 21098 components: - type: Transform - pos: -20.5,14.5 + pos: 10.5,-55.5 parent: 2 - - uid: 8761 + - uid: 21099 components: - type: Transform - pos: 16.5,-18.5 + pos: 10.5,-56.5 parent: 2 - - uid: 8764 + - uid: 21100 components: - type: Transform - pos: -4.5,-22.5 + pos: 10.5,-57.5 parent: 2 - - uid: 8898 + - uid: 21101 components: - type: Transform - pos: 24.5,-50.5 + pos: 11.5,-57.5 parent: 2 - - uid: 8960 + - uid: 21102 components: - type: Transform - pos: 44.5,1.5 + pos: 12.5,-57.5 parent: 2 - - uid: 8963 + - uid: 21103 components: - type: Transform - pos: 44.5,2.5 + pos: 13.5,-57.5 parent: 2 - - uid: 8999 + - uid: 21104 components: - type: Transform - pos: -19.5,16.5 + pos: 14.5,-57.5 parent: 2 - - uid: 9015 + - uid: 21105 components: - type: Transform - pos: 44.5,3.5 + pos: 15.5,-57.5 parent: 2 - - uid: 9033 + - uid: 21106 components: - type: Transform - pos: 44.5,0.5 + pos: 15.5,-58.5 parent: 2 - - uid: 9037 + - uid: 21107 components: - type: Transform - pos: 36.5,-14.5 + pos: 15.5,-59.5 parent: 2 - - uid: 9038 + - uid: 21108 components: - type: Transform - pos: 36.5,-13.5 + pos: 15.5,-60.5 parent: 2 - - uid: 9039 + - uid: 21109 components: - type: Transform - pos: 36.5,-12.5 + pos: 14.5,-60.5 parent: 2 - - uid: 9040 + - uid: 21110 components: - type: Transform - pos: 36.5,-10.5 + pos: 14.5,-61.5 parent: 2 - - uid: 9041 + - uid: 21111 components: - type: Transform - pos: 36.5,-9.5 + pos: 14.5,-62.5 parent: 2 - - uid: 9042 + - uid: 21112 components: - type: Transform - pos: 36.5,-8.5 + pos: 14.5,-63.5 parent: 2 - - uid: 9044 + - uid: 21113 components: - type: Transform - pos: 36.5,-11.5 + pos: 14.5,-64.5 parent: 2 - - uid: 9051 + - uid: 21171 components: - type: Transform - pos: 39.5,-6.5 + pos: -68.5,-52.5 parent: 2 - - uid: 9052 + - uid: 21176 components: - type: Transform - pos: 38.5,-6.5 + pos: -66.5,-52.5 parent: 2 - - uid: 9053 + - uid: 21182 components: - type: Transform - pos: 37.5,-6.5 + pos: -67.5,-52.5 parent: 2 - - uid: 9054 + - uid: 21183 components: - type: Transform - pos: 36.5,-6.5 + pos: -66.5,-51.5 parent: 2 - - uid: 9194 + - uid: 21195 components: - type: Transform - pos: 1.5,-37.5 + pos: -66.5,-50.5 parent: 2 - - uid: 9269 + - uid: 21196 components: - type: Transform - pos: 15.5,-56.5 + pos: -66.5,-49.5 parent: 2 - - uid: 9294 + - uid: 21199 components: - type: Transform - pos: -18.5,-14.5 + pos: -66.5,-48.5 parent: 2 - - uid: 9297 + - uid: 21215 components: - type: Transform - pos: -16.5,-13.5 + pos: -64.5,-48.5 parent: 2 - - uid: 9300 + - uid: 21218 components: - type: Transform - pos: 14.5,-56.5 + pos: -64.5,-49.5 parent: 2 - - uid: 9316 + - uid: 21226 components: - type: Transform - pos: 14.5,-55.5 + pos: -64.5,-50.5 parent: 2 - - uid: 9535 + - uid: 21227 components: - type: Transform - pos: -29.5,22.5 + pos: -64.5,-51.5 parent: 2 - - uid: 9558 + - uid: 21228 components: - type: Transform - pos: 33.5,-5.5 + pos: -64.5,-52.5 parent: 2 - - uid: 9559 + - uid: 21320 components: - type: Transform - pos: -28.5,22.5 + pos: -63.5,-52.5 parent: 2 - - uid: 9576 + - uid: 21321 components: - type: Transform - pos: 28.5,-50.5 + pos: -62.5,-52.5 parent: 2 - - uid: 9621 + - uid: 21322 components: - type: Transform - pos: 12.5,-13.5 + pos: -62.5,-51.5 parent: 2 - - uid: 9658 + - uid: 21323 components: - type: Transform - pos: 29.5,-55.5 + pos: -62.5,-50.5 parent: 2 - - uid: 9659 + - uid: 21347 components: - type: Transform - pos: 25.5,-51.5 + pos: -62.5,-49.5 parent: 2 - - uid: 9681 + - uid: 21352 components: - type: Transform - pos: 24.5,-51.5 + pos: -62.5,-48.5 parent: 2 - - uid: 9688 + - uid: 21375 components: - type: Transform - pos: 24.5,-52.5 + pos: -63.5,-59.5 parent: 2 - - uid: 9689 + - uid: 21376 components: - type: Transform - pos: 24.5,-53.5 + pos: -63.5,-57.5 parent: 2 - - uid: 9690 + - uid: 21377 components: - type: Transform - pos: 24.5,-54.5 + pos: -63.5,-56.5 parent: 2 - - uid: 9692 + - uid: 21378 components: - type: Transform - pos: 24.5,-55.5 + pos: -63.5,-54.5 parent: 2 - - uid: 9702 + - uid: 21390 components: - type: Transform - pos: 25.5,-55.5 + pos: -64.5,-54.5 parent: 2 - - uid: 9703 + - uid: 21399 components: - type: Transform - pos: 26.5,-55.5 + pos: -63.5,-55.5 parent: 2 - - uid: 9717 + - uid: 21401 components: - type: Transform - pos: 27.5,-55.5 + pos: 23.5,-33.5 parent: 2 - - uid: 9732 + - uid: 21793 components: - type: Transform - pos: 28.5,-55.5 + pos: 31.5,0.5 parent: 2 - - uid: 9733 + - uid: 21794 components: - type: Transform - pos: 28.5,-54.5 + pos: 31.5,1.5 parent: 2 - - uid: 9739 + - uid: 21795 components: - type: Transform - pos: 28.5,-53.5 + pos: 31.5,2.5 parent: 2 - - uid: 9743 + - uid: 21796 components: - type: Transform - pos: 28.5,-52.5 + pos: 31.5,3.5 parent: 2 - - uid: 9751 + - uid: 21797 components: - type: Transform - pos: -13.5,-54.5 + pos: 31.5,4.5 parent: 2 - - uid: 9754 + - uid: 21798 components: - type: Transform - pos: -14.5,-54.5 + pos: 31.5,5.5 parent: 2 - - uid: 9755 + - uid: 21799 components: - type: Transform - pos: -15.5,-54.5 + pos: 31.5,6.5 parent: 2 - - uid: 9756 + - uid: 21933 components: - type: Transform - pos: -16.5,-54.5 + pos: 26.5,19.5 parent: 2 - - uid: 9757 + - uid: 21990 components: - type: Transform - pos: -17.5,-54.5 + pos: 25.5,11.5 parent: 2 - - uid: 9758 + - uid: 22034 components: - type: Transform - pos: -18.5,-54.5 + pos: 26.5,17.5 parent: 2 - - uid: 9759 + - uid: 22040 components: - type: Transform - pos: -19.5,-54.5 + pos: 40.5,14.5 parent: 2 - - uid: 9760 + - uid: 22053 components: - type: Transform - pos: -20.5,-54.5 + pos: 41.5,14.5 parent: 2 - - uid: 9761 + - uid: 22114 components: - type: Transform - pos: -21.5,-54.5 + pos: 43.5,14.5 parent: 2 - - uid: 9801 + - uid: 22143 components: - type: Transform - pos: -17.5,-53.5 + pos: 25.5,16.5 parent: 2 - - uid: 9802 + - uid: 22215 components: - type: Transform - pos: -17.5,-52.5 + pos: 10.5,-34.5 parent: 2 - - uid: 9803 + - uid: 22217 components: - type: Transform - pos: -17.5,-51.5 + pos: 10.5,-35.5 parent: 2 - - uid: 9804 + - uid: 22218 components: - type: Transform - pos: -16.5,-50.5 + pos: 10.5,-37.5 parent: 2 - - uid: 9806 + - uid: 22219 components: - type: Transform - pos: -17.5,-50.5 + pos: 10.5,-38.5 parent: 2 - - uid: 9810 + - uid: 22220 components: - type: Transform - pos: -15.5,-50.5 + pos: 10.5,-39.5 parent: 2 - - uid: 9811 + - uid: 22221 components: - type: Transform - pos: -14.5,-50.5 + pos: 10.5,-40.5 parent: 2 - - uid: 9814 + - uid: 22222 components: - type: Transform - pos: -13.5,-48.5 + pos: 10.5,-41.5 parent: 2 - - uid: 9815 + - uid: 22223 components: - type: Transform - pos: -11.5,-48.5 + pos: 10.5,-42.5 parent: 2 - - uid: 9816 + - uid: 22224 components: - type: Transform - pos: -12.5,-48.5 + pos: 10.5,-36.5 parent: 2 - - uid: 9818 +- proto: CableHVStack + entities: + - uid: 3391 components: - type: Transform - pos: -10.5,-48.5 + pos: -16.573278,-25.136585 parent: 2 - - uid: 9869 + - uid: 10203 components: - type: Transform - pos: 34.5,-54.5 + pos: -13.366984,-10.436457 parent: 2 - - uid: 9871 + - uid: 10756 components: - type: Transform - pos: -18.5,-50.5 + pos: -55.592247,-13.290644 parent: 2 - - uid: 9872 + - uid: 16893 components: - type: Transform - pos: -19.5,-50.5 + pos: -58.51258,-58.38839 parent: 2 - - uid: 9873 + - uid: 18184 components: - type: Transform - pos: -20.5,-50.5 + pos: -29.499138,22.607857 parent: 2 - - uid: 9876 +- proto: CableMV + entities: + - uid: 8 components: - type: Transform - pos: 30.5,-55.5 + pos: -3.5,-22.5 parent: 2 - - uid: 9877 + - uid: 10 components: - type: Transform - pos: -21.5,-51.5 + pos: -5.5,-22.5 parent: 2 - - uid: 9911 + - uid: 33 components: - type: Transform - pos: -20.5,-49.5 + pos: -22.5,22.5 parent: 2 - - uid: 9912 + - uid: 54 components: - type: Transform - pos: -20.5,-48.5 + pos: 41.5,-1.5 parent: 2 - - uid: 9913 + - uid: 64 components: - type: Transform - pos: -20.5,-47.5 + pos: -28.5,6.5 parent: 2 - - uid: 9914 + - uid: 68 components: - type: Transform - pos: -20.5,-46.5 + pos: -30.5,-61.5 parent: 2 - - uid: 9915 + - uid: 77 components: - type: Transform - pos: -20.5,-45.5 + pos: -19.5,28.5 parent: 2 - - uid: 9926 + - uid: 78 components: - type: Transform - pos: 30.5,-54.5 + pos: -19.5,27.5 parent: 2 - - uid: 9927 + - uid: 95 components: - type: Transform - pos: 31.5,-54.5 + pos: -20.5,-51.5 parent: 2 - - uid: 9930 + - uid: 172 components: - type: Transform - pos: 32.5,-54.5 + pos: -25.5,11.5 parent: 2 - - uid: 9931 + - uid: 174 components: - type: Transform - pos: 33.5,-54.5 + pos: -13.5,-53.5 parent: 2 - - uid: 9932 + - uid: 191 components: - type: Transform - pos: 35.5,-54.5 + pos: -13.5,19.5 parent: 2 - - uid: 9935 + - uid: 193 components: - type: Transform - pos: 36.5,-54.5 + pos: -1.5,25.5 parent: 2 - - uid: 9998 + - uid: 204 components: - type: Transform - pos: 43.5,-53.5 + pos: -0.5,25.5 parent: 2 - - uid: 10062 + - uid: 239 components: - type: Transform - pos: 32.5,14.5 + pos: 2.5,25.5 parent: 2 - - uid: 10063 + - uid: 242 components: - type: Transform - pos: 32.5,13.5 + pos: 3.5,25.5 parent: 2 - - uid: 10064 + - uid: 261 components: - type: Transform - pos: 32.5,12.5 + pos: 4.5,20.5 parent: 2 - - uid: 10065 + - uid: 269 components: - type: Transform - pos: 32.5,11.5 + pos: -19.5,14.5 parent: 2 - - uid: 10066 + - uid: 274 components: - type: Transform - pos: 32.5,10.5 + pos: -3.5,24.5 parent: 2 - - uid: 10067 + - uid: 278 components: - type: Transform - pos: 32.5,9.5 + pos: -5.5,24.5 parent: 2 - - uid: 10068 + - uid: 282 components: - type: Transform - pos: 32.5,8.5 + pos: -4.5,24.5 parent: 2 - - uid: 10069 + - uid: 316 components: - type: Transform - pos: 32.5,7.5 + pos: -11.5,24.5 parent: 2 - - uid: 10070 + - uid: 321 components: - type: Transform - pos: 32.5,6.5 + pos: -11.5,23.5 parent: 2 - - uid: 10071 + - uid: 335 components: - type: Transform - pos: 32.5,5.5 + pos: -25.5,12.5 parent: 2 - - uid: 10072 + - uid: 343 components: - type: Transform - pos: 32.5,4.5 + pos: 31.5,-9.5 parent: 2 - - uid: 10073 + - uid: 348 components: - type: Transform - pos: 32.5,3.5 + pos: -12.5,-53.5 parent: 2 - - uid: 10074 + - uid: 363 components: - type: Transform - pos: 32.5,2.5 + pos: 31.5,-11.5 parent: 2 - - uid: 10078 + - uid: 395 components: - type: Transform - pos: 28.5,10.5 + pos: -34.5,-3.5 parent: 2 - - uid: 10079 + - uid: 403 components: - type: Transform - pos: 28.5,9.5 + pos: 31.5,-10.5 parent: 2 - - uid: 10083 + - uid: 426 components: - type: Transform - pos: 28.5,2.5 + pos: -28.5,0.5 parent: 2 - - uid: 10084 + - uid: 428 components: - type: Transform - pos: 28.5,1.5 + pos: -24.5,11.5 parent: 2 - - uid: 10085 + - uid: 458 components: - type: Transform - pos: 28.5,0.5 + pos: -0.5,11.5 parent: 2 - - uid: 10086 + - uid: 488 components: - type: Transform - pos: 29.5,0.5 + pos: -7.5,-17.5 parent: 2 - - uid: 10087 + - uid: 507 components: - type: Transform - pos: 30.5,0.5 + pos: 0.5,-17.5 parent: 2 - - uid: 10103 + - uid: 508 components: - type: Transform - pos: 31.5,6.5 + pos: -8.5,22.5 parent: 2 - - uid: 10104 + - uid: 514 components: - type: Transform - pos: 30.5,6.5 + pos: -7.5,22.5 parent: 2 - - uid: 10142 + - uid: 516 components: - type: Transform - pos: 37.5,6.5 + pos: -6.5,22.5 parent: 2 - - uid: 10183 + - uid: 517 components: - type: Transform - pos: 11.5,-54.5 + pos: -11.5,22.5 parent: 2 - - uid: 10242 + - uid: 518 components: - type: Transform - pos: 2.5,-22.5 + pos: -10.5,22.5 parent: 2 - - uid: 10243 + - uid: 519 components: - type: Transform - pos: 3.5,-22.5 + pos: -9.5,22.5 parent: 2 - - uid: 10244 + - uid: 523 components: - type: Transform - pos: 4.5,-22.5 + pos: 8.5,16.5 parent: 2 - - uid: 10245 + - uid: 524 components: - type: Transform - pos: 4.5,-21.5 + pos: 8.5,15.5 parent: 2 - - uid: 10246 + - uid: 529 components: - type: Transform - pos: 4.5,-20.5 + pos: -0.5,26.5 parent: 2 - - uid: 10293 + - uid: 533 components: - type: Transform - pos: 25.5,-18.5 + pos: 7.5,17.5 parent: 2 - - uid: 10294 + - uid: 535 components: - type: Transform - pos: 26.5,-18.5 + pos: 8.5,17.5 parent: 2 - - uid: 10295 + - uid: 537 components: - type: Transform - pos: 27.5,-18.5 + pos: 6.5,17.5 parent: 2 - - uid: 10296 + - uid: 543 components: - type: Transform - pos: 28.5,-18.5 + pos: -0.5,27.5 parent: 2 - - uid: 10297 + - uid: 551 components: - type: Transform - pos: 30.5,-18.5 + pos: -27.5,14.5 parent: 2 - - uid: 10298 + - uid: 552 components: - type: Transform - pos: 31.5,-18.5 + pos: -26.5,14.5 parent: 2 - - uid: 10299 + - uid: 563 components: - type: Transform - pos: 29.5,-18.5 + pos: 31.5,-8.5 parent: 2 - - uid: 10300 + - uid: 599 components: - type: Transform - pos: 31.5,-19.5 + pos: -22.5,20.5 parent: 2 - - uid: 10301 + - uid: 649 components: - type: Transform - pos: 31.5,-20.5 + pos: 31.5,-7.5 parent: 2 - - uid: 10302 + - uid: 661 components: - type: Transform - pos: 31.5,-21.5 + pos: -25.5,14.5 parent: 2 - - uid: 10303 + - uid: 723 components: - type: Transform - pos: 32.5,-21.5 + pos: 31.5,-5.5 parent: 2 - - uid: 10304 + - uid: 769 components: - type: Transform - pos: 33.5,-21.5 + pos: -8.5,21.5 parent: 2 - - uid: 10305 + - uid: 778 components: - type: Transform - pos: 34.5,-21.5 + pos: -8.5,20.5 parent: 2 - - uid: 10306 + - uid: 841 components: - type: Transform - pos: 35.5,-21.5 + pos: 22.5,-21.5 parent: 2 - - uid: 10312 + - uid: 911 components: - type: Transform - pos: 38.5,-21.5 + pos: -31.5,21.5 parent: 2 - - uid: 10313 + - uid: 937 components: - type: Transform - pos: 39.5,-21.5 + pos: 28.5,12.5 parent: 2 - - uid: 10314 + - uid: 948 components: - type: Transform - pos: 40.5,-21.5 + pos: 26.5,16.5 parent: 2 - - uid: 10315 + - uid: 1033 components: - type: Transform - pos: 41.5,-21.5 + pos: 27.5,-6.5 parent: 2 - - uid: 10316 + - uid: 1078 components: - type: Transform - pos: 42.5,-21.5 + pos: -13.5,15.5 parent: 2 - - uid: 10317 + - uid: 1093 components: - type: Transform - pos: 43.5,-21.5 + pos: 39.5,-14.5 parent: 2 - - uid: 10318 + - uid: 1116 components: - type: Transform - pos: 44.5,-21.5 + pos: 22.5,13.5 parent: 2 - - uid: 10319 + - uid: 1215 components: - type: Transform - pos: 45.5,-21.5 + pos: 41.5,6.5 parent: 2 - - uid: 10320 + - uid: 1240 components: - type: Transform - pos: 46.5,-21.5 + pos: -24.5,7.5 parent: 2 - - uid: 10321 + - uid: 1272 components: - type: Transform - pos: 47.5,-21.5 + pos: -23.5,7.5 parent: 2 - - uid: 10323 + - uid: 1278 components: - type: Transform - pos: 47.5,-20.5 + pos: -7.5,-16.5 parent: 2 - - uid: 10324 + - uid: 1281 components: - type: Transform - pos: 47.5,-19.5 + pos: -7.5,-15.5 parent: 2 - - uid: 10466 + - uid: 1287 components: - type: Transform - pos: 12.5,-12.5 + pos: -11.5,-21.5 parent: 2 - - uid: 10477 + - uid: 1288 components: - type: Transform - pos: 12.5,-53.5 + pos: -13.5,-21.5 parent: 2 - - uid: 10497 + - uid: 1291 components: - type: Transform - pos: 12.5,-15.5 + pos: -12.5,-21.5 parent: 2 - - uid: 10507 + - uid: 1300 components: - type: Transform - pos: -43.5,-53.5 + pos: -29.5,0.5 parent: 2 - - uid: 10508 + - uid: 1309 components: - type: Transform - pos: -44.5,-53.5 + pos: 4.5,11.5 parent: 2 - - uid: 10509 + - uid: 1310 components: - type: Transform - pos: -44.5,-52.5 + pos: 4.5,15.5 parent: 2 - - uid: 10510 + - uid: 1311 components: - type: Transform - pos: -43.5,-54.5 + pos: 4.5,12.5 parent: 2 - - uid: 10511 + - uid: 1321 components: - type: Transform - pos: -42.5,-54.5 + pos: 26.5,22.5 parent: 2 - - uid: 10512 + - uid: 1338 components: - type: Transform - pos: -41.5,-54.5 + pos: 27.5,22.5 parent: 2 - - uid: 10513 + - uid: 1340 components: - type: Transform - pos: -40.5,-54.5 + pos: 4.5,19.5 parent: 2 - - uid: 10514 + - uid: 1341 components: - type: Transform - pos: -38.5,-54.5 + pos: 4.5,25.5 parent: 2 - - uid: 10515 + - uid: 1344 components: - type: Transform - pos: -39.5,-54.5 + pos: 28.5,22.5 parent: 2 - - uid: 10516 + - uid: 1345 components: - type: Transform - pos: -37.5,-54.5 + pos: 13.5,21.5 parent: 2 - - uid: 10517 + - uid: 1346 components: - type: Transform - pos: -37.5,-53.5 + pos: 5.5,17.5 parent: 2 - - uid: 10518 + - uid: 1351 components: - type: Transform - pos: -37.5,-52.5 + pos: 1.5,25.5 parent: 2 - - uid: 10519 + - uid: 1352 components: - type: Transform - pos: -37.5,-51.5 + pos: 4.5,18.5 parent: 2 - - uid: 10520 + - uid: 1379 components: - type: Transform - pos: -36.5,-51.5 + pos: 31.5,22.5 parent: 2 - - uid: 10521 + - uid: 1400 components: - type: Transform - pos: -36.5,-50.5 + pos: 4.5,17.5 parent: 2 - - uid: 10522 + - uid: 1434 components: - type: Transform - pos: -36.5,-49.5 + pos: 0.5,25.5 parent: 2 - - uid: 10523 + - uid: 1490 components: - type: Transform - pos: -36.5,-48.5 + pos: -26.5,0.5 parent: 2 - - uid: 10524 + - uid: 1502 components: - type: Transform - pos: -36.5,-47.5 + pos: 4.5,23.5 parent: 2 - - uid: 10525 + - uid: 1504 components: - type: Transform - pos: -36.5,-46.5 + pos: 4.5,22.5 parent: 2 - - uid: 10526 + - uid: 1521 components: - type: Transform - pos: -36.5,-45.5 + pos: 4.5,21.5 parent: 2 - - uid: 10527 + - uid: 1522 components: - type: Transform - pos: -36.5,-44.5 + pos: 4.5,24.5 parent: 2 - - uid: 10528 + - uid: 1653 components: - type: Transform - pos: -36.5,-43.5 + pos: 25.5,14.5 parent: 2 - - uid: 10529 + - uid: 1774 components: - type: Transform - pos: -36.5,-54.5 + pos: 31.5,-6.5 parent: 2 - - uid: 10531 + - uid: 1801 components: - type: Transform - pos: -34.5,-54.5 + pos: -0.5,-5.5 parent: 2 - - uid: 10532 + - uid: 1803 components: - type: Transform - pos: -33.5,-54.5 + pos: -3.5,-4.5 parent: 2 - - uid: 10533 + - uid: 1851 components: - type: Transform - pos: -32.5,-54.5 + pos: -4.5,-4.5 parent: 2 - - uid: 10615 + - uid: 1855 components: - type: Transform - pos: -32.5,14.5 + pos: -2.5,-5.5 parent: 2 - - uid: 10736 + - uid: 1860 components: - type: Transform - pos: 12.5,-14.5 + pos: 26.5,19.5 parent: 2 - - uid: 10738 + - uid: 2017 components: - type: Transform - pos: 1.5,-22.5 + pos: -6.5,-4.5 parent: 2 - - uid: 10739 + - uid: 2050 components: - type: Transform - pos: 1.5,-21.5 + pos: 41.5,0.5 parent: 2 - - uid: 10740 + - uid: 2051 components: - type: Transform - pos: 1.5,-20.5 + pos: 41.5,1.5 parent: 2 - - uid: 10741 + - uid: 2052 components: - type: Transform - pos: 1.5,-19.5 + pos: 41.5,2.5 parent: 2 - - uid: 10742 + - uid: 2116 components: - type: Transform - pos: 1.5,-18.5 + pos: -7.5,-4.5 parent: 2 - - uid: 10747 + - uid: 2144 components: - type: Transform - pos: 7.5,-15.5 + pos: 41.5,-0.5 parent: 2 - - uid: 10803 + - uid: 2151 components: - type: Transform - pos: 14.5,-15.5 + pos: -9.5,-17.5 parent: 2 - - uid: 10807 + - uid: 2160 components: - type: Transform - pos: 9.5,-15.5 + pos: -7.5,-22.5 parent: 2 - - uid: 10809 + - uid: 2181 components: - type: Transform - pos: 15.5,-15.5 + pos: -23.5,-4.5 parent: 2 - - uid: 10907 + - uid: 2200 components: - type: Transform - pos: 24.5,-49.5 + pos: 36.5,-21.5 parent: 2 - - uid: 10908 + - uid: 2201 components: - type: Transform - pos: 24.5,-48.5 + pos: 37.5,-21.5 parent: 2 - - uid: 10909 + - uid: 2231 components: - type: Transform - pos: 24.5,-47.5 + pos: -25.5,20.5 parent: 2 - - uid: 10910 + - uid: 2271 components: - type: Transform - pos: 24.5,-46.5 + pos: -19.5,22.5 parent: 2 - - uid: 10911 + - uid: 2274 components: - type: Transform - pos: 24.5,-45.5 + pos: -7.5,-20.5 parent: 2 - - uid: 10912 + - uid: 2304 components: - type: Transform - pos: 24.5,-44.5 + pos: 23.5,-13.5 parent: 2 - - uid: 10913 + - uid: 2306 components: - type: Transform - pos: 24.5,-43.5 + pos: 23.5,-14.5 parent: 2 - - uid: 10914 + - uid: 2314 components: - type: Transform - pos: 23.5,-43.5 + pos: 23.5,-15.5 parent: 2 - - uid: 10915 + - uid: 2326 components: - type: Transform - pos: 22.5,-43.5 + pos: 25.5,-6.5 parent: 2 - - uid: 10916 + - uid: 2328 components: - type: Transform - pos: 21.5,-43.5 + pos: 24.5,-6.5 parent: 2 - - uid: 10917 + - uid: 2330 components: - type: Transform - pos: 20.5,-43.5 + pos: -8.5,-17.5 parent: 2 - - uid: 10918 + - uid: 2331 components: - type: Transform - pos: 19.5,-43.5 + pos: -6.5,-19.5 parent: 2 - - uid: 10919 + - uid: 2345 components: - type: Transform - pos: 18.5,-43.5 + pos: 20.5,-13.5 parent: 2 - - uid: 10920 + - uid: 2346 components: - type: Transform - pos: 17.5,-43.5 + pos: 45.5,-11.5 parent: 2 - - uid: 10921 + - uid: 2361 components: - type: Transform - pos: 16.5,-43.5 + pos: -8.5,-13.5 parent: 2 - - uid: 10922 + - uid: 2362 components: - type: Transform - pos: 15.5,-43.5 + pos: -24.5,4.5 parent: 2 - - uid: 10923 + - uid: 2364 components: - type: Transform - pos: 14.5,-43.5 + pos: -20.5,4.5 parent: 2 - - uid: 10924 + - uid: 2368 components: - type: Transform - pos: 13.5,-43.5 + pos: -18.5,14.5 parent: 2 - - uid: 10925 + - uid: 2369 components: - type: Transform - pos: 12.5,-43.5 + pos: -20.5,16.5 parent: 2 - - uid: 10927 + - uid: 2374 components: - type: Transform - pos: 18.5,-44.5 + pos: -8.5,-12.5 parent: 2 - - uid: 10928 + - uid: 2375 components: - type: Transform - pos: 18.5,-45.5 + pos: -8.5,-11.5 parent: 2 - - uid: 10929 + - uid: 2396 components: - type: Transform - pos: 18.5,-46.5 + pos: 45.5,-9.5 parent: 2 - - uid: 10930 + - uid: 2416 components: - type: Transform - pos: 18.5,-47.5 + pos: -8.5,-10.5 parent: 2 - - uid: 10931 + - uid: 2417 components: - type: Transform - pos: 17.5,-47.5 + pos: -8.5,-9.5 parent: 2 - - uid: 10932 + - uid: 2418 components: - type: Transform - pos: 16.5,-47.5 + pos: -8.5,-8.5 parent: 2 - - uid: 10942 + - uid: 2419 components: - type: Transform - pos: 16.5,-15.5 + pos: -8.5,-7.5 parent: 2 - - uid: 10943 + - uid: 2420 components: - type: Transform - pos: 14.5,-53.5 + pos: -8.5,-6.5 parent: 2 - - uid: 10955 + - uid: 2421 components: - type: Transform - pos: 16.5,-16.5 + pos: -8.5,-5.5 parent: 2 - - uid: 10957 + - uid: 2424 components: - type: Transform - pos: 24.5,-56.5 + pos: -7.5,-5.5 parent: 2 - - uid: 10958 + - uid: 2430 components: - type: Transform - pos: 23.5,-56.5 + pos: -23.5,20.5 parent: 2 - - uid: 10959 + - uid: 2431 components: - type: Transform - pos: 21.5,-56.5 + pos: 21.5,-21.5 parent: 2 - - uid: 10960 + - uid: 2458 components: - type: Transform - pos: 20.5,-56.5 + pos: 38.5,-14.5 parent: 2 - - uid: 10961 + - uid: 2462 components: - type: Transform - pos: 19.5,-56.5 + pos: 37.5,-14.5 parent: 2 - - uid: 10962 + - uid: 2463 components: - type: Transform - pos: 18.5,-56.5 + pos: -19.5,25.5 parent: 2 - - uid: 10963 + - uid: 2464 components: - type: Transform - pos: 17.5,-56.5 + pos: 23.5,-18.5 parent: 2 - - uid: 10964 + - uid: 2465 components: - type: Transform - pos: 22.5,-56.5 + pos: -19.5,26.5 parent: 2 - - uid: 10969 + - uid: 2466 components: - type: Transform - pos: 16.5,-19.5 + pos: -18.5,28.5 parent: 2 - - uid: 10992 + - uid: 2483 components: - type: Transform - pos: -13.5,-12.5 + pos: 23.5,-19.5 parent: 2 - - uid: 10994 + - uid: 2486 components: - type: Transform - pos: -11.5,-12.5 + pos: -19.5,24.5 parent: 2 - - uid: 10998 + - uid: 2496 components: - type: Transform - pos: -15.5,-12.5 + pos: 24.5,-3.5 parent: 2 - - uid: 10999 + - uid: 2549 components: - type: Transform - pos: -14.5,-12.5 + pos: -2.5,-4.5 parent: 2 - - uid: 11015 + - uid: 2587 components: - type: Transform - pos: -16.5,-12.5 + pos: 23.5,-20.5 parent: 2 - - uid: 11019 + - uid: 2605 components: - type: Transform - pos: -16.5,-14.5 + pos: 23.5,-21.5 parent: 2 - - uid: 11020 + - uid: 2625 components: - type: Transform - pos: -18.5,-13.5 + pos: -18.5,9.5 parent: 2 - - uid: 11024 + - uid: 2639 components: - type: Transform - pos: -17.5,-14.5 + pos: -23.5,4.5 parent: 2 - - uid: 11224 + - uid: 2641 components: - type: Transform - pos: 25.5,6.5 + pos: -24.5,14.5 parent: 2 - - uid: 11225 + - uid: 2683 components: - type: Transform - pos: 24.5,6.5 + pos: -8.5,-36.5 parent: 2 - - uid: 11226 + - uid: 2702 components: - type: Transform - pos: 24.5,7.5 + pos: 45.5,-19.5 parent: 2 - - uid: 11227 + - uid: 2711 components: - type: Transform - pos: 24.5,8.5 + pos: -25.5,-3.5 parent: 2 - - uid: 11228 + - uid: 2712 components: - type: Transform - pos: 24.5,9.5 + pos: -25.5,-4.5 parent: 2 - - uid: 11229 + - uid: 2713 components: - type: Transform - pos: 24.5,10.5 + pos: -25.5,-2.5 parent: 2 - - uid: 11230 + - uid: 2714 components: - type: Transform - pos: 24.5,11.5 + pos: -25.5,-0.5 parent: 2 - - uid: 11231 + - uid: 2715 components: - type: Transform - pos: 24.5,12.5 + pos: -25.5,-1.5 parent: 2 - - uid: 11232 + - uid: 2716 components: - type: Transform - pos: 24.5,13.5 + pos: -25.5,0.5 parent: 2 - - uid: 11233 + - uid: 2717 components: - type: Transform - pos: 23.5,13.5 + pos: -25.5,1.5 parent: 2 - - uid: 11234 + - uid: 2718 components: - type: Transform - pos: 23.5,14.5 + pos: -25.5,3.5 parent: 2 - - uid: 11235 + - uid: 2719 components: - type: Transform - pos: 25.5,11.5 + pos: -25.5,4.5 parent: 2 - - uid: 11236 + - uid: 2720 components: - type: Transform - pos: 26.5,11.5 + pos: -25.5,2.5 parent: 2 - - uid: 11237 + - uid: 2721 components: - type: Transform - pos: 27.5,11.5 + pos: -25.5,5.5 parent: 2 - - uid: 11238 + - uid: 2722 components: - type: Transform - pos: 28.5,11.5 + pos: -25.5,6.5 parent: 2 - - uid: 11301 + - uid: 2723 components: - type: Transform - pos: -26.5,6.5 + pos: -25.5,7.5 parent: 2 - - uid: 11332 + - uid: 2724 components: - type: Transform - pos: -44.5,-35.5 + pos: -25.5,8.5 parent: 2 - - uid: 11357 + - uid: 2725 components: - type: Transform - pos: 33.5,-37.5 + pos: -25.5,9.5 parent: 2 - - uid: 11358 + - uid: 2726 components: - type: Transform - pos: 33.5,-38.5 + pos: -25.5,10.5 parent: 2 - - uid: 11359 + - uid: 2727 components: - type: Transform - pos: 33.5,-39.5 + pos: -25.5,13.5 parent: 2 - - uid: 11360 + - uid: 2765 components: - type: Transform - pos: 33.5,-40.5 + pos: 45.5,-17.5 parent: 2 - - uid: 11361 + - uid: 2767 components: - type: Transform - pos: 33.5,-41.5 + pos: -24.5,-4.5 parent: 2 - - uid: 11362 + - uid: 2792 components: - type: Transform - pos: 33.5,-42.5 + pos: 45.5,-16.5 parent: 2 - - uid: 11363 + - uid: 2828 components: - type: Transform - pos: 33.5,-43.5 + pos: -11.5,11.5 parent: 2 - - uid: 11364 + - uid: 2830 components: - type: Transform - pos: 33.5,-44.5 + pos: 45.5,-20.5 parent: 2 - - uid: 11365 + - uid: 2837 components: - type: Transform - pos: 32.5,-44.5 + pos: -10.5,11.5 parent: 2 - - uid: 11366 + - uid: 2842 components: - type: Transform - pos: 31.5,-44.5 + pos: -27.5,0.5 parent: 2 - - uid: 11371 + - uid: 2855 components: - type: Transform - pos: 18.5,-27.5 + pos: 30.5,-14.5 parent: 2 - - uid: 11372 + - uid: 2865 components: - type: Transform - pos: 19.5,-27.5 + pos: -27.5,9.5 parent: 2 - - uid: 11373 + - uid: 2872 components: - type: Transform - pos: 20.5,-27.5 + pos: -26.5,8.5 parent: 2 - - uid: 11374 + - uid: 2873 components: - type: Transform - pos: 20.5,-28.5 + pos: -24.5,8.5 parent: 2 - - uid: 11375 + - uid: 2882 components: - type: Transform - pos: 20.5,-29.5 + pos: -19.5,23.5 parent: 2 - - uid: 11376 + - uid: 2948 components: - type: Transform - pos: 20.5,-30.5 + pos: -10.5,10.5 parent: 2 - - uid: 11377 + - uid: 2950 components: - type: Transform - pos: 21.5,-30.5 + pos: -23.5,16.5 parent: 2 - - uid: 11378 + - uid: 2976 components: - type: Transform - pos: 22.5,-30.5 + pos: -24.5,20.5 parent: 2 - - uid: 11379 + - uid: 2991 components: - type: Transform - pos: 23.5,-30.5 + pos: 22.5,-13.5 parent: 2 - - uid: 11380 + - uid: 3028 components: - type: Transform - pos: 24.5,-30.5 + pos: -25.5,16.5 parent: 2 - - uid: 11381 + - uid: 3034 components: - type: Transform - pos: 25.5,-30.5 + pos: -22.5,21.5 parent: 2 - - uid: 11382 + - uid: 3053 components: - type: Transform - pos: 26.5,-30.5 + pos: 24.5,-41.5 parent: 2 - - uid: 11383 + - uid: 3065 components: - type: Transform - pos: 27.5,-30.5 + pos: -2.5,-6.5 parent: 2 - - uid: 11403 + - uid: 3070 components: - type: Transform - pos: 30.5,-25.5 + pos: -1.5,-6.5 parent: 2 - - uid: 11404 + - uid: 3084 components: - type: Transform - pos: 31.5,-25.5 + pos: 23.5,-16.5 parent: 2 - - uid: 11405 + - uid: 3092 components: - type: Transform - pos: 32.5,-25.5 + pos: 24.5,-40.5 parent: 2 - - uid: 11406 + - uid: 3094 components: - type: Transform - pos: 33.5,-25.5 + pos: 23.5,-40.5 parent: 2 - - uid: 11407 + - uid: 3129 components: - type: Transform - pos: 34.5,-25.5 + pos: -20.5,20.5 parent: 2 - - uid: 11408 + - uid: 3133 components: - type: Transform - pos: 35.5,-25.5 + pos: 22.5,-40.5 parent: 2 - - uid: 11409 + - uid: 3144 components: - type: Transform - pos: 36.5,-25.5 + pos: 23.5,-17.5 parent: 2 - - uid: 11410 + - uid: 3317 components: - type: Transform - pos: 37.5,-25.5 + pos: 21.5,-13.5 parent: 2 - - uid: 11411 + - uid: 3326 components: - type: Transform - pos: 38.5,-25.5 + pos: 23.5,-3.5 parent: 2 - - uid: 11412 + - uid: 3340 components: - type: Transform - pos: 38.5,-26.5 + pos: 21.5,-40.5 parent: 2 - - uid: 11413 + - uid: 3357 components: - type: Transform - pos: 39.5,-26.5 + pos: -22.5,4.5 parent: 2 - - uid: 11414 + - uid: 3372 components: - type: Transform - pos: 40.5,-26.5 + pos: -32.5,-3.5 parent: 2 - - uid: 11427 + - uid: 3373 components: - type: Transform - pos: -22.5,-2.5 + pos: 22.5,-3.5 parent: 2 - - uid: 11491 + - uid: 3382 components: - type: Transform - pos: -28.5,-37.5 + pos: 20.5,-40.5 parent: 2 - - uid: 11492 + - uid: 3395 components: - type: Transform - pos: -26.5,-37.5 + pos: 18.5,-3.5 parent: 2 - - uid: 11493 + - uid: 3402 components: - type: Transform - pos: -35.5,-38.5 + pos: -32.5,13.5 parent: 2 - - uid: 11659 + - uid: 3403 components: - type: Transform - pos: 2.5,-36.5 + pos: 17.5,-3.5 parent: 2 - - uid: 11660 + - uid: 3472 components: - type: Transform - pos: 3.5,-36.5 + pos: 45.5,-6.5 parent: 2 - - uid: 11661 + - uid: 3518 components: - type: Transform - pos: 3.5,-37.5 + pos: 19.5,-40.5 parent: 2 - - uid: 11662 + - uid: 3525 components: - type: Transform - pos: 3.5,-38.5 + pos: 18.5,-40.5 parent: 2 - - uid: 11663 + - uid: 3539 components: - type: Transform - pos: 3.5,-39.5 + pos: 16.5,-21.5 parent: 2 - - uid: 11664 + - uid: 3571 components: - type: Transform - pos: 3.5,-40.5 + pos: -13.5,18.5 parent: 2 - - uid: 11665 + - uid: 3586 components: - type: Transform - pos: 1.5,-40.5 + pos: 8.5,-17.5 parent: 2 - - uid: 11666 + - uid: 3588 components: - type: Transform - pos: 0.5,-40.5 + pos: 1.5,11.5 parent: 2 - - uid: 11667 + - uid: 3598 components: - type: Transform - pos: -0.5,-40.5 + pos: 1.5,-17.5 parent: 2 - - uid: 11668 + - uid: 3607 components: - type: Transform - pos: -1.5,-40.5 + pos: 16.5,-20.5 parent: 2 - - uid: 11669 + - uid: 3667 components: - type: Transform - pos: -2.5,-40.5 + pos: 21.5,-3.5 parent: 2 - - uid: 11670 + - uid: 3670 components: - type: Transform - pos: -3.5,-40.5 + pos: 20.5,-3.5 parent: 2 - - uid: 11671 + - uid: 3671 components: - type: Transform - pos: -4.5,-40.5 + pos: 16.5,-3.5 parent: 2 - - uid: 11673 + - uid: 3674 components: - type: Transform - pos: -5.5,-40.5 + pos: 1.5,-35.5 parent: 2 - - uid: 11679 + - uid: 3702 components: - type: Transform - pos: -1.5,-41.5 + pos: 0.5,-21.5 parent: 2 - - uid: 11680 + - uid: 3706 components: - type: Transform - pos: -1.5,-42.5 + pos: 3.5,-17.5 parent: 2 - - uid: 11681 + - uid: 3747 components: - type: Transform - pos: -10.5,-33.5 + pos: 24.5,-42.5 parent: 2 - - uid: 11682 + - uid: 3755 components: - type: Transform - pos: -9.5,-33.5 + pos: 36.5,5.5 parent: 2 - - uid: 11683 + - uid: 3787 components: - type: Transform - pos: -8.5,-33.5 + pos: 36.5,4.5 parent: 2 - - uid: 11684 + - uid: 3817 components: - type: Transform - pos: -8.5,-34.5 + pos: 26.5,17.5 parent: 2 - - uid: 11685 + - uid: 3818 components: - type: Transform - pos: -8.5,-35.5 + pos: 26.5,18.5 parent: 2 - - uid: 11686 + - uid: 3933 components: - type: Transform - pos: 36.5,6.5 + pos: 0.5,-20.5 parent: 2 - - uid: 11687 + - uid: 3944 components: - type: Transform - pos: -8.5,-37.5 + pos: 2.5,-17.5 parent: 2 - - uid: 11688 + - uid: 3960 components: - type: Transform - pos: -8.5,-38.5 + pos: -13.5,20.5 parent: 2 - - uid: 11689 + - uid: 3995 components: - type: Transform - pos: -8.5,-39.5 + pos: 0.5,-18.5 parent: 2 - - uid: 11690 + - uid: 4000 components: - type: Transform - pos: -8.5,-40.5 + pos: 19.5,-3.5 parent: 2 - - uid: 11691 + - uid: 4016 components: - type: Transform - pos: -7.5,-40.5 + pos: -14.5,-48.5 parent: 2 - - uid: 11692 + - uid: 4060 components: - type: Transform - pos: -6.5,-40.5 + pos: -36.5,3.5 parent: 2 - - uid: 11693 + - uid: 4062 components: - type: Transform - pos: -15.5,-36.5 + pos: -15.5,20.5 parent: 2 - - uid: 11694 + - uid: 4116 components: - type: Transform - pos: -15.5,-37.5 + pos: -16.5,20.5 parent: 2 - - uid: 11695 + - uid: 4141 components: - type: Transform - pos: -15.5,-38.5 + pos: 15.5,-56.5 parent: 2 - - uid: 11696 + - uid: 4146 components: - type: Transform - pos: -14.5,-38.5 + pos: 16.5,-56.5 parent: 2 - - uid: 11697 + - uid: 4152 components: - type: Transform - pos: -13.5,-38.5 + pos: 17.5,-56.5 parent: 2 - - uid: 11698 + - uid: 4168 components: - type: Transform - pos: -12.5,-38.5 + pos: -22.5,-4.5 parent: 2 - - uid: 11699 + - uid: 4176 components: - type: Transform - pos: -11.5,-38.5 + pos: 41.5,-3.5 parent: 2 - - uid: 11700 + - uid: 4187 components: - type: Transform - pos: -10.5,-38.5 + pos: 31.5,-16.5 parent: 2 - - uid: 11701 + - uid: 4208 components: - type: Transform - pos: -9.5,-38.5 + pos: 24.5,-36.5 parent: 2 - - uid: 11702 + - uid: 4275 components: - type: Transform - pos: -14.5,-36.5 + pos: 24.5,-39.5 parent: 2 - - uid: 11793 + - uid: 4296 components: - type: Transform - pos: -8.5,-23.5 + pos: 31.5,-15.5 parent: 2 - - uid: 11794 + - uid: 4324 components: - type: Transform - pos: -9.5,-23.5 + pos: 0.5,-22.5 parent: 2 - - uid: 11796 + - uid: 4339 components: - type: Transform - pos: -7.5,-24.5 + pos: 31.5,-17.5 parent: 2 - - uid: 11797 + - uid: 4344 components: - type: Transform - pos: -6.5,-24.5 + pos: -33.5,3.5 parent: 2 - - uid: 11808 + - uid: 4355 components: - type: Transform - pos: -10.5,-14.5 + pos: 14.5,-61.5 parent: 2 - - uid: 11809 + - uid: 4398 components: - type: Transform - pos: -10.5,-13.5 + pos: 38.5,-31.5 parent: 2 - - uid: 11810 + - uid: 4539 components: - type: Transform - pos: -10.5,-12.5 + pos: 24.5,-35.5 parent: 2 - - uid: 11811 + - uid: 4579 components: - type: Transform - pos: -9.5,-12.5 + pos: 24.5,-34.5 parent: 2 - - uid: 11823 + - uid: 4584 components: - type: Transform - pos: -7.5,-13.5 + pos: 41.5,-31.5 parent: 2 - - uid: 11896 + - uid: 4589 components: - type: Transform - pos: 11.5,-55.5 + pos: -5.5,-4.5 parent: 2 - - uid: 11928 + - uid: 4595 components: - type: Transform - pos: -2.5,-22.5 + pos: 24.5,-33.5 parent: 2 - - uid: 11993 + - uid: 4606 components: - type: Transform - pos: 22.5,13.5 + pos: 23.5,-33.5 parent: 2 - - uid: 11998 + - uid: 4612 components: - type: Transform - pos: 28.5,4.5 + pos: 4.5,16.5 parent: 2 - - uid: 11999 + - uid: 4614 components: - type: Transform - pos: 27.5,4.5 + pos: -0.5,12.5 parent: 2 - - uid: 12000 + - uid: 4615 components: - type: Transform - pos: 27.5,5.5 + pos: 0.5,11.5 parent: 2 - - uid: 12001 + - uid: 4625 components: - type: Transform - pos: 27.5,6.5 + pos: -13.5,17.5 parent: 2 - - uid: 12002 + - uid: 4631 components: - type: Transform - pos: 23.5,11.5 + pos: -13.5,16.5 parent: 2 - - uid: 12011 + - uid: 4634 components: - type: Transform - pos: 22.5,11.5 + pos: -13.5,14.5 parent: 2 - - uid: 12012 + - uid: 4636 components: - type: Transform - pos: 21.5,11.5 + pos: -24.5,16.5 parent: 2 - - uid: 12013 + - uid: 4657 components: - type: Transform - pos: 21.5,10.5 + pos: 31.5,-14.5 parent: 2 - - uid: 12014 + - uid: 4669 components: - type: Transform - pos: 20.5,10.5 + pos: 31.5,-13.5 parent: 2 - - uid: 12015 + - uid: 4679 components: - type: Transform - pos: 19.5,10.5 + pos: 31.5,-12.5 parent: 2 - - uid: 12017 + - uid: 4769 components: - type: Transform - pos: 16.5,10.5 + pos: 14.5,-33.5 parent: 2 - - uid: 12018 + - uid: 4791 components: - type: Transform - pos: 15.5,10.5 + pos: 15.5,-33.5 parent: 2 - - uid: 12019 + - uid: 4810 components: - type: Transform - pos: 18.5,10.5 + pos: 16.5,-33.5 parent: 2 - - uid: 12020 + - uid: 4834 components: - type: Transform - pos: 15.5,9.5 + pos: 17.5,-33.5 parent: 2 - - uid: 12021 + - uid: 4840 components: - type: Transform - pos: 15.5,8.5 + pos: 34.5,-40.5 parent: 2 - - uid: 12022 + - uid: 4913 components: - type: Transform - pos: 15.5,7.5 + pos: 18.5,-33.5 parent: 2 - - uid: 12023 + - uid: 4947 components: - type: Transform - pos: 15.5,6.5 + pos: 19.5,-33.5 parent: 2 - - uid: 12024 + - uid: 4980 components: - type: Transform - pos: 15.5,5.5 + pos: 20.5,-33.5 parent: 2 - - uid: 12025 + - uid: 5005 components: - type: Transform - pos: 15.5,4.5 + pos: -2.5,-23.5 parent: 2 - - uid: 12026 + - uid: 5080 components: - type: Transform - pos: 15.5,3.5 + pos: 21.5,-33.5 parent: 2 - - uid: 12027 + - uid: 5365 components: - type: Transform - pos: 15.5,2.5 + pos: 27.5,4.5 parent: 2 - - uid: 12028 + - uid: 5366 components: - type: Transform - pos: 15.5,1.5 + pos: 26.5,4.5 parent: 2 - - uid: 12029 + - uid: 5400 components: - type: Transform - pos: 15.5,0.5 + pos: -21.5,22.5 parent: 2 - - uid: 12030 + - uid: 5402 components: - type: Transform - pos: 13.5,0.5 + pos: -20.5,22.5 parent: 2 - - uid: 12031 + - uid: 5517 components: - type: Transform - pos: 14.5,0.5 + pos: -14.5,20.5 parent: 2 - - uid: 12081 + - uid: 5524 components: - type: Transform - pos: -6.5,-22.5 + pos: -7.5,-14.5 parent: 2 - - uid: 12130 + - uid: 5543 components: - type: Transform - pos: -29.5,-54.5 + pos: 0.5,-19.5 parent: 2 - - uid: 12244 + - uid: 5840 components: - type: Transform - pos: -18.5,15.5 + pos: -6.5,23.5 parent: 2 - - uid: 12260 + - uid: 5849 components: - type: Transform - pos: 36.5,-40.5 + pos: 25.5,-3.5 parent: 2 - - uid: 12355 + - uid: 5856 components: - type: Transform - pos: -18.5,20.5 + pos: 17.5,7.5 parent: 2 - - uid: 12381 + - uid: 5873 components: - type: Transform - pos: -30.5,-22.5 + pos: -6.5,24.5 parent: 2 - - uid: 12382 + - uid: 5884 components: - type: Transform - pos: -30.5,-23.5 + pos: -2.5,24.5 parent: 2 - - uid: 12383 + - uid: 5896 components: - type: Transform - pos: -30.5,-24.5 + pos: 14.5,-17.5 parent: 2 - - uid: 12384 + - uid: 5914 components: - type: Transform - pos: -30.5,-25.5 + pos: -2.5,25.5 parent: 2 - - uid: 12392 + - uid: 5921 components: - type: Transform - pos: -30.5,-26.5 + pos: -33.5,-3.5 parent: 2 - - uid: 12393 + - uid: 6072 components: - type: Transform - pos: -29.5,-26.5 + pos: 2.5,11.5 parent: 2 - - uid: 12394 + - uid: 6169 components: - type: Transform - pos: -28.5,-26.5 + pos: 42.5,2.5 parent: 2 - - uid: 12395 + - uid: 6183 components: - type: Transform - pos: -27.5,-26.5 + pos: 41.5,-32.5 parent: 2 - - uid: 12396 + - uid: 6235 components: - type: Transform - pos: -26.5,-26.5 + pos: 39.5,-31.5 parent: 2 - - uid: 12398 + - uid: 6242 components: - type: Transform - pos: -25.5,-26.5 + pos: 40.5,-31.5 parent: 2 - - uid: 12399 + - uid: 6244 components: - type: Transform - pos: -25.5,-27.5 + pos: 43.5,2.5 parent: 2 - - uid: 12412 + - uid: 6252 components: - type: Transform - pos: -30.5,-27.5 + pos: 2.5,-40.5 parent: 2 - - uid: 12413 + - uid: 6282 components: - type: Transform - pos: -30.5,-28.5 + pos: 1.5,-36.5 parent: 2 - - uid: 12414 + - uid: 6320 components: - type: Transform - pos: -30.5,-29.5 + pos: 23.5,-6.5 parent: 2 - - uid: 12415 + - uid: 6333 components: - type: Transform - pos: -30.5,-30.5 + pos: 14.5,-64.5 parent: 2 - - uid: 12416 + - uid: 6349 components: - type: Transform - pos: -31.5,-30.5 + pos: 18.5,-21.5 parent: 2 - - uid: 12417 + - uid: 6415 components: - type: Transform - pos: -32.5,-30.5 + pos: 14.5,-60.5 parent: 2 - - uid: 12418 + - uid: 6480 components: - type: Transform - pos: -29.5,-31.5 + pos: -18.5,16.5 parent: 2 - - uid: 12419 + - uid: 6511 components: - type: Transform - pos: -29.5,-30.5 + pos: 15.5,-58.5 parent: 2 - - uid: 12420 + - uid: 6513 components: - type: Transform - pos: -29.5,-32.5 + pos: -1.5,-57.5 parent: 2 - - uid: 12421 + - uid: 6676 components: - type: Transform - pos: -29.5,-33.5 + pos: 45.5,-8.5 parent: 2 - - uid: 12422 + - uid: 6678 components: - type: Transform - pos: -29.5,-34.5 + pos: 45.5,-12.5 parent: 2 - - uid: 12423 + - uid: 6688 components: - type: Transform - pos: -29.5,-35.5 + pos: 42.5,8.5 parent: 2 - - uid: 12426 + - uid: 6702 components: - type: Transform - pos: -29.5,-37.5 + pos: -7.5,-21.5 parent: 2 - - uid: 12432 + - uid: 6752 components: - type: Transform - pos: 36.5,-39.5 + pos: -22.5,-3.5 parent: 2 - - uid: 12452 + - uid: 6857 components: - type: Transform - pos: -31.5,-21.5 + pos: 35.5,-40.5 parent: 2 - - uid: 12453 + - uid: 6872 components: - type: Transform - pos: -32.5,-21.5 + pos: 26.5,-6.5 parent: 2 - - uid: 12454 + - uid: 6915 components: - type: Transform - pos: -33.5,-21.5 + pos: 39.5,14.5 parent: 2 - - uid: 12455 + - uid: 6951 components: - type: Transform - pos: -34.5,-21.5 + pos: 29.5,-14.5 parent: 2 - - uid: 12456 + - uid: 6954 components: - type: Transform - pos: -35.5,-21.5 + pos: 28.5,-14.5 parent: 2 - - uid: 12457 + - uid: 6965 components: - type: Transform - pos: -35.5,-22.5 + pos: 27.5,-14.5 parent: 2 - - uid: 12458 + - uid: 6971 components: - type: Transform - pos: -35.5,-23.5 + pos: -0.5,-6.5 parent: 2 - - uid: 12459 + - uid: 6972 components: - type: Transform - pos: -35.5,-24.5 + pos: 26.5,-14.5 parent: 2 - - uid: 12460 + - uid: 7000 components: - type: Transform - pos: -35.5,-25.5 + pos: 24.5,-14.5 parent: 2 - - uid: 12461 + - uid: 7020 components: - type: Transform - pos: -34.5,-25.5 + pos: 25.5,-14.5 parent: 2 - - uid: 12462 + - uid: 7025 components: - type: Transform - pos: -33.5,-25.5 + pos: 14.5,-63.5 parent: 2 - - uid: 12487 + - uid: 7031 components: - type: Transform - pos: -36.5,-21.5 + pos: -7.5,-19.5 parent: 2 - - uid: 12488 + - uid: 7032 components: - type: Transform - pos: -37.5,-21.5 + pos: -7.5,-18.5 parent: 2 - - uid: 12489 + - uid: 7084 components: - type: Transform - pos: -38.5,-21.5 + pos: -14.5,-49.5 parent: 2 - - uid: 12490 + - uid: 7093 components: - type: Transform - pos: -39.5,-21.5 + pos: 40.5,14.5 parent: 2 - - uid: 12491 + - uid: 7095 components: - type: Transform - pos: -40.5,-21.5 + pos: 40.5,-5.5 parent: 2 - - uid: 12492 + - uid: 7122 components: - type: Transform - pos: -41.5,-21.5 + pos: -9.5,-16.5 parent: 2 - - uid: 12493 + - uid: 7139 components: - type: Transform - pos: -42.5,-21.5 + pos: 22.5,12.5 parent: 2 - - uid: 12494 + - uid: 7144 components: - type: Transform - pos: -43.5,-21.5 + pos: 21.5,7.5 parent: 2 - - uid: 12495 + - uid: 7145 components: - type: Transform - pos: -44.5,-21.5 + pos: 20.5,7.5 parent: 2 - - uid: 12496 + - uid: 7146 components: - type: Transform - pos: -41.5,-22.5 + pos: 21.5,8.5 parent: 2 - - uid: 12497 + - uid: 7147 components: - type: Transform - pos: -41.5,-23.5 + pos: 19.5,7.5 parent: 2 - - uid: 12498 + - uid: 7148 components: - type: Transform - pos: -44.5,-22.5 + pos: 18.5,7.5 parent: 2 - - uid: 12499 + - uid: 7173 components: - type: Transform - pos: -44.5,-23.5 + pos: -48.5,-23.5 parent: 2 - - uid: 12522 + - uid: 7194 components: - type: Transform - pos: -37.5,-43.5 + pos: 40.5,6.5 parent: 2 - - uid: 12523 + - uid: 7234 components: - type: Transform - pos: -38.5,-43.5 + pos: -21.5,16.5 parent: 2 - - uid: 12524 + - uid: 7259 components: - type: Transform - pos: -39.5,-43.5 + pos: 26.5,-51.5 parent: 2 - - uid: 12525 + - uid: 7260 components: - type: Transform - pos: -40.5,-43.5 + pos: 27.5,-50.5 parent: 2 - - uid: 12526 + - uid: 7356 components: - type: Transform - pos: -41.5,-43.5 + pos: 22.5,-33.5 parent: 2 - - uid: 12527 + - uid: 7391 components: - type: Transform - pos: -42.5,-43.5 + pos: 36.5,2.5 parent: 2 - - uid: 12528 + - uid: 7394 components: - type: Transform - pos: -43.5,-43.5 + pos: 36.5,1.5 parent: 2 - - uid: 12529 + - uid: 7395 components: - type: Transform - pos: -44.5,-43.5 + pos: 36.5,0.5 parent: 2 - - uid: 12530 + - uid: 7396 components: - type: Transform - pos: -36.5,-42.5 + pos: 36.5,-0.5 parent: 2 - - uid: 12532 + - uid: 7415 components: - type: Transform - pos: -36.5,-40.5 + pos: 27.5,-51.5 parent: 2 - - uid: 12533 + - uid: 7502 components: - type: Transform - pos: -35.5,-40.5 + pos: 41.5,8.5 parent: 2 - - uid: 12534 + - uid: 7581 components: - type: Transform - pos: -34.5,-40.5 + pos: 21.5,9.5 parent: 2 - - uid: 12535 + - uid: 7603 components: - type: Transform - pos: -33.5,-40.5 + pos: 15.5,-16.5 parent: 2 - - uid: 12536 + - uid: 7647 components: - type: Transform - pos: -32.5,-40.5 + pos: 24.5,22.5 parent: 2 - - uid: 12537 + - uid: 7663 components: - type: Transform - pos: -31.5,-40.5 + pos: -51.5,-59.5 parent: 2 - - uid: 12538 + - uid: 7664 components: - type: Transform - pos: -31.5,-41.5 + pos: 23.5,22.5 parent: 2 - - uid: 12539 + - uid: 7670 components: - type: Transform - pos: -31.5,-42.5 + pos: 45.5,-4.5 parent: 2 - - uid: 12540 + - uid: 7679 components: - type: Transform - pos: -31.5,-43.5 + pos: -53.5,-59.5 parent: 2 - - uid: 12542 + - uid: 7698 components: - type: Transform - pos: -36.5,-39.5 + pos: -31.5,-3.5 parent: 2 - - uid: 12543 + - uid: 7741 components: - type: Transform - pos: -36.5,-38.5 + pos: 22.5,22.5 parent: 2 - - uid: 12544 + - uid: 7779 components: - type: Transform - pos: -36.5,-37.5 + pos: -51.5,-58.5 parent: 2 - - uid: 12545 + - uid: 7783 components: - type: Transform - pos: -36.5,-36.5 + pos: 19.5,22.5 parent: 2 - - uid: 12546 + - uid: 7792 components: - type: Transform - pos: -36.5,-35.5 + pos: -50.5,-58.5 parent: 2 - - uid: 12547 + - uid: 7842 components: - type: Transform - pos: -36.5,-34.5 + pos: -24.5,-9.5 parent: 2 - - uid: 12548 + - uid: 7852 components: - type: Transform - pos: -36.5,-33.5 + pos: 21.5,22.5 parent: 2 - - uid: 12549 + - uid: 7853 components: - type: Transform - pos: -37.5,-33.5 + pos: 20.5,22.5 parent: 2 - - uid: 12550 + - uid: 7859 components: - type: Transform - pos: -38.5,-33.5 + pos: 14.5,21.5 parent: 2 - - uid: 12552 + - uid: 7867 components: - type: Transform - pos: -10.5,-21.5 + pos: 16.5,22.5 parent: 2 - - uid: 12557 + - uid: 7870 components: - type: Transform - pos: -22.5,11.5 + pos: 18.5,22.5 parent: 2 - - uid: 12562 + - uid: 7871 components: - type: Transform - pos: -41.5,-45.5 + pos: 15.5,21.5 parent: 2 - - uid: 12563 + - uid: 7873 components: - type: Transform - pos: -41.5,-47.5 + pos: 16.5,-4.5 parent: 2 - - uid: 12565 + - uid: 7875 components: - type: Transform - pos: -41.5,-48.5 + pos: 17.5,22.5 parent: 2 - - uid: 12566 + - uid: 7878 components: - type: Transform - pos: -41.5,-49.5 + pos: 15.5,22.5 parent: 2 - - uid: 12567 + - uid: 7883 components: - type: Transform - pos: -45.5,-43.5 + pos: 16.5,-11.5 parent: 2 - - uid: 12568 + - uid: 7884 components: - type: Transform - pos: -46.5,-43.5 + pos: 16.5,-9.5 parent: 2 - - uid: 12569 + - uid: 7886 components: - type: Transform - pos: -47.5,-43.5 + pos: 16.5,-10.5 parent: 2 - - uid: 12570 + - uid: 7887 components: - type: Transform - pos: -47.5,-44.5 + pos: 16.5,-8.5 parent: 2 - - uid: 12571 + - uid: 7929 components: - type: Transform - pos: -44.5,-42.5 + pos: 40.5,18.5 parent: 2 - - uid: 12572 + - uid: 7949 components: - type: Transform - pos: -44.5,-41.5 + pos: -21.5,4.5 parent: 2 - - uid: 12575 + - uid: 7956 components: - type: Transform - pos: -21.5,11.5 + pos: -49.5,-51.5 parent: 2 - - uid: 12577 + - uid: 8066 components: - type: Transform - pos: -13.5,12.5 + pos: -17.5,20.5 parent: 2 - - uid: 12578 + - uid: 8090 components: - type: Transform - pos: -13.5,13.5 + pos: 45.5,-13.5 parent: 2 - - uid: 12583 + - uid: 8098 components: - type: Transform - pos: -44.5,-30.5 + pos: 4.5,13.5 parent: 2 - - uid: 12584 + - uid: 8099 components: - type: Transform - pos: -45.5,-30.5 + pos: 4.5,14.5 parent: 2 - - uid: 12585 + - uid: 8108 components: - type: Transform - pos: -46.5,-30.5 + pos: 45.5,-10.5 parent: 2 - - uid: 12586 + - uid: 8274 components: - type: Transform - pos: -47.5,-30.5 + pos: 40.5,-6.5 parent: 2 - - uid: 12587 + - uid: 8295 components: - type: Transform - pos: -47.5,-29.5 + pos: -50.5,-51.5 parent: 2 - - uid: 12589 + - uid: 8368 components: - type: Transform - pos: -43.5,-40.5 + pos: -46.5,-48.5 parent: 2 - - uid: 12590 + - uid: 8450 components: - type: Transform - pos: -42.5,-40.5 + pos: -48.5,-48.5 parent: 2 - - uid: 12606 + - uid: 8457 components: - type: Transform - pos: -39.5,-33.5 + pos: -11.5,25.5 parent: 2 - - uid: 12649 + - uid: 8472 components: - type: Transform - pos: -30.5,18.5 + pos: -49.5,-48.5 parent: 2 - - uid: 12676 + - uid: 8481 components: - type: Transform - pos: -32.5,-29.5 + pos: -49.5,-50.5 parent: 2 - - uid: 12677 + - uid: 8483 components: - type: Transform - pos: -32.5,-28.5 + pos: -49.5,-55.5 parent: 2 - - uid: 12725 + - uid: 8484 components: - type: Transform - pos: 11.5,-56.5 + pos: -27.5,-62.5 parent: 2 - - uid: 12727 + - uid: 8493 components: - type: Transform - pos: 11.5,-58.5 + pos: -49.5,-56.5 parent: 2 - - uid: 12768 + - uid: 8524 components: - type: Transform - pos: 11.5,-59.5 + pos: -47.5,-48.5 parent: 2 - - uid: 12772 + - uid: 8525 components: - type: Transform - pos: 11.5,-60.5 + pos: 7.5,-17.5 parent: 2 - - uid: 12773 + - uid: 8547 components: - type: Transform - pos: 11.5,-61.5 + pos: 3.5,11.5 parent: 2 - - uid: 12774 + - uid: 8552 components: - type: Transform - pos: 11.5,-62.5 + pos: -49.5,-52.5 parent: 2 - - uid: 12775 + - uid: 8553 components: - type: Transform - pos: 11.5,-63.5 + pos: -49.5,-57.5 parent: 2 - - uid: 12776 + - uid: 8593 components: - type: Transform - pos: 11.5,-64.5 + pos: 17.5,8.5 parent: 2 - - uid: 12777 + - uid: 8616 components: - type: Transform - pos: 11.5,-57.5 + pos: -49.5,-53.5 parent: 2 - - uid: 12778 + - uid: 8625 components: - type: Transform - pos: 12.5,-64.5 + pos: -49.5,-54.5 parent: 2 - - uid: 12779 + - uid: 8641 components: - type: Transform - pos: 13.5,-64.5 + pos: 5.5,-17.5 parent: 2 - - uid: 12782 + - uid: 8643 components: - type: Transform - pos: -11.5,-54.5 + pos: 44.5,8.5 parent: 2 - - uid: 12783 + - uid: 8644 components: - type: Transform - pos: -12.5,-54.5 + pos: 44.5,7.5 parent: 2 - - uid: 12784 + - uid: 8653 components: - type: Transform - pos: -11.5,-55.5 + pos: 41.5,7.5 parent: 2 - - uid: 12785 + - uid: 8661 components: - type: Transform - pos: -10.5,-55.5 + pos: 43.5,8.5 parent: 2 - - uid: 12786 + - uid: 8670 components: - type: Transform - pos: -9.5,-55.5 + pos: -35.5,3.5 parent: 2 - - uid: 12787 + - uid: 8683 components: - type: Transform - pos: -8.5,-55.5 + pos: -20.5,14.5 parent: 2 - - uid: 12792 + - uid: 8706 components: - type: Transform - pos: -8.5,-56.5 + pos: 42.5,14.5 parent: 2 - - uid: 12793 + - uid: 8707 components: - type: Transform - pos: -8.5,-57.5 + pos: 41.5,14.5 parent: 2 - - uid: 12794 + - uid: 8764 components: - type: Transform - pos: -8.5,-58.5 + pos: -4.5,-22.5 parent: 2 - - uid: 12795 + - uid: 8898 components: - type: Transform - pos: -8.5,-59.5 + pos: 24.5,-50.5 parent: 2 - - uid: 12796 + - uid: 8960 components: - type: Transform - pos: -8.5,-60.5 + pos: 44.5,1.5 parent: 2 - - uid: 12797 + - uid: 8963 components: - type: Transform - pos: -8.5,-61.5 + pos: 44.5,2.5 parent: 2 - - uid: 12798 + - uid: 8999 components: - type: Transform - pos: -8.5,-62.5 + pos: -19.5,16.5 parent: 2 - - uid: 12799 + - uid: 9015 components: - type: Transform - pos: -8.5,-63.5 + pos: 44.5,3.5 parent: 2 - - uid: 12800 + - uid: 9033 components: - type: Transform - pos: -8.5,-64.5 + pos: 44.5,0.5 parent: 2 - - uid: 12801 + - uid: 9037 components: - type: Transform - pos: -9.5,-64.5 + pos: 36.5,-14.5 parent: 2 - - uid: 12802 + - uid: 9038 components: - type: Transform - pos: -10.5,-64.5 + pos: 36.5,-13.5 parent: 2 - - uid: 12877 + - uid: 9039 components: - type: Transform - pos: -35.5,-51.5 + pos: 36.5,-12.5 parent: 2 - - uid: 12878 + - uid: 9040 components: - type: Transform - pos: -34.5,-51.5 + pos: 36.5,-10.5 parent: 2 - - uid: 12879 + - uid: 9041 components: - type: Transform - pos: -33.5,-51.5 + pos: 36.5,-9.5 parent: 2 - - uid: 12886 + - uid: 9042 components: - type: Transform - pos: -30.5,-56.5 + pos: 36.5,-8.5 parent: 2 - - uid: 12887 + - uid: 9044 components: - type: Transform - pos: -31.5,-56.5 + pos: 36.5,-11.5 parent: 2 - - uid: 12919 + - uid: 9051 components: - type: Transform - pos: -31.5,-44.5 + pos: 39.5,-6.5 parent: 2 - - uid: 12920 + - uid: 9052 components: - type: Transform - pos: -32.5,-44.5 + pos: 38.5,-6.5 parent: 2 - - uid: 12921 + - uid: 9053 components: - type: Transform - pos: -33.5,-44.5 + pos: 37.5,-6.5 parent: 2 - - uid: 12922 + - uid: 9054 components: - type: Transform - pos: -33.5,-43.5 + pos: 36.5,-6.5 parent: 2 - - uid: 12923 + - uid: 9129 components: - type: Transform - pos: -33.5,-42.5 + pos: 45.5,-15.5 parent: 2 - - uid: 12930 + - uid: 9194 components: - type: Transform - pos: -30.5,-48.5 + pos: 1.5,-37.5 parent: 2 - - uid: 12931 + - uid: 9207 components: - type: Transform - pos: -29.5,-48.5 + pos: 45.5,-14.5 parent: 2 - - uid: 12932 + - uid: 9312 components: - type: Transform - pos: -28.5,-48.5 + pos: 17.5,-21.5 parent: 2 - - uid: 12933 + - uid: 9317 components: - type: Transform - pos: -27.5,-48.5 + pos: 12.5,-49.5 parent: 2 - - uid: 12934 + - uid: 9370 components: - type: Transform - pos: -27.5,-47.5 + pos: 11.5,-17.5 parent: 2 - - uid: 12935 + - uid: 9403 components: - type: Transform - pos: -27.5,-46.5 + pos: 32.5,19.5 parent: 2 - - uid: 12936 + - uid: 9499 components: - type: Transform - pos: -27.5,-45.5 + pos: 32.5,18.5 parent: 2 - - uid: 12938 + - uid: 9500 components: - type: Transform - pos: -27.5,-44.5 + pos: 32.5,21.5 parent: 2 - - uid: 12939 + - uid: 9508 components: - type: Transform - pos: -27.5,-43.5 + pos: 32.5,20.5 parent: 2 - - uid: 12940 + - uid: 9528 components: - type: Transform - pos: -27.5,-42.5 + pos: 12.5,-17.5 parent: 2 - - uid: 12941 + - uid: 9529 components: - type: Transform - pos: -27.5,-41.5 + pos: 9.5,-17.5 parent: 2 - - uid: 12942 + - uid: 9535 components: - type: Transform - pos: -26.5,-41.5 + pos: -29.5,22.5 parent: 2 - - uid: 12943 + - uid: 9544 components: - type: Transform - pos: -26.5,-40.5 + pos: 13.5,-17.5 parent: 2 - - uid: 12944 + - uid: 9559 components: - type: Transform - pos: -26.5,-39.5 + pos: -28.5,22.5 parent: 2 - - uid: 12976 + - uid: 9568 components: - type: Transform - pos: -18.5,8.5 + pos: 16.5,-18.5 parent: 2 - - uid: 12987 + - uid: 9576 components: - type: Transform - pos: -19.5,8.5 + pos: 28.5,-50.5 parent: 2 - - uid: 13048 + - uid: 9577 components: - type: Transform - pos: -19.5,4.5 + pos: 4.5,-17.5 parent: 2 - - uid: 13087 + - uid: 9658 components: - type: Transform - pos: -30.5,0.5 + pos: 29.5,-55.5 parent: 2 - - uid: 13159 + - uid: 9659 components: - type: Transform - pos: 17.5,10.5 + pos: 25.5,-51.5 parent: 2 - - uid: 13177 + - uid: 9681 components: - type: Transform - pos: 14.5,5.5 + pos: 24.5,-51.5 parent: 2 - - uid: 13178 + - uid: 9688 components: - type: Transform - pos: 13.5,5.5 + pos: 24.5,-52.5 parent: 2 - - uid: 13179 + - uid: 9689 components: - type: Transform - pos: 12.5,5.5 + pos: 24.5,-53.5 parent: 2 - - uid: 13180 + - uid: 9690 components: - type: Transform - pos: 11.5,5.5 + pos: 24.5,-54.5 parent: 2 - - uid: 13181 + - uid: 9692 components: - type: Transform - pos: 11.5,6.5 + pos: 24.5,-55.5 parent: 2 - - uid: 13198 + - uid: 9702 components: - type: Transform - pos: -27.5,-18.5 + pos: 25.5,-55.5 parent: 2 - - uid: 13594 + - uid: 9703 components: - type: Transform - pos: 36.5,-7.5 + pos: 26.5,-55.5 parent: 2 - - uid: 13637 + - uid: 9717 components: - type: Transform - pos: 41.5,-2.5 + pos: 27.5,-55.5 parent: 2 - - uid: 13705 + - uid: 9732 components: - type: Transform - pos: 41.5,-4.5 + pos: 28.5,-55.5 parent: 2 - - uid: 13964 + - uid: 9733 components: - type: Transform - pos: 41.5,-5.5 + pos: 28.5,-54.5 parent: 2 - - uid: 14069 + - uid: 9735 components: - type: Transform - pos: -27.5,-37.5 + pos: 36.5,9.5 parent: 2 - - uid: 14452 + - uid: 9739 components: - type: Transform - pos: -24.5,1.5 + pos: 28.5,-53.5 parent: 2 - - uid: 14453 + - uid: 9743 components: - type: Transform - pos: -26.5,1.5 + pos: 28.5,-52.5 parent: 2 - - uid: 14466 + - uid: 9751 components: - type: Transform - pos: -25.5,15.5 + pos: -13.5,-54.5 parent: 2 - - uid: 14575 + - uid: 9754 components: - type: Transform - pos: -8.5,-52.5 + pos: -14.5,-54.5 parent: 2 - - uid: 14580 + - uid: 9755 components: - type: Transform - pos: -9.5,-51.5 + pos: -15.5,-54.5 parent: 2 - - uid: 14584 + - uid: 9756 components: - type: Transform - pos: -13.5,11.5 + pos: -16.5,-54.5 parent: 2 - - uid: 14585 + - uid: 9757 components: - type: Transform - pos: -12.5,11.5 + pos: -17.5,-54.5 parent: 2 - - uid: 14611 + - uid: 9758 components: - type: Transform - pos: -8.5,-54.5 + pos: -18.5,-54.5 parent: 2 - - uid: 14797 + - uid: 9759 components: - type: Transform - pos: -21.5,20.5 + pos: -19.5,-54.5 parent: 2 - - uid: 14830 + - uid: 9760 components: - type: Transform - pos: -0.5,13.5 + pos: -20.5,-54.5 parent: 2 - - uid: 14833 + - uid: 9761 components: - type: Transform - pos: -23.5,14.5 + pos: -21.5,-54.5 parent: 2 - - uid: 14860 + - uid: 9801 components: - type: Transform - pos: -20.5,8.5 + pos: -17.5,-53.5 parent: 2 - - uid: 14885 + - uid: 9802 components: - type: Transform - pos: -44.5,-40.5 + pos: -17.5,-52.5 parent: 2 - - uid: 15030 + - uid: 9803 components: - type: Transform - pos: -23.5,11.5 + pos: -17.5,-51.5 parent: 2 - - uid: 15031 + - uid: 9804 components: - type: Transform - pos: -21.5,9.5 + pos: -16.5,-50.5 parent: 2 - - uid: 15196 + - uid: 9806 components: - type: Transform - pos: -44.5,-39.5 + pos: -17.5,-50.5 parent: 2 - - uid: 15285 + - uid: 9810 components: - type: Transform - pos: 32.5,-37.5 + pos: -15.5,-50.5 parent: 2 - - uid: 15287 + - uid: 9811 components: - type: Transform - pos: -44.5,-33.5 + pos: -14.5,-50.5 parent: 2 - - uid: 15290 + - uid: 9814 components: - type: Transform - pos: 31.5,-37.5 + pos: -13.5,-48.5 parent: 2 - - uid: 15291 + - uid: 9815 components: - type: Transform - pos: 30.5,-37.5 + pos: -11.5,-48.5 parent: 2 - - uid: 15293 + - uid: 9816 components: - type: Transform - pos: -44.5,-24.5 + pos: -12.5,-48.5 parent: 2 - - uid: 15295 + - uid: 9818 components: - type: Transform - pos: -44.5,-25.5 + pos: -10.5,-48.5 parent: 2 - - uid: 15306 + - uid: 9869 components: - type: Transform - pos: -44.5,-32.5 + pos: 34.5,-54.5 parent: 2 - - uid: 15319 + - uid: 9871 components: - type: Transform - pos: 30.5,-36.5 + pos: -18.5,-50.5 parent: 2 - - uid: 15346 + - uid: 9872 components: - type: Transform - pos: -10.5,9.5 + pos: -19.5,-50.5 parent: 2 - - uid: 15362 + - uid: 9873 components: - type: Transform - pos: -40.5,-33.5 + pos: -20.5,-50.5 parent: 2 - - uid: 15363 + - uid: 9876 components: - type: Transform - pos: -19.5,20.5 + pos: 30.5,-55.5 parent: 2 - - uid: 15364 + - uid: 9877 components: - type: Transform - pos: -44.5,-34.5 + pos: -21.5,-51.5 parent: 2 - - uid: 15365 + - uid: 9911 components: - type: Transform - pos: -44.5,-37.5 + pos: -20.5,-49.5 parent: 2 - - uid: 15368 + - uid: 9912 components: - type: Transform - pos: 37.5,-31.5 + pos: -20.5,-48.5 parent: 2 - - uid: 15400 + - uid: 9913 components: - type: Transform - pos: -9.5,-21.5 + pos: -20.5,-47.5 parent: 2 - - uid: 15401 + - uid: 9914 components: - type: Transform - pos: -8.5,-21.5 + pos: -20.5,-46.5 parent: 2 - - uid: 15402 + - uid: 9915 components: - type: Transform - pos: -13.5,-22.5 + pos: -20.5,-45.5 parent: 2 - - uid: 15404 + - uid: 9926 components: - type: Transform - pos: -8.5,-19.5 + pos: 30.5,-54.5 parent: 2 - - uid: 15407 + - uid: 9927 components: - type: Transform - pos: -7.5,-23.5 + pos: 31.5,-54.5 parent: 2 - - uid: 15417 + - uid: 9930 components: - type: Transform - pos: 36.5,-31.5 + pos: 32.5,-54.5 parent: 2 - - uid: 15418 + - uid: 9931 components: - type: Transform - pos: 35.5,-31.5 + pos: 33.5,-54.5 parent: 2 - - uid: 15419 + - uid: 9932 components: - type: Transform - pos: 34.5,-31.5 + pos: 35.5,-54.5 parent: 2 - - uid: 15420 + - uid: 9935 components: - type: Transform - pos: 34.5,-32.5 + pos: 36.5,-54.5 parent: 2 - - uid: 15426 + - uid: 9998 components: - type: Transform - pos: 34.5,-33.5 + pos: 43.5,-53.5 parent: 2 - - uid: 15428 + - uid: 10012 components: - type: Transform - pos: 34.5,-35.5 + pos: 10.5,-17.5 parent: 2 - - uid: 15434 + - uid: 10057 components: - type: Transform - pos: 34.5,-36.5 + pos: 15.5,-59.5 parent: 2 - - uid: 15436 + - uid: 10066 components: - type: Transform - pos: 34.5,-37.5 + pos: 36.5,12.5 parent: 2 - - uid: 15438 + - uid: 10069 components: - type: Transform - pos: 34.5,-34.5 + pos: 36.5,8.5 parent: 2 - - uid: 15441 + - uid: 10071 components: - type: Transform - pos: 18.5,-42.5 + pos: 24.5,-38.5 parent: 2 - - uid: 15442 + - uid: 10072 components: - type: Transform - pos: 18.5,-41.5 + pos: 24.5,-37.5 parent: 2 - - uid: 15444 + - uid: 10078 components: - type: Transform - pos: 11.5,-43.5 + pos: 36.5,7.5 parent: 2 - - uid: 15445 + - uid: 10090 components: - type: Transform - pos: 10.5,-43.5 + pos: 36.5,10.5 parent: 2 - - uid: 15446 + - uid: 10142 components: - type: Transform - pos: 10.5,-42.5 + pos: 37.5,6.5 parent: 2 - - uid: 15447 + - uid: 10242 components: - type: Transform - pos: 10.5,-41.5 + pos: 2.5,-22.5 parent: 2 - - uid: 15448 + - uid: 10243 components: - type: Transform - pos: 10.5,-40.5 + pos: 3.5,-22.5 parent: 2 - - uid: 15449 + - uid: 10244 components: - type: Transform - pos: 10.5,-39.5 + pos: 4.5,-22.5 parent: 2 - - uid: 15450 + - uid: 10245 components: - type: Transform - pos: 10.5,-38.5 + pos: 4.5,-21.5 parent: 2 - - uid: 15451 + - uid: 10246 components: - type: Transform - pos: 10.5,-37.5 + pos: 4.5,-20.5 parent: 2 - - uid: 15452 + - uid: 10259 components: - type: Transform - pos: 10.5,-36.5 + pos: 15.5,-57.5 parent: 2 - - uid: 15453 + - uid: 10293 components: - type: Transform - pos: 10.5,-35.5 + pos: 25.5,-18.5 parent: 2 - - uid: 15454 + - uid: 10294 components: - type: Transform - pos: 10.5,-34.5 + pos: 26.5,-18.5 parent: 2 - - uid: 15455 + - uid: 10295 components: - type: Transform - pos: 10.5,-33.5 + pos: 27.5,-18.5 parent: 2 - - uid: 15456 + - uid: 10296 components: - type: Transform - pos: 11.5,-33.5 + pos: 28.5,-18.5 parent: 2 - - uid: 15457 + - uid: 10297 components: - type: Transform - pos: 12.5,-33.5 + pos: 30.5,-18.5 parent: 2 - - uid: 15458 + - uid: 10298 components: - type: Transform - pos: 13.5,-33.5 + pos: 31.5,-18.5 parent: 2 - - uid: 15459 + - uid: 10299 components: - type: Transform - pos: 13.5,-34.5 + pos: 29.5,-18.5 parent: 2 - - uid: 15515 + - uid: 10300 components: - type: Transform - pos: 38.5,-20.5 + pos: 31.5,-19.5 parent: 2 - - uid: 15516 + - uid: 10301 components: - type: Transform - pos: 38.5,-19.5 + pos: 31.5,-20.5 parent: 2 - - uid: 15692 + - uid: 10302 components: - type: Transform - pos: 39.5,6.5 + pos: 31.5,-21.5 parent: 2 - - uid: 15880 + - uid: 10303 components: - type: Transform - pos: -8.5,-53.5 + pos: 32.5,-21.5 parent: 2 - - uid: 15887 + - uid: 10304 components: - type: Transform - pos: 33.5,-31.5 + pos: 33.5,-21.5 parent: 2 - - uid: 15888 + - uid: 10305 components: - type: Transform - pos: 31.5,-31.5 + pos: 34.5,-21.5 parent: 2 - - uid: 15889 + - uid: 10306 components: - type: Transform - pos: 30.5,-31.5 + pos: 35.5,-21.5 parent: 2 - - uid: 15890 + - uid: 10312 components: - type: Transform - pos: 29.5,-31.5 + pos: 38.5,-21.5 parent: 2 - - uid: 15965 + - uid: 10319 components: - type: Transform - pos: 32.5,-31.5 + pos: 45.5,-21.5 parent: 2 - - uid: 15968 + - uid: 10320 components: - type: Transform - pos: 29.5,-30.5 + pos: 46.5,-21.5 parent: 2 - - uid: 15969 + - uid: 10321 components: - type: Transform - pos: 29.5,-29.5 + pos: 47.5,-21.5 parent: 2 - - uid: 16016 + - uid: 10323 components: - type: Transform - pos: 29.5,-28.5 + pos: 47.5,-20.5 parent: 2 - - uid: 16018 + - uid: 10324 components: - type: Transform - pos: 30.5,-28.5 + pos: 47.5,-19.5 parent: 2 - - uid: 16019 + - uid: 10348 components: - type: Transform - pos: 31.5,-28.5 + pos: 15.5,-60.5 parent: 2 - - uid: 16068 + - uid: 10387 components: - type: Transform - pos: 29.5,-25.5 + pos: -49.5,-58.5 parent: 2 - - uid: 16100 + - uid: 10390 components: - type: Transform - pos: 29.5,-26.5 + pos: -55.5,-59.5 parent: 2 - - uid: 16103 + - uid: 10424 components: - type: Transform - pos: 29.5,-27.5 + pos: -49.5,-22.5 parent: 2 - - uid: 16122 + - uid: 10431 components: - type: Transform - pos: -21.5,10.5 + pos: 42.5,-4.5 parent: 2 - - uid: 16271 + - uid: 10440 components: - type: Transform - pos: -27.5,-20.5 + pos: 6.5,-17.5 parent: 2 - - uid: 16491 + - uid: 10500 components: - type: Transform - pos: -63.5,-8.5 + pos: 16.5,-6.5 parent: 2 - - uid: 16492 + - uid: 10518 components: - type: Transform - pos: -63.5,-9.5 + pos: 16.5,-13.5 parent: 2 - - uid: 16493 + - uid: 10615 components: - type: Transform - pos: -62.5,-9.5 + pos: -32.5,14.5 parent: 2 - - uid: 16494 + - uid: 10738 components: - type: Transform - pos: -62.5,-10.5 + pos: 1.5,-22.5 parent: 2 - - uid: 16495 + - uid: 10907 components: - type: Transform - pos: -62.5,-11.5 + pos: 24.5,-49.5 parent: 2 - - uid: 16496 + - uid: 10908 components: - type: Transform - pos: -62.5,-12.5 + pos: 24.5,-48.5 parent: 2 - - uid: 16497 + - uid: 10909 components: - type: Transform - pos: -62.5,-13.5 + pos: 24.5,-47.5 parent: 2 - - uid: 16498 + - uid: 10910 components: - type: Transform - pos: -62.5,-14.5 + pos: 24.5,-46.5 parent: 2 - - uid: 16499 + - uid: 10911 components: - type: Transform - pos: -62.5,-15.5 + pos: 24.5,-45.5 parent: 2 - - uid: 16500 + - uid: 10912 components: - type: Transform - pos: -63.5,-15.5 + pos: 24.5,-44.5 parent: 2 - - uid: 16501 + - uid: 10913 components: - type: Transform - pos: -63.5,-16.5 + pos: 24.5,-43.5 parent: 2 - - uid: 16502 + - uid: 10919 components: - type: Transform - pos: -63.5,-17.5 + pos: 18.5,-43.5 parent: 2 - - uid: 16503 + - uid: 10927 components: - type: Transform - pos: -61.5,-15.5 + pos: 18.5,-44.5 parent: 2 - - uid: 16504 + - uid: 10928 components: - type: Transform - pos: -60.5,-15.5 + pos: 18.5,-45.5 parent: 2 - - uid: 16505 + - uid: 10929 components: - type: Transform - pos: -60.5,-16.5 + pos: 18.5,-46.5 parent: 2 - - uid: 16506 + - uid: 10930 components: - type: Transform - pos: -60.5,-17.5 + pos: 18.5,-47.5 parent: 2 - - uid: 16507 + - uid: 10931 components: - type: Transform - pos: -63.5,-7.5 + pos: 17.5,-47.5 parent: 2 - - uid: 16508 + - uid: 10932 components: - type: Transform - pos: -61.5,-9.5 + pos: 16.5,-47.5 parent: 2 - - uid: 16509 + - uid: 11016 components: - type: Transform - pos: -60.5,-9.5 + pos: -30.5,1.5 parent: 2 - - uid: 16510 + - uid: 11064 components: - type: Transform - pos: -60.5,-8.5 + pos: 45.5,-18.5 parent: 2 - - uid: 16511 + - uid: 11081 components: - type: Transform - pos: -60.5,-7.5 + pos: 36.5,13.5 parent: 2 - - uid: 16512 + - uid: 11103 components: - type: Transform - pos: -61.5,-12.5 + pos: 45.5,-7.5 parent: 2 - - uid: 16513 + - uid: 11232 components: - type: Transform - pos: -60.5,-12.5 + pos: 19.5,-13.5 parent: 2 - - uid: 16514 + - uid: 11235 components: - type: Transform - pos: -59.5,-12.5 + pos: 25.5,11.5 parent: 2 - - uid: 16515 + - uid: 11236 components: - type: Transform - pos: -58.5,-12.5 + pos: 26.5,11.5 parent: 2 - - uid: 16516 + - uid: 11237 components: - type: Transform - pos: -57.5,-12.5 + pos: 27.5,11.5 parent: 2 - - uid: 16517 + - uid: 11238 components: - type: Transform - pos: -56.5,-12.5 + pos: 28.5,11.5 parent: 2 - - uid: 16518 + - uid: 11249 components: - type: Transform - pos: -55.5,-12.5 + pos: 41.5,19.5 parent: 2 - - uid: 16519 + - uid: 11301 components: - type: Transform - pos: -54.5,-12.5 + pos: -26.5,6.5 parent: 2 - - uid: 16520 + - uid: 11357 components: - type: Transform - pos: -53.5,-12.5 + pos: 33.5,-37.5 parent: 2 - - uid: 16521 + - uid: 11358 components: - type: Transform - pos: -52.5,-12.5 + pos: 33.5,-38.5 parent: 2 - - uid: 16522 + - uid: 11359 components: - type: Transform - pos: -52.5,-11.5 + pos: 33.5,-39.5 parent: 2 - - uid: 16523 + - uid: 11360 components: - type: Transform - pos: -52.5,-10.5 + pos: 33.5,-40.5 parent: 2 - - uid: 16524 + - uid: 11361 components: - type: Transform - pos: -52.5,-13.5 + pos: 33.5,-41.5 parent: 2 - - uid: 16525 + - uid: 11362 components: - type: Transform - pos: -52.5,-14.5 + pos: 33.5,-42.5 parent: 2 - - uid: 16526 + - uid: 11363 components: - type: Transform - pos: -55.5,-13.5 + pos: 33.5,-43.5 parent: 2 - - uid: 16527 + - uid: 11364 components: - type: Transform - pos: -55.5,-14.5 + pos: 33.5,-44.5 parent: 2 - - uid: 16528 + - uid: 11365 components: - type: Transform - pos: -55.5,-11.5 + pos: 32.5,-44.5 parent: 2 - - uid: 16529 + - uid: 11366 components: - type: Transform - pos: -55.5,-10.5 + pos: 31.5,-44.5 parent: 2 - - uid: 16532 + - uid: 11371 components: - type: Transform - pos: -63.5,-14.5 + pos: 18.5,-27.5 parent: 2 - - uid: 16533 + - uid: 11372 components: - type: Transform - pos: -63.5,-12.5 + pos: 19.5,-27.5 parent: 2 - - uid: 16534 + - uid: 11373 components: - type: Transform - pos: -64.5,-12.5 + pos: 20.5,-27.5 parent: 2 - - uid: 16535 + - uid: 11374 components: - type: Transform - pos: -65.5,-12.5 + pos: 20.5,-28.5 parent: 2 - - uid: 16536 + - uid: 11375 components: - type: Transform - pos: -66.5,-12.5 + pos: 20.5,-29.5 parent: 2 - - uid: 16537 + - uid: 11376 components: - type: Transform - pos: -66.5,-11.5 + pos: 20.5,-30.5 parent: 2 - - uid: 16538 + - uid: 11377 components: - type: Transform - pos: -56.5,-11.5 + pos: 21.5,-30.5 parent: 2 - - uid: 16763 + - uid: 11378 components: - type: Transform - pos: 34.5,-5.5 + pos: 22.5,-30.5 parent: 2 - - uid: 16828 + - uid: 11379 components: - type: Transform - pos: -27.5,-21.5 + pos: 23.5,-30.5 parent: 2 - - uid: 17026 + - uid: 11380 components: - type: Transform - pos: 28.5,-30.5 + pos: 24.5,-30.5 parent: 2 - - uid: 17058 + - uid: 11381 components: - type: Transform - pos: -27.5,-19.5 + pos: 25.5,-30.5 parent: 2 - - uid: 17145 + - uid: 11382 components: - type: Transform - pos: 27.5,-31.5 + pos: 26.5,-30.5 parent: 2 - - uid: 17186 + - uid: 11383 components: - type: Transform - pos: -22.5,16.5 + pos: 27.5,-30.5 parent: 2 - - uid: 17350 + - uid: 11403 components: - type: Transform - pos: 27.5,-32.5 + pos: 30.5,-25.5 parent: 2 - - uid: 17598 + - uid: 11404 components: - type: Transform - pos: -13.5,-37.5 + pos: 31.5,-25.5 parent: 2 - - uid: 17987 + - uid: 11405 components: - type: Transform - pos: 14.5,-18.5 + pos: 32.5,-25.5 parent: 2 - - uid: 17988 + - uid: 11406 components: - type: Transform - pos: 13.5,-18.5 + pos: 33.5,-25.5 parent: 2 - - uid: 17989 + - uid: 11407 components: - type: Transform - pos: 12.5,-18.5 + pos: 34.5,-25.5 parent: 2 - - uid: 17990 + - uid: 11408 components: - type: Transform - pos: 11.5,-18.5 + pos: 35.5,-25.5 parent: 2 - - uid: 17991 + - uid: 11409 components: - type: Transform - pos: 10.5,-18.5 + pos: 36.5,-25.5 parent: 2 - - uid: 17992 + - uid: 11410 components: - type: Transform - pos: 9.5,-18.5 + pos: 37.5,-25.5 parent: 2 - - uid: 17993 + - uid: 11411 components: - type: Transform - pos: 8.5,-18.5 + pos: 38.5,-25.5 parent: 2 - - uid: 17994 + - uid: 11412 components: - type: Transform - pos: 7.5,-18.5 + pos: 38.5,-26.5 parent: 2 - - uid: 18012 + - uid: 11413 components: - type: Transform - pos: -14.5,11.5 + pos: 39.5,-26.5 parent: 2 - - uid: 18013 + - uid: 11414 components: - type: Transform - pos: -15.5,11.5 + pos: 40.5,-26.5 parent: 2 - - uid: 18014 + - uid: 11427 components: - type: Transform - pos: -15.5,10.5 + pos: -22.5,-2.5 parent: 2 - - uid: 18015 + - uid: 11491 components: - type: Transform - pos: -15.5,9.5 + pos: 15.5,-17.5 parent: 2 - - uid: 18016 + - uid: 11659 components: - type: Transform - pos: -15.5,8.5 + pos: 2.5,-36.5 parent: 2 - - uid: 18017 + - uid: 11660 components: - type: Transform - pos: -15.5,7.5 + pos: 3.5,-36.5 parent: 2 - - uid: 18018 + - uid: 11661 components: - type: Transform - pos: -15.5,6.5 + pos: 3.5,-37.5 parent: 2 - - uid: 18019 + - uid: 11662 components: - type: Transform - pos: -15.5,5.5 + pos: 3.5,-38.5 parent: 2 - - uid: 18020 + - uid: 11663 components: - type: Transform - pos: -15.5,4.5 + pos: 3.5,-39.5 parent: 2 - - uid: 18021 + - uid: 11664 components: - type: Transform - pos: -15.5,3.5 + pos: 3.5,-40.5 parent: 2 - - uid: 18022 + - uid: 11665 components: - type: Transform - pos: -15.5,2.5 + pos: 1.5,-40.5 parent: 2 - - uid: 18023 + - uid: 11666 components: - type: Transform - pos: -15.5,1.5 + pos: 0.5,-40.5 parent: 2 - - uid: 18024 + - uid: 11667 components: - type: Transform - pos: -15.5,0.5 + pos: -0.5,-40.5 parent: 2 - - uid: 18025 + - uid: 11668 components: - type: Transform - pos: -15.5,-0.5 + pos: -1.5,-40.5 parent: 2 - - uid: 18026 + - uid: 11669 components: - type: Transform - pos: -14.5,-0.5 + pos: -2.5,-40.5 parent: 2 - - uid: 18027 + - uid: 11670 components: - type: Transform - pos: -13.5,-0.5 + pos: -3.5,-40.5 parent: 2 - - uid: 18372 + - uid: 11671 components: - type: Transform - pos: -30.5,21.5 + pos: -4.5,-40.5 parent: 2 - - uid: 18374 + - uid: 11673 components: - type: Transform - pos: -26.5,20.5 + pos: -5.5,-40.5 parent: 2 - - uid: 18379 + - uid: 11679 components: - type: Transform - pos: -28.5,20.5 + pos: -1.5,-41.5 parent: 2 - - uid: 18380 + - uid: 11680 components: - type: Transform - pos: -27.5,20.5 + pos: -1.5,-42.5 parent: 2 - - uid: 18385 + - uid: 11681 components: - type: Transform - pos: -29.5,20.5 + pos: -10.5,-33.5 parent: 2 - - uid: 18420 + - uid: 11682 components: - type: Transform - pos: -30.5,20.5 + pos: -9.5,-33.5 parent: 2 - - uid: 18421 + - uid: 11683 components: - type: Transform - pos: -30.5,22.5 + pos: -8.5,-33.5 parent: 2 - - uid: 18456 + - uid: 11684 components: - type: Transform - pos: 51.5,-52.5 + pos: -8.5,-34.5 parent: 2 - - uid: 18457 + - uid: 11685 components: - type: Transform - pos: 45.5,-52.5 + pos: -8.5,-35.5 parent: 2 - - uid: 18510 + - uid: 11686 components: - type: Transform - pos: 37.5,-54.5 + pos: 36.5,6.5 parent: 2 - - uid: 18524 + - uid: 11687 components: - type: Transform - pos: 46.5,-52.5 + pos: -8.5,-37.5 parent: 2 - - uid: 18525 + - uid: 11688 components: - type: Transform - pos: 48.5,-52.5 + pos: -8.5,-38.5 parent: 2 - - uid: 18526 + - uid: 11689 components: - type: Transform - pos: 47.5,-52.5 + pos: -8.5,-39.5 parent: 2 - - uid: 18527 + - uid: 11690 components: - type: Transform - pos: 49.5,-52.5 + pos: -8.5,-40.5 parent: 2 - - uid: 18528 + - uid: 11691 components: - type: Transform - pos: 50.5,-52.5 + pos: -7.5,-40.5 parent: 2 - - uid: 18529 + - uid: 11692 components: - type: Transform - pos: 52.5,-52.5 + pos: -6.5,-40.5 parent: 2 - - uid: 18530 + - uid: 11693 components: - type: Transform - pos: 53.5,-52.5 + pos: -15.5,-36.5 parent: 2 - - uid: 18532 + - uid: 11694 components: - type: Transform - pos: 54.5,-52.5 + pos: -15.5,-37.5 parent: 2 - - uid: 18535 + - uid: 11695 components: - type: Transform - pos: 44.5,-54.5 + pos: -15.5,-38.5 parent: 2 - - uid: 18630 + - uid: 11696 components: - type: Transform - pos: 39.5,-53.5 + pos: -14.5,-38.5 parent: 2 - - uid: 18636 + - uid: 11697 components: - type: Transform - pos: 38.5,-53.5 + pos: -13.5,-38.5 parent: 2 - - uid: 18643 + - uid: 11698 components: - type: Transform - pos: 41.5,-53.5 + pos: -12.5,-38.5 parent: 2 - - uid: 18644 + - uid: 11699 components: - type: Transform - pos: 40.5,-53.5 + pos: -11.5,-38.5 parent: 2 - - uid: 18654 + - uid: 11702 components: - type: Transform - pos: 37.5,-53.5 + pos: -14.5,-36.5 parent: 2 - - uid: 18655 + - uid: 11793 components: - type: Transform - pos: 44.5,-53.5 + pos: -8.5,-23.5 parent: 2 - - uid: 18656 + - uid: 11794 components: - type: Transform - pos: 44.5,-55.5 + pos: -9.5,-23.5 parent: 2 - - uid: 18662 + - uid: 11796 components: - type: Transform - pos: 44.5,-52.5 + pos: -7.5,-24.5 parent: 2 - - uid: 18663 + - uid: 11797 components: - type: Transform - pos: 42.5,-53.5 + pos: -6.5,-24.5 parent: 2 - - uid: 18893 + - uid: 11808 components: - type: Transform - pos: 6.5,-15.5 + pos: -10.5,-14.5 parent: 2 - - uid: 18894 + - uid: 11809 components: - type: Transform - pos: -21.5,14.5 + pos: -10.5,-13.5 parent: 2 - - uid: 18901 + - uid: 11810 components: - type: Transform - pos: -27.5,6.5 + pos: -10.5,-12.5 parent: 2 - - uid: 18944 + - uid: 11811 components: - type: Transform - pos: 45.5,-22.5 + pos: -9.5,-12.5 parent: 2 - - uid: 18945 + - uid: 11823 components: - type: Transform - pos: 45.5,-23.5 + pos: -7.5,-13.5 parent: 2 - - uid: 18946 + - uid: 11928 components: - type: Transform - pos: 45.5,-24.5 + pos: -2.5,-22.5 parent: 2 - - uid: 18947 + - uid: 11972 components: - type: Transform - pos: 45.5,-25.5 + pos: 25.5,15.5 parent: 2 - - uid: 18948 + - uid: 11975 components: - type: Transform - pos: 46.5,-25.5 + pos: -58.5,-59.5 parent: 2 - - uid: 18949 + - uid: 11978 components: - type: Transform - pos: 47.5,-25.5 + pos: 24.5,11.5 parent: 2 - - uid: 18950 + - uid: 12002 components: - type: Transform - pos: 48.5,-25.5 + pos: 23.5,11.5 parent: 2 - - uid: 18951 + - uid: 12011 components: - type: Transform - pos: 48.5,-26.5 + pos: 22.5,11.5 parent: 2 - - uid: 18952 + - uid: 12013 components: - type: Transform - pos: 48.5,-27.5 + pos: 21.5,10.5 parent: 2 - - uid: 18953 + - uid: 12081 components: - type: Transform - pos: 48.5,-28.5 + pos: -6.5,-22.5 parent: 2 - - uid: 18954 + - uid: 12244 components: - type: Transform - pos: 48.5,-29.5 + pos: -18.5,15.5 parent: 2 - - uid: 18955 + - uid: 12260 components: - type: Transform - pos: 47.5,-29.5 + pos: 36.5,-40.5 parent: 2 - - uid: 18996 + - uid: 12306 components: - type: Transform - pos: -12.5,24.5 + pos: -33.5,-50.5 parent: 2 - - uid: 19053 + - uid: 12336 components: - type: Transform - pos: -18.5,7.5 + pos: -37.5,-48.5 parent: 2 - - uid: 19582 + - uid: 12349 components: - type: Transform - pos: -18.5,6.5 + pos: -58.5,-57.5 parent: 2 - - uid: 19973 + - uid: 12350 components: - type: Transform - pos: 38.5,6.5 + pos: -58.5,-58.5 parent: 2 - - uid: 19992 + - uid: 12355 components: - type: Transform - pos: -18.5,5.5 + pos: -18.5,20.5 parent: 2 - - uid: 19993 + - uid: 12366 components: - type: Transform - pos: -18.5,4.5 + pos: -57.5,-59.5 parent: 2 - - uid: 19994 + - uid: 12432 components: - type: Transform - pos: -18.5,3.5 + pos: 36.5,-39.5 parent: 2 - - uid: 19995 + - uid: 12445 components: - type: Transform - pos: -18.5,2.5 + pos: 18.5,-13.5 parent: 2 - - uid: 19996 + - uid: 12451 components: - type: Transform - pos: -18.5,1.5 + pos: 16.5,-12.5 parent: 2 - - uid: 20439 + - uid: 12496 components: - type: Transform - pos: -33.5,-3.5 + pos: 35.5,6.5 parent: 2 - - uid: 20440 + - uid: 12522 components: - type: Transform - pos: -33.5,-4.5 + pos: -24.5,-8.5 parent: 2 - - uid: 20442 + - uid: 12552 components: - type: Transform - pos: -34.5,-4.5 + pos: -10.5,-21.5 parent: 2 - - uid: 20443 + - uid: 12557 components: - type: Transform - pos: -35.5,-4.5 + pos: -22.5,11.5 parent: 2 - - uid: 20444 + - uid: 12575 components: - type: Transform - pos: -36.5,-4.5 + pos: -21.5,11.5 parent: 2 - - uid: 20445 + - uid: 12577 components: - type: Transform - pos: -37.5,-4.5 + pos: -13.5,12.5 parent: 2 - - uid: 20446 + - uid: 12578 components: - type: Transform - pos: -38.5,-4.5 + pos: -13.5,13.5 parent: 2 - - uid: 20447 + - uid: 12595 components: - type: Transform - pos: -39.5,-4.5 + pos: -33.5,-51.5 parent: 2 - - uid: 20448 + - uid: 12649 components: - type: Transform - pos: -39.5,-3.5 + pos: -30.5,18.5 parent: 2 - - uid: 20449 + - uid: 12749 components: - type: Transform - pos: -39.5,-2.5 + pos: 17.5,-57.5 parent: 2 - - uid: 20450 + - uid: 12783 components: - type: Transform - pos: -39.5,-1.5 + pos: -12.5,-54.5 parent: 2 - - uid: 20451 + - uid: 12860 components: - type: Transform - pos: -39.5,-0.5 + pos: 28.5,-6.5 parent: 2 - - uid: 20452 + - uid: 12976 components: - type: Transform - pos: -39.5,0.5 + pos: -18.5,8.5 parent: 2 - - uid: 20453 + - uid: 12987 components: - type: Transform - pos: -39.5,1.5 + pos: -19.5,8.5 parent: 2 - - uid: 20454 + - uid: 13033 components: - type: Transform - pos: -39.5,2.5 + pos: -48.5,-25.5 parent: 2 - - uid: 20455 + - uid: 13048 components: - type: Transform - pos: -39.5,4.5 + pos: -19.5,4.5 parent: 2 - - uid: 20456 + - uid: 13087 components: - type: Transform - pos: -39.5,5.5 + pos: -30.5,0.5 parent: 2 - - uid: 20457 + - uid: 13178 components: - type: Transform - pos: -39.5,6.5 + pos: 16.5,-17.5 parent: 2 - - uid: 20458 + - uid: 13190 components: - type: Transform - pos: -39.5,3.5 + pos: -36.5,-48.5 parent: 2 - - uid: 20459 + - uid: 13228 components: - type: Transform - pos: -38.5,6.5 + pos: -50.5,-22.5 parent: 2 - - uid: 20460 + - uid: 13363 components: - type: Transform - pos: -37.5,3.5 + pos: 17.5,-13.5 parent: 2 - - uid: 20461 + - uid: 13594 components: - type: Transform - pos: -37.5,2.5 + pos: 36.5,-7.5 parent: 2 - - uid: 20462 + - uid: 13637 components: - type: Transform - pos: -37.5,1.5 + pos: 41.5,-2.5 parent: 2 - - uid: 20463 + - uid: 13675 components: - type: Transform - pos: -42.5,3.5 + pos: 16.5,-5.5 parent: 2 - - uid: 20464 + - uid: 13703 components: - type: Transform - pos: -42.5,2.5 + pos: 16.5,-7.5 parent: 2 - - uid: 20465 + - uid: 13705 components: - type: Transform - pos: -42.5,1.5 + pos: 41.5,-4.5 parent: 2 - - uid: 20466 + - uid: 13713 components: - type: Transform - pos: -41.5,-0.5 + pos: -49.5,-49.5 parent: 2 - - uid: 20467 + - uid: 13755 components: - type: Transform - pos: -41.5,-1.5 + pos: -54.5,-59.5 parent: 2 - - uid: 20468 + - uid: 13761 components: - type: Transform - pos: -38.5,0.5 + pos: -52.5,-59.5 parent: 2 - - uid: 20469 + - uid: 13820 components: - type: Transform - pos: -43.5,-3.5 + pos: 19.5,-21.5 parent: 2 - - uid: 20470 + - uid: 13853 components: - type: Transform - pos: -43.5,-5.5 + pos: 25.5,-2.5 parent: 2 - - uid: 20471 + - uid: 13964 components: - type: Transform - pos: -42.5,-5.5 + pos: 41.5,-5.5 parent: 2 - - uid: 20472 + - uid: 14278 components: - type: Transform - pos: -41.5,-5.5 + pos: 39.5,18.5 parent: 2 - - uid: 20473 + - uid: 14336 components: - type: Transform - pos: -40.5,-5.5 + pos: 39.5,16.5 parent: 2 - - uid: 20474 + - uid: 14452 components: - type: Transform - pos: -39.5,-5.5 + pos: -24.5,1.5 parent: 2 - - uid: 20475 + - uid: 14453 components: - type: Transform - pos: -42.5,-3.5 + pos: -26.5,1.5 parent: 2 - - uid: 20476 + - uid: 14466 components: - type: Transform - pos: -41.5,-3.5 + pos: -25.5,15.5 parent: 2 - - uid: 20477 + - uid: 14584 components: - type: Transform - pos: -40.5,-3.5 + pos: -13.5,11.5 parent: 2 - - uid: 20478 + - uid: 14585 components: - type: Transform - pos: -40.5,-6.5 + pos: -12.5,11.5 parent: 2 - - uid: 20479 + - uid: 14797 components: - type: Transform - pos: -39.5,-6.5 + pos: -21.5,20.5 parent: 2 - - uid: 20480 + - uid: 14830 components: - type: Transform - pos: -38.5,-6.5 + pos: -0.5,13.5 parent: 2 - - uid: 20481 + - uid: 14860 components: - type: Transform - pos: -35.5,-6.5 + pos: -20.5,8.5 parent: 2 - - uid: 20482 + - uid: 15030 components: - type: Transform - pos: -34.5,-6.5 + pos: -23.5,11.5 parent: 2 - - uid: 20483 + - uid: 15031 components: - type: Transform - pos: -34.5,-1.5 + pos: -21.5,9.5 parent: 2 - - uid: 20484 + - uid: 15264 components: - type: Transform - pos: -35.5,-1.5 + pos: 41.5,22.5 parent: 2 - - uid: 20485 + - uid: 15271 components: - type: Transform - pos: -35.5,-2.5 + pos: 41.5,21.5 parent: 2 - - uid: 20486 + - uid: 15285 components: - type: Transform - pos: -35.5,-3.5 + pos: 32.5,-37.5 parent: 2 - - uid: 20487 + - uid: 15290 components: - type: Transform - pos: -35.5,-5.5 + pos: 31.5,-37.5 parent: 2 - - uid: 20488 + - uid: 15291 components: - type: Transform - pos: -40.5,-1.5 + pos: 30.5,-37.5 parent: 2 - - uid: 20489 + - uid: 15300 components: - type: Transform - pos: -38.5,2.5 + pos: 41.5,20.5 parent: 2 - - uid: 20490 + - uid: 15319 components: - type: Transform - pos: -41.5,2.5 + pos: 30.5,-36.5 parent: 2 - - uid: 20491 + - uid: 15346 components: - type: Transform - pos: -40.5,2.5 + pos: -10.5,9.5 parent: 2 - - uid: 20722 + - uid: 15363 components: - type: Transform - pos: -30.5,14.5 + pos: -19.5,20.5 parent: 2 - - uid: 20732 + - uid: 15368 components: - type: Transform - pos: -36.5,2.5 + pos: 37.5,-31.5 parent: 2 - - uid: 20758 + - uid: 15400 components: - type: Transform - pos: -30.5,16.5 + pos: -9.5,-21.5 parent: 2 - - uid: 20769 + - uid: 15401 components: - type: Transform - pos: -31.5,14.5 + pos: -8.5,-21.5 parent: 2 - - uid: 20772 + - uid: 15402 components: - type: Transform - pos: -30.5,17.5 + pos: -13.5,-22.5 parent: 2 - - uid: 20773 + - uid: 15404 components: - type: Transform - pos: -30.5,19.5 + pos: -8.5,-19.5 parent: 2 - - uid: 20776 + - uid: 15407 components: - type: Transform - pos: -30.5,15.5 + pos: -7.5,-23.5 parent: 2 - - uid: 20777 + - uid: 15417 components: - type: Transform - pos: -32.5,12.5 + pos: 36.5,-31.5 parent: 2 - - uid: 20778 + - uid: 15418 components: - type: Transform - pos: -32.5,11.5 + pos: 35.5,-31.5 parent: 2 - - uid: 20779 + - uid: 15419 components: - type: Transform - pos: -32.5,10.5 + pos: 34.5,-31.5 parent: 2 - - uid: 20780 + - uid: 15420 components: - type: Transform - pos: -32.5,9.5 + pos: 34.5,-32.5 parent: 2 - - uid: 20781 + - uid: 15426 components: - type: Transform - pos: -32.5,7.5 + pos: 34.5,-33.5 parent: 2 - - uid: 20782 + - uid: 15428 components: - type: Transform - pos: -32.5,6.5 + pos: 34.5,-35.5 parent: 2 - - uid: 20783 + - uid: 15434 components: - type: Transform - pos: -32.5,8.5 + pos: 34.5,-36.5 parent: 2 - - uid: 20784 + - uid: 15436 components: - type: Transform - pos: -33.5,6.5 + pos: 34.5,-37.5 parent: 2 - - uid: 20785 + - uid: 15438 components: - type: Transform - pos: -34.5,6.5 + pos: 34.5,-34.5 parent: 2 - - uid: 20786 + - uid: 15441 components: - type: Transform - pos: -35.5,2.5 + pos: 18.5,-42.5 parent: 2 - - uid: 20787 + - uid: 15442 components: - type: Transform - pos: -35.5,3.5 + pos: 18.5,-41.5 parent: 2 - - uid: 20788 + - uid: 15458 components: - type: Transform - pos: -34.5,3.5 + pos: 13.5,-33.5 parent: 2 - - uid: 20789 + - uid: 15459 components: - type: Transform - pos: -33.5,3.5 + pos: 13.5,-34.5 parent: 2 - - uid: 20790 + - uid: 15515 components: - type: Transform - pos: -32.5,3.5 + pos: 38.5,-20.5 parent: 2 - - uid: 20791 + - uid: 15516 components: - type: Transform - pos: -32.5,4.5 + pos: 38.5,-19.5 parent: 2 - - uid: 20792 + - uid: 15692 components: - type: Transform - pos: -32.5,5.5 + pos: 39.5,6.5 parent: 2 -- proto: CableMVStack - entities: - - uid: 3393 + - uid: 15761 components: - type: Transform - pos: -16.489902,-25.261671 + pos: 39.5,17.5 parent: 2 - - uid: 10456 + - uid: 15805 components: - type: Transform - pos: -6.538993,-14.892722 + pos: -55.5,-60.5 parent: 2 - - uid: 10791 + - uid: 15807 components: - type: Transform - pos: -55.47804,-13.404876 + pos: -56.5,-59.5 parent: 2 - - uid: 14657 + - uid: 15887 components: - type: Transform - pos: 12.50663,-17.374193 + pos: 33.5,-31.5 parent: 2 - - uid: 16740 + - uid: 15888 components: - type: Transform - pos: -31.508106,-59.50669 + pos: 31.5,-31.5 parent: 2 -- proto: CableTerminal - entities: - - uid: 346 + - uid: 15889 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-54.5 + pos: 30.5,-31.5 parent: 2 - - uid: 2770 + - uid: 15890 components: - type: Transform - pos: -3.5,-17.5 + pos: 29.5,-31.5 parent: 2 - - uid: 2816 + - uid: 15965 components: - type: Transform - pos: -1.5,-17.5 + pos: 32.5,-31.5 parent: 2 - - uid: 4393 + - uid: 15968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,2.5 + pos: 29.5,-30.5 parent: 2 - - uid: 4793 + - uid: 15969 components: - type: Transform - pos: -2.5,-17.5 + pos: 29.5,-29.5 parent: 2 - - uid: 6550 + - uid: 16016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,2.5 + pos: 29.5,-28.5 parent: 2 - - uid: 6644 + - uid: 16018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-8.5 + pos: 30.5,-28.5 parent: 2 - - uid: 8954 + - uid: 16019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,24.5 + pos: 31.5,-28.5 parent: 2 - - uid: 10391 + - uid: 16047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-55.5 + pos: -48.5,-22.5 parent: 2 - - uid: 15475 + - uid: 16051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-9.5 + pos: -48.5,-24.5 parent: 2 -- proto: Candle - entities: - - uid: 3662 + - uid: 16052 components: - type: Transform - pos: 13.258192,-36.48326 + pos: -51.5,-22.5 parent: 2 - - uid: 3774 + - uid: 16053 components: - type: Transform - pos: 15.22792,-40.340107 + pos: -51.5,-21.5 parent: 2 - - uid: 3784 + - uid: 16068 components: - type: Transform - pos: 13.258192,-38.192783 + pos: 29.5,-25.5 parent: 2 - - uid: 5793 + - uid: 16100 components: - type: Transform - pos: 37.58059,-11.253904 + pos: 29.5,-26.5 parent: 2 - - uid: 5794 + - uid: 16103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.383995,-11.297027 + pos: 29.5,-27.5 parent: 2 - - uid: 9058 + - uid: 16122 components: - type: Transform - pos: 46.28144,-27.332985 + pos: -21.5,10.5 parent: 2 - - uid: 9059 + - uid: 16330 components: - type: Transform - pos: 46.656628,-27.260017 + pos: -38.5,-48.5 parent: 2 - - uid: 9060 + - uid: 16331 components: - type: Transform - pos: 46.52114,-27.47892 + pos: -38.5,-47.5 parent: 2 -- proto: CandyBowl - entities: - - uid: 20418 + - uid: 16332 components: - type: Transform - pos: -25.494333,-33.461594 + pos: -38.5,-46.5 parent: 2 -- proto: CannabisSeeds - entities: - - uid: 226 + - uid: 16333 components: - type: Transform - pos: -42.444153,-3.3896503 + pos: -38.5,-45.5 parent: 2 - - uid: 19901 + - uid: 16336 components: - type: Transform - pos: 39.470306,-67.50273 + pos: -38.5,-44.5 parent: 2 -- proto: CapacitorStockPart - entities: - - uid: 4762 + - uid: 16337 components: - type: Transform - pos: -31.503222,-60.171318 + pos: -38.5,-43.5 parent: 2 - - uid: 4772 + - uid: 16338 components: - type: Transform - pos: -31.628284,-60.004536 + pos: -38.5,-42.5 parent: 2 - - uid: 9603 + - uid: 16339 components: - type: Transform - pos: 22.32732,-30.24205 + pos: -38.5,-41.5 parent: 2 - - uid: 9604 + - uid: 16340 components: - type: Transform - pos: 22.549095,-30.46535 + pos: -37.5,-42.5 parent: 2 -- proto: CarbonDioxideCanister - entities: - - uid: 1457 + - uid: 16341 components: - type: Transform - pos: -3.5,6.5 + pos: -36.5,-42.5 parent: 2 - - uid: 1940 + - uid: 16342 components: - type: Transform - pos: -12.5,-4.5 + pos: -38.5,-40.5 parent: 2 - - uid: 4581 + - uid: 16343 components: - type: Transform - pos: 29.5,-41.5 + pos: -38.5,-39.5 parent: 2 -- proto: Carpet - entities: - - uid: 7109 + - uid: 16344 components: - type: Transform - pos: 47.5,-8.5 + pos: -38.5,-38.5 parent: 2 - - uid: 8343 + - uid: 16345 components: - type: Transform - pos: 48.5,-8.5 + pos: -38.5,-37.5 parent: 2 - - uid: 16208 + - uid: 16347 components: - type: Transform - pos: 70.5,-64.5 + pos: -38.5,-34.5 parent: 2 - - uid: 18507 + - uid: 16348 components: - type: Transform - pos: 70.5,-63.5 + pos: -38.5,-35.5 parent: 2 - - uid: 18777 + - uid: 16349 components: - type: Transform - pos: 70.5,-62.5 + pos: -38.5,-36.5 parent: 2 - - uid: 18778 + - uid: 16491 components: - type: Transform - pos: 71.5,-61.5 + pos: -63.5,-8.5 parent: 2 - - uid: 18795 + - uid: 16492 components: - type: Transform - pos: 66.5,-75.5 + pos: -63.5,-9.5 parent: 2 - - uid: 18796 + - uid: 16493 components: - type: Transform - pos: 66.5,-76.5 + pos: -62.5,-9.5 parent: 2 - - uid: 18797 + - uid: 16494 components: - type: Transform - pos: 65.5,-76.5 + pos: -62.5,-10.5 parent: 2 -- proto: CarpetBlack - entities: - - uid: 8406 + - uid: 16495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-33.5 + pos: -62.5,-11.5 parent: 2 - - uid: 9986 + - uid: 16496 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-38.5 + pos: -62.5,-12.5 parent: 2 - - uid: 10141 + - uid: 16497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-33.5 + pos: -62.5,-13.5 parent: 2 - - uid: 10184 + - uid: 16498 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-33.5 + pos: -62.5,-14.5 parent: 2 - - uid: 10495 + - uid: 16499 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-38.5 + pos: -62.5,-15.5 parent: 2 - - uid: 13687 + - uid: 16500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-37.5 + pos: -63.5,-15.5 parent: 2 - - uid: 13688 + - uid: 16501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-37.5 + pos: -63.5,-16.5 parent: 2 - - uid: 13689 + - uid: 16502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-34.5 + pos: -63.5,-17.5 parent: 2 - - uid: 13690 + - uid: 16503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-34.5 + pos: -61.5,-15.5 parent: 2 - - uid: 13692 + - uid: 16504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-34.5 + pos: -60.5,-15.5 parent: 2 - - uid: 14813 + - uid: 16505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,11.5 + pos: -60.5,-16.5 parent: 2 - - uid: 14819 + - uid: 16506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,12.5 + pos: -60.5,-17.5 parent: 2 - - uid: 14820 + - uid: 16507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,11.5 + pos: -63.5,-7.5 parent: 2 - - uid: 14879 + - uid: 16508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,12.5 + pos: -61.5,-9.5 parent: 2 - - uid: 15304 + - uid: 16509 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,10.5 + pos: -60.5,-9.5 parent: 2 - - uid: 15329 + - uid: 16510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,10.5 + pos: -60.5,-8.5 parent: 2 -- proto: CarpetBlue - entities: - - uid: 157 + - uid: 16511 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,19.5 + pos: -60.5,-7.5 parent: 2 - - uid: 158 + - uid: 16512 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,18.5 + pos: -61.5,-12.5 parent: 2 - - uid: 1286 + - uid: 16513 components: - type: Transform - pos: -26.5,-55.5 + pos: -60.5,-12.5 parent: 2 - - uid: 1742 + - uid: 16514 components: - type: Transform - pos: -25.5,-55.5 + pos: -59.5,-12.5 parent: 2 - - uid: 3171 + - uid: 16515 components: - type: Transform - pos: -25.5,-50.5 + pos: -58.5,-12.5 parent: 2 - - uid: 6182 + - uid: 16516 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,19.5 + pos: -57.5,-12.5 parent: 2 - - uid: 6378 + - uid: 16517 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,18.5 + pos: -56.5,-12.5 parent: 2 - - uid: 9699 + - uid: 16518 components: - type: Transform - pos: -25.5,-51.5 + pos: -55.5,-12.5 parent: 2 - - uid: 9881 + - uid: 16519 components: - type: Transform - pos: -26.5,-54.5 + pos: -54.5,-12.5 parent: 2 - - uid: 9953 + - uid: 16520 components: - type: Transform - pos: -25.5,-54.5 + pos: -53.5,-12.5 parent: 2 - - uid: 9964 + - uid: 16521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-50.5 + pos: -52.5,-12.5 parent: 2 - - uid: 9965 + - uid: 16522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-51.5 + pos: -52.5,-11.5 parent: 2 - - uid: 9966 + - uid: 16523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-51.5 + pos: -52.5,-10.5 parent: 2 - - uid: 9967 + - uid: 16524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-50.5 + pos: -52.5,-13.5 parent: 2 - - uid: 14003 + - uid: 16525 components: - type: Transform - pos: -25.5,-52.5 + pos: -52.5,-14.5 parent: 2 - - uid: 20248 + - uid: 16526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-50.5 + pos: -55.5,-13.5 parent: 2 - - uid: 20249 + - uid: 16527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-51.5 + pos: -55.5,-14.5 parent: 2 - - uid: 20820 + - uid: 16528 components: - type: Transform - pos: -24.5,-52.5 + pos: -55.5,-11.5 parent: 2 - - uid: 20821 + - uid: 16529 components: - type: Transform - pos: -23.5,-52.5 + pos: -55.5,-10.5 parent: 2 - - uid: 20822 + - uid: 16532 components: - type: Transform - pos: -23.5,-51.5 + pos: -63.5,-14.5 parent: 2 - - uid: 20823 + - uid: 16533 components: - type: Transform - pos: -23.5,-50.5 + pos: -63.5,-12.5 parent: 2 -- proto: CarpetChapel - entities: - - uid: 2686 + - uid: 16534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-9.5 + pos: -64.5,-12.5 parent: 2 - - uid: 5932 + - uid: 16535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-15.5 + pos: -65.5,-12.5 parent: 2 - - uid: 5933 + - uid: 16536 components: - type: Transform - pos: 37.5,-16.5 + pos: -66.5,-12.5 parent: 2 - - uid: 5934 + - uid: 16537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-16.5 + pos: -66.5,-11.5 parent: 2 - - uid: 5935 + - uid: 16538 components: - type: Transform - pos: 34.5,-16.5 + pos: -56.5,-11.5 parent: 2 - - uid: 5936 + - uid: 16741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-16.5 + pos: -33.5,-52.5 parent: 2 - - uid: 5938 + - uid: 16742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-15.5 + pos: -33.5,-53.5 parent: 2 - - uid: 6064 + - uid: 16743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-14.5 + pos: -33.5,-54.5 parent: 2 - - uid: 6065 + - uid: 16746 components: - type: Transform - pos: 35.5,-14.5 + pos: -33.5,-55.5 parent: 2 - - uid: 6068 + - uid: 16747 components: - type: Transform - pos: 37.5,-9.5 + pos: -33.5,-56.5 parent: 2 - - uid: 6086 + - uid: 16748 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-15.5 + pos: -33.5,-57.5 parent: 2 - - uid: 6087 + - uid: 16754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-15.5 + pos: -33.5,-58.5 parent: 2 - - uid: 6088 + - uid: 16756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-14.5 + pos: -33.5,-59.5 parent: 2 - - uid: 6089 + - uid: 16764 components: - type: Transform - pos: 38.5,-14.5 + pos: -33.5,-60.5 parent: 2 - - uid: 6090 + - uid: 16766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-13.5 + pos: -33.5,-61.5 parent: 2 - - uid: 6091 + - uid: 16767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-13.5 + pos: -33.5,-62.5 parent: 2 - - uid: 6092 + - uid: 16768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-13.5 + pos: -33.5,-63.5 parent: 2 - - uid: 6093 + - uid: 16770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-13.5 + pos: -33.5,-64.5 parent: 2 - - uid: 7100 + - uid: 16771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-9.5 + pos: -33.5,-65.5 parent: 2 - - uid: 8871 + - uid: 16772 components: - type: Transform - pos: 38.5,-10.5 + pos: -33.5,-66.5 parent: 2 - - uid: 8872 + - uid: 16780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 + pos: -33.5,-68.5 parent: 2 - - uid: 8874 + - uid: 16781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-10.5 + pos: -33.5,-67.5 parent: 2 -- proto: CarpetCyan - entities: - - uid: 221 + - uid: 16782 components: - type: Transform - pos: 46.5,-34.5 + pos: -33.5,-69.5 parent: 2 - - uid: 5042 + - uid: 16784 components: - type: Transform - pos: 45.5,-34.5 + pos: -33.5,-70.5 parent: 2 - - uid: 5139 + - uid: 16788 components: - type: Transform - pos: 46.5,-33.5 + pos: -35.5,-70.5 parent: 2 - - uid: 5152 + - uid: 16789 components: - type: Transform - pos: 45.5,-33.5 + pos: -34.5,-70.5 parent: 2 - - uid: 6980 + - uid: 16798 components: - type: Transform - pos: 35.5,-3.5 + pos: -35.5,-55.5 parent: 2 - - uid: 6981 + - uid: 16799 components: - type: Transform - pos: 36.5,-3.5 + pos: -34.5,-55.5 parent: 2 - - uid: 7081 + - uid: 16858 components: - type: Transform - pos: 36.5,-2.5 + pos: -39.5,-48.5 parent: 2 - - uid: 7083 + - uid: 16859 components: - type: Transform - pos: 37.5,-2.5 + pos: -40.5,-48.5 parent: 2 - - uid: 8339 + - uid: 16860 components: - type: Transform - pos: 37.5,-3.5 + pos: -41.5,-48.5 parent: 2 - - uid: 8345 + - uid: 16861 components: - type: Transform - pos: 35.5,-2.5 + pos: -42.5,-48.5 parent: 2 - - uid: 12451 + - uid: 16862 components: - type: Transform - pos: 29.5,28.5 + pos: -43.5,-48.5 parent: 2 - - uid: 14063 + - uid: 16863 components: - type: Transform - pos: 30.5,28.5 + pos: -44.5,-48.5 parent: 2 - - uid: 14148 + - uid: 16864 components: - type: Transform - pos: 29.5,27.5 + pos: -45.5,-48.5 parent: 2 - - uid: 19020 + - uid: 16865 components: - type: Transform - pos: 30.5,27.5 + pos: -45.5,-47.5 parent: 2 - - uid: 19021 + - uid: 16875 components: - type: Transform - pos: 29.5,24.5 + pos: -45.5,-46.5 parent: 2 - - uid: 19022 + - uid: 16876 components: - type: Transform - pos: 29.5,23.5 + pos: -45.5,-45.5 parent: 2 - - uid: 19023 + - uid: 16884 components: - type: Transform - pos: 30.5,24.5 + pos: -46.5,-45.5 parent: 2 - - uid: 19024 + - uid: 16906 components: - type: Transform - pos: 30.5,23.5 + pos: 41.5,18.5 parent: 2 -- proto: CarpetGreen - entities: - - uid: 3509 + - uid: 16915 components: - type: Transform - pos: 21.5,-35.5 + pos: -35.5,-48.5 parent: 2 - - uid: 3897 + - uid: 16925 components: - type: Transform - pos: 22.5,-35.5 + pos: 39.5,15.5 parent: 2 - - uid: 3923 + - uid: 16930 components: - type: Transform - pos: 22.5,-37.5 + pos: -33.5,-49.5 parent: 2 - - uid: 3943 + - uid: 16932 components: - type: Transform - pos: 21.5,-36.5 + pos: -33.5,-48.5 parent: 2 - - uid: 3950 + - uid: 16952 components: - type: Transform - pos: 21.5,-37.5 + pos: -34.5,-48.5 parent: 2 - - uid: 3953 + - uid: 16960 components: - type: Transform - pos: 22.5,-36.5 + pos: -47.5,-45.5 parent: 2 - - uid: 4751 + - uid: 16966 components: - type: Transform - pos: -33.5,-46.5 + pos: -48.5,-45.5 parent: 2 - - uid: 4782 + - uid: 16967 components: - type: Transform - pos: -32.5,-46.5 + pos: -49.5,-45.5 parent: 2 - - uid: 4958 + - uid: 16968 components: - type: Transform - pos: -32.5,-45.5 + pos: -49.5,-46.5 parent: 2 - - uid: 4984 + - uid: 16969 components: - type: Transform - pos: -33.5,-45.5 + pos: -48.5,-44.5 parent: 2 - - uid: 7504 + - uid: 16970 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-30.5 + pos: -48.5,-43.5 parent: 2 - - uid: 7509 + - uid: 16971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-29.5 + pos: -48.5,-42.5 parent: 2 - - uid: 9468 + - uid: 17009 components: - type: Transform - pos: 17.5,-47.5 + pos: -48.5,-41.5 parent: 2 - - uid: 9469 + - uid: 17016 components: - type: Transform - pos: 17.5,-48.5 + pos: -48.5,-40.5 parent: 2 - - uid: 9470 + - uid: 17026 components: - type: Transform - pos: 17.5,-49.5 + pos: 28.5,-30.5 parent: 2 - - uid: 9471 + - uid: 17049 components: - type: Transform - pos: 17.5,-50.5 + pos: -48.5,-39.5 parent: 2 - - uid: 9472 + - uid: 17050 components: - type: Transform - pos: 18.5,-48.5 + pos: -48.5,-38.5 parent: 2 - - uid: 9473 + - uid: 17051 components: - type: Transform - pos: 18.5,-49.5 + pos: -48.5,-37.5 parent: 2 - - uid: 9474 + - uid: 17122 components: - type: Transform - pos: 18.5,-50.5 + pos: -48.5,-35.5 parent: 2 - - uid: 9475 + - uid: 17123 components: - type: Transform - pos: 19.5,-47.5 + pos: -49.5,-35.5 parent: 2 - - uid: 9476 + - uid: 17139 components: - type: Transform - pos: 19.5,-48.5 + pos: -48.5,-36.5 parent: 2 - - uid: 9477 + - uid: 17145 components: - type: Transform - pos: 19.5,-49.5 + pos: 27.5,-31.5 parent: 2 - - uid: 9478 + - uid: 17186 components: - type: Transform - pos: 19.5,-50.5 + pos: -22.5,16.5 parent: 2 - - uid: 9479 + - uid: 17328 components: - type: Transform - pos: 20.5,-47.5 + pos: 44.5,-4.5 parent: 2 - - uid: 9480 + - uid: 17350 components: - type: Transform - pos: 20.5,-48.5 + pos: 27.5,-32.5 parent: 2 - - uid: 9481 + - uid: 17541 components: - type: Transform - pos: 20.5,-49.5 + pos: -48.5,-34.5 parent: 2 - - uid: 9482 + - uid: 17542 components: - type: Transform - pos: 20.5,-50.5 + pos: -48.5,-33.5 parent: 2 - - uid: 9483 + - uid: 17543 components: - type: Transform - pos: 21.5,-47.5 + pos: -48.5,-32.5 parent: 2 - - uid: 9484 + - uid: 17545 components: - type: Transform - pos: 21.5,-48.5 + pos: -48.5,-31.5 parent: 2 - - uid: 9485 + - uid: 17556 components: - type: Transform - pos: 21.5,-49.5 + pos: -48.5,-30.5 parent: 2 - - uid: 9486 + - uid: 17562 components: - type: Transform - pos: 21.5,-50.5 + pos: -48.5,-29.5 parent: 2 - - uid: 9487 + - uid: 17563 components: - type: Transform - pos: 18.5,-47.5 + pos: -48.5,-28.5 parent: 2 - - uid: 9989 + - uid: 17572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-29.5 + pos: -48.5,-27.5 parent: 2 - - uid: 10057 + - uid: 17598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-43.5 + pos: -13.5,-37.5 parent: 2 - - uid: 10442 + - uid: 17607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-30.5 + pos: -48.5,-26.5 parent: 2 - - uid: 12119 + - uid: 17608 components: - type: Transform - pos: -33.5,-43.5 + pos: -47.5,-26.5 parent: 2 - - uid: 12707 + - uid: 17610 components: - type: Transform - pos: -32.5,-44.5 + pos: -46.5,-26.5 parent: 2 - - uid: 12708 + - uid: 17675 components: - type: Transform - pos: -32.5,-43.5 + pos: -49.5,-30.5 parent: 2 - - uid: 12709 + - uid: 17676 components: - type: Transform - pos: -33.5,-44.5 + pos: -50.5,-30.5 parent: 2 - - uid: 13116 + - uid: 17677 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-45.5 + pos: -52.5,-30.5 parent: 2 - - uid: 13691 + - uid: 17678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-45.5 + pos: -53.5,-30.5 parent: 2 - - uid: 13698 + - uid: 17679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-29.5 + pos: -54.5,-30.5 parent: 2 - - uid: 13699 + - uid: 17680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-30.5 + pos: -51.5,-30.5 parent: 2 - - uid: 14503 + - uid: 17681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-43.5 + pos: -54.5,-29.5 parent: 2 -- proto: CarpetOrange - entities: - - uid: 109 + - uid: 17682 components: - type: Transform - pos: 37.5,1.5 + pos: -54.5,-28.5 parent: 2 - - uid: 807 + - uid: 17725 components: - type: Transform - pos: -9.5,25.5 + pos: -55.5,-28.5 parent: 2 - - uid: 3334 + - uid: 17784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,11.5 + pos: -56.5,-28.5 parent: 2 - - uid: 3335 + - uid: 17824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,12.5 + pos: 25.5,22.5 parent: 2 - - uid: 3901 + - uid: 18012 components: - type: Transform - pos: 29.5,12.5 + pos: -14.5,11.5 parent: 2 - - uid: 4315 + - uid: 18013 components: - type: Transform - pos: 28.5,12.5 + pos: -15.5,11.5 parent: 2 - - uid: 7304 + - uid: 18014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,3.5 + pos: -15.5,10.5 parent: 2 - - uid: 7339 + - uid: 18015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,3.5 + pos: -15.5,9.5 parent: 2 - - uid: 8591 + - uid: 18016 components: - type: Transform - pos: 28.5,13.5 + pos: -15.5,8.5 parent: 2 - - uid: 8668 + - uid: 18017 components: - type: Transform - pos: 29.5,13.5 + pos: -15.5,7.5 parent: 2 - - uid: 15859 + - uid: 18018 components: - type: Transform - pos: 36.5,1.5 + pos: -15.5,6.5 parent: 2 - - uid: 15929 + - uid: 18019 components: - type: Transform - pos: 37.5,2.5 + pos: -15.5,5.5 parent: 2 - - uid: 15930 + - uid: 18020 components: - type: Transform - pos: 36.5,2.5 + pos: -15.5,4.5 parent: 2 - - uid: 17110 + - uid: 18021 components: - type: Transform - pos: -5.5,-25.5 + pos: -15.5,3.5 parent: 2 - - uid: 17112 + - uid: 18022 components: - type: Transform - pos: -6.5,-25.5 + pos: -15.5,2.5 parent: 2 - - uid: 17114 + - uid: 18023 components: - type: Transform - pos: -5.5,-26.5 + pos: -15.5,1.5 parent: 2 - - uid: 17115 + - uid: 18024 components: - type: Transform - pos: -4.5,-26.5 + pos: -15.5,0.5 parent: 2 - - uid: 17116 + - uid: 18025 components: - type: Transform - pos: -4.5,-25.5 + pos: -15.5,-0.5 parent: 2 - - uid: 17118 + - uid: 18026 components: - type: Transform - pos: -6.5,-26.5 + pos: -14.5,-0.5 parent: 2 -- proto: CarpetPurple - entities: - - uid: 1048 + - uid: 18027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-34.5 + pos: -13.5,-0.5 parent: 2 - - uid: 1323 + - uid: 18052 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-35.5 + pos: -29.5,-18.5 parent: 2 - - uid: 1404 + - uid: 18053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-34.5 + pos: -29.5,-19.5 parent: 2 - - uid: 1565 + - uid: 18055 components: - type: Transform - pos: 27.5,-33.5 + pos: -30.5,-19.5 parent: 2 - - uid: 1637 + - uid: 18077 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-33.5 + pos: -31.5,-19.5 parent: 2 - - uid: 4736 + - uid: 18078 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-56.5 + pos: -32.5,-19.5 parent: 2 - - uid: 11119 + - uid: 18093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-54.5 + pos: -33.5,-19.5 parent: 2 - - uid: 11120 + - uid: 18095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-54.5 + pos: -34.5,-19.5 parent: 2 - - uid: 12790 + - uid: 18115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-55.5 + pos: -34.5,-20.5 parent: 2 - - uid: 15701 + - uid: 18148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-55.5 + pos: -34.5,-21.5 parent: 2 - - uid: 15855 + - uid: 18166 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-56.5 + pos: -34.5,-22.5 parent: 2 - - uid: 18852 + - uid: 18193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-35.5 + pos: -34.5,-23.5 parent: 2 -- proto: CarpetSBlue - entities: - - uid: 3661 + - uid: 18201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-36.5 + pos: -34.5,-25.5 parent: 2 - - uid: 3731 + - uid: 18236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-35.5 + pos: -34.5,-26.5 parent: 2 - - uid: 3742 + - uid: 18269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-38.5 + pos: -34.5,-27.5 parent: 2 - - uid: 3746 + - uid: 18303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-39.5 + pos: -34.5,-24.5 parent: 2 - - uid: 3764 + - uid: 18372 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-36.5 + pos: -30.5,21.5 parent: 2 - - uid: 3767 + - uid: 18373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-38.5 + pos: -33.5,-24.5 parent: 2 - - uid: 3769 + - uid: 18374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-35.5 + pos: -26.5,20.5 parent: 2 - - uid: 3770 + - uid: 18379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-39.5 + pos: -28.5,20.5 parent: 2 - - uid: 3771 + - uid: 18380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-37.5 + pos: -27.5,20.5 parent: 2 - - uid: 3772 + - uid: 18385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-37.5 + pos: -29.5,20.5 parent: 2 - - uid: 7235 + - uid: 18386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-48.5 + pos: -32.5,-24.5 parent: 2 - - uid: 7329 + - uid: 18420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-48.5 + pos: -30.5,20.5 parent: 2 - - uid: 7650 + - uid: 18421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-46.5 + pos: -30.5,22.5 parent: 2 - - uid: 7677 + - uid: 18456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-47.5 + pos: 51.5,-52.5 parent: 2 - - uid: 9988 + - uid: 18457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-34.5 + pos: 45.5,-52.5 parent: 2 - - uid: 10261 + - uid: 18476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-46.5 + pos: -31.5,-24.5 parent: 2 - - uid: 10487 + - uid: 18510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-48.5 + pos: 37.5,-54.5 parent: 2 - - uid: 13682 + - uid: 18524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-47.5 + pos: 46.5,-52.5 parent: 2 - - uid: 13684 + - uid: 18525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-47.5 + pos: 48.5,-52.5 parent: 2 - - uid: 13685 + - uid: 18526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-46.5 + pos: 47.5,-52.5 parent: 2 - - uid: 13696 + - uid: 18527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-35.5 + pos: 49.5,-52.5 parent: 2 - - uid: 13697 + - uid: 18528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-35.5 + pos: 50.5,-52.5 parent: 2 - - uid: 17581 + - uid: 18529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-34.5 + pos: 52.5,-52.5 parent: 2 - - uid: 18844 + - uid: 18530 components: - type: Transform - pos: 72.5,-79.5 + pos: 53.5,-52.5 parent: 2 - - uid: 18845 + - uid: 18532 components: - type: Transform - pos: 71.5,-79.5 + pos: 54.5,-52.5 parent: 2 -- proto: Catwalk - entities: - - uid: 53 + - uid: 18535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,22.5 + pos: 44.5,-54.5 parent: 2 - - uid: 55 + - uid: 18545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,22.5 + pos: -31.5,-23.5 parent: 2 - - uid: 56 + - uid: 18630 components: - type: Transform - pos: 3.5,28.5 + pos: 39.5,-53.5 parent: 2 - - uid: 96 + - uid: 18636 components: - type: Transform - pos: 51.5,-31.5 + pos: 38.5,-53.5 parent: 2 - - uid: 148 + - uid: 18643 components: - type: Transform - pos: -32.5,3.5 + pos: 41.5,-53.5 parent: 2 - - uid: 167 + - uid: 18644 components: - type: Transform - pos: -32.5,4.5 + pos: 40.5,-53.5 parent: 2 - - uid: 180 + - uid: 18654 components: - type: Transform - pos: -32.5,-40.5 + pos: 37.5,-53.5 parent: 2 - - uid: 234 + - uid: 18655 components: - type: Transform - pos: 44.5,-30.5 + pos: 44.5,-53.5 parent: 2 - - uid: 400 + - uid: 18656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 + pos: 44.5,-55.5 parent: 2 - - uid: 401 + - uid: 18662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-0.5 + pos: 44.5,-52.5 parent: 2 - - uid: 464 + - uid: 18663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-22.5 + pos: 42.5,-53.5 parent: 2 - - uid: 475 + - uid: 18894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-22.5 + pos: -21.5,14.5 parent: 2 - - uid: 582 + - uid: 18901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-43.5 + pos: -27.5,6.5 parent: 2 - - uid: 613 + - uid: 18916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-41.5 + pos: -33.5,-18.5 parent: 2 - - uid: 614 + - uid: 18923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-42.5 + pos: -33.5,-17.5 parent: 2 - - uid: 619 + - uid: 18935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-40.5 + pos: -33.5,-16.5 parent: 2 - - uid: 638 + - uid: 18936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-39.5 + pos: -33.5,-15.5 parent: 2 - - uid: 639 + - uid: 18937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-38.5 + pos: -32.5,-15.5 parent: 2 - - uid: 641 + - uid: 18938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-37.5 + pos: -31.5,-15.5 parent: 2 - - uid: 655 + - uid: 18939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,22.5 + pos: -31.5,-14.5 parent: 2 - - uid: 721 + - uid: 18944 components: - type: Transform - pos: 48.5,-41.5 + pos: 45.5,-22.5 parent: 2 - - uid: 728 + - uid: 18945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,19.5 + pos: 45.5,-23.5 parent: 2 - - uid: 734 + - uid: 18946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,20.5 + pos: 45.5,-24.5 parent: 2 - - uid: 735 + - uid: 18947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,18.5 + pos: 45.5,-25.5 parent: 2 - - uid: 736 + - uid: 18948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,20.5 + pos: 46.5,-25.5 parent: 2 - - uid: 802 + - uid: 18949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,23.5 + pos: 47.5,-25.5 parent: 2 - - uid: 806 + - uid: 18950 components: - type: Transform - pos: -11.5,24.5 + pos: 48.5,-25.5 parent: 2 - - uid: 808 + - uid: 18951 components: - type: Transform - pos: -10.5,24.5 + pos: 48.5,-26.5 parent: 2 - - uid: 810 + - uid: 18952 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,23.5 + pos: 48.5,-27.5 parent: 2 - - uid: 823 + - uid: 18953 components: - type: Transform - pos: -9.5,24.5 + pos: 48.5,-28.5 parent: 2 - - uid: 838 + - uid: 18954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,23.5 + pos: 48.5,-29.5 parent: 2 - - uid: 864 + - uid: 18955 components: - type: Transform - pos: 7.5,18.5 + pos: 47.5,-29.5 parent: 2 - - uid: 872 + - uid: 18996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,23.5 + pos: -12.5,24.5 parent: 2 - - uid: 873 + - uid: 19053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,24.5 + pos: -18.5,7.5 parent: 2 - - uid: 874 + - uid: 19220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,23.5 + pos: -1.5,-58.5 parent: 2 - - uid: 875 + - uid: 19582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,15.5 + pos: -18.5,6.5 parent: 2 - - uid: 883 + - uid: 19973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,22.5 + pos: 38.5,6.5 parent: 2 - - uid: 884 + - uid: 19992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,24.5 + pos: -18.5,5.5 parent: 2 - - uid: 887 + - uid: 19993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,23.5 + pos: -18.5,4.5 parent: 2 - - uid: 896 + - uid: 19994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,22.5 + pos: -18.5,3.5 parent: 2 - - uid: 897 + - uid: 19995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,23.5 + pos: -18.5,2.5 parent: 2 - - uid: 900 + - uid: 19996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,22.5 + pos: -18.5,1.5 parent: 2 - - uid: 903 + - uid: 20202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,24.5 + pos: -36.5,-21.5 parent: 2 - - uid: 969 + - uid: 20204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,24.5 + pos: -36.5,-22.5 parent: 2 - - uid: 1019 + - uid: 20205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-46.5 + pos: -36.5,-23.5 parent: 2 - - uid: 1030 + - uid: 20206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,23.5 + pos: -35.5,-23.5 parent: 2 - - uid: 1050 + - uid: 20303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,25.5 + pos: -34.5,-28.5 parent: 2 - - uid: 1055 + - uid: 20304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,22.5 + pos: -34.5,-29.5 parent: 2 - - uid: 1056 + - uid: 20373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,22.5 + pos: -34.5,-30.5 parent: 2 - - uid: 1057 + - uid: 20388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,22.5 + pos: -34.5,-31.5 parent: 2 - - uid: 1059 + - uid: 20397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,23.5 + pos: -34.5,-32.5 parent: 2 - - uid: 1062 + - uid: 20399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,22.5 + pos: -35.5,-32.5 parent: 2 - - uid: 1073 + - uid: 20400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,22.5 + pos: -36.5,-32.5 parent: 2 - - uid: 1118 + - uid: 20403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-15.5 + pos: -36.5,-31.5 parent: 2 - - uid: 1123 + - uid: 20404 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-15.5 + pos: -33.5,-32.5 parent: 2 - - uid: 1167 + - uid: 20409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,24.5 + pos: -32.5,-32.5 parent: 2 - - uid: 1174 + - uid: 20410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,13.5 + pos: -31.5,-32.5 parent: 2 - - uid: 1190 + - uid: 20413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,17.5 + pos: -30.5,-32.5 parent: 2 - - uid: 1191 + - uid: 20418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,12.5 + pos: -28.5,-32.5 parent: 2 - - uid: 1192 + - uid: 20439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,10.5 + pos: -29.5,-32.5 parent: 2 - - uid: 1196 + - uid: 20440 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,23.5 + pos: -28.5,-33.5 parent: 2 - - uid: 1197 + - uid: 20441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,23.5 + pos: -28.5,-34.5 parent: 2 - - uid: 1198 + - uid: 20442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,22.5 + pos: -28.5,-35.5 parent: 2 - - uid: 1199 + - uid: 20443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,24.5 + pos: -35.5,-4.5 parent: 2 - - uid: 1200 + - uid: 20444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,11.5 + pos: -36.5,-4.5 parent: 2 - - uid: 1201 + - uid: 20445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,23.5 + pos: -37.5,-4.5 parent: 2 - - uid: 1202 + - uid: 20446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,23.5 + pos: -38.5,-4.5 parent: 2 - - uid: 1203 + - uid: 20447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,23.5 + pos: -39.5,-4.5 parent: 2 - - uid: 1204 + - uid: 20448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,16.5 + pos: -39.5,-3.5 parent: 2 - - uid: 1207 + - uid: 20449 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,14.5 + pos: -39.5,-2.5 parent: 2 - - uid: 1208 + - uid: 20450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,15.5 + pos: -39.5,-1.5 parent: 2 - - uid: 1236 + - uid: 20451 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,20.5 + pos: -39.5,-0.5 parent: 2 - - uid: 1237 + - uid: 20452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,19.5 + pos: -39.5,0.5 parent: 2 - - uid: 1242 + - uid: 20453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,18.5 + pos: -39.5,1.5 parent: 2 - - uid: 1246 + - uid: 20454 components: - type: Transform - pos: 8.5,18.5 + pos: -39.5,2.5 parent: 2 - - uid: 1248 + - uid: 20455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,19.5 + pos: -39.5,4.5 parent: 2 - - uid: 1269 + - uid: 20456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,20.5 + pos: -39.5,5.5 parent: 2 - - uid: 1366 + - uid: 20457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,22.5 + pos: -39.5,6.5 parent: 2 - - uid: 1367 + - uid: 20458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 + pos: -39.5,3.5 parent: 2 - - uid: 1368 + - uid: 20459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,24.5 + pos: -38.5,6.5 parent: 2 - - uid: 1369 + - uid: 20460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,22.5 + pos: -37.5,3.5 parent: 2 - - uid: 1370 + - uid: 20461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,20.5 + pos: -37.5,2.5 parent: 2 - - uid: 1371 + - uid: 20462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,18.5 + pos: -37.5,1.5 parent: 2 - - uid: 1372 + - uid: 20463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,22.5 + pos: -42.5,3.5 parent: 2 - - uid: 1373 + - uid: 20464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,19.5 + pos: -42.5,2.5 parent: 2 - - uid: 1374 + - uid: 20465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,23.5 + pos: -42.5,1.5 parent: 2 - - uid: 1387 + - uid: 20466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,24.5 + pos: -41.5,-0.5 parent: 2 - - uid: 1389 + - uid: 20467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 + pos: -41.5,-1.5 parent: 2 - - uid: 1398 + - uid: 20468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,23.5 + pos: -38.5,0.5 parent: 2 - - uid: 1402 + - uid: 20469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,22.5 + pos: -43.5,-3.5 parent: 2 - - uid: 1444 + - uid: 20470 components: - type: Transform - pos: 2.5,-27.5 + pos: -43.5,-5.5 parent: 2 - - uid: 1527 + - uid: 20471 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-15.5 + pos: -42.5,-5.5 parent: 2 - - uid: 1553 + - uid: 20472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,22.5 + pos: -41.5,-5.5 parent: 2 - - uid: 1558 + - uid: 20473 components: - type: Transform - pos: -11.5,-1.5 + pos: -40.5,-5.5 parent: 2 - - uid: 1567 + - uid: 20474 components: - type: Transform - pos: 1.5,-27.5 + pos: -39.5,-5.5 parent: 2 - - uid: 1584 + - uid: 20475 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,21.5 + pos: -42.5,-3.5 parent: 2 - - uid: 1691 + - uid: 20476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-50.5 + pos: -41.5,-3.5 parent: 2 - - uid: 1698 + - uid: 20477 components: - type: Transform - pos: 0.5,-27.5 + pos: -40.5,-3.5 parent: 2 - - uid: 1732 + - uid: 20478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,6.5 + pos: -40.5,-6.5 parent: 2 - - uid: 1733 + - uid: 20479 components: - type: Transform - pos: 43.5,-30.5 + pos: -39.5,-6.5 parent: 2 - - uid: 1741 + - uid: 20480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,20.5 + pos: -38.5,-6.5 parent: 2 - - uid: 1775 + - uid: 20481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-43.5 + pos: -35.5,-6.5 parent: 2 - - uid: 1828 + - uid: 20482 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,22.5 + pos: -28.5,-36.5 parent: 2 - - uid: 1878 + - uid: 20483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-42.5 + pos: -28.5,-37.5 parent: 2 - - uid: 1939 + - uid: 20484 components: - type: Transform - pos: -11.5,-4.5 + pos: -35.5,-1.5 parent: 2 - - uid: 1941 + - uid: 20485 components: - type: Transform - pos: -12.5,-2.5 + pos: -35.5,-2.5 parent: 2 - - uid: 1942 + - uid: 20486 components: - type: Transform - pos: -12.5,-3.5 + pos: -35.5,-3.5 parent: 2 - - uid: 1943 + - uid: 20487 components: - type: Transform - pos: -12.5,-4.5 + pos: -35.5,-5.5 parent: 2 - - uid: 1944 + - uid: 20488 components: - type: Transform - pos: -11.5,-2.5 + pos: -40.5,-1.5 parent: 2 - - uid: 1945 + - uid: 20489 components: - type: Transform - pos: -11.5,-3.5 + pos: -38.5,2.5 parent: 2 - - uid: 1947 + - uid: 20490 components: - type: Transform - pos: -12.5,-1.5 + pos: -41.5,2.5 parent: 2 - - uid: 2060 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-43.5 - parent: 2 - - uid: 2087 - components: - - type: Transform - pos: 37.5,-36.5 - parent: 2 - - uid: 2141 + - uid: 20491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-19.5 + pos: -40.5,2.5 parent: 2 - - uid: 2172 + - uid: 20503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-42.5 + pos: -27.5,-37.5 parent: 2 - - uid: 2190 + - uid: 20523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-31.5 + pos: -26.5,-37.5 parent: 2 - - uid: 2222 + - uid: 20582 components: - type: Transform - pos: 38.5,-34.5 + pos: -35.5,-27.5 parent: 2 - - uid: 2233 + - uid: 20584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-42.5 + pos: -36.5,-27.5 parent: 2 - - uid: 2269 + - uid: 20588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 + pos: -37.5,-27.5 parent: 2 - - uid: 2281 + - uid: 20590 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-41.5 + pos: -38.5,-27.5 parent: 2 - - uid: 2286 + - uid: 20599 components: - type: Transform - pos: -2.5,-22.5 + pos: -39.5,-27.5 parent: 2 - - uid: 2290 + - uid: 20600 components: - type: Transform - pos: 23.5,-17.5 + pos: -40.5,-27.5 parent: 2 - - uid: 2376 + - uid: 20603 components: - type: Transform - pos: -18.5,11.5 + pos: -40.5,-28.5 parent: 2 - - uid: 2406 + - uid: 20604 components: - type: Transform - pos: 4.5,-23.5 + pos: -40.5,-29.5 parent: 2 - - uid: 2407 + - uid: 20613 components: - type: Transform - pos: 5.5,-23.5 + pos: -41.5,-29.5 parent: 2 - - uid: 2433 + - uid: 20616 components: - type: Transform - pos: 5.5,-22.5 + pos: -42.5,-29.5 parent: 2 - - uid: 2495 + - uid: 20625 components: - type: Transform - pos: 6.5,-17.5 + pos: -44.5,-29.5 parent: 2 - - uid: 2506 + - uid: 20626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-42.5 + pos: -45.5,-29.5 parent: 2 - - uid: 2539 + - uid: 20637 components: - type: Transform - pos: 26.5,-44.5 + pos: -46.5,-29.5 parent: 2 - - uid: 2540 + - uid: 20638 components: - type: Transform - pos: 8.5,-18.5 + pos: -43.5,-29.5 parent: 2 - - uid: 2589 + - uid: 20671 components: - type: Transform - pos: 7.5,-19.5 + pos: 29.5,22.5 parent: 2 - - uid: 2655 + - uid: 20672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,23.5 + pos: 30.5,22.5 parent: 2 - - uid: 2657 + - uid: 20722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,22.5 + pos: -30.5,14.5 parent: 2 - - uid: 2660 + - uid: 20758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,22.5 + pos: -30.5,16.5 parent: 2 - - uid: 2662 + - uid: 20769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,23.5 + pos: -31.5,14.5 parent: 2 - - uid: 2664 + - uid: 20772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,23.5 + pos: -30.5,17.5 parent: 2 - - uid: 2665 + - uid: 20773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,23.5 + pos: -30.5,19.5 parent: 2 - - uid: 2669 + - uid: 20776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,23.5 + pos: -30.5,15.5 parent: 2 - - uid: 2738 + - uid: 20777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-43.5 + pos: -32.5,12.5 parent: 2 - - uid: 2740 + - uid: 20778 components: - type: Transform pos: -32.5,11.5 parent: 2 - - uid: 2759 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-44.5 - parent: 2 - - uid: 2768 - components: - - type: Transform - pos: -2.5,-21.5 - parent: 2 - - uid: 2789 - components: - - type: Transform - pos: 7.5,-18.5 - parent: 2 - - uid: 2829 + - uid: 20779 components: - type: Transform - pos: -18.5,18.5 + pos: -32.5,10.5 parent: 2 - - uid: 2832 + - uid: 20780 components: - type: Transform - pos: -18.5,16.5 + pos: -32.5,9.5 parent: 2 - - uid: 2883 + - uid: 20781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,23.5 + pos: -32.5,7.5 parent: 2 - - uid: 2884 + - uid: 20782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,23.5 + pos: -32.5,6.5 parent: 2 - - uid: 2885 + - uid: 20783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,23.5 + pos: -32.5,8.5 parent: 2 - - uid: 2908 + - uid: 20790 components: - type: Transform - pos: 4.5,-21.5 + pos: -32.5,3.5 parent: 2 - - uid: 2911 + - uid: 20791 components: - type: Transform - pos: 5.5,-21.5 + pos: -32.5,4.5 parent: 2 - - uid: 2913 + - uid: 20792 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-8.5 + pos: -32.5,5.5 parent: 2 - - uid: 2914 + - uid: 20837 components: - type: Transform - pos: 3.5,-21.5 + pos: 12.5,-69.5 parent: 2 - - uid: 2916 + - uid: 20838 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-12.5 + pos: 14.5,-62.5 parent: 2 - - uid: 2918 + - uid: 20841 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-14.5 + pos: 10.5,-62.5 parent: 2 - - uid: 2921 + - uid: 20843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-16.5 + pos: 11.5,-69.5 parent: 2 - - uid: 2922 + - uid: 20844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-15.5 + pos: 10.5,-69.5 parent: 2 - - uid: 2927 + - uid: 20845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-15.5 + pos: 10.5,-68.5 parent: 2 - - uid: 2928 + - uid: 20846 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-15.5 + pos: 10.5,-67.5 parent: 2 - - uid: 2929 + - uid: 20847 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-15.5 + pos: 10.5,-66.5 parent: 2 - - uid: 2931 + - uid: 20848 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-15.5 + pos: 10.5,-65.5 parent: 2 - - uid: 2932 + - uid: 20849 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 + pos: 10.5,-64.5 parent: 2 - - uid: 2933 + - uid: 20850 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-15.5 + pos: 10.5,-63.5 parent: 2 - - uid: 2934 + - uid: 20851 components: - type: Transform - pos: 3.5,-35.5 + pos: -9.5,-71.5 parent: 2 - - uid: 2935 + - uid: 20852 components: - type: Transform - pos: 3.5,-34.5 + pos: -8.5,-71.5 parent: 2 - - uid: 2937 + - uid: 20853 components: - type: Transform - pos: 3.5,-33.5 + pos: -7.5,-71.5 parent: 2 - - uid: 2939 + - uid: 20854 components: - type: Transform - pos: 3.5,-26.5 + pos: -7.5,-70.5 parent: 2 - - uid: 2940 + - uid: 20855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-38.5 + pos: -7.5,-69.5 parent: 2 - - uid: 2941 + - uid: 20856 components: - type: Transform - pos: 3.5,-31.5 + pos: -7.5,-68.5 parent: 2 - - uid: 2942 + - uid: 20857 components: - type: Transform - pos: 3.5,-30.5 + pos: -7.5,-67.5 parent: 2 - - uid: 2945 + - uid: 20858 components: - type: Transform - pos: 3.5,-29.5 + pos: -7.5,-66.5 parent: 2 - - uid: 2946 + - uid: 20859 components: - type: Transform - pos: 3.5,-28.5 + pos: -7.5,-65.5 parent: 2 - - uid: 2951 + - uid: 20860 components: - type: Transform - pos: 4.5,-25.5 + pos: -7.5,-64.5 parent: 2 - - uid: 2994 + - uid: 20861 components: - type: Transform - pos: 3.5,-22.5 + pos: -7.5,-63.5 parent: 2 - - uid: 2998 + - uid: 20862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,23.5 + pos: -7.5,-62.5 parent: 2 - - uid: 2999 + - uid: 20863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-53.5 + pos: -7.5,-61.5 parent: 2 - - uid: 3001 + - uid: 20864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,22.5 + pos: -7.5,-60.5 parent: 2 - - uid: 3020 + - uid: 20865 components: - type: Transform - pos: 43.5,-4.5 + pos: -7.5,-59.5 parent: 2 - - uid: 3022 + - uid: 20866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,24.5 + pos: -7.5,-58.5 parent: 2 - - uid: 3074 + - uid: 20867 components: - type: Transform - pos: -18.5,17.5 + pos: -7.5,-56.5 parent: 2 - - uid: 3078 + - uid: 20868 components: - type: Transform - pos: 27.5,-14.5 + pos: -7.5,-57.5 parent: 2 - - uid: 3086 + - uid: 20869 components: - type: Transform - pos: 37.5,-34.5 + pos: -6.5,-56.5 parent: 2 - - uid: 3149 + - uid: 20870 components: - type: Transform - pos: 3.5,-23.5 + pos: -5.5,-56.5 parent: 2 - - uid: 3169 + - uid: 20871 components: - type: Transform - pos: 44.5,-4.5 + pos: -3.5,-56.5 parent: 2 - - uid: 3194 + - uid: 20872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-9.5 + pos: -2.5,-56.5 parent: 2 - - uid: 3254 + - uid: 20873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,24.5 + pos: -1.5,-56.5 parent: 2 - - uid: 3269 + - uid: 20874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-34.5 + pos: -0.5,-56.5 parent: 2 - - uid: 3277 + - uid: 20875 components: - type: Transform - pos: -18.5,13.5 + pos: 0.5,-56.5 parent: 2 - - uid: 3313 + - uid: 20876 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-13.5 + pos: 1.5,-56.5 parent: 2 - - uid: 3317 + - uid: 20877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-15.5 + pos: -4.5,-56.5 parent: 2 - - uid: 3337 + - uid: 20878 components: - type: Transform - pos: 24.5,-14.5 + pos: 3.5,-56.5 parent: 2 - - uid: 3359 + - uid: 20879 components: - type: Transform - pos: 23.5,-14.5 + pos: 4.5,-56.5 parent: 2 - - uid: 3386 + - uid: 20880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-18.5 + pos: 2.5,-56.5 parent: 2 - - uid: 3540 + - uid: 20881 components: - type: Transform - pos: -40.5,-58.5 + pos: 5.5,-56.5 parent: 2 - - uid: 3554 + - uid: 20882 components: - type: Transform - pos: 42.5,-4.5 + pos: 6.5,-56.5 parent: 2 - - uid: 3558 + - uid: 20883 components: - type: Transform - pos: 21.5,7.5 + pos: 8.5,-56.5 parent: 2 - - uid: 3668 + - uid: 20884 components: - type: Transform - pos: 37.5,-38.5 + pos: 7.5,-56.5 parent: 2 - - uid: 3669 + - uid: 20885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-52.5 + pos: 9.5,-56.5 parent: 2 - - uid: 3678 + - uid: 20886 components: - type: Transform - pos: 21.5,6.5 + pos: 10.5,-56.5 parent: 2 - - uid: 3680 + - uid: 20887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-53.5 + pos: 14.5,-57.5 parent: 2 - - uid: 3693 + - uid: 20888 components: - type: Transform - pos: 24.5,-41.5 + pos: 13.5,-57.5 parent: 2 - - uid: 3849 + - uid: 20889 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-10.5 + pos: 12.5,-57.5 parent: 2 - - uid: 3904 + - uid: 20890 components: - type: Transform - pos: -10.5,-28.5 + pos: 11.5,-57.5 parent: 2 - - uid: 3905 + - uid: 20891 components: - type: Transform - pos: -9.5,-28.5 + pos: 10.5,-57.5 parent: 2 - - uid: 3906 + - uid: 20892 components: - type: Transform - pos: -8.5,-28.5 + pos: 10.5,-58.5 parent: 2 - - uid: 3908 + - uid: 20893 components: - type: Transform - pos: -6.5,-28.5 + pos: 10.5,-59.5 parent: 2 - - uid: 3909 + - uid: 20894 components: - type: Transform - pos: -5.5,-28.5 + pos: 10.5,-60.5 parent: 2 - - uid: 3911 + - uid: 20895 components: - type: Transform - pos: -3.5,-28.5 + pos: 10.5,-61.5 parent: 2 - - uid: 3912 + - uid: 21084 components: - type: Transform - pos: -2.5,-28.5 + pos: 11.5,-49.5 parent: 2 - - uid: 3913 + - uid: 21085 components: - type: Transform - pos: -1.5,-28.5 + pos: 10.5,-49.5 parent: 2 - - uid: 3915 + - uid: 21086 components: - type: Transform - pos: -13.5,-27.5 + pos: 10.5,-50.5 parent: 2 - - uid: 3916 + - uid: 21087 components: - type: Transform - pos: -14.5,-27.5 + pos: 10.5,-51.5 parent: 2 - - uid: 3918 + - uid: 21088 components: - type: Transform - pos: -16.5,-27.5 + pos: 10.5,-52.5 parent: 2 - - uid: 3919 + - uid: 21089 components: - type: Transform - pos: -17.5,-27.5 + pos: 10.5,-53.5 parent: 2 - - uid: 3920 + - uid: 21090 components: - type: Transform - pos: -18.5,-27.5 + pos: 10.5,-54.5 parent: 2 - - uid: 3921 + - uid: 21091 components: - type: Transform - pos: -19.5,-27.5 + pos: 10.5,-55.5 parent: 2 - - uid: 3935 + - uid: 21225 components: - type: Transform - pos: 24.5,-42.5 + pos: 20.5,-21.5 parent: 2 - - uid: 3945 + - uid: 21303 components: - type: Transform - pos: -31.5,-40.5 + pos: 43.5,-4.5 parent: 2 - - uid: 3983 + - uid: 21304 components: - type: Transform - pos: -37.5,-55.5 + pos: 45.5,-5.5 parent: 2 - - uid: 4050 + - uid: 21368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-54.5 + pos: 25.5,13.5 parent: 2 - - uid: 4073 + - uid: 21394 components: - type: Transform - pos: -34.5,-40.5 + pos: -34.5,3.5 parent: 2 - - uid: 4138 + - uid: 21764 components: - type: Transform - pos: 2.5,-40.5 + pos: 19.5,6.5 parent: 2 - - uid: 4139 + - uid: 21765 components: - type: Transform - pos: 1.5,-40.5 + pos: 19.5,5.5 parent: 2 - - uid: 4140 + - uid: 21766 components: - type: Transform - pos: 0.5,-40.5 + pos: 19.5,4.5 parent: 2 - - uid: 4164 + - uid: 21767 components: - type: Transform - pos: 23.5,-43.5 + pos: 19.5,3.5 parent: 2 - - uid: 4189 + - uid: 21768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,6.5 + pos: 19.5,2.5 parent: 2 - - uid: 4215 + - uid: 21769 components: - type: Transform - pos: 9.5,-18.5 + pos: 20.5,2.5 parent: 2 - - uid: 4218 + - uid: 21770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-36.5 + pos: 20.5,1.5 parent: 2 - - uid: 4251 + - uid: 21771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-38.5 + pos: 20.5,0.5 parent: 2 - - uid: 4254 + - uid: 21772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-36.5 + pos: 20.5,-0.5 parent: 2 - - uid: 4275 + - uid: 21773 components: - type: Transform - pos: 21.5,-43.5 + pos: 21.5,-0.5 parent: 2 - - uid: 4395 + - uid: 21774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-40.5 + pos: 22.5,-0.5 parent: 2 - - uid: 4399 + - uid: 21775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-36.5 + pos: 23.5,-0.5 parent: 2 - - uid: 4400 + - uid: 21812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-35.5 + pos: 36.5,11.5 parent: 2 - - uid: 4401 + - uid: 21857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-34.5 + pos: 36.5,14.5 parent: 2 - - uid: 4405 + - uid: 21858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-33.5 + pos: 37.5,14.5 parent: 2 - - uid: 4406 + - uid: 21862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-33.5 + pos: 38.5,14.5 parent: 2 - - uid: 4407 + - uid: 21908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-33.5 + pos: 25.5,23.5 parent: 2 - - uid: 4412 + - uid: 21955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-42.5 + pos: 43.5,14.5 parent: 2 - - uid: 4418 + - uid: 21983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-33.5 + pos: 32.5,22.5 parent: 2 - - uid: 4419 + - uid: 21984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-33.5 + pos: 22.5,10.5 parent: 2 - - uid: 4420 + - uid: 21991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-33.5 + pos: 25.5,12.5 parent: 2 - - uid: 4451 + - uid: 22024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,7.5 + pos: 36.5,3.5 parent: 2 - - uid: 4483 + - uid: 22058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-41.5 + pos: 29.5,-4.5 parent: 2 - - uid: 4484 + - uid: 22059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-42.5 + pos: 30.5,-4.5 parent: 2 - - uid: 4485 + - uid: 22060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-43.5 + pos: 31.5,-4.5 parent: 2 - - uid: 4486 + - uid: 22083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-41.5 + pos: -34.5,6.5 parent: 2 - - uid: 4487 + - uid: 22121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-42.5 + pos: -25.5,-7.5 parent: 2 - - uid: 4489 + - uid: 22122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-41.5 + pos: 28.5,13.5 parent: 2 - - uid: 4490 + - uid: 22144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-42.5 + pos: 25.5,16.5 parent: 2 - - uid: 4492 + - uid: 22281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-41.5 + pos: 19.5,-43.5 parent: 2 - - uid: 4493 + - uid: 22282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-42.5 + pos: 20.5,-43.5 parent: 2 - - uid: 4505 + - uid: 22283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-36.5 + pos: 21.5,-43.5 parent: 2 - - uid: 4539 + - uid: 22284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,11.5 + pos: 21.5,-42.5 parent: 2 - - uid: 4540 + - uid: 22291 components: - type: Transform - pos: 26.5,-14.5 + pos: 27.5,5.5 parent: 2 - - uid: 4557 + - uid: 22292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,9.5 + pos: 27.5,6.5 parent: 2 - - uid: 4578 + - uid: 22293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-36.5 + pos: 22.5,7.5 parent: 2 - - uid: 4645 + - uid: 22294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-36.5 + pos: 23.5,7.5 parent: 2 - - uid: 4663 + - uid: 22295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,19.5 + pos: 24.5,7.5 parent: 2 - - uid: 4714 + - uid: 22296 components: - type: Transform - pos: -33.5,-40.5 + pos: 25.5,7.5 parent: 2 - - uid: 4745 + - uid: 22297 components: - type: Transform - pos: -32.5,5.5 + pos: 26.5,7.5 parent: 2 - - uid: 4851 + - uid: 22298 components: - type: Transform - pos: 41.5,-3.5 + pos: 27.5,7.5 parent: 2 - - uid: 4891 + - uid: 22319 components: - type: Transform - pos: 31.5,-55.5 + pos: -25.5,-5.5 parent: 2 - - uid: 4918 + - uid: 22492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,11.5 + pos: 27.5,16.5 parent: 2 - - uid: 4950 + - uid: 22493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-42.5 + pos: 28.5,16.5 parent: 2 - - uid: 4955 + - uid: 22494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-41.5 + pos: 28.5,17.5 parent: 2 - - uid: 4962 + - uid: 22495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-41.5 + pos: 28.5,18.5 parent: 2 - - uid: 5043 + - uid: 22496 components: - type: Transform - pos: -26.5,-19.5 + pos: 29.5,18.5 parent: 2 - - uid: 5094 + - uid: 22497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,18.5 + pos: 30.5,18.5 parent: 2 - - uid: 5134 + - uid: 22499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-56.5 + pos: 31.5,18.5 parent: 2 - - uid: 5156 + - uid: 22502 components: - type: Transform - pos: 46.5,-30.5 + pos: 28.5,14.5 parent: 2 - - uid: 5158 + - uid: 22532 components: - type: Transform - pos: 47.5,-30.5 + pos: -28.5,-62.5 parent: 2 - - uid: 5160 + - uid: 22533 components: - type: Transform - pos: 44.5,-37.5 + pos: -29.5,-62.5 parent: 2 - - uid: 5161 + - uid: 22534 components: - type: Transform - pos: 30.5,-55.5 + pos: -29.5,-61.5 parent: 2 - - uid: 5197 + - uid: 22566 components: - type: Transform - pos: -0.5,-27.5 + pos: -31.5,-61.5 parent: 2 - - uid: 5224 + - uid: 22567 components: - type: Transform - pos: 6.5,-18.5 + pos: -32.5,-61.5 parent: 2 - - uid: 5303 + - uid: 22568 components: - type: Transform - pos: 34.5,-43.5 + pos: -25.5,-34.5 parent: 2 - - uid: 5323 + - uid: 22569 components: - type: Transform - pos: 5.5,28.5 + pos: -26.5,-34.5 parent: 2 - - uid: 5380 + - uid: 22570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,21.5 + pos: -27.5,-34.5 parent: 2 - - uid: 5452 + - uid: 22606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,15.5 + pos: -25.5,-8.5 parent: 2 - - uid: 5454 + - uid: 22607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,15.5 + pos: -25.5,-6.5 parent: 2 - - uid: 5502 + - uid: 22608 components: - type: Transform - pos: -30.5,-40.5 + pos: -24.5,-10.5 parent: 2 - - uid: 5503 + - uid: 22609 components: - type: Transform - pos: -31.5,-41.5 + pos: -24.5,-12.5 parent: 2 - - uid: 5533 + - uid: 22610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-55.5 + pos: -24.5,-11.5 parent: 2 - - uid: 5584 + - uid: 22622 components: - type: Transform - pos: -30.5,23.5 + pos: -33.5,6.5 parent: 2 - - uid: 5602 + - uid: 22624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,22.5 + pos: 34.5,6.5 parent: 2 - - uid: 5637 + - uid: 22625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,24.5 + pos: 33.5,6.5 parent: 2 - - uid: 5638 + - uid: 22626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,11.5 + pos: 32.5,6.5 parent: 2 - - uid: 5678 + - uid: 22627 components: - type: Transform - pos: 23.5,11.5 + pos: 32.5,7.5 parent: 2 - - uid: 5712 + - uid: 22628 components: - type: Transform - pos: 45.5,-30.5 + pos: 32.5,8.5 parent: 2 - - uid: 5713 + - uid: 22629 components: - type: Transform - pos: 43.5,-34.5 + pos: 33.5,8.5 parent: 2 - - uid: 5717 + - uid: 22630 components: - type: Transform - pos: 43.5,-33.5 + pos: 34.5,8.5 parent: 2 - - uid: 5734 + - uid: 22640 components: - type: Transform - pos: 27.5,-55.5 + pos: 44.5,14.5 parent: 2 - - uid: 5735 + - uid: 22715 components: - type: Transform - pos: 28.5,-55.5 + pos: -25.5,17.5 parent: 2 - - uid: 5878 + - uid: 22716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,11.5 + pos: -25.5,18.5 parent: 2 - - uid: 6040 +- proto: CableMVStack + entities: + - uid: 3393 components: - type: Transform - pos: 27.5,-44.5 + pos: -16.489902,-25.261671 parent: 2 - - uid: 6058 + - uid: 9856 components: - type: Transform - pos: 29.5,-55.5 + pos: -13.565001,-10.30104 parent: 2 - - uid: 6062 + - uid: 10791 components: - type: Transform - pos: 25.5,11.5 + pos: -55.47804,-13.404876 parent: 2 - - uid: 6085 +- proto: CableTerminal + entities: + - uid: 2770 components: - type: Transform - pos: 21.5,11.5 + pos: -3.5,-17.5 parent: 2 - - uid: 6105 + - uid: 2816 components: - type: Transform - pos: 22.5,11.5 + pos: -1.5,-17.5 parent: 2 - - uid: 6133 + - uid: 4393 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,3.5 + pos: 46.5,2.5 parent: 2 - - uid: 6151 + - uid: 4793 components: - type: Transform - pos: 24.5,7.5 + pos: -2.5,-17.5 parent: 2 - - uid: 6205 + - uid: 6275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,15.5 + rot: -1.5707963267948966 rad + pos: 24.5,-10.5 parent: 2 - - uid: 6395 + - uid: 8954 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,1.5 + pos: -31.5,24.5 parent: 2 - - uid: 6403 + - uid: 15475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,1.5 + rot: 3.141592653589793 rad + pos: -62.5,-9.5 parent: 2 - - uid: 6419 + - uid: 15795 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,1.5 - parent: 2 - - uid: 6425 - components: - - type: Transform - pos: 21.5,3.5 - parent: 2 - - uid: 6434 - components: - - type: Transform - pos: 21.5,0.5 + pos: -56.5,-58.5 parent: 2 - - uid: 6436 + - uid: 21261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,0.5 + pos: -10.5,-55.5 parent: 2 - - uid: 6440 +- proto: Candle + entities: + - uid: 3662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 + pos: 13.258192,-36.48326 parent: 2 - - uid: 6499 + - uid: 3774 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,20.5 + pos: 15.22792,-40.340107 parent: 2 - - uid: 6566 + - uid: 3784 components: - type: Transform - pos: 21.5,2.5 + pos: 13.258192,-38.192783 parent: 2 - - uid: 6572 + - uid: 5793 components: - type: Transform - pos: 21.5,-0.5 + pos: 37.58059,-11.253904 parent: 2 - - uid: 6742 + - uid: 5794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,25.5 + rot: 3.141592653589793 rad + pos: 35.383995,-11.297027 parent: 2 - - uid: 6755 + - uid: 7708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,19.5 + rot: 3.141592653589793 rad + pos: 18.975016,-38.280716 parent: 2 - - uid: 6756 + - uid: 7932 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,20.5 + pos: 17.253723,-41.283375 parent: 2 - - uid: 6776 + - uid: 9058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-37.5 + pos: 46.28144,-27.332985 parent: 2 - - uid: 6809 + - uid: 9059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-38.5 + pos: 46.656628,-27.260017 parent: 2 - - uid: 6820 + - uid: 9060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-36.5 + pos: 46.52114,-27.47892 parent: 2 - - uid: 6892 +- proto: CannabisSeeds + entities: + - uid: 226 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,19.5 + pos: -42.444153,-3.3896503 parent: 2 - - uid: 6948 + - uid: 19901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,8.5 + pos: 39.470306,-67.50273 parent: 2 - - uid: 6956 +- proto: CapacitorStockPart + entities: + - uid: 3183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,6.5 + pos: 10.429108,-19.010042 parent: 2 - - uid: 7006 + - uid: 3237 components: - type: Transform - pos: 21.5,-10.5 + pos: 10.481217,-19.291487 parent: 2 - - uid: 7007 + - uid: 9603 components: - type: Transform - pos: 21.5,-9.5 + pos: 22.32732,-30.24205 parent: 2 - - uid: 7008 + - uid: 9604 components: - type: Transform - pos: 25.5,-8.5 + pos: 22.549095,-30.46535 parent: 2 - - uid: 7009 +- proto: CarbonDioxideCanister + entities: + - uid: 1457 components: - type: Transform - pos: 25.5,-9.5 + pos: -3.5,6.5 parent: 2 - - uid: 7010 + - uid: 1940 components: - type: Transform - pos: 25.5,-10.5 + pos: -12.5,-4.5 parent: 2 - - uid: 7011 + - uid: 4581 components: - type: Transform - pos: 25.5,-11.5 + pos: 29.5,-41.5 parent: 2 - - uid: 7127 +- proto: Carpet + entities: + - uid: 752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,19.5 + pos: 12.5,-10.5 parent: 2 - - uid: 7150 + - uid: 6740 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-22.5 + pos: -8.5,-38.5 parent: 2 - - uid: 7151 + - uid: 7109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-22.5 + pos: 47.5,-8.5 parent: 2 - - uid: 7166 + - uid: 7409 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-19.5 + pos: -9.5,-39.5 parent: 2 - - uid: 7190 + - uid: 7523 components: - type: Transform - pos: -2.5,-20.5 + rot: -1.5707963267948966 rad + pos: -11.5,-39.5 parent: 2 - - uid: 7226 + - uid: 8343 components: - type: Transform - pos: -18.5,15.5 + pos: 48.5,-8.5 parent: 2 - - uid: 7279 + - uid: 10183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,6.5 + rot: -1.5707963267948966 rad + pos: -6.5,-38.5 parent: 2 - - uid: 7409 + - uid: 10258 components: - type: Transform - pos: 12.5,-71.5 + rot: -1.5707963267948966 rad + pos: -6.5,-39.5 parent: 2 - - uid: 7413 + - uid: 11302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,5.5 + rot: -1.5707963267948966 rad + pos: -11.5,-38.5 parent: 2 - - uid: 7445 + - uid: 14970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-42.5 + rot: -1.5707963267948966 rad + pos: -9.5,-38.5 parent: 2 - - uid: 7466 + - uid: 15873 components: - type: Transform - pos: -18.5,19.5 + rot: -1.5707963267948966 rad + pos: -7.5,-39.5 parent: 2 - - uid: 7475 + - uid: 16208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-40.5 + pos: 70.5,-64.5 parent: 2 - - uid: 7573 + - uid: 18384 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,23.5 + pos: -10.5,-38.5 parent: 2 - - uid: 7581 + - uid: 18507 components: - type: Transform - pos: -9.5,-71.5 + pos: 70.5,-63.5 parent: 2 - - uid: 7586 + - uid: 18590 components: - type: Transform - pos: 10.5,-71.5 + rot: -1.5707963267948966 rad + pos: -10.5,-39.5 parent: 2 - - uid: 7588 + - uid: 18777 components: - type: Transform - pos: -7.5,-71.5 + pos: 70.5,-62.5 parent: 2 - - uid: 7648 + - uid: 18778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-54.5 + pos: 71.5,-61.5 parent: 2 - - uid: 7656 + - uid: 18795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,24.5 + pos: 66.5,-75.5 parent: 2 - - uid: 7721 + - uid: 18796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-55.5 + pos: 66.5,-76.5 parent: 2 - - uid: 7776 + - uid: 18797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-30.5 + pos: 65.5,-76.5 parent: 2 - - uid: 7777 + - uid: 21873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-31.5 + rot: -1.5707963267948966 rad + pos: -8.5,-39.5 parent: 2 - - uid: 7778 + - uid: 22177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-33.5 + rot: -1.5707963267948966 rad + pos: -7.5,-38.5 parent: 2 - - uid: 7779 +- proto: CarpetBlack + entities: + - uid: 8406 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-52.5 + pos: 7.5,-33.5 parent: 2 - - uid: 7956 + - uid: 9986 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-54.5 + pos: -2.5,-38.5 parent: 2 - - uid: 8030 + - uid: 10141 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-54.5 - parent: 2 - - uid: 8053 - components: - - type: Transform - pos: -29.5,23.5 + pos: 6.5,-33.5 parent: 2 - - uid: 8284 + - uid: 10184 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-54.5 + pos: 5.5,-33.5 parent: 2 - - uid: 8286 + - uid: 10495 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-56.5 + pos: -3.5,-38.5 parent: 2 - - uid: 8287 + - uid: 13687 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-54.5 + pos: -3.5,-37.5 parent: 2 - - uid: 8289 + - uid: 13688 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-54.5 + pos: -2.5,-37.5 parent: 2 - - uid: 8294 + - uid: 13689 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-56.5 + pos: 7.5,-34.5 parent: 2 - - uid: 8295 + - uid: 13690 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,-54.5 + pos: 6.5,-34.5 parent: 2 - - uid: 8296 + - uid: 13692 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,-53.5 + pos: 5.5,-34.5 parent: 2 - - uid: 8297 + - uid: 14813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-54.5 + rot: 1.5707963267948966 rad + pos: -21.5,11.5 parent: 2 - - uid: 8298 + - uid: 14819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-54.5 + rot: 1.5707963267948966 rad + pos: -22.5,12.5 parent: 2 - - uid: 8304 + - uid: 14820 components: - type: Transform - pos: 34.5,-54.5 + rot: 1.5707963267948966 rad + pos: -22.5,11.5 parent: 2 - - uid: 8308 + - uid: 14879 components: - type: Transform - pos: 30.5,-54.5 + rot: 1.5707963267948966 rad + pos: -21.5,12.5 parent: 2 - - uid: 8309 + - uid: 15304 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,25.5 + pos: -22.5,10.5 parent: 2 - - uid: 8313 + - uid: 15329 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,11.5 + pos: -21.5,10.5 parent: 2 - - uid: 8314 +- proto: CarpetBlue + entities: + - uid: 16 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-54.5 + rot: -1.5707963267948966 rad + pos: -27.5,-46.5 parent: 2 - - uid: 8322 + - uid: 157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,20.5 + rot: -1.5707963267948966 rad + pos: -6.5,19.5 parent: 2 - - uid: 8328 + - uid: 158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,11.5 + rot: -1.5707963267948966 rad + pos: -6.5,18.5 parent: 2 - - uid: 8349 + - uid: 297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,15.5 + rot: -1.5707963267948966 rad + pos: -29.5,-46.5 parent: 2 - - uid: 8362 + - uid: 362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-54.5 + rot: -1.5707963267948966 rad + pos: -27.5,-47.5 parent: 2 - - uid: 8364 + - uid: 1286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-54.5 + pos: -26.5,-55.5 parent: 2 - - uid: 8367 + - uid: 1690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,18.5 + rot: -1.5707963267948966 rad + pos: -29.5,-45.5 parent: 2 - - uid: 8383 + - uid: 1742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,19.5 + pos: -25.5,-55.5 parent: 2 - - uid: 8425 + - uid: 2525 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,2.5 + pos: -26.5,-45.5 parent: 2 - - uid: 8426 + - uid: 2567 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,2.5 + pos: -26.5,-47.5 parent: 2 - - uid: 8428 + - uid: 3068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-54.5 + rot: -1.5707963267948966 rad + pos: -26.5,-46.5 parent: 2 - - uid: 8429 + - uid: 3123 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,3.5 + pos: -28.5,-46.5 parent: 2 - - uid: 8430 + - uid: 3130 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,1.5 + pos: -26.5,-44.5 parent: 2 - - uid: 8431 + - uid: 3171 + components: + - type: Transform + pos: -25.5,-50.5 + parent: 2 + - uid: 4783 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,2.5 + pos: -28.5,-47.5 parent: 2 - - uid: 8435 + - uid: 4797 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,0.5 + pos: -29.5,-44.5 parent: 2 - - uid: 8437 + - uid: 4948 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,0.5 + pos: -27.5,-45.5 parent: 2 - - uid: 8439 + - uid: 4963 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,19.5 + rot: -1.5707963267948966 rad + pos: -28.5,-44.5 parent: 2 - - uid: 8440 + - uid: 4967 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,1.5 + pos: -27.5,-44.5 parent: 2 - - uid: 8441 + - uid: 4971 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,2.5 + pos: -30.5,-44.5 parent: 2 - - uid: 8443 + - uid: 5013 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,2.5 + pos: -30.5,-45.5 parent: 2 - - uid: 8493 + - uid: 5213 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-53.5 + rot: -1.5707963267948966 rad + pos: -30.5,-46.5 parent: 2 - - uid: 8553 + - uid: 5243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-56.5 + rot: -1.5707963267948966 rad + pos: -29.5,-47.5 parent: 2 - - uid: 8560 + - uid: 5750 components: - type: Transform - pos: 45.5,-5.5 + rot: -1.5707963267948966 rad + pos: -30.5,-47.5 parent: 2 - - uid: 8561 + - uid: 5751 components: - type: Transform - pos: 45.5,-6.5 + rot: -1.5707963267948966 rad + pos: -28.5,-45.5 parent: 2 - - uid: 8562 + - uid: 6182 components: - type: Transform - pos: 45.5,-7.5 + rot: -1.5707963267948966 rad + pos: -7.5,19.5 parent: 2 - - uid: 8563 + - uid: 6378 components: - type: Transform - pos: 45.5,-9.5 + rot: -1.5707963267948966 rad + pos: -7.5,18.5 parent: 2 - - uid: 8564 + - uid: 9699 components: - type: Transform - pos: 45.5,-10.5 + pos: -25.5,-51.5 parent: 2 - - uid: 8565 + - uid: 9881 components: - type: Transform - pos: 45.5,-11.5 + pos: -26.5,-54.5 parent: 2 - - uid: 8566 + - uid: 9953 components: - type: Transform - pos: 45.5,-12.5 + pos: -25.5,-54.5 parent: 2 - - uid: 8567 + - uid: 9964 components: - type: Transform - pos: 45.5,-13.5 + rot: -1.5707963267948966 rad + pos: -11.5,-50.5 parent: 2 - - uid: 8587 + - uid: 9965 components: - type: Transform - pos: 45.5,-8.5 + rot: -1.5707963267948966 rad + pos: -11.5,-51.5 parent: 2 - - uid: 8637 + - uid: 9966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,-52.5 + rot: -1.5707963267948966 rad + pos: -10.5,-51.5 parent: 2 - - uid: 8680 + - uid: 9967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,18.5 + rot: -1.5707963267948966 rad + pos: -10.5,-50.5 parent: 2 - - uid: 8681 + - uid: 14003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 + pos: -25.5,-52.5 parent: 2 - - uid: 8766 + - uid: 20248 components: - type: Transform - pos: 44.5,2.5 + rot: -1.5707963267948966 rad + pos: -24.5,-50.5 parent: 2 - - uid: 8769 + - uid: 20249 components: - type: Transform - pos: 48.5,2.5 + rot: -1.5707963267948966 rad + pos: -24.5,-51.5 parent: 2 - - uid: 8773 + - uid: 20820 components: - type: Transform - pos: 45.5,2.5 + pos: -24.5,-52.5 parent: 2 - - uid: 8784 + - uid: 20821 components: - type: Transform - pos: 42.5,2.5 + pos: -23.5,-52.5 parent: 2 - - uid: 8788 + - uid: 20822 components: - type: Transform - pos: 41.5,1.5 + pos: -23.5,-51.5 parent: 2 - - uid: 8789 + - uid: 20823 components: - type: Transform - pos: 41.5,0.5 + pos: -23.5,-50.5 parent: 2 - - uid: 8790 +- proto: CarpetChapel + entities: + - uid: 2686 components: - type: Transform - pos: 41.5,-0.5 + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 parent: 2 - - uid: 8791 + - uid: 5932 components: - type: Transform - pos: 41.5,-1.5 + rot: 3.141592653589793 rad + pos: 34.5,-15.5 parent: 2 - - uid: 8792 + - uid: 5933 components: - type: Transform - pos: 41.5,-2.5 + pos: 37.5,-16.5 parent: 2 - - uid: 8831 + - uid: 5934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,2.5 + rot: 1.5707963267948966 rad + pos: 38.5,-16.5 parent: 2 - - uid: 8832 + - uid: 5935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,2.5 + pos: 34.5,-16.5 parent: 2 - - uid: 8833 + - uid: 5936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,2.5 + rot: 1.5707963267948966 rad + pos: 35.5,-16.5 parent: 2 - - uid: 8834 + - uid: 5938 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,2.5 + pos: 35.5,-15.5 parent: 2 - - uid: 8835 + - uid: 6064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,2.5 + rot: 1.5707963267948966 rad + pos: 34.5,-14.5 parent: 2 - - uid: 8919 + - uid: 6065 components: - type: Transform - pos: 50.5,2.5 + pos: 35.5,-14.5 parent: 2 - - uid: 8922 + - uid: 6068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,3.5 + pos: 37.5,-9.5 parent: 2 - - uid: 8923 + - uid: 6086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,4.5 + rot: 3.141592653589793 rad + pos: 37.5,-15.5 parent: 2 - - uid: 8927 + - uid: 6087 components: - type: Transform rot: -1.5707963267948966 rad - pos: 67.5,2.5 + pos: 38.5,-15.5 parent: 2 - - uid: 8928 + - uid: 6088 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,20.5 + rot: 1.5707963267948966 rad + pos: 37.5,-14.5 parent: 2 - - uid: 8931 + - uid: 6089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,2.5 + pos: 38.5,-14.5 parent: 2 - - uid: 8932 + - uid: 6090 components: - type: Transform rot: -1.5707963267948966 rad - pos: 68.5,2.5 + pos: 37.5,-13.5 parent: 2 - - uid: 8934 + - uid: 6091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,3.5 + rot: 3.141592653589793 rad + pos: 38.5,-13.5 parent: 2 - - uid: 8935 + - uid: 6092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,4.5 + rot: 3.141592653589793 rad + pos: 35.5,-13.5 parent: 2 - - uid: 8936 + - uid: 6093 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,2.5 + pos: 34.5,-13.5 parent: 2 - - uid: 8937 + - uid: 7100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,2.5 + rot: 3.141592653589793 rad + pos: 38.5,-9.5 parent: 2 - - uid: 8938 + - uid: 8871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,2.5 + pos: 38.5,-10.5 parent: 2 - - uid: 8941 + - uid: 8872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,1.5 + rot: 1.5707963267948966 rad + pos: 35.5,-9.5 parent: 2 - - uid: 8942 + - uid: 8874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 70.5,0.5 + rot: 1.5707963267948966 rad + pos: 34.5,-10.5 parent: 2 - - uid: 8943 +- proto: CarpetCyan + entities: + - uid: 221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,0.5 + pos: 46.5,-34.5 parent: 2 - - uid: 8944 + - uid: 419 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,1.5 + pos: -30.5,-53.5 parent: 2 - - uid: 8945 + - uid: 3188 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,3.5 + pos: -30.5,-51.5 parent: 2 - - uid: 8946 + - uid: 4109 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,4.5 + pos: -29.5,-56.5 parent: 2 - - uid: 8947 + - uid: 4668 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,4.5 + pos: -29.5,-54.5 parent: 2 - - uid: 8956 + - uid: 4756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,20.5 + rot: -1.5707963267948966 rad + pos: -29.5,-51.5 parent: 2 - - uid: 8959 + - uid: 4757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,20.5 + rot: -1.5707963267948966 rad + pos: -29.5,-53.5 parent: 2 - - uid: 8968 + - uid: 4776 components: - type: Transform - pos: 45.5,3.5 + rot: -1.5707963267948966 rad + pos: -30.5,-54.5 parent: 2 - - uid: 9034 + - uid: 4787 components: - type: Transform - pos: 48.5,-33.5 + rot: -1.5707963267948966 rad + pos: -30.5,-56.5 parent: 2 - - uid: 9035 + - uid: 5042 components: - type: Transform - pos: 48.5,-35.5 + pos: 45.5,-34.5 parent: 2 - - uid: 9036 + - uid: 5139 components: - type: Transform - pos: 48.5,-34.5 + pos: 46.5,-33.5 parent: 2 - - uid: 9077 + - uid: 5152 components: - type: Transform - pos: -11.5,-55.5 + pos: 45.5,-33.5 parent: 2 - - uid: 9078 + - uid: 6980 components: - type: Transform - pos: -11.5,-54.5 + pos: 35.5,-3.5 parent: 2 - - uid: 9080 + - uid: 6981 components: - type: Transform - pos: -12.5,-55.5 + pos: 36.5,-3.5 parent: 2 - - uid: 9082 + - uid: 7081 components: - type: Transform - pos: -11.5,-53.5 + pos: 36.5,-2.5 parent: 2 - - uid: 9083 + - uid: 7083 components: - type: Transform - pos: -12.5,-54.5 + pos: 37.5,-2.5 parent: 2 - - uid: 9106 + - uid: 7899 components: - type: Transform - pos: 51.5,2.5 + pos: 18.5,-10.5 parent: 2 - - uid: 9133 + - uid: 7902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 + pos: 18.5,-8.5 parent: 2 - - uid: 9153 + - uid: 8339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-18.5 + pos: 37.5,-3.5 parent: 2 - - uid: 9154 + - uid: 8345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-18.5 + pos: 35.5,-2.5 parent: 2 - - uid: 9155 + - uid: 8741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-16.5 + pos: 20.5,-10.5 parent: 2 - - uid: 9156 + - uid: 12550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-16.5 + pos: 18.5,-9.5 parent: 2 - - uid: 9157 + - uid: 21387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-24.5 + pos: 20.5,-9.5 parent: 2 - - uid: 9158 + - uid: 21388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-24.5 + pos: 20.5,-8.5 parent: 2 - - uid: 9159 + - uid: 21391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-26.5 + pos: 19.5,-8.5 parent: 2 - - uid: 9160 + - uid: 21392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-26.5 + pos: 19.5,-9.5 parent: 2 - - uid: 9176 + - uid: 21393 components: - type: Transform - pos: 22.5,-43.5 + pos: 19.5,-10.5 parent: 2 - - uid: 9177 +- proto: CarpetGreen + entities: + - uid: 2501 components: - type: Transform - pos: 24.5,-44.5 + pos: 2.5,-45.5 parent: 2 - - uid: 9178 + - uid: 3509 components: - type: Transform - pos: 24.5,-45.5 + pos: 21.5,-35.5 parent: 2 - - uid: 9179 + - uid: 3897 components: - type: Transform - pos: 24.5,-46.5 + pos: 22.5,-35.5 parent: 2 - - uid: 9181 + - uid: 3923 components: - type: Transform - pos: 24.5,-48.5 + pos: 22.5,-37.5 parent: 2 - - uid: 9182 + - uid: 3943 components: - type: Transform - pos: 24.5,-50.5 + pos: 21.5,-36.5 parent: 2 - - uid: 9183 + - uid: 3950 components: - type: Transform - pos: 24.5,-49.5 + pos: 21.5,-37.5 parent: 2 - - uid: 9184 + - uid: 3953 components: - type: Transform - pos: 25.5,-51.5 + pos: 22.5,-36.5 parent: 2 - - uid: 9185 + - uid: 7504 components: - type: Transform - pos: 27.5,-51.5 + rot: 3.141592653589793 rad + pos: -20.5,-30.5 parent: 2 - - uid: 9186 + - uid: 7509 components: - type: Transform - pos: 28.5,-51.5 + rot: 3.141592653589793 rad + pos: -20.5,-29.5 parent: 2 - - uid: 9207 + - uid: 9468 components: - type: Transform - pos: 20.5,10.5 + pos: 17.5,-47.5 parent: 2 - - uid: 9260 + - uid: 9469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-55.5 + pos: 17.5,-48.5 parent: 2 - - uid: 9261 + - uid: 9470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-54.5 + pos: 17.5,-49.5 parent: 2 - - uid: 9292 + - uid: 9471 components: - type: Transform - pos: 48.5,-28.5 + pos: 17.5,-50.5 parent: 2 - - uid: 9315 + - uid: 9472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-53.5 + pos: 18.5,-48.5 parent: 2 - - uid: 9317 + - uid: 9473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-56.5 + pos: 18.5,-49.5 parent: 2 - - uid: 9320 + - uid: 9474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-56.5 + pos: 18.5,-50.5 parent: 2 - - uid: 9599 + - uid: 9475 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,6.5 + pos: 19.5,-47.5 parent: 2 - - uid: 9609 + - uid: 9476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,8.5 + pos: 19.5,-48.5 parent: 2 - - uid: 9610 + - uid: 9477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,8.5 + pos: 19.5,-49.5 parent: 2 - - uid: 9612 + - uid: 9478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,8.5 + pos: 19.5,-50.5 parent: 2 - - uid: 9613 + - uid: 9479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,8.5 + pos: 20.5,-47.5 parent: 2 - - uid: 9614 + - uid: 9480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,8.5 + pos: 20.5,-48.5 parent: 2 - - uid: 9615 + - uid: 9481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,8.5 + pos: 20.5,-49.5 parent: 2 - - uid: 9616 + - uid: 9482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,10.5 + pos: 20.5,-50.5 parent: 2 - - uid: 9646 + - uid: 9483 components: - type: Transform - pos: 21.5,9.5 + pos: 21.5,-47.5 parent: 2 - - uid: 9680 + - uid: 9484 components: - type: Transform - pos: 48.5,-32.5 + pos: 21.5,-48.5 parent: 2 - - uid: 9976 + - uid: 9485 components: - type: Transform - pos: 31.5,-54.5 + pos: 21.5,-49.5 parent: 2 - - uid: 9977 + - uid: 9486 components: - type: Transform - pos: 35.5,-54.5 + pos: 21.5,-50.5 parent: 2 - - uid: 9978 + - uid: 9487 components: - type: Transform - pos: 33.5,-54.5 + pos: 18.5,-47.5 parent: 2 - - uid: 9979 + - uid: 9989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-43.5 + rot: 3.141592653589793 rad + pos: -18.5,-29.5 parent: 2 - - uid: 9980 + - uid: 10442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-39.5 + rot: 3.141592653589793 rad + pos: -18.5,-30.5 parent: 2 - - uid: 9985 + - uid: 11973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-48.5 + pos: 1.5,-45.5 parent: 2 - - uid: 9990 + - uid: 13140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-51.5 + pos: 1.5,-44.5 parent: 2 - - uid: 10111 + - uid: 13698 components: - type: Transform - pos: 48.5,-31.5 + rot: 3.141592653589793 rad + pos: -19.5,-29.5 parent: 2 - - uid: 10174 + - uid: 13699 components: - type: Transform - pos: -29.5,22.5 + rot: 3.141592653589793 rad + pos: -19.5,-30.5 parent: 2 - - uid: 10178 + - uid: 14847 components: - type: Transform - pos: 48.5,-29.5 + pos: 2.5,-44.5 parent: 2 - - uid: 10203 +- proto: CarpetOrange + entities: + - uid: 109 components: - type: Transform - pos: 24.5,6.5 + pos: 37.5,1.5 parent: 2 - - uid: 10229 + - uid: 807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-21.5 + pos: -9.5,25.5 parent: 2 - - uid: 10230 + - uid: 3197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-20.5 + rot: 3.141592653589793 rad + pos: 3.5,-53.5 parent: 2 - - uid: 10231 + - uid: 3334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-19.5 + rot: -1.5707963267948966 rad + pos: 34.5,11.5 parent: 2 - - uid: 10232 + - uid: 3335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 + rot: -1.5707963267948966 rad + pos: 34.5,12.5 parent: 2 - - uid: 10233 + - uid: 3563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-17.5 + rot: 3.141592653589793 rad + pos: 2.5,-51.5 parent: 2 - - uid: 10234 + - uid: 3901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-16.5 + pos: 29.5,12.5 parent: 2 - - uid: 10236 + - uid: 4315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-15.5 + pos: 28.5,12.5 parent: 2 - - uid: 10237 + - uid: 6530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-15.5 + rot: 3.141592653589793 rad + pos: -0.5,-51.5 parent: 2 - - uid: 10238 + - uid: 7304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-15.5 + pos: 37.5,3.5 parent: 2 - - uid: 10239 + - uid: 7339 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-15.5 + pos: 36.5,3.5 parent: 2 - - uid: 10435 + - uid: 8591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-54.5 + pos: 28.5,13.5 parent: 2 - - uid: 10436 + - uid: 8668 components: - type: Transform - pos: -31.5,22.5 + pos: 29.5,13.5 parent: 2 - - uid: 10458 + - uid: 10590 components: - type: Transform - pos: -44.5,-54.5 + rot: 3.141592653589793 rad + pos: 3.5,-52.5 parent: 2 - - uid: 10490 + - uid: 10593 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-52.5 + pos: -0.5,-53.5 parent: 2 - - uid: 10491 + - uid: 10959 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-54.5 + pos: -0.5,-52.5 parent: 2 - - uid: 10492 + - uid: 10960 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,-54.5 + pos: 0.5,-52.5 parent: 2 - - uid: 10665 + - uid: 10961 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,-54.5 + pos: 0.5,-53.5 parent: 2 - - uid: 10667 + - uid: 10962 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-53.5 + pos: 3.5,-51.5 parent: 2 - - uid: 10668 + - uid: 10967 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,-53.5 + pos: 2.5,-52.5 parent: 2 - - uid: 10669 + - uid: 11005 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-53.5 + pos: 2.5,-53.5 parent: 2 - - uid: 10670 + - uid: 11832 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-54.5 + pos: 0.5,-51.5 parent: 2 - - uid: 10671 + - uid: 15859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-54.5 + pos: 36.5,1.5 parent: 2 - - uid: 10672 + - uid: 15929 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-54.5 + pos: 37.5,2.5 parent: 2 - - uid: 10673 + - uid: 15930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-54.5 + pos: 36.5,2.5 parent: 2 - - uid: 10674 + - uid: 17110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-53.5 + pos: -5.5,-25.5 parent: 2 - - uid: 10675 + - uid: 17112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-52.5 + pos: -6.5,-25.5 parent: 2 - - uid: 10676 + - uid: 17114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-51.5 + pos: -5.5,-26.5 parent: 2 - - uid: 10677 + - uid: 17115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-50.5 + pos: -4.5,-26.5 parent: 2 - - uid: 10678 + - uid: 17116 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-49.5 + pos: -4.5,-25.5 parent: 2 - - uid: 10679 + - uid: 17118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-51.5 + pos: -6.5,-26.5 parent: 2 - - uid: 10680 +- proto: CarpetPurple + entities: + - uid: 747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-51.5 + pos: -36.5,-55.5 parent: 2 - - uid: 10681 + - uid: 1048 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-51.5 + pos: 28.5,-34.5 parent: 2 - - uid: 10683 + - uid: 1323 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-48.5 + pos: 27.5,-35.5 parent: 2 - - uid: 10684 + - uid: 1404 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-47.5 + pos: 27.5,-34.5 parent: 2 - - uid: 10685 + - uid: 1565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-46.5 + pos: 27.5,-33.5 parent: 2 - - uid: 10714 + - uid: 1637 components: - type: Transform - pos: -30.5,22.5 + rot: 3.141592653589793 rad + pos: 28.5,-33.5 parent: 2 - - uid: 10783 + - uid: 10403 components: - type: Transform - pos: -33.5,23.5 + pos: -40.5,-52.5 parent: 2 - - uid: 10785 + - uid: 10404 components: - type: Transform - pos: -34.5,23.5 + pos: -40.5,-53.5 parent: 2 - - uid: 10800 + - uid: 10464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-15.5 + pos: -37.5,-54.5 parent: 2 - - uid: 10884 + - uid: 10636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-50.5 + pos: -38.5,-55.5 parent: 2 - - uid: 10948 + - uid: 10637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-56.5 + pos: -38.5,-54.5 parent: 2 - - uid: 10949 + - uid: 10755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-56.5 + pos: -41.5,-52.5 parent: 2 - - uid: 10951 + - uid: 13744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-56.5 + pos: -41.5,-53.5 parent: 2 - - uid: 10952 + - uid: 14269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-56.5 + pos: -36.5,-54.5 parent: 2 - - uid: 10953 + - uid: 14274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-56.5 + pos: -37.5,-55.5 parent: 2 - - uid: 10954 + - uid: 18852 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-56.5 + pos: 28.5,-35.5 parent: 2 - - uid: 10965 + - uid: 22523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-54.5 + pos: -41.5,-54.5 parent: 2 - - uid: 11159 + - uid: 22524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-55.5 + pos: -40.5,-54.5 parent: 2 - - uid: 11160 +- proto: CarpetSBlue + entities: + - uid: 3661 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-55.5 + pos: 14.5,-36.5 parent: 2 - - uid: 11239 + - uid: 3731 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,9.5 + pos: 14.5,-35.5 parent: 2 - - uid: 11240 + - uid: 3742 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,10.5 + pos: 15.5,-38.5 parent: 2 - - uid: 11280 + - uid: 3746 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-11.5 - parent: 2 - - uid: 11303 - components: - - type: Transform - pos: 23.5,-16.5 - parent: 2 - - uid: 11304 - components: - - type: Transform - pos: 22.5,-15.5 - parent: 2 - - uid: 11305 - components: - - type: Transform - pos: 21.5,-15.5 + pos: 14.5,-39.5 parent: 2 - - uid: 11311 + - uid: 3764 components: - type: Transform - pos: 18.5,-7.5 + rot: 1.5707963267948966 rad + pos: 15.5,-36.5 parent: 2 - - uid: 11313 + - uid: 3767 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-12.5 + pos: 14.5,-38.5 parent: 2 - - uid: 11315 + - uid: 3769 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-11.5 + pos: 15.5,-35.5 parent: 2 - - uid: 11318 + - uid: 3770 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-13.5 + pos: 15.5,-39.5 parent: 2 - - uid: 11563 + - uid: 3771 components: - type: Transform - pos: 52.5,-31.5 + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 parent: 2 - - uid: 11635 + - uid: 3772 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-13.5 + pos: 15.5,-37.5 parent: 2 - - uid: 11970 + - uid: 7235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,8.5 + rot: -1.5707963267948966 rad + pos: -14.5,-48.5 parent: 2 - - uid: 11972 + - uid: 7329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,8.5 + rot: -1.5707963267948966 rad + pos: -16.5,-48.5 parent: 2 - - uid: 11977 + - uid: 7650 components: - type: Transform - pos: 23.5,13.5 + rot: -1.5707963267948966 rad + pos: -15.5,-46.5 parent: 2 - - uid: 11978 + - uid: 7677 components: - type: Transform - pos: 24.5,13.5 + rot: -1.5707963267948966 rad + pos: -15.5,-47.5 parent: 2 - - uid: 11980 + - uid: 9332 components: - type: Transform - pos: 25.5,13.5 + pos: -53.5,-21.5 parent: 2 - - uid: 12302 + - uid: 9988 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,22.5 + pos: -2.5,-34.5 parent: 2 - - uid: 12328 + - uid: 10261 components: - type: Transform - pos: -18.5,12.5 + rot: -1.5707963267948966 rad + pos: -16.5,-46.5 parent: 2 - - uid: 12431 + - uid: 10487 components: - type: Transform - pos: 34.5,-42.5 + rot: -1.5707963267948966 rad + pos: -15.5,-48.5 parent: 2 - - uid: 12560 + - uid: 13682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-50.5 + pos: -16.5,-47.5 parent: 2 - - uid: 12561 + - uid: 13684 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-50.5 + pos: -14.5,-47.5 parent: 2 - - uid: 12845 + - uid: 13685 components: - type: Transform - pos: -32.5,10.5 + rot: -1.5707963267948966 rad + pos: -14.5,-46.5 parent: 2 - - uid: 13138 + - uid: 13696 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,-54.5 - parent: 2 - - uid: 13156 - components: - - type: Transform - pos: -11.5,-28.5 + pos: -2.5,-35.5 parent: 2 - - uid: 13162 + - uid: 13697 components: - type: Transform - pos: -15.5,-27.5 + rot: 3.141592653589793 rad + pos: -3.5,-35.5 parent: 2 - - uid: 13163 + - uid: 14940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-55.5 + pos: -48.5,-22.5 parent: 2 - - uid: 13165 + - uid: 17581 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-22.5 + pos: -3.5,-34.5 parent: 2 - - uid: 13190 + - uid: 18844 components: - type: Transform - pos: -37.5,-57.5 + pos: 72.5,-79.5 parent: 2 - - uid: 13229 + - uid: 18845 components: - type: Transform - pos: 52.5,-32.5 + pos: 71.5,-79.5 parent: 2 - - uid: 13234 + - uid: 21186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-0.5 + pos: -47.5,-22.5 parent: 2 - - uid: 14218 + - uid: 21187 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,20.5 + pos: -47.5,-23.5 parent: 2 - - uid: 14219 + - uid: 21188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,20.5 + pos: -48.5,-23.5 parent: 2 - - uid: 14221 + - uid: 21189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,20.5 + pos: -48.5,-21.5 parent: 2 - - uid: 14273 + - uid: 21190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,20.5 + pos: -47.5,-21.5 parent: 2 - - uid: 14323 + - uid: 21193 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,20.5 + pos: -52.5,-21.5 parent: 2 - - uid: 14337 +- proto: Catwalk + entities: + - uid: 53 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,19.5 + pos: -17.5,22.5 parent: 2 - - uid: 14339 + - uid: 55 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,19.5 + pos: -18.5,22.5 parent: 2 - - uid: 14340 + - uid: 56 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,20.5 + pos: 3.5,28.5 parent: 2 - - uid: 14359 + - uid: 96 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,18.5 + pos: 51.5,-31.5 parent: 2 - - uid: 14369 + - uid: 133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,19.5 + pos: 4.5,-17.5 parent: 2 - - uid: 14373 + - uid: 148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,18.5 + pos: -32.5,3.5 parent: 2 - - uid: 14552 + - uid: 206 components: - type: Transform - pos: -27.5,-13.5 + pos: 13.5,-17.5 parent: 2 - - uid: 14639 + - uid: 234 components: - type: Transform - pos: 27.5,-43.5 + pos: 44.5,-30.5 parent: 2 - - uid: 14843 + - uid: 315 components: - type: Transform - pos: -32.5,6.5 + pos: -32.5,2.5 parent: 2 - - uid: 14865 + - uid: 390 components: - type: Transform - pos: -27.5,-15.5 + pos: 59.5,-53.5 parent: 2 - - uid: 15271 + - uid: 400 components: - type: Transform - pos: -32.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,-0.5 parent: 2 - - uid: 15298 + - uid: 401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,20.5 + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 parent: 2 - - uid: 15311 + - uid: 464 components: - type: Transform - pos: 25.5,-14.5 + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 parent: 2 - - uid: 15314 + - uid: 475 components: - type: Transform - pos: -32.5,1.5 + rot: -1.5707963267948966 rad + pos: -5.5,-22.5 parent: 2 - - uid: 15347 + - uid: 559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-0.5 + rot: 3.141592653589793 rad + pos: -43.5,-50.5 parent: 2 - - uid: 15570 + - uid: 582 components: - type: Transform - pos: -32.5,-0.5 + rot: 1.5707963267948966 rad + pos: 33.5,-43.5 parent: 2 - - uid: 15676 + - uid: 638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,20.5 + rot: 1.5707963267948966 rad + pos: 3.5,-39.5 parent: 2 - - uid: 15678 + - uid: 639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,20.5 + rot: 1.5707963267948966 rad + pos: 3.5,-38.5 parent: 2 - - uid: 15739 + - uid: 641 components: - type: Transform - pos: -38.5,-58.5 + rot: 1.5707963267948966 rad + pos: 3.5,-37.5 parent: 2 - - uid: 15743 + - uid: 655 components: - type: Transform - pos: -37.5,-58.5 + rot: -1.5707963267948966 rad + pos: -15.5,22.5 parent: 2 - - uid: 15856 + - uid: 702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,20.5 + rot: 1.5707963267948966 rad + pos: 26.5,16.5 parent: 2 - - uid: 16107 + - uid: 721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,22.5 + pos: 48.5,-41.5 parent: 2 - - uid: 16198 + - uid: 728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,20.5 + rot: -1.5707963267948966 rad + pos: -0.5,19.5 parent: 2 - - uid: 16321 + - uid: 734 components: - type: Transform - pos: -27.5,-14.5 + rot: -1.5707963267948966 rad + pos: 0.5,20.5 parent: 2 - - uid: 16591 + - uid: 735 components: - type: Transform - pos: -62.5,-9.5 + rot: -1.5707963267948966 rad + pos: -0.5,18.5 parent: 2 - - uid: 16592 + - uid: 736 components: - type: Transform - pos: -62.5,-11.5 + rot: -1.5707963267948966 rad + pos: -0.5,20.5 parent: 2 - - uid: 16593 + - uid: 802 components: - type: Transform - pos: -63.5,-12.5 + rot: 1.5707963267948966 rad + pos: -42.5,23.5 parent: 2 - - uid: 16594 + - uid: 806 components: - type: Transform - pos: -62.5,-12.5 + pos: -11.5,24.5 parent: 2 - - uid: 16595 + - uid: 808 components: - type: Transform - pos: -61.5,-12.5 + pos: -10.5,24.5 parent: 2 - - uid: 16596 + - uid: 810 components: - type: Transform - pos: -60.5,-12.5 + rot: 1.5707963267948966 rad + pos: -43.5,23.5 parent: 2 - - uid: 16597 + - uid: 823 components: - type: Transform - pos: -62.5,-13.5 + pos: -9.5,24.5 parent: 2 - - uid: 16598 + - uid: 838 components: - type: Transform - pos: -62.5,-15.5 + rot: 1.5707963267948966 rad + pos: -49.5,23.5 parent: 2 - - uid: 16599 + - uid: 864 components: - type: Transform - pos: -58.5,-12.5 + pos: 7.5,18.5 parent: 2 - - uid: 16600 + - uid: 872 components: - type: Transform - pos: -57.5,-12.5 + rot: -1.5707963267948966 rad + pos: 1.5,23.5 parent: 2 - - uid: 16605 + - uid: 873 components: - type: Transform - pos: -55.5,-12.5 + rot: -1.5707963267948966 rad + pos: 2.5,24.5 parent: 2 - - uid: 16607 + - uid: 874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-13.5 + rot: -1.5707963267948966 rad + pos: 2.5,23.5 parent: 2 - - uid: 16610 + - uid: 883 components: - type: Transform - pos: -46.5,-12.5 + rot: -1.5707963267948966 rad + pos: 1.5,22.5 parent: 2 - - uid: 16611 + - uid: 884 components: - type: Transform - pos: -45.5,-12.5 + rot: -1.5707963267948966 rad + pos: 0.5,24.5 parent: 2 - - uid: 16612 + - uid: 887 components: - type: Transform - pos: -43.5,-12.5 + rot: -1.5707963267948966 rad + pos: 0.5,23.5 parent: 2 - - uid: 16613 + - uid: 896 components: - type: Transform - pos: -42.5,-12.5 + rot: -1.5707963267948966 rad + pos: -0.5,22.5 parent: 2 - - uid: 16614 + - uid: 897 components: - type: Transform - pos: -41.5,-12.5 + rot: -1.5707963267948966 rad + pos: -0.5,23.5 parent: 2 - - uid: 16615 + - uid: 900 components: - type: Transform - pos: -40.5,-12.5 + rot: -1.5707963267948966 rad + pos: 0.5,22.5 parent: 2 - - uid: 16616 + - uid: 903 components: - type: Transform - pos: -39.5,-12.5 + rot: -1.5707963267948966 rad + pos: -0.5,24.5 parent: 2 - - uid: 16617 + - uid: 969 components: - type: Transform - pos: -38.5,-12.5 + rot: 1.5707963267948966 rad + pos: -6.5,24.5 parent: 2 - - uid: 16618 + - uid: 1019 components: - type: Transform - pos: -44.5,-12.5 + rot: 1.5707963267948966 rad + pos: 48.5,-46.5 parent: 2 - - uid: 16619 + - uid: 1030 components: - type: Transform - pos: -38.5,-13.5 + rot: 1.5707963267948966 rad + pos: -41.5,23.5 parent: 2 - - uid: 16620 + - uid: 1050 components: - type: Transform - pos: -38.5,-14.5 + rot: 1.5707963267948966 rad + pos: -54.5,25.5 parent: 2 - - uid: 16621 + - uid: 1055 components: - type: Transform - pos: -38.5,-15.5 + rot: 1.5707963267948966 rad + pos: -10.5,22.5 parent: 2 - - uid: 16622 + - uid: 1056 components: - type: Transform - pos: -38.5,-16.5 + rot: 1.5707963267948966 rad + pos: -10.5,22.5 parent: 2 - - uid: 16623 + - uid: 1057 components: - type: Transform - pos: -37.5,-16.5 + rot: 1.5707963267948966 rad + pos: -9.5,22.5 parent: 2 - - uid: 16624 + - uid: 1059 components: - type: Transform - pos: -36.5,-16.5 + rot: 1.5707963267948966 rad + pos: -6.5,23.5 parent: 2 - - uid: 16625 + - uid: 1062 components: - type: Transform - pos: -35.5,-16.5 + rot: 1.5707963267948966 rad + pos: -6.5,22.5 parent: 2 - - uid: 16626 + - uid: 1073 components: - type: Transform - pos: -34.5,-16.5 + rot: 1.5707963267948966 rad + pos: -7.5,22.5 parent: 2 - - uid: 16627 + - uid: 1094 components: - type: Transform - pos: -33.5,-16.5 + rot: 1.5707963267948966 rad + pos: 22.5,-3.5 parent: 2 - - uid: 16628 + - uid: 1167 components: - type: Transform - pos: -32.5,-16.5 + rot: 1.5707963267948966 rad + pos: -50.5,24.5 parent: 2 - - uid: 16629 + - uid: 1174 components: - type: Transform - pos: -31.5,-16.5 + rot: 1.5707963267948966 rad + pos: -50.5,13.5 parent: 2 - - uid: 16630 + - uid: 1190 components: - type: Transform - pos: -30.5,-16.5 + rot: 1.5707963267948966 rad + pos: -50.5,17.5 parent: 2 - - uid: 16631 + - uid: 1191 components: - type: Transform - pos: -29.5,-16.5 + rot: 1.5707963267948966 rad + pos: -50.5,12.5 parent: 2 - - uid: 16632 + - uid: 1192 components: - type: Transform - pos: -28.5,-16.5 + rot: 1.5707963267948966 rad + pos: -50.5,10.5 parent: 2 - - uid: 16633 + - uid: 1196 components: - type: Transform - pos: -27.5,-16.5 + rot: 1.5707963267948966 rad + pos: -51.5,23.5 parent: 2 - - uid: 16752 + - uid: 1197 components: - type: Transform - pos: -30.5,18.5 + rot: 1.5707963267948966 rad + pos: -54.5,23.5 parent: 2 - - uid: 17035 + - uid: 1198 components: - type: Transform - pos: -8.5,2.5 + rot: 1.5707963267948966 rad + pos: -54.5,22.5 parent: 2 - - uid: 17036 + - uid: 1199 components: - type: Transform - pos: -7.5,2.5 + rot: 1.5707963267948966 rad + pos: -54.5,24.5 parent: 2 - - uid: 17037 + - uid: 1200 components: - type: Transform - pos: -6.5,2.5 + rot: 1.5707963267948966 rad + pos: -50.5,11.5 parent: 2 - - uid: 17038 + - uid: 1201 components: - type: Transform - pos: -5.5,2.5 + rot: 1.5707963267948966 rad + pos: -53.5,23.5 parent: 2 - - uid: 17039 + - uid: 1202 components: - type: Transform - pos: -4.5,2.5 + rot: 1.5707963267948966 rad + pos: -52.5,23.5 parent: 2 - - uid: 17040 + - uid: 1203 components: - type: Transform - pos: -3.5,2.5 + rot: 1.5707963267948966 rad + pos: -47.5,23.5 parent: 2 - - uid: 17041 + - uid: 1204 components: - type: Transform - pos: -2.5,2.5 + rot: 1.5707963267948966 rad + pos: -50.5,16.5 parent: 2 - - uid: 17042 + - uid: 1207 components: - type: Transform - pos: -1.5,2.5 + rot: 1.5707963267948966 rad + pos: -50.5,14.5 parent: 2 - - uid: 17043 + - uid: 1208 components: - type: Transform - pos: -0.5,2.5 + rot: 1.5707963267948966 rad + pos: -50.5,15.5 parent: 2 - - uid: 17044 + - uid: 1236 components: - type: Transform - pos: 1.5,2.5 + rot: -1.5707963267948966 rad + pos: 1.5,20.5 parent: 2 - - uid: 17045 + - uid: 1237 components: - type: Transform - pos: 2.5,2.5 + rot: -1.5707963267948966 rad + pos: 0.5,19.5 parent: 2 - - uid: 17046 + - uid: 1242 components: - type: Transform - pos: 3.5,2.5 + rot: -1.5707963267948966 rad + pos: 1.5,18.5 parent: 2 - - uid: 17047 + - uid: 1246 components: - type: Transform - pos: 4.5,2.5 + pos: 8.5,18.5 parent: 2 - - uid: 17048 + - uid: 1248 components: - type: Transform - pos: 0.5,2.5 + rot: -1.5707963267948966 rad + pos: 1.5,19.5 parent: 2 - - uid: 17065 + - uid: 1251 components: - type: Transform - pos: -30.5,19.5 + pos: 14.5,-62.5 parent: 2 - - uid: 17139 + - uid: 1263 components: - type: Transform - pos: -32.5,-49.5 + rot: 1.5707963267948966 rad + pos: 23.5,-3.5 parent: 2 - - uid: 17661 + - uid: 1269 components: - type: Transform - pos: -27.5,-19.5 + rot: -1.5707963267948966 rad + pos: 2.5,20.5 parent: 2 - - uid: 17737 + - uid: 1366 components: - type: Transform - pos: -8.5,-19.5 + rot: -1.5707963267948966 rad + pos: 8.5,22.5 parent: 2 - - uid: 17744 + - uid: 1367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-35.5 + rot: -1.5707963267948966 rad + pos: 8.5,23.5 parent: 2 - - uid: 17745 + - uid: 1368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-36.5 + rot: -1.5707963267948966 rad + pos: 8.5,24.5 parent: 2 - - uid: 17746 + - uid: 1369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-32.5 + rot: -1.5707963267948966 rad + pos: 7.5,22.5 parent: 2 - - uid: 17766 + - uid: 1370 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,22.5 + rot: -1.5707963267948966 rad + pos: 9.5,20.5 parent: 2 - - uid: 17774 + - uid: 1371 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,2.5 + pos: 9.5,18.5 parent: 2 - - uid: 17775 + - uid: 1372 components: - type: Transform rot: -1.5707963267948966 rad - pos: 70.5,2.5 + pos: 9.5,22.5 parent: 2 - - uid: 17776 + - uid: 1373 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,2.5 + pos: 9.5,19.5 parent: 2 - - uid: 17853 + - uid: 1374 components: - type: Transform - pos: -30.5,17.5 + rot: -1.5707963267948966 rad + pos: 9.5,23.5 parent: 2 - - uid: 17858 + - uid: 1387 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,12.5 + pos: 9.5,24.5 parent: 2 - - uid: 17860 + - uid: 1389 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,7.5 + rot: 3.141592653589793 rad + pos: 38.5,6.5 parent: 2 - - uid: 17861 + - uid: 1398 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,8.5 + pos: 7.5,23.5 parent: 2 - - uid: 17862 + - uid: 1402 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,9.5 + pos: 6.5,22.5 parent: 2 - - uid: 18347 + - uid: 1444 components: - type: Transform - pos: -35.5,23.5 + pos: 2.5,-27.5 parent: 2 - - uid: 18505 + - uid: 1516 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-44.5 + pos: 24.5,-3.5 parent: 2 - - uid: 18634 + - uid: 1553 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-49.5 + rot: 3.141592653589793 rad + pos: -21.5,22.5 parent: 2 - - uid: 18645 + - uid: 1558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-45.5 + pos: -11.5,-1.5 parent: 2 - - uid: 18727 + - uid: 1567 components: - type: Transform - pos: 36.5,-54.5 + pos: 1.5,-27.5 parent: 2 - - uid: 18728 + - uid: 1584 components: - type: Transform - pos: 38.5,-53.5 + rot: 3.141592653589793 rad + pos: -22.5,21.5 parent: 2 - - uid: 18729 + - uid: 1698 components: - type: Transform - pos: 39.5,-53.5 + pos: 0.5,-27.5 parent: 2 - - uid: 18730 + - uid: 1704 components: - type: Transform - pos: 40.5,-53.5 + rot: 3.141592653589793 rad + pos: 25.5,12.5 parent: 2 - - uid: 18731 + - uid: 1732 components: - type: Transform - pos: 42.5,-53.5 + rot: 3.141592653589793 rad + pos: 40.5,6.5 parent: 2 - - uid: 18732 + - uid: 1733 components: - type: Transform - pos: 43.5,-53.5 + pos: 43.5,-30.5 parent: 2 - - uid: 18733 + - uid: 1741 components: - type: Transform - pos: 45.5,-52.5 + rot: -1.5707963267948966 rad + pos: 8.5,20.5 parent: 2 - - uid: 18734 + - uid: 1775 components: - type: Transform - pos: 47.5,-52.5 + rot: 1.5707963267948966 rad + pos: 32.5,-43.5 parent: 2 - - uid: 18735 + - uid: 1819 components: - type: Transform - pos: 46.5,-52.5 + pos: 0.5,-17.5 parent: 2 - - uid: 18736 + - uid: 1821 components: - type: Transform - pos: 49.5,-52.5 + pos: 41.5,3.5 parent: 2 - - uid: 18737 + - uid: 1822 components: - type: Transform - pos: 51.5,-57.5 + pos: 0.5,-19.5 parent: 2 - - uid: 18738 + - uid: 1824 components: - type: Transform - pos: 51.5,-58.5 + pos: -47.5,-48.5 parent: 2 - - uid: 18739 + - uid: 1828 components: - type: Transform - pos: 51.5,-59.5 + rot: 3.141592653589793 rad + pos: -19.5,22.5 parent: 2 - - uid: 18740 + - uid: 1841 components: - type: Transform - pos: 51.5,-60.5 + pos: 0.5,-21.5 parent: 2 - - uid: 18741 + - uid: 1878 components: - type: Transform - pos: 51.5,-61.5 + rot: 1.5707963267948966 rad + pos: 32.5,-42.5 parent: 2 - - uid: 18742 + - uid: 1879 components: - type: Transform - pos: 39.5,-61.5 + pos: 27.5,-8.5 parent: 2 - - uid: 18743 + - uid: 1886 components: - type: Transform - pos: 39.5,-60.5 + pos: 27.5,-9.5 parent: 2 - - uid: 18744 + - uid: 1939 components: - type: Transform - pos: 39.5,-64.5 + pos: -11.5,-4.5 parent: 2 - - uid: 18745 + - uid: 1941 components: - type: Transform - pos: 39.5,-65.5 + pos: -12.5,-2.5 parent: 2 - - uid: 18746 + - uid: 1942 components: - type: Transform - pos: 39.5,-66.5 + pos: -12.5,-3.5 parent: 2 - - uid: 18747 + - uid: 1943 components: - type: Transform - pos: 51.5,-63.5 + pos: -12.5,-4.5 parent: 2 - - uid: 18748 + - uid: 1944 components: - type: Transform - pos: 51.5,-64.5 + pos: -11.5,-2.5 parent: 2 - - uid: 18749 + - uid: 1945 components: - type: Transform - pos: 31.5,-65.5 + pos: -11.5,-3.5 parent: 2 - - uid: 18750 + - uid: 1947 components: - type: Transform - pos: 31.5,-66.5 + pos: -12.5,-1.5 parent: 2 - - uid: 18751 + - uid: 2046 components: - type: Transform - pos: 31.5,-67.5 + pos: -51.5,-54.5 parent: 2 - - uid: 18752 + - uid: 2060 components: - type: Transform - pos: 51.5,-52.5 + rot: 1.5707963267948966 rad + pos: 31.5,-43.5 parent: 2 - - uid: 18753 + - uid: 2078 components: - type: Transform - pos: 50.5,-52.5 + pos: -6.5,-87.5 parent: 2 - - uid: 18754 + - uid: 2079 components: - type: Transform - pos: 59.5,-53.5 + pos: -6.5,-84.5 parent: 2 - - uid: 18755 + - uid: 2087 components: - type: Transform - pos: 58.5,-53.5 + pos: 37.5,-36.5 parent: 2 - - uid: 18756 + - uid: 2134 components: - type: Transform - pos: 55.5,-54.5 + pos: 0.5,-20.5 parent: 2 - - uid: 18757 + - uid: 2141 components: - type: Transform - pos: 56.5,-54.5 + rot: -1.5707963267948966 rad + pos: -3.5,-19.5 parent: 2 - - uid: 18861 + - uid: 2172 components: - type: Transform - pos: 15.5,15.5 + rot: -1.5707963267948966 rad + pos: 37.5,-42.5 parent: 2 - - uid: 19867 + - uid: 2190 components: - type: Transform - pos: 52.5,-53.5 + rot: 3.141592653589793 rad + pos: 40.5,-31.5 parent: 2 - - uid: 19868 + - uid: 2222 components: - type: Transform - pos: 52.5,-54.5 + pos: 38.5,-34.5 parent: 2 - - uid: 19869 + - uid: 2233 components: - type: Transform - pos: 53.5,-54.5 + rot: -1.5707963267948966 rad + pos: 39.5,-42.5 parent: 2 - - uid: 19895 + - uid: 2236 components: - type: Transform - pos: 51.5,-32.5 + pos: 37.5,14.5 parent: 2 - - uid: 20082 + - uid: 2269 components: - type: Transform - pos: 32.5,-76.5 + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 parent: 2 - - uid: 20084 + - uid: 2281 components: - type: Transform - pos: 31.5,-76.5 + rot: -1.5707963267948966 rad + pos: 39.5,-41.5 parent: 2 - - uid: 20085 + - uid: 2286 components: - type: Transform - pos: 31.5,-75.5 + pos: -2.5,-22.5 parent: 2 - - uid: 20086 + - uid: 2290 components: - type: Transform - pos: 30.5,-76.5 + pos: 23.5,-17.5 parent: 2 - - uid: 20087 + - uid: 2323 components: - type: Transform - pos: 30.5,-75.5 + rot: -1.5707963267948966 rad + pos: -36.5,12.5 parent: 2 - - uid: 20088 + - uid: 2376 components: - type: Transform - pos: 29.5,-76.5 + pos: -18.5,11.5 parent: 2 - - uid: 20089 + - uid: 2406 components: - type: Transform - pos: 29.5,-75.5 + pos: 4.5,-23.5 parent: 2 - - uid: 20090 + - uid: 2407 components: - type: Transform - pos: 32.5,-75.5 + pos: 5.5,-23.5 parent: 2 - - uid: 20091 + - uid: 2433 components: - type: Transform - pos: 30.5,-74.5 + pos: 5.5,-22.5 parent: 2 - - uid: 20094 + - uid: 2498 components: - type: Transform - pos: 30.5,-70.5 + pos: 0.5,-18.5 parent: 2 - - uid: 20095 + - uid: 2506 components: - type: Transform - pos: 30.5,-69.5 + rot: 1.5707963267948966 rad + pos: 33.5,-42.5 parent: 2 - - uid: 20096 + - uid: 2539 components: - type: Transform - pos: 30.5,-68.5 + pos: 26.5,-44.5 parent: 2 - - uid: 20147 + - uid: 2655 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-37.5 + pos: -37.5,23.5 parent: 2 - - uid: 20148 + - uid: 2657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,22.5 + parent: 2 + - uid: 2662 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-37.5 + pos: -38.5,23.5 parent: 2 - - uid: 20260 + - uid: 2664 components: - type: Transform - pos: 1.5,-24.5 + rot: 1.5707963267948966 rad + pos: -39.5,23.5 parent: 2 - - uid: 20625 + - uid: 2665 components: - type: Transform - pos: -32.5,-50.5 + rot: 1.5707963267948966 rad + pos: -40.5,23.5 parent: 2 - - uid: 20657 + - uid: 2669 components: - type: Transform - pos: -30.5,16.5 + rot: 1.5707963267948966 rad + pos: -44.5,23.5 parent: 2 - - uid: 20747 + - uid: 2740 components: - type: Transform - pos: -41.5,-58.5 + pos: -32.5,11.5 parent: 2 - - uid: 20775 + - uid: 2768 components: - type: Transform - pos: -32.5,-1.5 + pos: -2.5,-21.5 parent: 2 -- proto: CelloInstrument - entities: - - uid: 5831 + - uid: 2829 components: - type: Transform - pos: 5.497679,-33.305023 + pos: -18.5,18.5 parent: 2 -- proto: Chair - entities: - - uid: 7 + - uid: 2832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,14.5 + pos: -18.5,16.5 parent: 2 - - uid: 283 + - uid: 2883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-29.5 + rot: 1.5707963267948966 rad + pos: -45.5,23.5 parent: 2 - - uid: 313 + - uid: 2884 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,2.5 + rot: 1.5707963267948966 rad + pos: -46.5,23.5 parent: 2 - - uid: 353 + - uid: 2885 components: - type: Transform - pos: -30.5,4.5 + rot: 1.5707963267948966 rad + pos: -48.5,23.5 parent: 2 - - uid: 461 + - uid: 2908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-15.5 + pos: 4.5,-21.5 parent: 2 - - uid: 493 + - uid: 2911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,2.5 + pos: 5.5,-21.5 parent: 2 - - uid: 500 + - uid: 2914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,0.5 + pos: 3.5,-21.5 parent: 2 - - uid: 585 + - uid: 2921 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-40.5 + pos: 27.5,-7.5 parent: 2 - - uid: 598 + - uid: 2934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-31.5 + pos: 3.5,-35.5 parent: 2 - - uid: 1296 + - uid: 2935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,11.5 + pos: 3.5,-34.5 parent: 2 - - uid: 1743 + - uid: 2937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-39.5 + pos: 3.5,-33.5 parent: 2 - - uid: 1757 + - uid: 2939 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 2940 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-65.5 + pos: 48.5,-38.5 parent: 2 - - uid: 1772 + - uid: 2941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-34.5 + pos: 3.5,-31.5 parent: 2 - - uid: 1773 + - uid: 2942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-33.5 + pos: 3.5,-30.5 parent: 2 - - uid: 1776 + - uid: 2945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-30.5 + pos: 3.5,-29.5 parent: 2 - - uid: 1916 + - uid: 2946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-29.5 + pos: 3.5,-28.5 parent: 2 - - uid: 1920 + - uid: 2951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-28.5 + pos: 4.5,-25.5 parent: 2 - - uid: 2134 + - uid: 2994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-15.5 + pos: 3.5,-22.5 parent: 2 - - uid: 2267 + - uid: 2998 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + pos: -50.5,23.5 parent: 2 - - uid: 2509 + - uid: 3001 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-14.5 + pos: -14.5,22.5 parent: 2 - - uid: 2535 + - uid: 3012 components: - type: Transform - pos: -9.5,-24.5 + pos: 27.5,-10.5 parent: 2 - - uid: 3121 + - uid: 3020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-57.5 + pos: 43.5,-4.5 parent: 2 - - uid: 3316 + - uid: 3022 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-31.5 + pos: 7.5,24.5 parent: 2 - - uid: 3403 + - uid: 3074 components: - type: Transform - pos: -19.5,-18.5 + pos: -18.5,17.5 parent: 2 - - uid: 3411 + - uid: 3078 components: - type: Transform - pos: 1.5,12.5 + pos: 27.5,-14.5 parent: 2 - - uid: 3944 + - uid: 3086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-23.5 + pos: 37.5,-34.5 parent: 2 - - uid: 4423 + - uid: 3149 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 3152 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-38.5 + pos: 1.5,-23.5 parent: 2 - - uid: 4662 + - uid: 3166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,5.5 + pos: 1.5,-17.5 parent: 2 - - uid: 5036 + - uid: 3169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-29.5 + pos: 44.5,-4.5 parent: 2 - - uid: 5069 + - uid: 3254 components: - type: Transform - pos: -50.5,-31.5 + rot: -1.5707963267948966 rad + pos: 1.5,24.5 parent: 2 - - uid: 5135 + - uid: 3269 components: - type: Transform rot: 3.141592653589793 rad - pos: -52.5,-29.5 + pos: -11.5,-34.5 parent: 2 - - uid: 5154 + - uid: 3277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 + pos: -18.5,13.5 parent: 2 - - uid: 5184 + - uid: 3337 components: - type: Transform - pos: -52.5,-31.5 + pos: 24.5,-14.5 parent: 2 - - uid: 5336 + - uid: 3477 components: - type: Transform - pos: -14.5,16.5 + pos: 23.5,-8.5 parent: 2 - - uid: 5393 + - uid: 3491 components: - type: Transform - pos: 16.5,0.5 + pos: 23.5,-9.5 parent: 2 - - uid: 5698 + - uid: 3554 components: - type: Transform - pos: 0.5,12.5 + pos: 42.5,-4.5 parent: 2 - - uid: 5809 + - uid: 3643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-38.5 + pos: 19.5,-13.5 parent: 2 - - uid: 5820 + - uid: 3668 components: - type: Transform - pos: 53.5,-38.5 + pos: 37.5,-38.5 parent: 2 - - uid: 5827 + - uid: 3669 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-39.5 + pos: 24.5,-52.5 parent: 2 - - uid: 5904 + - uid: 3680 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-15.5 + pos: 24.5,-53.5 parent: 2 - - uid: 5920 + - uid: 3693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-13.5 + pos: 24.5,-41.5 parent: 2 - - uid: 5973 + - uid: 3827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-48.5 + pos: 40.5,14.5 parent: 2 - - uid: 5981 + - uid: 3904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-50.5 + pos: -10.5,-28.5 parent: 2 - - uid: 5982 + - uid: 3905 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-50.5 + pos: -9.5,-28.5 parent: 2 - - uid: 5983 + - uid: 3906 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-50.5 + pos: -8.5,-28.5 parent: 2 - - uid: 5984 + - uid: 3908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-49.5 + pos: -6.5,-28.5 parent: 2 - - uid: 5985 + - uid: 3909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-49.5 + pos: -5.5,-28.5 parent: 2 - - uid: 6110 + - uid: 3911 components: - type: Transform - pos: -27.5,7.5 + pos: -3.5,-28.5 parent: 2 - - uid: 6204 + - uid: 3912 components: - type: Transform - pos: -38.5,-29.5 + pos: -2.5,-28.5 parent: 2 - - uid: 6293 + - uid: 3913 components: - type: Transform - pos: 54.5,-38.5 + pos: -1.5,-28.5 parent: 2 - - uid: 6595 + - uid: 3915 components: - type: Transform - pos: -18.5,-18.5 + pos: -13.5,-27.5 parent: 2 - - uid: 7015 + - uid: 3916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,12.5 + pos: -14.5,-27.5 parent: 2 - - uid: 7027 + - uid: 3918 components: - type: Transform - pos: -39.5,-29.5 + pos: -16.5,-27.5 parent: 2 - - uid: 7265 + - uid: 3919 components: - type: Transform - pos: -12.5,15.5 + pos: -17.5,-27.5 parent: 2 - - uid: 8197 + - uid: 3920 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,13.5 + pos: -18.5,-27.5 parent: 2 - - uid: 8396 + - uid: 3921 components: - type: Transform - pos: -51.5,-31.5 + pos: -19.5,-27.5 parent: 2 - - uid: 8484 + - uid: 3935 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-31.5 + pos: 24.5,-42.5 parent: 2 - - uid: 8520 + - uid: 4020 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-4.5 + pos: 27.5,16.5 parent: 2 - - uid: 8596 + - uid: 4050 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-2.5 + pos: 24.5,-54.5 parent: 2 - - uid: 8597 + - uid: 4138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-2.5 + pos: 2.5,-40.5 parent: 2 - - uid: 8622 + - uid: 4139 components: - type: Transform - pos: 48.5,-20.5 + pos: 1.5,-40.5 parent: 2 - - uid: 8667 + - uid: 4140 components: - type: Transform - pos: -12.5,9.5 + pos: 0.5,-40.5 parent: 2 - - uid: 8692 + - uid: 4189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,41.5 + rot: 3.141592653589793 rad + pos: 39.5,6.5 parent: 2 - - uid: 8837 + - uid: 4218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,1.5 + rot: -1.5707963267948966 rad + pos: 4.5,-36.5 parent: 2 - - uid: 9210 + - uid: 4251 components: - type: Transform - pos: 47.5,-20.5 + rot: 1.5707963267948966 rad + pos: 41.5,-38.5 parent: 2 - - uid: 9211 + - uid: 4254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-18.5 + rot: 1.5707963267948966 rad + pos: 41.5,-36.5 parent: 2 - - uid: 9212 + - uid: 4395 components: - type: Transform - pos: 51.5,-20.5 + rot: 1.5707963267948966 rad + pos: 24.5,-40.5 parent: 2 - - uid: 9214 + - uid: 4399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-22.5 + rot: 1.5707963267948966 rad + pos: 24.5,-36.5 parent: 2 - - uid: 9302 + - uid: 4400 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-22.5 + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 parent: 2 - - uid: 9304 + - uid: 4401 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-22.5 + rot: 1.5707963267948966 rad + pos: 24.5,-34.5 parent: 2 - - uid: 9305 + - uid: 4405 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-22.5 + rot: 1.5707963267948966 rad + pos: 21.5,-33.5 parent: 2 - - uid: 9319 + - uid: 4406 components: - type: Transform - pos: 49.5,-20.5 + rot: 1.5707963267948966 rad + pos: 20.5,-33.5 parent: 2 - - uid: 9321 + - uid: 4407 components: - type: Transform - pos: 50.5,-20.5 + rot: 1.5707963267948966 rad + pos: 19.5,-33.5 parent: 2 - - uid: 9322 + - uid: 4412 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-22.5 + rot: 1.5707963267948966 rad + pos: 31.5,-42.5 parent: 2 - - uid: 9327 + - uid: 4418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-18.5 + rot: 1.5707963267948966 rad + pos: 22.5,-33.5 parent: 2 - - uid: 9328 + - uid: 4419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-18.5 + rot: 1.5707963267948966 rad + pos: 24.5,-33.5 parent: 2 - - uid: 9329 + - uid: 4420 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-18.5 + rot: 1.5707963267948966 rad + pos: 23.5,-33.5 parent: 2 - - uid: 9330 + - uid: 4483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-18.5 + rot: -1.5707963267948966 rad + pos: 26.5,-41.5 parent: 2 - - uid: 9348 + - uid: 4484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-24.5 + rot: -1.5707963267948966 rad + pos: 26.5,-42.5 parent: 2 - - uid: 9349 + - uid: 4485 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-24.5 + pos: 26.5,-43.5 parent: 2 - - uid: 10691 + - uid: 4486 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-49.5 + rot: -1.5707963267948966 rad + pos: 27.5,-41.5 parent: 2 - - uid: 11180 + - uid: 4487 components: - type: Transform - pos: -38.5,-51.5 + rot: -1.5707963267948966 rad + pos: 27.5,-42.5 parent: 2 - - uid: 11249 + - uid: 4489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-53.5 + rot: -1.5707963267948966 rad + pos: 28.5,-41.5 parent: 2 - - uid: 11472 + - uid: 4490 components: - type: Transform - pos: -16.5,-40.5 + rot: -1.5707963267948966 rad + pos: 28.5,-42.5 parent: 2 - - uid: 11499 + - uid: 4492 components: - type: Transform - pos: -17.5,-40.5 + rot: -1.5707963267948966 rad + pos: 29.5,-41.5 parent: 2 - - uid: 11590 + - uid: 4493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-64.5 + rot: -1.5707963267948966 rad + pos: 29.5,-42.5 parent: 2 - - uid: 13791 + - uid: 4505 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-57.5 + pos: 5.5,-36.5 parent: 2 - - uid: 15310 + - uid: 4540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,7.5 + pos: 26.5,-14.5 parent: 2 - - uid: 15463 + - uid: 4578 components: - type: Transform - pos: 21.5,-20.5 + rot: 1.5707963267948966 rad + pos: 39.5,-36.5 parent: 2 - - uid: 15464 + - uid: 4645 components: - type: Transform - pos: 22.5,-20.5 + rot: -1.5707963267948966 rad + pos: 6.5,-36.5 parent: 2 - - uid: 15711 + - uid: 4663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-31.5 + rot: 1.5707963267948966 rad + pos: 7.5,19.5 parent: 2 - - uid: 15873 + - uid: 4775 components: - type: Transform - pos: -20.5,-40.5 + pos: 5.5,-17.5 parent: 2 - - uid: 15874 + - uid: 4831 components: - type: Transform - pos: -19.5,-40.5 + pos: -52.5,-54.5 parent: 2 - - uid: 16258 + - uid: 4851 components: - type: Transform - pos: -40.5,-1.5 + pos: 41.5,-3.5 parent: 2 - - uid: 16756 + - uid: 4891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-31.5 + pos: 31.5,-55.5 parent: 2 - - uid: 16875 + - uid: 4950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-10.5 + rot: -1.5707963267948966 rad + pos: 38.5,-42.5 parent: 2 - - uid: 17643 + - uid: 4955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,21.5 + rot: -1.5707963267948966 rad + pos: 37.5,-41.5 parent: 2 - - uid: 17644 + - uid: 4962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-41.5 + parent: 2 + - uid: 5094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - uid: 5113 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,21.5 + pos: 25.5,13.5 parent: 2 - - uid: 17697 + - uid: 5156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-59.5 + pos: 46.5,-30.5 parent: 2 - - uid: 17698 + - uid: 5158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-60.5 + pos: 47.5,-30.5 parent: 2 - - uid: 17996 + - uid: 5160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-34.5 + pos: 44.5,-37.5 parent: 2 - - uid: 17997 + - uid: 5161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-35.5 + pos: 30.5,-55.5 parent: 2 - - uid: 18867 + - uid: 5197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,10.5 + pos: -0.5,-27.5 parent: 2 - - uid: 18868 + - uid: 5244 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,10.5 + pos: 24.5,11.5 parent: 2 - - uid: 18869 + - uid: 5303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,10.5 + pos: 34.5,-43.5 parent: 2 - - uid: 20422 + - uid: 5323 components: - type: Transform - pos: -38.5,-4.5 + pos: 5.5,28.5 parent: 2 - - uid: 20423 + - uid: 5380 components: - type: Transform - pos: -37.5,-4.5 + rot: 1.5707963267948966 rad + pos: -50.5,21.5 parent: 2 - - uid: 20424 + - uid: 5404 components: - type: Transform - pos: -36.5,-4.5 + pos: -51.5,-55.5 parent: 2 -- proto: ChairFolding - entities: - - uid: 981 + - uid: 5452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,22.5 + rot: 1.5707963267948966 rad + pos: -51.5,15.5 parent: 2 - - uid: 3356 + - uid: 5454 components: - type: Transform - pos: -41.30261,-50.400845 + rot: 1.5707963267948966 rad + pos: -52.5,15.5 parent: 2 - - uid: 4299 + - uid: 5489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.606078,-18.412556 + pos: 39.5,14.5 parent: 2 - - uid: 4320 + - uid: 5577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.553472,-17.38059 + pos: -49.5,-51.5 parent: 2 - - uid: 5356 + - uid: 5582 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,22.5 + pos: -46.5,-48.5 parent: 2 - - uid: 11869 + - uid: 5584 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.56035,-63.3134 + pos: -30.5,23.5 parent: 2 - - uid: 12391 + - uid: 5602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.62121,-76.3481 + rot: 1.5707963267948966 rad + pos: -46.5,22.5 parent: 2 - - uid: 12531 + - uid: 5637 components: - type: Transform - pos: -26.495022,23.598328 + rot: 1.5707963267948966 rad + pos: -46.5,24.5 parent: 2 - - uid: 14245 + - uid: 5638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,24.5 + rot: 1.5707963267948966 rad + pos: -49.5,11.5 parent: 2 - - uid: 15292 + - uid: 5640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,23.5 + pos: -49.5,-50.5 parent: 2 - - uid: 16206 + - uid: 5641 components: - type: Transform - pos: 68.44139,-61.385746 + pos: -48.5,-48.5 parent: 2 - - uid: 18833 + - uid: 5643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 96.49125,-32.383053 + pos: 38.5,14.5 parent: 2 -- proto: ChairFoldingSpawnFolded - entities: - - uid: 18834 + - uid: 5678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 93.481026,-25.317404 + pos: 23.5,11.5 parent: 2 -- proto: ChairOfficeDark - entities: - - uid: 145 + - uid: 5712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.554409,-34.438152 + pos: 45.5,-30.5 parent: 2 - - uid: 271 + - uid: 5713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.551674,-8.388277 + pos: 43.5,-34.5 parent: 2 - - uid: 284 + - uid: 5717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.534855,-26.322289 + pos: 43.5,-33.5 parent: 2 - - uid: 342 + - uid: 5734 components: - type: Transform - pos: 46.413918,-32.460354 + pos: 27.5,-55.5 parent: 2 - - uid: 463 + - uid: 5735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.467375,12.56866 + pos: 28.5,-55.5 parent: 2 - - uid: 858 + - uid: 5756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.53031445,19.5489 + rot: 3.141592653589793 rad + pos: 25.5,16.5 parent: 2 - - uid: 914 + - uid: 5876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.369165,11.450459 + pos: 16.5,-17.5 parent: 2 - - uid: 985 + - uid: 5878 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.638504,23.593374 + pos: -48.5,11.5 parent: 2 - - uid: 2229 + - uid: 6040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.517146,-14.363466 + pos: 27.5,-44.5 parent: 2 - - uid: 2536 + - uid: 6058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.486219,-26.40157 + pos: 29.5,-55.5 parent: 2 - - uid: 2730 + - uid: 6105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.482578,12.543639 + pos: 22.5,11.5 parent: 2 - - uid: 2827 + - uid: 6137 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.51401,-34.28615 + pos: 16.5,2.5 parent: 2 - - uid: 2878 + - uid: 6205 components: - type: Transform - pos: 16.481586,14.607573 + rot: 1.5707963267948966 rad + pos: -49.5,15.5 parent: 2 - - uid: 3438 + - uid: 6331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.471191,-38.39636 + pos: 25.5,-55.5 parent: 2 - - uid: 3823 + - uid: 6334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.461061,-36.42368 + pos: 21.5,-56.5 parent: 2 - - uid: 3824 + - uid: 6335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.74245,-39.206863 + pos: 19.5,-56.5 parent: 2 - - uid: 3856 + - uid: 6368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.497955,-37.360138 + rot: -1.5707963267948966 rad + pos: 16.5,1.5 parent: 2 - - uid: 4190 + - uid: 6411 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.495235,-24.55801 + pos: 18.5,-56.5 parent: 2 - - uid: 4357 + - uid: 6412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.51684,-27.290215 + pos: 16.5,-56.5 parent: 2 - - uid: 4498 + - uid: 6413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.41877,-40.356174 + pos: 22.5,-56.5 parent: 2 - - uid: 4582 + - uid: 6416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.68654,-45.333687 + pos: 14.5,-60.5 parent: 2 - - uid: 4796 + - uid: 6423 components: - type: Transform - pos: -27.552761,-27.28677 + pos: 17.5,-56.5 parent: 2 - - uid: 5084 + - uid: 6434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.25339,-26.060616 + pos: 17.5,-13.5 parent: 2 - - uid: 5085 + - uid: 6499 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.097557,-21.07799 + pos: 6.5,20.5 parent: 2 - - uid: 5153 + - uid: 6562 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 6742 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.459198,-51.18674 + pos: -46.5,25.5 parent: 2 - - uid: 5740 + - uid: 6755 components: - type: Transform - pos: 36.457546,-2.4914064 + rot: 1.5707963267948966 rad + pos: -49.5,19.5 parent: 2 - - uid: 6063 + - uid: 6756 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.624294,-4.3468614 + pos: -29.5,20.5 parent: 2 - - uid: 6163 + - uid: 6776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.543137,2.6380181 + rot: -1.5707963267948966 rad + pos: 24.5,-37.5 parent: 2 - - uid: 7532 + - uid: 6809 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.527239,-44.349594 + pos: 24.5,-38.5 parent: 2 - - uid: 7557 + - uid: 6820 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.45379,-44.412136 + pos: 40.5,-36.5 parent: 2 - - uid: 7570 + - uid: 6892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,19.5 + parent: 2 + - uid: 6940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,3.5 + parent: 2 + - uid: 6956 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-46.5 + pos: 37.5,6.5 parent: 2 - - uid: 7675 + - uid: 6979 components: - type: Transform - pos: 4.5026083,16.648575 + pos: 14.5,-63.5 parent: 2 - - uid: 7959 + - uid: 7030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.489376,-41.355408 + pos: 15.5,-63.5 parent: 2 - - uid: 8675 + - uid: 7127 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.426058,10.683699 + pos: -48.5,19.5 parent: 2 - - uid: 8763 + - uid: 7135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.467,-48.41087 + pos: 22.5,10.5 parent: 2 - - uid: 9358 + - uid: 7142 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.466059,-3.4152722 + pos: 19.5,10.5 parent: 2 - - uid: 9793 + - uid: 7143 components: - type: Transform - pos: -18.350943,-56.397285 + rot: 3.141592653589793 rad + pos: 20.5,10.5 parent: 2 - - uid: 9794 + - uid: 7150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.307766,-56.313892 + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 parent: 2 - - uid: 9795 + - uid: 7151 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.59114,-56.293045 + pos: -3.5,-22.5 parent: 2 - - uid: 9796 + - uid: 7166 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.497345,-53.457745 + pos: -2.5,-19.5 parent: 2 - - uid: 9797 + - uid: 7190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.224391,-52.759342 + pos: -2.5,-20.5 parent: 2 - - uid: 10193 + - uid: 7226 components: - type: Transform - pos: -33.562527,-44.434895 + pos: -18.5,15.5 parent: 2 - - uid: 11286 + - uid: 7279 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.441496,-41.21525 + pos: 35.5,6.5 parent: 2 - - uid: 11293 + - uid: 7445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.43157,-40.31879 + rot: 1.5707963267948966 rad + pos: 48.5,-42.5 parent: 2 - - uid: 11295 + - uid: 7447 components: - type: Transform - pos: 22.604893,-39.31542 + pos: 11.5,-17.5 parent: 2 - - uid: 11550 + - uid: 7466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.438198,-11.359901 + pos: -18.5,19.5 parent: 2 - - uid: 13153 + - uid: 7467 components: - type: Transform - pos: -26.556353,-8.16098 + pos: 16.5,-92.5 parent: 2 - - uid: 13340 + - uid: 7475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.486774,-18.330626 + rot: 1.5707963267948966 rad + pos: 48.5,-40.5 parent: 2 - - uid: 14535 + - uid: 7527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5106664,-21.31229 + pos: 4.5,-43.5 parent: 2 - - uid: 14536 + - uid: 7544 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.4385903,-21.32861 + pos: 4.5,-41.5 parent: 2 - - uid: 14654 + - uid: 7573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.454468,-35.39486 + rot: -1.5707963267948966 rad + pos: 6.5,23.5 parent: 2 - - uid: 18093 + - uid: 7592 components: - type: Transform - pos: -40.668236,-33.44134 + pos: 4.5,-95.5 parent: 2 -- proto: ChairPilotSeat - entities: - - uid: 4866 + - uid: 7654 components: - type: Transform - pos: 47.5,-87.5 + pos: 36.5,13.5 parent: 2 -- proto: ChairRitual - entities: - - uid: 6689 + - uid: 7656 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.405823,-54.259743 + rot: -1.5707963267948966 rad + pos: 6.5,24.5 parent: 2 - - type: Pullable - prevFixedRotation: True - - uid: 6690 + - uid: 7776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.614756,-54.27017 + rot: 1.5707963267948966 rad + pos: -11.5,-30.5 parent: 2 - - uid: 6691 + - uid: 7777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.509544,-54.311863 + rot: 1.5707963267948966 rad + pos: -11.5,-31.5 parent: 2 -- proto: ChairWood - entities: - - uid: 3880 + - uid: 7778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.452895,-40.322285 + rot: 1.5707963267948966 rad + pos: -11.5,-33.5 parent: 2 - - uid: 5046 + - uid: 7803 components: - type: Transform - pos: 0.8496008,-39.432648 + pos: -46.5,-53.5 parent: 2 - - uid: 5047 + - uid: 7826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.280833,-39.559772 + pos: 36.5,11.5 parent: 2 - - uid: 9272 + - uid: 7851 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.477526,-51.48397 + pos: 36.5,12.5 parent: 2 - - uid: 15299 + - uid: 7904 components: - type: Transform - pos: -6.5465918,-38.52324 + pos: 16.5,-2.5 parent: 2 - - uid: 15670 + - uid: 7916 components: - type: Transform - pos: 0.289124,-39.45648 + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 parent: 2 - - uid: 17285 + - uid: 7927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.280833,-40.47717 + pos: 36.5,8.5 parent: 2 - - uid: 17574 + - uid: 8016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.439266,-40.34611 + pos: 15.5,-94.5 parent: 2 - - uid: 18384 + - uid: 8021 components: - type: Transform - pos: -7.5602202,-38.547066 + pos: 14.5,-94.5 parent: 2 -- proto: CheckerBoard - entities: - - uid: 3712 + - uid: 8023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5153,-32.39743 + pos: 13.5,-94.5 parent: 2 -- proto: ChemDispenser - entities: - - uid: 5291 + - uid: 8025 components: - type: Transform - pos: -31.5,-34.5 + pos: 16.5,-93.5 parent: 2 - - uid: 5302 + - uid: 8026 components: - type: Transform - pos: -26.5,-34.5 + pos: 16.5,-94.5 parent: 2 -- proto: ChemistryEmptyBottle03 - entities: - - uid: 7111 + - uid: 8027 components: - type: Transform - pos: 41.36574,-10.112856 + pos: 15.5,-84.5 parent: 2 -- proto: ChemistryHotplate - entities: - - uid: 5172 + - uid: 8029 components: - type: Transform - pos: -30.5,-34.5 + pos: 15.5,-86.5 parent: 2 -- proto: ChemMaster - entities: - - uid: 3615 + - uid: 8031 components: - type: Transform - pos: -27.5,-34.5 + pos: 15.5,-87.5 parent: 2 - - uid: 5289 + - uid: 8032 components: - type: Transform - pos: -31.5,-33.5 + pos: 15.5,-89.5 parent: 2 -- proto: ChessBoard - entities: - - uid: 3711 + - uid: 8033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.503945,-30.39604 + pos: 15.5,-85.5 parent: 2 - - uid: 12554 + - uid: 8035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.468615,8.584222 + pos: 16.5,-89.5 parent: 2 -- proto: ChurchBell - entities: - - uid: 7099 + - uid: 8036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-9.5 + pos: 16.5,-90.5 parent: 2 -- proto: ChurchOrganInstrument - entities: - - uid: 5786 + - uid: 8037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-9.5 + pos: 16.5,-91.5 parent: 2 -- proto: Cigar - entities: - - uid: 18968 + - uid: 8038 components: - type: Transform - pos: 37.63063,2.2633424 + pos: 15.5,-88.5 parent: 2 -- proto: CigaretteSpent - entities: - - uid: 707 + - uid: 8052 components: - type: Transform - pos: -12.708114,16.927711 + pos: -46.5,-52.5 parent: 2 - - uid: 8528 + - uid: 8053 components: - type: Transform - pos: 47.263664,-5.226495 + pos: -29.5,23.5 parent: 2 - - uid: 8529 + - uid: 8116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.02446,-5.309886 + pos: 15.5,-73.5 parent: 2 - - uid: 8530 + - uid: 8125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.628925,-5.393277 + pos: 15.5,-74.5 parent: 2 - - uid: 8531 + - uid: 8126 components: - type: Transform - pos: 48.264164,-5.705994 + pos: 15.5,-75.5 parent: 2 - - uid: 8532 + - uid: 8127 components: - type: Transform - pos: 47.552822,-5.7639065 + pos: 15.5,-76.5 parent: 2 - - uid: 8533 + - uid: 8129 components: - type: Transform - pos: 47.82379,-4.210745 + pos: 15.5,-77.5 parent: 2 - - uid: 8534 + - uid: 8132 components: - type: Transform - pos: 47.375652,-4.106506 + pos: -13.5,-94.5 parent: 2 - - uid: 8535 + - uid: 8142 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.75034,-5.461613 + pos: -13.5,-93.5 parent: 2 - - uid: 8536 + - uid: 8143 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.177635,-5.816026 + pos: -13.5,-92.5 parent: 2 - - uid: 8537 + - uid: 8145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.313618,-5.5345807 + pos: -13.5,-91.5 parent: 2 - - uid: 8539 + - uid: 8147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.824287,-4.5651574 + pos: -13.5,-90.5 parent: 2 - - uid: 8868 + - uid: 8148 components: - type: Transform - pos: 48.750854,-5.6496964 + pos: -13.5,-89.5 parent: 2 - - uid: 18988 + - uid: 8149 components: - type: Transform - pos: 27.633686,-28.791403 + pos: -13.5,-88.5 parent: 2 - - uid: 18989 + - uid: 8150 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.779593,-28.603773 + pos: -12.5,-94.5 parent: 2 -- proto: CigarGold - entities: - - uid: 5608 + - uid: 8151 components: - type: Transform - pos: 46.37376,-33.116898 + pos: -12.5,-95.5 parent: 2 -- proto: CigarGoldCase - entities: - - uid: 20240 + - uid: 8152 components: - type: Transform - pos: -24.514952,-51.179676 + pos: -12.5,-96.5 parent: 2 -- proto: CigarSpent - entities: - - uid: 706 + - uid: 8153 components: - type: Transform - pos: -14.617033,15.569173 + pos: -13.5,-96.5 parent: 2 - - uid: 5612 + - uid: 8154 components: - type: Transform - parent: 5611 - - type: Physics - canCollide: False - - uid: 5714 + pos: -14.5,-96.5 + parent: 2 + - uid: 8155 components: - type: Transform - pos: 52.710236,-39.433784 + pos: -14.5,-95.5 parent: 2 -- proto: CigCartonBlack - entities: - - uid: 8519 + - uid: 8156 components: - type: Transform - pos: 47.50337,-3.3606157 + pos: -14.5,-94.5 parent: 2 -- proto: CigPackBlack - entities: - - uid: 8522 + - uid: 8157 components: - type: Transform - pos: 48.399647,-4.3404627 + pos: -13.5,-95.5 parent: 2 -- proto: CigPackBlue - entities: - - uid: 18986 + - uid: 8164 components: - type: Transform - pos: 27.589014,-28.112291 + pos: -8.5,-83.5 parent: 2 -- proto: CigPackRed - entities: - - uid: 717 + - uid: 8165 components: - type: Transform - pos: -14.330446,15.654845 + pos: -10.5,-83.5 parent: 2 -- proto: CircuitImprinter - entities: - - uid: 4192 + - uid: 8166 components: - type: Transform - pos: 19.5,-29.5 + pos: -9.5,-83.5 parent: 2 -- proto: CleanerDispenser - entities: - - uid: 9528 + - uid: 8167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,3.5 + pos: -12.5,-83.5 parent: 2 -- proto: ClosetBombFilled - entities: - - uid: 14051 + - uid: 8168 components: - type: Transform - pos: -24.5,12.5 + pos: -11.5,-83.5 parent: 2 -- proto: ClosetChefFilled - entities: - - uid: 2729 + - uid: 8169 components: - type: Transform - pos: -3.5,-30.5 + pos: -13.5,-84.5 parent: 2 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 2863 + - uid: 8170 components: - type: Transform - pos: -28.5,-64.5 + pos: -13.5,-85.5 parent: 2 - - uid: 3159 + - uid: 8171 components: - type: Transform - pos: -42.5,-31.5 + pos: -13.5,-86.5 parent: 2 - - uid: 3165 + - uid: 8172 components: - type: Transform - pos: 36.5,-32.5 + pos: -13.5,-87.5 parent: 2 - - uid: 3526 + - uid: 8173 components: - type: Transform - pos: -4.5,-47.5 + pos: -13.5,-83.5 parent: 2 - - uid: 3527 + - uid: 8252 components: - type: Transform - pos: -15.5,-18.5 + pos: -10.5,-94.5 parent: 2 - - uid: 3578 + - uid: 8255 components: - type: Transform - pos: 37.5,-32.5 + pos: -8.5,-94.5 parent: 2 - - uid: 3585 + - uid: 8259 components: - type: Transform - pos: 30.5,-52.5 + pos: -7.5,-94.5 parent: 2 - - uid: 4332 + - uid: 8304 components: - type: Transform - pos: -3.5,12.5 + pos: 34.5,-54.5 parent: 2 - - uid: 6066 + - uid: 8308 components: - type: Transform - pos: 12.5,-68.5 + pos: 30.5,-54.5 parent: 2 - - uid: 6226 + - uid: 8309 components: - type: Transform - pos: -9.5,-68.5 + rot: 1.5707963267948966 rad + pos: -50.5,25.5 parent: 2 - - uid: 6827 + - uid: 8313 components: - type: Transform - pos: 50.5,-26.5 + rot: 1.5707963267948966 rad + pos: -51.5,11.5 parent: 2 - - uid: 7325 + - uid: 8322 components: - type: Transform - pos: 31.5,37.5 + rot: 1.5707963267948966 rad + pos: -50.5,20.5 parent: 2 - - uid: 7559 + - uid: 8328 components: - type: Transform - pos: -9.5,-69.5 + rot: 1.5707963267948966 rad + pos: -52.5,11.5 parent: 2 - - uid: 7579 + - uid: 8349 components: - type: Transform - pos: 12.5,-69.5 + rot: 1.5707963267948966 rad + pos: -48.5,15.5 parent: 2 - - uid: 7597 + - uid: 8367 components: - type: Transform - pos: -4.5,12.5 + rot: 1.5707963267948966 rad + pos: -50.5,18.5 parent: 2 - - uid: 7600 + - uid: 8383 components: - type: Transform - pos: -15.5,-19.5 + rot: 1.5707963267948966 rad + pos: -51.5,19.5 parent: 2 - - uid: 7669 + - uid: 8394 components: - type: Transform - pos: 28.5,19.5 + pos: 1.5,-90.5 parent: 2 - - uid: 8272 + - uid: 8416 components: - type: Transform - pos: -28.5,-63.5 + pos: 36.5,9.5 parent: 2 - - uid: 9337 + - uid: 8425 components: - type: Transform - pos: 51.5,-26.5 + rot: -1.5707963267948966 rad + pos: 58.5,2.5 parent: 2 - - uid: 10026 + - uid: 8426 components: - type: Transform - pos: 44.5,-18.5 + rot: -1.5707963267948966 rad + pos: 59.5,2.5 parent: 2 - - uid: 11564 + - uid: 8429 components: - type: Transform - pos: 38.5,-52.5 + rot: -1.5707963267948966 rad + pos: 62.5,3.5 parent: 2 - - uid: 15691 + - uid: 8430 components: - type: Transform - pos: 31.5,38.5 + rot: -1.5707963267948966 rad + pos: 62.5,1.5 parent: 2 - - uid: 15716 + - uid: 8431 components: - type: Transform - pos: 27.5,-13.5 + rot: -1.5707963267948966 rad + pos: 61.5,2.5 parent: 2 - - uid: 17867 + - uid: 8435 components: - type: Transform - pos: -33.5,11.5 + rot: -1.5707963267948966 rad + pos: 62.5,0.5 parent: 2 - - uid: 18847 + - uid: 8437 components: - type: Transform - pos: 52.5,-63.5 + rot: -1.5707963267948966 rad + pos: 58.5,0.5 parent: 2 - - uid: 19762 + - uid: 8439 components: - type: Transform - pos: 59.5,-50.5 + rot: 1.5707963267948966 rad + pos: -52.5,19.5 parent: 2 - - uid: 19890 + - uid: 8440 components: - type: Transform - pos: 61.5,-52.5 + rot: -1.5707963267948966 rad + pos: 58.5,1.5 parent: 2 - - uid: 20132 + - uid: 8441 components: - type: Transform - pos: 6.5,-47.5 + rot: -1.5707963267948966 rad + pos: 54.5,2.5 parent: 2 - - uid: 20134 + - uid: 8443 components: - type: Transform - pos: -40.5,-31.5 + rot: -1.5707963267948966 rad + pos: 60.5,2.5 parent: 2 - - uid: 20139 + - uid: 8482 components: - type: Transform - pos: 31.5,4.5 + pos: -53.5,-54.5 parent: 2 - - uid: 20140 + - uid: 8511 components: - type: Transform - pos: 31.5,5.5 + pos: -33.5,-13.5 parent: 2 - - uid: 20749 + - uid: 8560 components: - type: Transform - pos: -40.5,-57.5 + pos: 45.5,-5.5 parent: 2 -- proto: ClosetEmergencyN2 - entities: - - uid: 323 + - uid: 8561 components: - type: Transform - pos: 14.5,-9.5 + pos: 45.5,-6.5 parent: 2 -- proto: ClosetEmergencyN2FilledRandom - entities: - - uid: 369 + - uid: 8562 components: - type: Transform - pos: 31.5,39.5 + pos: 45.5,-7.5 parent: 2 - - uid: 3352 + - uid: 8563 components: - type: Transform - pos: -3.5,-47.5 + pos: 45.5,-9.5 parent: 2 - - uid: 3378 + - uid: 8564 components: - type: Transform - pos: 14.5,-8.5 + pos: 45.5,-10.5 parent: 2 - - uid: 5902 + - uid: 8565 components: - type: Transform - pos: -28.5,-65.5 + pos: 45.5,-11.5 parent: 2 - - uid: 9982 + - uid: 8566 components: - type: Transform - pos: 59.5,-51.5 + pos: 45.5,-12.5 parent: 2 - - uid: 10027 + - uid: 8567 components: - type: Transform - pos: 44.5,-19.5 + pos: 45.5,-13.5 parent: 2 - - uid: 11562 + - uid: 8569 components: - type: Transform - pos: 39.5,-52.5 + pos: 36.5,7.5 parent: 2 - - uid: 17868 + - uid: 8570 components: - type: Transform - pos: -33.5,10.5 + pos: 36.5,10.5 parent: 2 - - uid: 18848 + - uid: 8587 components: - type: Transform - pos: 52.5,-64.5 + pos: 45.5,-8.5 parent: 2 - - uid: 19891 + - uid: 8766 components: - type: Transform - pos: 61.5,-54.5 + pos: 44.5,2.5 parent: 2 - - uid: 20748 + - uid: 8769 components: - type: Transform - pos: -41.5,-57.5 + pos: 48.5,2.5 parent: 2 -- proto: ClosetFireFilled - entities: - - uid: 4580 + - uid: 8773 components: - type: Transform - pos: 37.5,-42.5 + pos: 45.5,2.5 parent: 2 - - uid: 4997 + - uid: 8784 components: - type: Transform - pos: -15.5,-20.5 + pos: 42.5,2.5 parent: 2 - - uid: 5672 + - uid: 8788 components: - type: Transform - pos: 7.5,-47.5 + pos: 41.5,1.5 parent: 2 - - uid: 7598 + - uid: 8789 components: - type: Transform - pos: 12.5,-67.5 + pos: 41.5,0.5 parent: 2 - - uid: 7601 + - uid: 8790 components: - type: Transform - pos: -9.5,-67.5 + pos: 41.5,-0.5 parent: 2 - - uid: 14084 + - uid: 8791 components: - type: Transform - pos: -33.5,-41.5 + pos: 41.5,-1.5 parent: 2 - - uid: 14798 + - uid: 8792 components: - type: Transform - pos: 52.5,-15.5 + pos: 41.5,-2.5 parent: 2 - - uid: 17472 + - uid: 8827 components: - type: Transform - pos: -5.5,12.5 + pos: 16.5,-5.5 parent: 2 - - uid: 18531 + - uid: 8831 components: - type: Transform - pos: 38.5,-32.5 + rot: -1.5707963267948966 rad + pos: 52.5,2.5 parent: 2 - - uid: 18880 + - uid: 8832 components: - type: Transform - pos: 43.5,-50.5 + rot: -1.5707963267948966 rad + pos: 53.5,2.5 parent: 2 - - uid: 18998 + - uid: 8833 components: - type: Transform - pos: 31.5,36.5 + rot: -1.5707963267948966 rad + pos: 55.5,2.5 parent: 2 - - uid: 20135 + - uid: 8834 components: - type: Transform - pos: -39.5,-31.5 + rot: -1.5707963267948966 rad + pos: 56.5,2.5 parent: 2 - - uid: 20141 + - uid: 8835 components: - type: Transform - pos: 31.5,6.5 + rot: -1.5707963267948966 rad + pos: 57.5,2.5 parent: 2 -- proto: ClosetJanitorFilled - entities: - - uid: 9414 + - uid: 8854 components: - type: Transform - pos: 27.5,1.5 + rot: -1.5707963267948966 rad + pos: 0.5,-22.5 parent: 2 -- proto: ClosetL3JanitorFilled - entities: - - uid: 9597 + - uid: 8905 components: - type: Transform - pos: 29.5,6.5 + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 parent: 2 -- proto: ClosetL3ScienceFilled - entities: - - uid: 16224 + - uid: 8919 components: - type: Transform - pos: 26.5,-42.5 + pos: 50.5,2.5 parent: 2 -- proto: ClosetL3SecurityFilled - entities: - - uid: 17618 + - uid: 8922 components: - type: Transform - pos: -27.5,9.5 + rot: -1.5707963267948966 rad + pos: 58.5,3.5 parent: 2 -- proto: ClosetL3VirologyFilled - entities: - - uid: 8032 + - uid: 8923 components: - type: Transform - pos: -47.5,-42.5 + rot: -1.5707963267948966 rad + pos: 58.5,4.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: 8110 + - uid: 8927 components: - type: Transform - pos: -46.5,-42.5 + rot: -1.5707963267948966 rad + pos: 67.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 -- proto: ClosetMaintenance - entities: - - uid: 3103 + - uid: 8928 components: - type: Transform - pos: -29.5,15.5 + rot: 3.141592653589793 rad + pos: -28.5,20.5 parent: 2 -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 1410 + - uid: 8931 components: - type: Transform - pos: 39.5,5.5 + rot: -1.5707963267948966 rad + pos: 66.5,2.5 parent: 2 - - uid: 2301 + - uid: 8932 components: - type: Transform - pos: 51.5,-35.5 + rot: -1.5707963267948966 rad + pos: 68.5,2.5 parent: 2 - - uid: 5433 + - uid: 8934 components: - type: Transform - pos: 21.5,12.5 + rot: -1.5707963267948966 rad + pos: 70.5,3.5 parent: 2 - - uid: 5627 + - uid: 8935 components: - type: Transform - pos: 42.5,-2.5 + rot: -1.5707963267948966 rad + pos: 70.5,4.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: 5671 + - uid: 8936 components: - type: Transform - pos: 31.5,-52.5 + rot: -1.5707963267948966 rad + pos: 63.5,2.5 parent: 2 - - uid: 10707 + - uid: 8937 components: - type: Transform - pos: -43.5,-50.5 + rot: -1.5707963267948966 rad + pos: 62.5,2.5 parent: 2 - - uid: 11167 + - uid: 8938 components: - type: Transform - pos: -29.5,14.5 + rot: -1.5707963267948966 rad + pos: 64.5,2.5 parent: 2 - - uid: 14345 + - uid: 8941 components: - type: Transform - pos: 25.5,-56.5 + rot: -1.5707963267948966 rad + pos: 70.5,1.5 parent: 2 - - uid: 14461 + - uid: 8942 components: - type: Transform - pos: 16.5,-8.5 + rot: -1.5707963267948966 rad + pos: 70.5,0.5 parent: 2 - - uid: 15336 + - uid: 8943 components: - type: Transform - pos: -26.5,19.5 + rot: -1.5707963267948966 rad + pos: 66.5,0.5 parent: 2 - - uid: 18579 + - uid: 8944 components: - type: Transform - pos: -16.5,19.5 + rot: -1.5707963267948966 rad + pos: 66.5,1.5 parent: 2 - - uid: 18865 + - uid: 8945 components: - type: Transform - pos: 55.5,-55.5 + rot: -1.5707963267948966 rad + pos: 66.5,3.5 parent: 2 - - uid: 18896 + - uid: 8946 components: - type: Transform - pos: 26.5,-13.5 + rot: -1.5707963267948966 rad + pos: 66.5,4.5 parent: 2 - - uid: 18908 + - uid: 8947 components: - type: Transform - pos: 38.5,-61.5 + rot: -1.5707963267948966 rad + pos: 62.5,4.5 parent: 2 - - uid: 20753 + - uid: 8956 components: - type: Transform - pos: -35.5,-57.5 + rot: 3.141592653589793 rad + pos: -26.5,20.5 parent: 2 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 42 + - uid: 8959 components: - type: Transform - pos: 26.5,-41.5 + rot: 3.141592653589793 rad + pos: -27.5,20.5 parent: 2 -- proto: ClosetSteelBase - entities: - - uid: 2309 + - uid: 8968 components: - type: Transform - pos: 50.5,-35.5 + pos: 45.5,3.5 parent: 2 - - uid: 8158 + - uid: 9034 components: - type: Transform - pos: -49.5,-46.5 + pos: 48.5,-33.5 parent: 2 - - uid: 11559 + - uid: 9035 components: - type: Transform - pos: 40.5,-52.5 + pos: 48.5,-35.5 parent: 2 - - uid: 20754 + - uid: 9036 components: - type: Transform - pos: -36.5,-57.5 + pos: 48.5,-34.5 parent: 2 -- proto: ClosetToolFilled - entities: - - uid: 1125 + - uid: 9083 components: - type: Transform - pos: 17.5,-18.5 + pos: -12.5,-54.5 parent: 2 - - uid: 9128 + - uid: 9106 components: - type: Transform - pos: 37.5,12.5 + pos: 51.5,2.5 parent: 2 - - uid: 17538 + - uid: 9133 components: - type: Transform - pos: 16.5,1.5 + rot: 1.5707963267948966 rad + pos: -23.5,-0.5 parent: 2 -- proto: ClothingBackpackDuffel - entities: - - uid: 1038 + - uid: 9153 components: - type: Transform - pos: 52.586926,-35.256138 + rot: 1.5707963267948966 rad + pos: 56.5,-18.5 parent: 2 -- proto: ClothingBackpackDuffelCargo - entities: - - uid: 979 + - uid: 9154 components: - type: Transform - pos: 0.116775274,20.693357 + rot: 1.5707963267948966 rad + pos: 55.5,-18.5 parent: 2 -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 3048 + - uid: 9155 components: - type: Transform - pos: -44.468704,-47.20753 + rot: 1.5707963267948966 rad + pos: 55.5,-16.5 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: This decreases your running speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null - - uid: 5746 + - uid: 9156 components: - type: Transform - pos: -49.51163,-33.29816 + rot: 1.5707963267948966 rad + pos: 56.5,-16.5 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - - message: This decreases your running speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: ClothingBackpackDuffelSyndicatePyjamaBundle - entities: - - uid: 7203 + - uid: 9157 components: - type: Transform - pos: 47.61371,-9.3577 + rot: 1.5707963267948966 rad + pos: 56.5,-24.5 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: >- - It provides the following protection: - - - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]90%[/color]. - priority: 0 - component: Armor - - message: This decreases your running speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - title: null -- proto: ClothingBeltChefFilled - entities: - - uid: 3884 + - uid: 9158 components: - type: Transform - pos: -2.4525337,-35.40037 + rot: 1.5707963267948966 rad + pos: 55.5,-24.5 parent: 2 -- proto: ClothingBeltJanitorFilled - entities: - - uid: 9362 + - uid: 9159 components: - type: Transform - pos: 29.389355,3.5471458 + rot: 1.5707963267948966 rad + pos: 55.5,-26.5 parent: 2 -- proto: ClothingBeltMedicalEMTFilled - entities: - - uid: 4802 + - uid: 9160 components: - type: Transform - pos: -32.60601,-27.341293 + rot: 1.5707963267948966 rad + pos: 56.5,-26.5 parent: 2 -- proto: ClothingBeltPlantFilled - entities: - - uid: 3461 + - uid: 9177 components: - type: Transform - pos: -18.676945,-29.53736 + pos: 24.5,-44.5 parent: 2 -- proto: ClothingBeltSecurityFilled - entities: - - uid: 1489 + - uid: 9178 components: - type: Transform - pos: -23.511723,15.622659 + pos: 24.5,-45.5 parent: 2 -- proto: ClothingBeltUtility - entities: - - uid: 1290 + - uid: 9179 components: - type: Transform - pos: -18.438002,-22.34795 + pos: 24.5,-46.5 parent: 2 - - uid: 16990 + - uid: 9181 components: - type: Transform - pos: 27.302391,-29.306028 + pos: 24.5,-48.5 parent: 2 -- proto: ClothingBeltUtilityEngineering - entities: - - uid: 2235 + - uid: 9182 components: - type: Transform - pos: -11.6501,-13.9699955 + pos: 24.5,-50.5 parent: 2 - - uid: 5029 + - uid: 9183 components: - type: Transform - pos: -26.470915,-18.3621 + pos: 24.5,-49.5 parent: 2 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 4776 + - uid: 9184 components: - type: Transform - pos: -34.898106,-53.323624 + pos: 25.5,-51.5 parent: 2 -- proto: ClothingEyesGlassesGar - entities: - - uid: 7787 + - uid: 9185 components: - type: Transform - pos: 17.508947,18.511362 + pos: 27.5,-51.5 parent: 2 -- proto: ClothingEyesGlassesGarGiga - entities: - - uid: 1753 + - uid: 9186 components: - type: Transform - pos: 9.0438595,6.568463 + pos: 28.5,-51.5 parent: 2 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 2171 + - uid: 9187 components: - type: Transform - pos: -11.389554,-13.938724 + pos: 14.5,-54.5 parent: 2 -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 5700 + - uid: 9292 components: - type: Transform - pos: 45.643505,-32.712418 + pos: 48.5,-28.5 parent: 2 -- proto: ClothingHandsGlovesBoxingGreen - entities: - - uid: 3354 + - uid: 9315 components: - type: Transform - pos: 53.148388,-40.7539 + rot: -1.5707963267948966 rad + pos: 17.5,-53.5 parent: 2 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 2285 + - uid: 9523 components: - type: Transform - pos: 51.41836,-41.410606 + rot: 1.5707963267948966 rad + pos: 20.5,-3.5 parent: 2 -- proto: ClothingHandsGlovesBoxingYellow - entities: - - uid: 3329 + - uid: 9526 components: - type: Transform - pos: 55.644142,-41.512356 + rot: -1.5707963267948966 rad + pos: -56.5,-52.5 parent: 2 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 20830 + - uid: 9533 components: - type: Transform - pos: -6.4632463,-14.56322 + pos: 25.5,19.5 parent: 2 -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 18092 + - uid: 9594 components: - type: Transform - pos: 28.514162,-39.414745 + pos: 3.5,-17.5 parent: 2 - - uid: 18166 + - uid: 9631 components: - type: Transform - pos: -40.472687,-34.309685 + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 parent: 2 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 5185 + - uid: 9646 components: - type: Transform - pos: -52.498062,-27.89957 + pos: 21.5,9.5 parent: 2 - - uid: 6051 + - uid: 9680 components: - type: Transform - pos: 41.41785,-10.425573 + pos: 48.5,-32.5 parent: 2 - - uid: 14731 + - uid: 9707 components: - type: Transform - pos: 22.49661,-58.714924 + rot: -1.5707963267948966 rad + pos: -54.5,-53.5 parent: 2 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 8204 + - uid: 9945 components: - type: Transform - pos: -52.470013,-41.035538 + pos: 41.5,6.5 parent: 2 -- proto: ClothingHandsTacticalMaidGloves - entities: - - uid: 1108 + - uid: 9976 components: - type: Transform - pos: 13.508534,-8.645821 + pos: 31.5,-54.5 parent: 2 -- proto: ClothingHeadBandBotany - entities: - - uid: 3798 + - uid: 9977 components: - type: Transform - pos: 6.5259585,-45.321552 + pos: 35.5,-54.5 parent: 2 -- proto: ClothingHeadBandRed - entities: - - uid: 12352 + - uid: 9978 components: - type: Transform - pos: -40.480824,-51.918766 + pos: 33.5,-54.5 parent: 2 -- proto: ClothingHeadFishCap - entities: - - uid: 1271 + - uid: 9979 components: - type: Transform - pos: 17.569733,18.70626 + rot: 1.5707963267948966 rad + pos: 48.5,-43.5 parent: 2 -- proto: ClothingHeadHatAnimalCat - entities: - - uid: 6055 + - uid: 9980 components: - type: Transform - pos: -16.499865,8.60507 + rot: 1.5707963267948966 rad + pos: 48.5,-39.5 parent: 2 -- proto: ClothingHeadHatAnimalCatBlack - entities: - - uid: 8601 + - uid: 9985 components: - type: Transform - pos: 44.30121,-2.3817148 + rot: 1.5707963267948966 rad + pos: 48.5,-48.5 parent: 2 -- proto: ClothingHeadHatBeret - entities: - - uid: 3009 + - uid: 9990 components: - type: Transform - pos: -17.67299,30.71278 + rot: 1.5707963267948966 rad + pos: 48.5,-51.5 parent: 2 -- proto: ClothingHeadHatBeretQM - entities: - - uid: 1014 + - uid: 10100 components: - type: Transform - pos: -7.5870266,17.820057 + pos: -47.5,-53.5 parent: 2 -- proto: ClothingHeadHatBeretRND - entities: - - uid: 5049 + - uid: 10111 components: - type: Transform - pos: 28.369284,-48.32308 + pos: 48.5,-31.5 parent: 2 -- proto: ClothingHeadHatBowlerHat - entities: - - uid: 15731 + - uid: 10174 components: - type: Transform - pos: 22.72877,-40.145943 + pos: -29.5,22.5 parent: 2 -- proto: ClothingHeadHatBrownFlatcap - entities: - - uid: 10989 + - uid: 10178 components: - type: Transform - pos: 19.452253,-58.458893 + pos: 48.5,-29.5 parent: 2 -- proto: ClothingHeadHatBunny - entities: - - uid: 12331 + - uid: 10418 components: - type: Transform - pos: 34.48958,41.4503 + pos: 8.5,-17.5 parent: 2 -- proto: ClothingHeadHatCargosoft - entities: - - uid: 8997 + - uid: 10436 components: - type: Transform - pos: 0.18218291,23.608202 + pos: -31.5,22.5 parent: 2 -- proto: ClothingHeadHatChef - entities: - - uid: 3264 + - uid: 10450 components: - type: Transform - pos: 1.263932,-33.25513 + pos: 16.5,0.5 parent: 2 -- proto: ClothingHeadHatCone - entities: - - uid: 340 + - uid: 10475 components: - type: Transform - pos: 29.572224,-77.60282 + pos: -49.5,-52.5 parent: 2 - - uid: 6791 + - uid: 10519 components: - type: Transform - pos: 31.329733,-77.7259 + pos: 14.5,-13.5 parent: 2 - - uid: 6850 + - uid: 10631 components: - type: Transform - pos: 2.2315192,-19.537426 + pos: 6.5,-17.5 parent: 2 - - uid: 7436 + - uid: 10697 components: - type: Transform - pos: 2.4515443,-16.412426 + pos: 12.5,-17.5 parent: 2 - - uid: 7438 + - uid: 10714 components: - type: Transform - pos: 32.340652,-78.34091 + pos: -30.5,22.5 parent: 2 - - uid: 7441 + - uid: 10768 components: - type: Transform - pos: 2.1702943,-17.349926 + pos: -43.5,-48.5 parent: 2 - - uid: 7447 + - uid: 10783 components: - type: Transform - pos: 3.4202943,-16.224926 + pos: -33.5,23.5 parent: 2 - - uid: 11195 + - uid: 10785 components: - type: Transform - pos: 2.2015443,-18.396801 + pos: -34.5,23.5 parent: 2 - - uid: 17539 + - uid: 10884 components: - type: Transform - pos: 17.14647,7.379371 + rot: 1.5707963267948966 rad + pos: 48.5,-50.5 parent: 2 -- proto: ClothingHeadHatCowboyBrown - entities: - - uid: 8804 + - uid: 10965 components: - type: Transform - pos: -38.56931,-55.278778 + rot: -1.5707963267948966 rad + pos: 17.5,-54.5 parent: 2 -- proto: ClothingHeadHatFancyCrown - entities: - - uid: 20254 + - uid: 11048 components: - type: Transform - pos: -22.46544,41.477055 + pos: 4.5,-42.5 parent: 2 -- proto: ClothingHeadHatFez - entities: - - uid: 16992 + - uid: 11051 components: - type: Transform - pos: 46.541893,-36.255573 + rot: -1.5707963267948966 rad + pos: -35.5,9.5 parent: 2 -- proto: ClothingHeadHatFlowerWreath - entities: - - uid: 18623 + - uid: 11060 components: - type: Transform - pos: -15.4590845,13.626832 + pos: 21.5,-13.5 parent: 2 -- proto: ClothingHeadHatMimesoft - entities: - - uid: 14256 + - uid: 11130 components: - type: Transform - pos: 7.316777,-31.202648 + rot: -1.5707963267948966 rad + pos: -33.5,12.5 parent: 2 -- proto: ClothingHeadHatPaper - entities: - - uid: 17875 + - uid: 11153 components: - type: Transform - pos: 6.8421288,-51.23095 + pos: 20.5,-13.5 parent: 2 -- proto: ClothingHeadHatParamedicsoft - entities: - - uid: 4803 + - uid: 11181 components: - type: Transform - pos: -28.478964,-28.414955 + pos: -19.5,-15.5 parent: 2 -- proto: ClothingHeadHatPartyWaterCup - entities: - - uid: 1076 + - uid: 11195 components: - type: Transform - pos: -0.26819527,12.552498 + pos: -49.5,-55.5 parent: 2 -- proto: ClothingHeadHatPirate - entities: - - uid: 13827 + - uid: 11246 components: - type: Transform - pos: 25.671356,-58.306297 + pos: -39.5,-57.5 parent: 2 -- proto: ClothingHeadHatRichard - entities: - - uid: 5281 + - uid: 11247 components: - type: Transform - pos: 56.495144,-40.47507 + rot: 3.141592653589793 rad + pos: -43.5,-53.5 parent: 2 -- proto: ClothingHeadHatSantahat - entities: - - uid: 809 + - uid: 11255 components: - type: Transform - pos: -9.481663,24.584553 + pos: -38.5,-57.5 parent: 2 - - uid: 3276 + - uid: 11280 components: - type: Transform - pos: -22.575134,17.796028 + rot: 1.5707963267948966 rad + pos: -46.5,-11.5 parent: 2 - - uid: 13801 + - uid: 11288 components: - type: Transform - pos: -22.502218,17.702213 + pos: 7.5,-17.5 parent: 2 - - uid: 20261 + - uid: 11303 components: - type: Transform - pos: -26.338486,12.810534 + pos: 23.5,-16.5 parent: 2 - - uid: 20263 + - uid: 11313 components: - type: Transform - pos: -30.243408,11.509218 + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 parent: 2 - - uid: 20266 + - uid: 11315 components: - type: Transform - pos: -21.5342,10.806937 + rot: 1.5707963267948966 rad + pos: -48.5,-11.5 parent: 2 - - uid: 20267 + - uid: 11317 components: - type: Transform - pos: -27.292542,6.769797 + pos: -53.5,-59.5 parent: 2 - - uid: 20271 + - uid: 11318 components: - type: Transform - pos: -20.665579,5.6604877 + rot: 1.5707963267948966 rad + pos: -48.5,-13.5 parent: 2 - - uid: 20272 + - uid: 11563 components: - type: Transform - pos: -20.217663,5.4624333 + pos: 52.5,-31.5 parent: 2 - - uid: 20274 + - uid: 11633 components: - type: Transform - pos: -21.232481,-5.3243594 + pos: -41.5,-57.5 parent: 2 - - uid: 20276 + - uid: 11635 components: - type: Transform - pos: -18.31642,-56.260468 + rot: 1.5707963267948966 rad + pos: -50.5,-13.5 parent: 2 -- proto: ClothingHeadHatSyndie - entities: - - uid: 8321 + - uid: 11772 components: - type: Transform - pos: 47.35316,-9.274309 + pos: 10.5,-17.5 parent: 2 -- proto: ClothingHeadHatTacticalMaidHeadband - entities: - - uid: 2059 + - uid: 11952 components: - type: Transform - pos: 13.206302,-8.260137 + pos: -40.5,-57.5 parent: 2 -- proto: ClothingHeadHatWarden - entities: - - uid: 14570 + - uid: 11995 components: - type: Transform - pos: -19.224272,-5.6646905 + pos: -51.5,-59.5 parent: 2 -- proto: ClothingHeadHatWeldingMaskPainted - entities: - - uid: 8588 + - uid: 11998 components: - type: Transform - pos: 47.500233,-4.4413204 + pos: -52.5,-59.5 parent: 2 -- proto: ClothingHeadHatXmasCrown - entities: - - uid: 19889 + - uid: 12183 components: - type: Transform - pos: 38.306744,-59.476147 + pos: 10.5,-78.5 parent: 2 -- proto: ClothingHeadHelmetAncient - entities: - - uid: 11652 + - uid: 12235 components: - type: Transform - pos: 71.56463,-77.43635 + pos: -50.5,-58.5 parent: 2 -- proto: ClothingMaskBee - entities: - - uid: 5635 + - uid: 12239 components: - type: Transform - pos: 19.479597,5.590736 + pos: -51.5,-58.5 parent: 2 -- proto: ClothingMaskBreath - entities: - - uid: 1763 + - uid: 12259 components: - type: Transform - pos: -52.6127,-32.884636 + pos: -11.5,-56.5 parent: 2 - - uid: 4372 + - uid: 12302 components: - type: Transform - pos: 38.57368,-27.453815 + rot: 3.141592653589793 rad + pos: -22.5,22.5 parent: 2 - - uid: 4760 + - uid: 12309 components: - type: Transform - pos: -26.615105,-25.489788 + pos: -10.5,-54.5 parent: 2 -- proto: ClothingMaskFox - entities: - - uid: 1054 + - uid: 12328 components: - type: Transform - pos: -15.470441,19.607038 + pos: -18.5,12.5 parent: 2 -- proto: ClothingMaskGas - entities: - - uid: 9073 + - uid: 12431 components: - type: Transform - pos: 45.507942,-27.364006 + pos: 34.5,-42.5 parent: 2 -- proto: ClothingMaskWeldingGas - entities: - - uid: 6300 + - uid: 12447 components: - type: Transform - pos: 41.490192,-27.507837 + pos: -37.5,-57.5 parent: 2 -- proto: ClothingNeckBling - entities: - - uid: 13191 + - uid: 12449 components: - type: Transform - pos: 9.609975,6.595586 + pos: 16.5,-11.5 parent: 2 -- proto: ClothingNeckCloakAce - entities: - - uid: 8506 + - uid: 12450 components: - type: Transform - pos: 47.501015,-87.459625 + pos: -49.5,-56.5 parent: 2 -- proto: ClothingNeckCloakAdmin - entities: - - uid: 19975 + - uid: 12476 components: - type: Transform - pos: 61.5,-78.5 + pos: 16.5,-9.5 parent: 2 -- proto: ClothingNeckCloakAro - entities: - - uid: 16222 + - uid: 12742 components: - type: Transform - pos: 21.531446,-49.442505 + pos: -9.5,-94.5 parent: 2 -- proto: ClothingNeckCloakEnby - entities: - - uid: 16221 + - uid: 12796 components: - type: Transform - pos: 24.430853,-59.5613 + pos: 10.5,-86.5 parent: 2 -- proto: ClothingNeckCloakGay - entities: - - uid: 2876 + - uid: 12816 components: - type: Transform - pos: 17.536743,-16.434425 + pos: -1.5,-94.5 parent: 2 -- proto: ClothingNeckCloakLesbian - entities: - - uid: 2118 + - uid: 12817 components: - type: Transform - pos: 29.529152,28.479647 + pos: -6.5,-86.5 parent: 2 -- proto: ClothingNeckCloakMoth - entities: - - uid: 19903 + - uid: 12823 components: - type: Transform - pos: 44.536793,-50.46367 + pos: -0.5,-93.5 parent: 2 -- proto: ClothingNeckCloakPan - entities: - - uid: 19277 + - uid: 12827 components: - type: Transform - pos: 50.483807,-55.407658 + pos: 10.5,-85.5 parent: 2 -- proto: ClothingNeckCloakTrans - entities: - - uid: 7432 + - uid: 12828 components: - type: Transform - pos: 41.510986,-27.452278 + pos: 10.5,-88.5 parent: 2 -- proto: ClothingNeckMantle - entities: - - uid: 3505 + - uid: 12829 components: - type: Transform - pos: -17.641726,30.389639 + rot: 1.5707963267948966 rad + pos: 3.5,-94.5 parent: 2 -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 9275 + - uid: 12831 components: - type: Transform - pos: 19.523642,-13.4389515 + pos: 10.5,-87.5 parent: 2 -- proto: ClothingOuterArmorRiot - entities: - - uid: 6250 + - uid: 12832 components: - type: Transform - pos: -21.230423,6.4757457 + rot: -1.5707963267948966 rad + pos: -3.5,-90.5 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]10%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. - priority: 0 - component: Armor - title: null - - uid: 6885 + - uid: 12834 components: - type: Transform - pos: -21.397089,6.652952 + rot: -1.5707963267948966 rad + pos: -4.5,-90.5 parent: 2 -- proto: ClothingOuterCoatLabOpened - entities: - - uid: 13981 + - uid: 12839 components: - type: Transform - pos: 22.667826,-58.4226 + pos: -6.5,-88.5 parent: 2 -- proto: ClothingOuterCoatLabViro - entities: - - uid: 4560 + - uid: 12845 components: - type: Transform - pos: -11.640305,-26.281458 + pos: -32.5,10.5 parent: 2 -- proto: ClothingOuterCoatPirate - entities: - - uid: 13843 + - uid: 13156 components: - type: Transform - pos: 25.374481,-58.415672 + pos: -11.5,-28.5 parent: 2 -- proto: ClothingOuterHardsuitAncientEVA - entities: - - uid: 11557 + - uid: 13162 components: - type: Transform - pos: 72.44567,-77.43635 + pos: -15.5,-27.5 parent: 2 -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 19589 + - uid: 13165 components: - type: Transform - pos: -20.669172,5.685884 + rot: -1.5707963267948966 rad + pos: -4.5,-22.5 parent: 2 - - uid: 19998 + - uid: 13171 components: - type: Transform - pos: -20.408627,5.5503736 + pos: -42.5,-57.5 parent: 2 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: This decreases your speed by [color=yellow]25%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - It provides the following protection: - - - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]40%[/color]. - - - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]30%[/color]. - - - [color=orange]Explosion[/color] damage reduced by [color=lightblue]60%[/color]. - priority: 0 - component: Armor - title: null -- proto: ClothingOuterPonchoClassic - entities: - - uid: 15742 + - uid: 13176 components: - type: Transform - pos: -38.4234,-55.393444 + pos: -11.5,-54.5 parent: 2 -- proto: ClothingOuterSanta - entities: - - uid: 11183 + - uid: 13205 components: - type: Transform - pos: -22.46055,17.660517 + pos: 23.5,-7.5 parent: 2 - - uid: 14571 + - uid: 13233 components: - type: Transform - pos: -22.377218,17.597973 + pos: -11.5,-55.5 parent: 2 - - uid: 20262 + - uid: 13234 components: - type: Transform - pos: -26.534176,12.553513 + rot: 1.5707963267948966 rad + pos: -25.5,-0.5 parent: 2 - - uid: 20264 + - uid: 13271 components: - type: Transform - pos: -30.587158,11.519642 + pos: -6.5,-85.5 parent: 2 - - uid: 20265 + - uid: 13371 components: - type: Transform - pos: -21.632044,10.782459 + pos: 15.5,-58.5 parent: 2 - - uid: 20268 + - uid: 13677 components: - type: Transform - pos: -27.584208,6.675982 + pos: 15.5,-13.5 parent: 2 - - uid: 20269 + - uid: 13748 components: - type: Transform - pos: -20.623913,5.8064227 + pos: -37.5,-20.5 parent: 2 - - uid: 20270 + - uid: 13852 components: - type: Transform - pos: -20.342663,5.6604877 + pos: 15.5,-17.5 parent: 2 - - uid: 20273 + - uid: 13854 components: - type: Transform - pos: -21.669981,-5.3452077 + pos: -49.5,-49.5 parent: 2 - - uid: 20275 + - uid: 14218 components: - type: Transform - pos: -18.358086,-56.42725 + rot: 3.141592653589793 rad + pos: -19.5,20.5 parent: 2 -- proto: ClothingOuterSuitEmergency - entities: - - uid: 7671 + - uid: 14219 components: - type: Transform - pos: 29.480768,19.627275 + rot: 3.141592653589793 rad + pos: -23.5,20.5 parent: 2 - - uid: 20675 + - uid: 14221 components: - type: Transform - pos: -35.53648,11.655997 + rot: 3.141592653589793 rad + pos: -20.5,20.5 parent: 2 -- proto: ClothingOuterWinterBar - entities: - - uid: 7386 + - uid: 14273 components: - type: Transform - pos: 40.502384,12.611003 + rot: 3.141592653589793 rad + pos: -15.5,20.5 parent: 2 -- proto: ClothingOuterWinterChem - entities: - - uid: 14147 + - uid: 14323 components: - type: Transform - pos: -34.40282,-41.34545 + rot: 3.141592653589793 rad + pos: -17.5,20.5 parent: 2 -- proto: ClothingOuterWinterColorBlue - entities: - - uid: 5082 + - uid: 14337 components: - type: Transform - pos: -36.32764,-20.24317 + rot: -1.5707963267948966 rad + pos: 2.5,19.5 parent: 2 -- proto: ClothingOuterWinterPara - entities: - - uid: 4805 + - uid: 14339 components: - type: Transform - pos: -27.59449,-28.370361 + rot: -1.5707963267948966 rad + pos: 8.5,19.5 parent: 2 -- proto: ClothingOuterWinterSci - entities: - - uid: 16014 + - uid: 14340 components: - type: Transform - pos: 28.62983,-48.427315 + rot: -1.5707963267948966 rad + pos: 7.5,20.5 parent: 2 -- proto: ClothingOuterWinterViro - entities: - - uid: 4654 + - uid: 14359 components: - type: Transform - pos: -11.400722,-26.44824 + rot: -1.5707963267948966 rad + pos: 2.5,18.5 parent: 2 -- proto: ClothingShoesBootsMag - entities: - - uid: 11168 + - uid: 14369 components: - type: Transform - pos: -3.745983,-51.43929 + rot: -1.5707963267948966 rad + pos: 6.5,19.5 parent: 2 - - uid: 11169 + - uid: 14373 components: - type: Transform - pos: -3.4124844,-51.220387 + rot: -1.5707963267948966 rad + pos: 6.5,18.5 parent: 2 -- proto: ClothingShoesHighheelBoots - entities: - - uid: 1257 + - uid: 14639 components: - type: Transform - pos: 17.446417,18.37585 + pos: 27.5,-43.5 parent: 2 -- proto: ClothingShoeSlippersDuck - entities: - - uid: 11860 + - uid: 14972 components: - type: Transform - pos: -10.521948,19.518375 + pos: 10.5,-79.5 parent: 2 -- proto: ClothingUnderSocksCoder - entities: - - uid: 7005 + - uid: 14975 components: - type: Transform - pos: 25.468887,-11.482896 + pos: -7.5,-77.5 parent: 2 -- proto: ClothingUniformColorRainbow - entities: - - uid: 19887 + - uid: 14976 components: - type: Transform - pos: 38.429108,-59.892277 + pos: -7.5,-78.5 parent: 2 -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 3809 + - uid: 14977 components: - type: Transform - pos: 6.641757,-39.371193 + pos: 10.5,-77.5 parent: 2 -- proto: ClothingUniformJumpskirtLawyerBlue - entities: - - uid: 9258 + - uid: 14985 components: - type: Transform - pos: 6.623013,-41.324974 + pos: -7.5,-79.5 parent: 2 -- proto: ClothingUniformJumpskirtTacticalMaid - entities: - - uid: 18078 + - uid: 15020 components: - type: Transform - pos: 13.758658,-8.364376 + pos: 15.5,-57.5 parent: 2 -- proto: ClothingUniformJumpskirtYellowTurtleneckDress - entities: - - uid: 13909 + - uid: 15046 components: - type: Transform - pos: 19.530016,-58.5476 + rot: -1.5707963267948966 rad + pos: -1.5,-90.5 parent: 2 -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 3808 + - uid: 15047 components: - type: Transform - pos: 6.339525,-39.246105 + rot: -1.5707963267948966 rad + pos: 0.5,-90.5 parent: 2 -- proto: ClothingUniformJumpsuitLawyerBlue - entities: - - uid: 9251 + - uid: 15050 components: - type: Transform - pos: 6.3312016,-41.26243 + pos: 3.5,-98.5 parent: 2 -- proto: ClothingUniformJumpsuitReporter - entities: - - uid: 3942 + - uid: 15053 components: - type: Transform - pos: 22.515583,-35.497555 + pos: 1.5,-95.5 parent: 2 -- proto: Cobweb1 - entities: - - uid: 7815 + - uid: 15063 components: - type: Transform - pos: 39.5,12.5 + pos: 3.5,-101.5 parent: 2 - - uid: 9882 + - uid: 15065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,9.5 + pos: 3.5,-100.5 parent: 2 - - uid: 15571 + - uid: 15188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-0.5 + pos: 15.5,-59.5 parent: 2 - - uid: 15851 + - uid: 15197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 + pos: 15.5,-54.5 parent: 2 - - uid: 17545 + - uid: 15298 components: - type: Transform - pos: 13.5,-5.5 + rot: 3.141592653589793 rad + pos: -14.5,20.5 parent: 2 - - uid: 17546 + - uid: 15299 components: - type: Transform - pos: 45.5,-27.5 + pos: 14.5,-56.5 parent: 2 - - uid: 17549 + - uid: 15311 components: - type: Transform - pos: 33.5,-53.5 + pos: 25.5,-14.5 parent: 2 -- proto: Cobweb2 - entities: - - uid: 11858 + - uid: 15314 components: - type: Transform - pos: 19.5,8.5 + pos: -32.5,1.5 parent: 2 - - uid: 17550 + - uid: 15347 components: - type: Transform - pos: 28.5,-48.5 + rot: 1.5707963267948966 rad + pos: -24.5,-0.5 parent: 2 -- proto: ComfyChair - entities: - - uid: 725 + - uid: 15676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-20.5 + rot: 3.141592653589793 rad + pos: -22.5,20.5 parent: 2 - - uid: 726 + - uid: 15678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-22.5 + rot: 3.141592653589793 rad + pos: -16.5,20.5 parent: 2 - - uid: 1702 + - uid: 15791 components: - type: Transform - pos: 10.5,-63.5 + rot: 1.5707963267948966 rad + pos: -59.5,-59.5 parent: 2 - - uid: 1731 + - uid: 15797 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-65.5 + rot: 1.5707963267948966 rad + pos: -60.5,-59.5 parent: 2 - - uid: 2305 + - uid: 15856 components: - type: Transform - pos: 10.5,-11.5 + rot: 3.141592653589793 rad + pos: -21.5,20.5 parent: 2 - - uid: 3470 + - uid: 15926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-38.5 + rot: 3.141592653589793 rad + pos: -56.5,-59.5 parent: 2 - - uid: 3555 + - uid: 16030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-32.5 + pos: 16.5,-1.5 parent: 2 - - uid: 3567 + - uid: 16034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-31.5 + pos: 16.5,-3.5 parent: 2 - - uid: 3591 + - uid: 16041 components: - type: Transform - pos: 11.5,-29.5 + pos: 16.5,-6.5 parent: 2 - - uid: 3592 + - uid: 16107 components: - type: Transform - pos: 15.5,-29.5 + rot: 3.141592653589793 rad + pos: -20.5,22.5 parent: 2 - - uid: 3610 + - uid: 16198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-32.5 + rot: 3.141592653589793 rad + pos: -25.5,20.5 parent: 2 - - uid: 3612 + - uid: 16591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-31.5 + pos: -62.5,-9.5 parent: 2 - - uid: 3621 + - uid: 16592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-13.5 + pos: -62.5,-11.5 parent: 2 - - uid: 3723 + - uid: 16593 components: - type: Transform - pos: 0.5,-43.5 + pos: -63.5,-12.5 parent: 2 - - uid: 3736 + - uid: 16594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-36.5 + pos: -62.5,-12.5 parent: 2 - - uid: 3743 + - uid: 16595 components: - type: Transform - pos: 15.5,-39.5 + pos: -61.5,-12.5 parent: 2 - - uid: 3773 + - uid: 16596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-38.5 + pos: -60.5,-12.5 parent: 2 - - uid: 4057 + - uid: 16597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-50.5 + pos: -62.5,-13.5 parent: 2 - - uid: 4152 + - uid: 16598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-50.5 + pos: -62.5,-15.5 parent: 2 - - uid: 4154 + - uid: 16599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-50.5 + pos: -58.5,-12.5 parent: 2 - - uid: 4508 + - uid: 16600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-50.5 + pos: -57.5,-12.5 parent: 2 - - uid: 5718 + - uid: 16605 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-34.5 + pos: -55.5,-12.5 parent: 2 - - uid: 5862 + - uid: 16607 components: - type: Transform - pos: 30.5,25.5 + rot: 1.5707963267948966 rad + pos: -51.5,-13.5 parent: 2 - - uid: 5868 + - uid: 16610 components: - type: Transform - pos: 30.5,28.5 + pos: -46.5,-12.5 parent: 2 - - uid: 5895 + - uid: 16611 components: - type: Transform - pos: 29.5,25.5 + pos: -45.5,-12.5 parent: 2 - - uid: 7129 + - uid: 16612 components: - type: Transform - pos: 29.5,28.5 + pos: -43.5,-12.5 parent: 2 - - uid: 7131 + - uid: 16613 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,26.5 + pos: -42.5,-12.5 parent: 2 - - uid: 7133 + - uid: 16614 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,26.5 + pos: -41.5,-12.5 parent: 2 - - uid: 7387 + - uid: 16615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,7.5 + pos: -40.5,-12.5 parent: 2 - - uid: 7599 + - uid: 16616 components: - type: Transform - pos: -9.5,-60.5 + pos: -39.5,-12.5 parent: 2 - - uid: 7602 + - uid: 16618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-62.5 + pos: -44.5,-12.5 parent: 2 - - uid: 8041 + - uid: 16710 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-46.5 + pos: 3.5,-96.5 parent: 2 - - uid: 8094 + - uid: 16752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,7.5 + pos: -30.5,18.5 parent: 2 - - uid: 8691 + - uid: 16763 components: - type: Transform - pos: 30.5,42.5 + rot: 3.141592653589793 rad + pos: -57.5,-59.5 parent: 2 - - uid: 10145 + - uid: 16888 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-46.5 + pos: -61.5,-59.5 parent: 2 - - uid: 10980 + - uid: 16890 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-24.5 + pos: -55.5,-59.5 parent: 2 - - uid: 10982 + - uid: 16926 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-24.5 - parent: 2 - - uid: 10983 - components: - - type: Transform - pos: 7.5,-22.5 + pos: -43.5,-54.5 parent: 2 - - uid: 10984 + - uid: 16936 components: - type: Transform - pos: 8.5,-22.5 + rot: 3.141592653589793 rad + pos: -43.5,-51.5 parent: 2 - - uid: 10996 + - uid: 16963 components: - type: Transform - pos: 11.5,-24.5 + rot: -1.5707963267948966 rad + pos: -2.5,-90.5 parent: 2 - - uid: 10997 + - uid: 17035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-26.5 + pos: -8.5,2.5 parent: 2 - - uid: 11916 + - uid: 17036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-56.5 + pos: -7.5,2.5 parent: 2 - - uid: 12789 + - uid: 17037 components: - type: Transform - pos: 8.5,-54.5 + pos: -6.5,2.5 parent: 2 - - uid: 12791 + - uid: 17038 components: - type: Transform - pos: 7.5,-54.5 + pos: -5.5,2.5 parent: 2 - - uid: 13261 + - uid: 17039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-56.5 + pos: -4.5,2.5 parent: 2 - - uid: 15920 + - uid: 17040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-13.5 + pos: -3.5,2.5 parent: 2 - - uid: 16634 + - uid: 17041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-13.5 + pos: -2.5,2.5 parent: 2 -- proto: CommandmentCircuitBoard - entities: - - uid: 16471 + - uid: 17042 components: - type: Transform - pos: -60.976395,-16.360863 + pos: -1.5,2.5 parent: 2 -- proto: CommsComputerCircuitboard - entities: - - uid: 13265 + - uid: 17043 components: - type: Transform - pos: 10.553459,-17.34669 + pos: -0.5,2.5 parent: 2 -- proto: ComputerAlert - entities: - - uid: 1850 + - uid: 17044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-7.5 + pos: 1.5,2.5 parent: 2 - - uid: 6359 + - uid: 17045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-55.5 + pos: 2.5,2.5 parent: 2 - - uid: 14699 + - uid: 17046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-11.5 + pos: 3.5,2.5 parent: 2 -- proto: ComputerAnalysisConsole - entities: - - uid: 4548 + - uid: 17047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-45.5 + pos: 4.5,2.5 parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4541: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver -- proto: ComputerAtmosMonitoring - entities: - - uid: 2340 + - uid: 17048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-56.5 + pos: 0.5,2.5 parent: 2 - - uid: 20126 + - uid: 17065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-8.5 + pos: -30.5,19.5 parent: 2 -- proto: computerBodyScanner - entities: - - uid: 265 + - uid: 17253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-34.5 + pos: 16.5,-8.5 parent: 2 - - uid: 453 + - uid: 17254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,10.5 + pos: 13.5,-16.5 parent: 2 - - uid: 2847 + - uid: 17259 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-26.5 + pos: 3.5,-93.5 parent: 2 - - uid: 13024 + - uid: 17423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-48.5 + pos: 16.5,-12.5 parent: 2 -- proto: ComputerBroken - entities: - - uid: 2188 + - uid: 17485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,14.5 + pos: 16.5,-10.5 parent: 2 - - uid: 7079 + - uid: 17574 components: - type: Transform - pos: 48.5,-85.5 + pos: 14.5,-55.5 parent: 2 - - uid: 8389 + - uid: 17629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-88.5 + rot: 1.5707963267948966 rad + pos: 3.5,-95.5 parent: 2 - - uid: 10690 + - uid: 17737 components: - type: Transform - pos: -33.5,-48.5 + pos: -8.5,-19.5 parent: 2 - - uid: 16455 + - uid: 17744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-12.5 + rot: 3.141592653589793 rad + pos: 43.5,-35.5 parent: 2 - - uid: 20680 + - uid: 17745 components: - type: Transform - pos: -34.5,18.5 + rot: 3.141592653589793 rad + pos: 43.5,-36.5 parent: 2 -- proto: ComputerCargoBounty - entities: - - uid: 2573 + - uid: 17746 components: - type: Transform - pos: -17.5,-55.5 + rot: 3.141592653589793 rad + pos: 43.5,-32.5 parent: 2 - - uid: 4250 + - uid: 17766 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,19.5 + pos: -50.5,22.5 parent: 2 -- proto: ComputerCargoOrders - entities: - - uid: 850 + - uid: 17774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,23.5 + pos: 69.5,2.5 parent: 2 - - uid: 2027 + - uid: 17775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,14.5 + rot: -1.5707963267948966 rad + pos: 70.5,2.5 parent: 2 - - uid: 2426 + - uid: 17776 components: - type: Transform - pos: -18.5,-55.5 + rot: -1.5707963267948966 rad + pos: 65.5,2.5 parent: 2 - - uid: 14297 + - uid: 17853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,16.5 + pos: -30.5,17.5 parent: 2 -- proto: ComputerComms - entities: - - uid: 9723 + - uid: 17858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-57.5 + rot: -1.5707963267948966 rad + pos: -32.5,12.5 parent: 2 -- proto: ComputerCrewMonitoring - entities: - - uid: 4771 + - uid: 17860 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-27.5 + pos: -32.5,7.5 parent: 2 - - uid: 6213 + - uid: 17861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-54.5 + rot: -1.5707963267948966 rad + pos: -32.5,8.5 parent: 2 - - uid: 7501 + - uid: 17862 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-46.5 + pos: -32.5,9.5 parent: 2 - - uid: 8179 + - uid: 18347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-35.5 + pos: -35.5,23.5 parent: 2 - - uid: 13891 + - uid: 18505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,3.5 + rot: 1.5707963267948966 rad + pos: 48.5,-44.5 parent: 2 - - uid: 20606 + - uid: 18616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-3.5 + rot: 1.5707963267948966 rad + pos: 3.5,-92.5 parent: 2 -- proto: ComputerCriminalRecords - entities: - - uid: 625 + - uid: 18634 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,2.5 + pos: 48.5,-49.5 parent: 2 - - uid: 3695 + - uid: 18645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-4.5 + rot: 1.5707963267948966 rad + pos: 48.5,-45.5 parent: 2 - - uid: 7278 + - uid: 18727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,2.5 + pos: 36.5,-54.5 parent: 2 - - uid: 9729 + - uid: 18728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-55.5 + pos: 38.5,-53.5 parent: 2 -- proto: ComputerFrame - entities: - - uid: 7187 + - uid: 18729 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-88.5 + pos: 39.5,-53.5 parent: 2 - - uid: 11859 + - uid: 18730 components: - type: Transform - pos: 47.5,-11.5 + pos: 40.5,-53.5 parent: 2 - - uid: 18761 + - uid: 18731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 74.5,-46.5 + pos: 42.5,-53.5 parent: 2 -- proto: ComputerId - entities: - - uid: 7571 + - uid: 18732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-46.5 + pos: 43.5,-53.5 parent: 2 - - uid: 9720 + - uid: 18733 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-57.5 + pos: 45.5,-52.5 parent: 2 -- proto: ComputerMassMedia - entities: - - uid: 3855 + - uid: 18734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-37.5 + pos: 47.5,-52.5 parent: 2 -- proto: ComputerMedicalRecords - entities: - - uid: 8465 + - uid: 18735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-36.5 + pos: 46.5,-52.5 parent: 2 - - uid: 10149 + - uid: 18736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-43.5 + pos: 49.5,-52.5 parent: 2 -- proto: ComputerPowerMonitoring - entities: - - uid: 2227 + - uid: 18737 components: - type: Transform - pos: -13.5,-13.5 + pos: 51.5,-57.5 parent: 2 - - uid: 2565 + - uid: 18738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-26.5 + pos: 51.5,-58.5 parent: 2 - - uid: 5520 + - uid: 18739 components: - type: Transform - pos: -3.5,-20.5 + pos: 51.5,-59.5 parent: 2 - - uid: 6494 + - uid: 18740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,1.5 + pos: 51.5,-60.5 parent: 2 - - uid: 8518 + - uid: 18741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-11.5 + pos: 51.5,-61.5 parent: 2 - - uid: 8955 + - uid: 18742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,23.5 + pos: 39.5,-61.5 parent: 2 - - uid: 9721 + - uid: 18743 components: - type: Transform - pos: -16.5,-55.5 + pos: 39.5,-60.5 parent: 2 - - uid: 10292 + - uid: 18744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-18.5 + pos: 39.5,-64.5 parent: 2 -- proto: ComputerRadar - entities: - - uid: 5026 + - uid: 18745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-57.5 + pos: 39.5,-65.5 parent: 2 - - uid: 5425 + - uid: 18746 components: - type: Transform - pos: 18.5,31.5 + pos: 39.5,-66.5 parent: 2 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 4271 + - uid: 18747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-24.5 + pos: 51.5,-63.5 parent: 2 - - uid: 4411 + - uid: 18748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-34.5 + pos: 51.5,-64.5 parent: 2 - - uid: 4497 + - uid: 18749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-40.5 + pos: 31.5,-65.5 parent: 2 - - uid: 9731 + - uid: 18750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-52.5 + pos: 31.5,-66.5 parent: 2 -- proto: ComputerRoboticsControl - entities: - - uid: 4356 + - uid: 18751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-27.5 + pos: 31.5,-67.5 parent: 2 - - uid: 6477 + - uid: 18752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-53.5 + pos: 51.5,-52.5 parent: 2 -- proto: ComputerSalvageExpedition - entities: - - uid: 4838 + - uid: 18753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,23.5 + pos: 50.5,-52.5 parent: 2 -- proto: ComputerShuttleCargo - entities: - - uid: 5376 + - uid: 18755 components: - type: Transform - pos: 4.5,26.5 + pos: 58.5,-53.5 parent: 2 -- proto: ComputerSolarControl - entities: - - uid: 1922 + - uid: 18756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-15.5 + pos: 55.5,-54.5 parent: 2 - - uid: 4380 + - uid: 18757 components: - type: Transform - pos: -1.5,-20.5 + pos: 56.5,-54.5 parent: 2 - - uid: 8836 + - uid: 18984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,1.5 + pos: 3.5,-41.5 parent: 2 - - uid: 8953 + - uid: 19158 components: - type: Transform - pos: -29.5,24.5 + rot: -1.5707963267948966 rad + pos: 11.5,-97.5 parent: 2 - - uid: 10430 + - uid: 19159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-53.5 + pos: 3.5,-97.5 parent: 2 -- proto: ComputerStationRecords - entities: - - uid: 4797 + - uid: 19181 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-26.5 + pos: 12.5,-97.5 parent: 2 - - uid: 9730 + - uid: 19184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-56.5 + rot: -1.5707963267948966 rad + pos: 10.5,-97.5 parent: 2 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 9722 + - uid: 19203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-53.5 + pos: 3.5,-99.5 parent: 2 - - uid: 13090 + - uid: 19212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-3.5 + rot: -1.5707963267948966 rad + pos: 13.5,-97.5 parent: 2 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 8337 + - uid: 19232 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-39.5 + pos: -0.5,-90.5 parent: 2 -- proto: ComputerTelevision - entities: - - uid: 1043 + - uid: 19242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-44.5 + pos: 5.5,-95.5 parent: 2 - - uid: 7593 + - uid: 19267 components: - type: Transform - pos: -11.5,-46.5 + pos: -0.5,-94.5 parent: 2 - - uid: 8136 + - uid: 19269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-46.5 + pos: -1.5,-93.5 parent: 2 - - uid: 17190 + - uid: 19271 components: - type: Transform - pos: 27.5,-27.5 + pos: 2.5,-95.5 parent: 2 - - uid: 17247 + - uid: 19272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 + rot: -1.5707963267948966 rad + pos: -5.5,-90.5 parent: 2 -- proto: ComputerTelevisionCircuitboard - entities: - - uid: 18914 + - uid: 19867 components: - type: Transform - pos: 46.514275,-72.41335 + pos: 52.5,-53.5 parent: 2 -- proto: ConveyorBelt - entities: - - uid: 1065 + - uid: 19868 components: - type: Transform - pos: 2.5,29.5 + pos: 52.5,-54.5 parent: 2 - - uid: 1066 + - uid: 19869 components: - type: Transform - pos: 6.5,27.5 + pos: 53.5,-54.5 parent: 2 - - uid: 1903 + - uid: 20082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-32.5 + pos: 32.5,-76.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 1933 + - uid: 20084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-32.5 + pos: 31.5,-76.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 2671 + - uid: 20085 components: - type: Transform - pos: 6.5,26.5 + pos: 31.5,-75.5 parent: 2 - - uid: 2960 + - uid: 20086 components: - type: Transform - pos: 6.5,29.5 + pos: 30.5,-76.5 parent: 2 - - uid: 3487 + - uid: 20087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-32.5 + pos: 30.5,-75.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 3871 + - uid: 20088 components: - type: Transform - pos: 6.5,28.5 + pos: 29.5,-76.5 parent: 2 - - uid: 5314 + - uid: 20089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-58.5 + pos: 29.5,-75.5 parent: 2 - - uid: 5321 + - uid: 20090 components: - type: Transform - pos: 2.5,26.5 + pos: 32.5,-75.5 parent: 2 - - uid: 5354 + - uid: 20091 components: - type: Transform - pos: 2.5,27.5 + pos: 30.5,-74.5 parent: 2 - - uid: 5362 + - uid: 20094 components: - type: Transform - pos: 2.5,28.5 + pos: 30.5,-70.5 parent: 2 - - uid: 6837 + - uid: 20095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-32.5 + pos: 30.5,-69.5 parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - uid: 8507 + - uid: 20096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,21.5 + pos: 30.5,-68.5 parent: 2 - - uid: 9114 + - uid: 20147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,-58.5 + pos: 47.5,-37.5 parent: 2 - - uid: 9115 + - uid: 20148 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-58.5 + pos: 46.5,-37.5 parent: 2 - - uid: 9352 + - uid: 20219 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-58.5 + pos: 3.5,-91.5 parent: 2 - - uid: 14292 + - uid: 20499 components: - type: Transform - pos: 6.5,16.5 + rot: -1.5707963267948966 rad + pos: -34.5,12.5 parent: 2 - - uid: 14293 + - uid: 20657 components: - type: Transform - pos: 6.5,14.5 + pos: -30.5,16.5 parent: 2 - - uid: 14332 + - uid: 20830 components: - type: Transform - pos: 6.5,15.5 + pos: -42.5,-48.5 parent: 2 - - uid: 18127 + - uid: 20831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-58.5 + pos: -41.5,-48.5 parent: 2 - - uid: 18131 + - uid: 20836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-58.5 + rot: -1.5707963267948966 rad + pos: 15.5,-62.5 parent: 2 -- proto: CorporateCircuitBoard - entities: - - uid: 16463 + - uid: 21000 components: - type: Transform - pos: -61.414112,-16.256622 + pos: -32.5,-15.5 parent: 2 -- proto: CrateArtifactContainer - entities: - - uid: 4533 + - uid: 21001 components: - type: Transform - pos: 38.5,-40.5 + pos: -31.5,-15.5 parent: 2 - - uid: 4534 + - uid: 21119 components: - type: Transform - pos: 39.5,-40.5 + pos: -28.5,-15.5 parent: 2 -- proto: CrateCandles - entities: - - uid: 583 + - uid: 21120 components: - type: Transform - pos: 39.5,-7.5 + pos: -26.5,-15.5 parent: 2 -- proto: CrateCoffin - entities: - - uid: 5813 + - uid: 21142 components: - type: Transform - pos: 43.5,-10.5 + pos: -27.5,-15.5 parent: 2 - - uid: 6942 + - uid: 21157 components: - type: Transform - pos: 43.5,-11.5 + pos: -23.5,-15.5 parent: 2 -- proto: CrateContrabandStorageSecure - entities: - - uid: 19590 + - uid: 21158 components: - type: Transform - pos: -21.5,-5.5 + pos: -22.5,-15.5 parent: 2 -- proto: CrateEmptySpawner - entities: - - uid: 14 + - uid: 21159 components: - type: Transform - pos: 77.5,-40.5 + pos: -21.5,-15.5 parent: 2 - - uid: 994 + - uid: 21160 components: - type: Transform - pos: -0.5,18.5 + pos: -20.5,-15.5 parent: 2 - - uid: 4618 + - uid: 21161 components: - type: Transform - pos: 28.5,-37.5 + pos: -33.5,-19.5 parent: 2 - - uid: 7658 + - uid: 21162 components: - type: Transform - pos: 12.5,-64.5 + pos: -33.5,-18.5 parent: 2 - - uid: 7659 + - uid: 21163 components: - type: Transform - pos: 12.5,-65.5 + pos: -33.5,-17.5 parent: 2 - - uid: 17457 + - uid: 21164 components: - type: Transform - pos: -2.5,23.5 + pos: -33.5,-16.5 parent: 2 - - uid: 17458 + - uid: 21166 components: - type: Transform - pos: 9.5,20.5 + pos: -30.5,-19.5 parent: 2 - - uid: 17536 + - uid: 21167 components: - type: Transform - pos: 14.5,1.5 + pos: -29.5,-19.5 parent: 2 - - uid: 17537 + - uid: 21168 components: - type: Transform - pos: 14.5,2.5 + pos: -34.5,-19.5 parent: 2 - - uid: 18063 + - uid: 21169 components: - type: Transform - pos: 5.5,24.5 + pos: -36.5,-19.5 parent: 2 - - uid: 18066 + - uid: 21170 components: - type: Transform - pos: 5.5,18.5 + pos: -37.5,-19.5 parent: 2 - - uid: 18760 + - uid: 21172 components: - type: Transform - pos: 67.5,-42.5 + pos: -38.5,-20.5 parent: 2 - - uid: 18805 + - uid: 21173 components: - type: Transform - pos: 84.5,-16.5 + pos: -39.5,-20.5 parent: 2 - - uid: 18840 + - uid: 21174 components: - type: Transform - pos: 89.5,-29.5 + pos: -34.5,-14.5 parent: 2 - - uid: 18842 + - uid: 21175 components: - type: Transform - pos: 72.5,-63.5 + pos: -34.5,-15.5 parent: 2 -- proto: CrateEngineeringAMEJar - entities: - - uid: 19547 + - uid: 21177 components: - type: Transform - pos: -7.5,-17.5 + pos: -33.5,-14.5 parent: 2 -- proto: CrateEngineeringAMEShielding - entities: - - uid: 17719 + - uid: 21178 components: - type: Transform - pos: -10.5,-17.5 + pos: -32.5,-11.5 parent: 2 -- proto: CrateEngineeringCableBulk - entities: - - uid: 7426 + - uid: 21179 components: - type: Transform - pos: 28.5,-51.5 + pos: -33.5,-11.5 parent: 2 -- proto: CrateEngineeringShuttle - entities: - - uid: 14822 + - uid: 21180 components: - type: Transform - pos: -33.5,-55.5 + pos: -32.5,-9.5 parent: 2 -- proto: CrateEngineeringSolar - entities: - - uid: 1701 + - uid: 21181 components: - type: Transform - pos: 26.5,-16.5 + pos: -32.5,-8.5 parent: 2 - - uid: 3556 + - uid: 21197 components: - type: Transform - pos: -45.5,-55.5 + pos: -36.5,-48.5 parent: 2 - - uid: 5322 + - uid: 21198 components: - type: Transform - pos: -31.5,22.5 + pos: -37.5,-48.5 parent: 2 - - uid: 20713 + - uid: 21200 components: - type: Transform - pos: -9.5,-13.5 + pos: -38.5,-47.5 parent: 2 -- proto: CrateFilledSpawner - entities: - - uid: 5411 + - uid: 21201 components: - type: Transform - pos: 21.5,14.5 + pos: -38.5,-46.5 parent: 2 - - uid: 6111 + - uid: 21202 components: - type: Transform - pos: 5.5,20.5 + pos: -38.5,-45.5 parent: 2 - - uid: 8878 + - uid: 21203 components: - type: Transform - pos: 48.5,-13.5 + pos: -38.5,-43.5 parent: 2 - - uid: 11267 + - uid: 21204 components: - type: Transform - pos: -19.5,-16.5 + pos: -38.5,-44.5 parent: 2 - - uid: 17448 + - uid: 21205 components: - type: Transform - pos: 3.5,22.5 + pos: -38.5,-40.5 parent: 2 - - uid: 17449 + - uid: 21206 components: - type: Transform - pos: 3.5,23.5 + pos: -37.5,-41.5 parent: 2 - - uid: 17450 + - uid: 21207 components: - type: Transform - pos: 5.5,23.5 + pos: -38.5,-42.5 parent: 2 - - uid: 17451 + - uid: 21213 components: - type: Transform - pos: 5.5,22.5 + pos: -40.5,-48.5 parent: 2 - - uid: 17453 + - uid: 21214 components: - type: Transform - pos: 5.5,19.5 + pos: -44.5,-48.5 parent: 2 - - uid: 17454 + - uid: 21315 components: - type: Transform - pos: 3.5,19.5 + pos: 28.5,-3.5 parent: 2 - - uid: 17455 + - uid: 21316 components: - type: Transform - pos: 3.5,20.5 + pos: 27.5,-3.5 parent: 2 - - uid: 18806 + - uid: 21318 components: - type: Transform - pos: 83.5,-16.5 + pos: 26.5,-3.5 parent: 2 -- proto: CrateFreezer - entities: - - uid: 3241 + - uid: 21362 components: - type: Transform - pos: -2.5,-32.5 + rot: -1.5707963267948966 rad + pos: -31.5,14.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: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - uid: 18543 + - uid: 21400 components: - type: Transform - pos: -26.5,-22.5 + rot: 3.141592653589793 rad + pos: -63.5,-53.5 parent: 2 -- proto: CrateMaterialPlasma - entities: - - uid: 6438 + - uid: 21453 components: - type: Transform - pos: -60.5,-9.5 + rot: 3.141592653589793 rad + pos: -63.5,-56.5 parent: 2 - - uid: 9490 + - uid: 21454 components: - type: Transform - pos: 39.5,-36.5 + rot: 3.141592653589793 rad + pos: -63.5,-55.5 parent: 2 -- proto: CrateMedicalScrubs - entities: - - uid: 12724 + - uid: 21455 components: - type: Transform - pos: -45.5,-38.5 + rot: 3.141592653589793 rad + pos: -63.5,-54.5 parent: 2 -- proto: CrateMedicalSurgery - entities: - - uid: 4374 + - uid: 21460 components: - type: Transform - pos: 37.5,-28.5 + rot: 3.141592653589793 rad + pos: -64.5,-54.5 parent: 2 - - uid: 5518 + - uid: 21461 components: - type: Transform - pos: -46.5,-31.5 + rot: 3.141592653589793 rad + pos: -65.5,-54.5 parent: 2 -- proto: CrateNPCHamlet - entities: - - uid: 20764 + - uid: 21462 components: - type: Transform - pos: -16.5,-50.5 + rot: 3.141592653589793 rad + pos: -66.5,-54.5 parent: 2 -- proto: CrateSecurityTrackingMindshieldImplants - entities: - - uid: 4184 + - uid: 21463 components: - type: Transform - pos: -22.5,2.5 + rot: 3.141592653589793 rad + pos: -67.5,-54.5 parent: 2 -- proto: CrateServiceBoozeDispenser - entities: - - uid: 2764 + - uid: 21464 components: - type: Transform - pos: 39.5,11.5 + rot: 3.141592653589793 rad + pos: -68.5,-54.5 parent: 2 -- proto: CrateServiceBureaucracy - entities: - - uid: 3167 + - uid: 21465 components: - type: Transform - pos: -22.5,-46.5 + rot: 3.141592653589793 rad + pos: -69.5,-54.5 parent: 2 - - uid: 17597 + - uid: 21466 components: - type: Transform - pos: 0.5,18.5 + rot: 3.141592653589793 rad + pos: -70.5,-54.5 parent: 2 -- proto: CrateServiceCustomSmokable - entities: - - uid: 19900 + - uid: 21467 components: - type: Transform - pos: 47.5,-56.5 + rot: 3.141592653589793 rad + pos: -71.5,-54.5 parent: 2 -- proto: CrateServiceHolidayLights - entities: - - uid: 8448 + - uid: 21468 components: - type: Transform - pos: 3.5,18.5 + rot: 3.141592653589793 rad + pos: -72.5,-54.5 parent: 2 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 9408 + - uid: 21469 components: - type: Transform - pos: 29.5,0.5 + rot: 3.141592653589793 rad + pos: -73.5,-54.5 parent: 2 -- proto: CrateSurgery - entities: - - uid: 1779 + - uid: 21470 components: - type: Transform - pos: -49.5,-27.5 + rot: 3.141592653589793 rad + pos: -74.5,-54.5 parent: 2 - - uid: 5643 + - uid: 21471 components: - type: Transform - pos: -49.5,-33.5 + rot: 3.141592653589793 rad + pos: -75.5,-54.5 parent: 2 -- proto: CrateTrashCartFilled - entities: - - uid: 3860 + - uid: 21472 components: - type: Transform - pos: -0.5,-29.5 + rot: 3.141592653589793 rad + pos: -75.5,-55.5 parent: 2 - - uid: 9427 + - uid: 21473 components: - type: Transform - pos: 25.5,5.5 + rot: 3.141592653589793 rad + pos: -75.5,-56.5 parent: 2 -- proto: CrateTrashCartJani - entities: - - uid: 1041 + - uid: 21474 components: - type: Transform - pos: 24.5,5.5 + rot: 3.141592653589793 rad + pos: -71.5,-56.5 parent: 2 -- proto: CrayonBox - entities: - - uid: 3589 + - uid: 21475 components: - type: Transform - pos: 7.546462,-31.401642 + rot: 3.141592653589793 rad + pos: -71.5,-55.5 parent: 2 -- proto: CrayonMime - entities: - - uid: 5407 + - uid: 21476 components: - type: Transform - pos: -11.287609,19.532997 + rot: 3.141592653589793 rad + pos: -71.5,-53.5 parent: 2 -- proto: CrayonRed - entities: - - uid: 19011 + - uid: 21477 components: - type: Transform - pos: 19.457184,-53.361088 + rot: 3.141592653589793 rad + pos: -71.5,-52.5 parent: 2 -- proto: Crematorium - entities: - - uid: 7059 + - uid: 21478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-9.5 + rot: 3.141592653589793 rad + pos: -75.5,-52.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: CrewMonitoringServer - entities: - - uid: 1255 + - uid: 21479 components: - type: Transform - pos: 20.5,1.5 + rot: 3.141592653589793 rad + pos: -75.5,-53.5 parent: 2 -- proto: CrowbarYellow - entities: - - uid: 13864 + - uid: 21480 components: - type: Transform - pos: 19.764744,-58.731625 + rot: 3.141592653589793 rad + pos: -67.5,-53.5 parent: 2 -- proto: CryogenicSleepUnit - entities: - - uid: 10414 + - uid: 21481 components: - type: Transform - pos: -34.5,-5.5 + rot: 3.141592653589793 rad + pos: -67.5,-52.5 parent: 2 -- proto: CryogenicSleepUnitSpawner - entities: - - uid: 1260 + - uid: 21482 components: - type: Transform - pos: 15.5,-46.5 + rot: 3.141592653589793 rad + pos: -67.5,-55.5 parent: 2 - - uid: 11726 + - uid: 21483 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-48.5 + pos: -67.5,-56.5 parent: 2 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 1261 + - uid: 21484 components: - type: Transform - pos: 15.5,-48.5 + rot: 3.141592653589793 rad + pos: -63.5,-52.5 parent: 2 - - uid: 11727 + - uid: 21679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-47.5 + pos: 41.5,5.5 parent: 2 - - uid: 18712 + - uid: 21756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-46.5 + rot: -1.5707963267948966 rad + pos: -36.5,9.5 parent: 2 -- proto: CryoPod - entities: - - uid: 4976 + - uid: 21822 components: - type: Transform - pos: -35.5,-20.5 + rot: 1.5707963267948966 rad + pos: 19.5,-3.5 parent: 2 - - uid: 4977 + - uid: 21823 components: - type: Transform - pos: -33.5,-20.5 + rot: 1.5707963267948966 rad + pos: 21.5,-3.5 parent: 2 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 4956 + - uid: 21824 components: - type: Transform - pos: -32.588287,-20.351446 + rot: 1.5707963267948966 rad + pos: 18.5,-3.5 parent: 2 - - uid: 4959 + - uid: 21841 components: - type: Transform - pos: -32.359005,-20.205511 + pos: 13.5,-1.5 parent: 2 -- proto: CultAltarSpawner - entities: - - uid: 6698 + - uid: 21842 components: - type: Transform - pos: 20.5,-52.5 + pos: 12.5,-1.5 parent: 2 -- proto: CurtainsBlackOpen - entities: - - uid: 2453 + - uid: 21850 components: - type: Transform - pos: 38.5,-5.5 + rot: -1.5707963267948966 rad + pos: -32.5,13.5 parent: 2 - - uid: 3197 + - uid: 21893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-41.5 + rot: -1.5707963267948966 rad + pos: -30.5,14.5 parent: 2 - - uid: 7295 + - uid: 21941 components: - type: Transform - pos: 38.5,-1.5 + rot: -1.5707963267948966 rad + pos: -56.5,-53.5 parent: 2 - - uid: 15677 + - uid: 21944 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-14.5 + pos: -55.5,-53.5 parent: 2 - - uid: 15700 + - uid: 22088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-8.5 + rot: -1.5707963267948966 rad + pos: -30.5,15.5 parent: 2 - - uid: 17568 + - uid: 22414 components: - type: Transform - pos: 6.5,-33.5 + pos: 24.5,16.5 parent: 2 -- proto: CurtainsBlueOpen - entities: - - uid: 2578 + - uid: 22416 components: - type: Transform - pos: -4.5,-26.5 + pos: 25.5,14.5 parent: 2 - - uid: 15618 + - uid: 22466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-38.5 + pos: 28.5,18.5 parent: 2 -- proto: CurtainsCyanOpen - entities: - - uid: 3193 + - uid: 22467 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-39.5 + pos: 25.5,18.5 parent: 2 -- proto: CurtainsGreenOpen - entities: - - uid: 4765 + - uid: 22468 components: - type: Transform - pos: -30.5,-46.5 + pos: 28.5,17.5 parent: 2 - - uid: 4914 + - uid: 22469 components: - type: Transform - pos: -29.5,-44.5 + pos: 29.5,18.5 parent: 2 -- proto: CurtainsOrangeOpen - entities: - - uid: 6421 + - uid: 22641 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,19.5 + pos: 43.5,14.5 parent: 2 -- proto: CurtainSpawner - entities: - - uid: 17570 + - uid: 22642 components: - type: Transform - pos: 5.5,-27.5 + rot: -1.5707963267948966 rad + pos: 42.5,14.5 parent: 2 -- proto: CurtainsPurpleOpen +- proto: CelloInstrument entities: - - uid: 11353 + - uid: 5831 components: - type: Transform - pos: 26.5,-34.5 + pos: 5.497679,-33.305023 parent: 2 -- proto: CurtainsRedOpen +- proto: Chair entities: - - uid: 1705 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,1.5 - parent: 2 - - uid: 11588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,3.5 - parent: 2 - - uid: 14818 + - uid: 7 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,12.5 + rot: 3.141592653589793 rad + pos: -14.5,14.5 parent: 2 - - uid: 17653 + - uid: 273 components: - type: Transform - pos: 30.5,11.5 + pos: 7.5,-18.5 parent: 2 - - uid: 20654 + - uid: 307 components: - type: Transform - pos: 28.5,14.5 + rot: -1.5707963267948966 rad + pos: 12.5,-16.5 parent: 2 - - uid: 20655 + - uid: 313 components: - type: Transform - pos: 29.5,14.5 + rot: 3.141592653589793 rad + pos: -30.5,2.5 parent: 2 -- proto: d20Dice - entities: - - uid: 16991 + - uid: 353 components: - type: Transform - pos: 20.413567,-48.967503 + pos: -30.5,4.5 parent: 2 -- proto: d6Dice - entities: - - uid: 6543 + - uid: 493 components: - type: Transform - pos: 0.6303221,24.546352 + rot: -1.5707963267948966 rad + pos: -26.5,2.5 parent: 2 - - uid: 7323 + - uid: 500 components: - type: Transform - pos: 0.70327437,23.795832 + rot: 1.5707963267948966 rad + pos: -28.5,0.5 parent: 2 - - uid: 9003 + - uid: 585 components: - type: Transform - pos: -0.526502,23.57693 + rot: -1.5707963267948966 rad + pos: 56.5,-40.5 parent: 2 - - uid: 11291 + - uid: 1135 components: - type: Transform - pos: 22.316435,-40.18328 + rot: 1.5707963267948966 rad + pos: -57.5,-54.5 parent: 2 - - uid: 11292 + - uid: 1296 components: - type: Transform - pos: 22.608246,-40.42303 + rot: -1.5707963267948966 rad + pos: 34.5,11.5 parent: 2 - - uid: 17279 + - uid: 1743 components: - type: Transform - pos: 8.486209,-23.492792 + rot: 1.5707963267948966 rad + pos: 50.5,-39.5 parent: 2 - - uid: 17793 + - uid: 2044 components: - type: Transform - pos: 7.569087,-23.232195 + rot: 3.141592653589793 rad + pos: 13.5,-60.5 parent: 2 -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 4880 + - uid: 2535 components: - type: Transform - pos: 7.4465623,-33.43011 + pos: -9.5,-24.5 parent: 2 -- proto: DefaultStationBeacon - entities: - - uid: 15751 + - uid: 2992 components: - type: Transform - pos: 32.5,36.5 + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 parent: 2 - - type: NavMapBeacon - text: Docking Arm -- proto: DefaultStationBeaconAI - entities: - - uid: 5136 + - uid: 3048 components: - type: Transform - pos: -61.5,-15.5 + rot: -1.5707963267948966 rad + pos: -35.5,-72.5 parent: 2 - - type: NavMapBeacon - text: AI Upload - - type: WarpPoint - location: AI Upload - - uid: 19164 + - uid: 3189 components: - type: Transform - pos: -61.5,-9.5 + rot: -1.5707963267948966 rad + pos: -35.5,-73.5 parent: 2 - - type: NavMapBeacon - text: AI Power - - type: WarpPoint - location: AI Power -- proto: DefaultStationBeaconAICore - entities: - - uid: 5150 + - uid: 3411 components: - type: Transform - pos: -66.5,-12.5 + pos: 1.5,12.5 parent: 2 -- proto: DefaultStationBeaconAISatellite - entities: - - uid: 4927 + - uid: 4038 components: - type: Transform - pos: -52.5,-12.5 + rot: 1.5707963267948966 rad + pos: -8.5,-71.5 parent: 2 -- proto: DefaultStationBeaconAME - entities: - - uid: 4329 + - uid: 4243 components: - type: Transform - pos: -10.5,-19.5 + rot: -1.5707963267948966 rad + pos: 11.5,-68.5 parent: 2 -- proto: DefaultStationBeaconAnomalyGenerator - entities: - - uid: 11028 + - uid: 4259 components: - type: Transform - pos: 40.5,-36.5 + rot: -1.5707963267948966 rad + pos: 11.5,-67.5 parent: 2 -- proto: DefaultStationBeaconArmory - entities: - - uid: 558 + - uid: 4318 components: - type: Transform - pos: -21.5,4.5 + rot: 1.5707963267948966 rad + pos: -31.5,-79.5 parent: 2 -- proto: DefaultStationBeaconArrivals - entities: - - uid: 11766 + - uid: 4423 components: - type: Transform - pos: 1.5,-49.5 + rot: -1.5707963267948966 rad + pos: 27.5,-38.5 parent: 2 -- proto: DefaultStationBeaconArtifactLab - entities: - - uid: 15778 + - uid: 4600 components: - type: Transform - pos: 34.5,-43.5 + pos: -30.5,-30.5 parent: 2 -- proto: DefaultStationBeaconAtmospherics - entities: - - uid: 15717 + - uid: 4609 components: - type: Transform - pos: -1.5,-2.5 + rot: 3.141592653589793 rad + pos: -30.5,-29.5 parent: 2 -- proto: DefaultStationBeaconBar - entities: - - uid: 15718 + - uid: 4662 components: - type: Transform - pos: -3.5,-44.5 + rot: 3.141592653589793 rad + pos: -27.5,5.5 parent: 2 -- proto: DefaultStationBeaconBotany - entities: - - uid: 15719 + - uid: 4768 components: - type: Transform - pos: -17.5,-35.5 + pos: 6.5,-18.5 parent: 2 -- proto: DefaultStationBeaconBridge - entities: - - uid: 15720 + - uid: 5336 components: - type: Transform - pos: -17.5,-54.5 + pos: -14.5,16.5 parent: 2 -- proto: DefaultStationBeaconBrig - entities: - - uid: 13861 + - uid: 5698 components: - type: Transform - pos: -25.5,-9.5 + pos: 0.5,12.5 parent: 2 -- proto: DefaultStationBeaconCaptainsQuarters - entities: - - uid: 15722 + - uid: 5809 components: - type: Transform - pos: -24.5,-51.5 + rot: 1.5707963267948966 rad + pos: 52.5,-38.5 parent: 2 -- proto: DefaultStationBeaconCargoBay - entities: - - uid: 17684 + - uid: 5820 components: - type: Transform - pos: 4.5,24.5 + pos: 53.5,-38.5 parent: 2 -- proto: DefaultStationBeaconCargoReception - entities: - - uid: 3903 + - uid: 5827 components: - type: Transform - pos: 4.5,18.5 + rot: -1.5707963267948966 rad + pos: 56.5,-39.5 parent: 2 -- proto: DefaultStationBeaconCERoom - entities: - - uid: 15724 + - uid: 5842 components: - type: Transform - pos: -7.5,-25.5 + rot: 1.5707963267948966 rad + pos: -30.5,-10.5 parent: 2 -- proto: DefaultStationBeaconChapel - entities: - - uid: 5796 + - uid: 5868 components: - type: Transform - pos: 36.5,-14.5 + rot: 3.141592653589793 rad + pos: 17.5,5.5 parent: 2 -- proto: DefaultStationBeaconChemistry - entities: - - uid: 15727 + - uid: 5904 components: - type: Transform - pos: -31.5,-35.5 + rot: -1.5707963267948966 rad + pos: 40.5,-15.5 parent: 2 -- proto: DefaultStationBeaconCMORoom - entities: - - uid: 19163 + - uid: 5920 components: - type: Transform - pos: -41.5,-36.5 + rot: -1.5707963267948966 rad + pos: 40.5,-13.5 parent: 2 -- proto: DefaultStationBeaconCryosleep - entities: - - uid: 15728 + - uid: 5973 components: - type: Transform - pos: 14.5,-47.5 + rot: 1.5707963267948966 rad + pos: 17.5,-48.5 parent: 2 -- proto: DefaultStationBeaconDetectiveRoom - entities: - - uid: 7305 + - uid: 5981 components: - type: Transform - pos: 37.5,2.5 + rot: 3.141592653589793 rad + pos: 18.5,-50.5 parent: 2 -- proto: DefaultStationBeaconDisposals - entities: - - uid: 12181 + - uid: 5982 components: - type: Transform - pos: 29.5,-56.5 + rot: 3.141592653589793 rad + pos: 19.5,-50.5 parent: 2 -- proto: DefaultStationBeaconDorms - entities: - - uid: 15729 + - uid: 5983 components: - type: Transform - pos: 6.5,-42.5 + rot: 3.141592653589793 rad + pos: 20.5,-50.5 parent: 2 -- proto: DefaultStationBeaconEngineering - entities: - - uid: 13157 + - uid: 5984 components: - type: Transform - pos: -8.5,-13.5 + rot: -1.5707963267948966 rad + pos: 21.5,-49.5 parent: 2 -- proto: DefaultStationBeaconEscapePod - entities: - - uid: 16430 + - uid: 5985 components: - type: Transform - pos: -41.5,-58.5 + rot: 1.5707963267948966 rad + pos: 17.5,-49.5 parent: 2 -- proto: DefaultStationBeaconEvac - entities: - - uid: 8793 + - uid: 6110 components: - type: Transform - pos: 50.5,-21.5 + pos: -27.5,7.5 parent: 2 -- proto: DefaultStationBeaconEVAStorage - entities: - - uid: 19097 + - uid: 6293 components: - type: Transform - pos: -4.5,-54.5 + pos: 54.5,-38.5 parent: 2 -- proto: DefaultStationBeaconGravGen - entities: - - uid: 15752 + - uid: 6710 components: - type: Transform - pos: 23.5,-9.5 + pos: -29.5,-30.5 parent: 2 -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 15753 + - uid: 7015 components: - type: Transform - pos: -14.5,-47.5 + rot: -1.5707963267948966 rad + pos: 34.5,12.5 parent: 2 -- proto: DefaultStationBeaconHOSRoom - entities: - - uid: 2880 + - uid: 7126 components: - type: Transform - pos: -21.5,11.5 + rot: 1.5707963267948966 rad + pos: -35.5,-40.5 parent: 2 -- proto: DefaultStationBeaconJanitorsCloset - entities: - - uid: 15755 + - uid: 7265 components: - type: Transform - pos: 28.5,2.5 + pos: -12.5,15.5 parent: 2 -- proto: DefaultStationBeaconKitchen - entities: - - uid: 15756 + - uid: 7441 components: - type: Transform - pos: -7.5,-32.5 + rot: -1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 -- proto: DefaultStationBeaconLawOffice - entities: - - uid: 15757 + - uid: 7508 components: - type: Transform - pos: 28.5,11.5 + rot: -1.5707963267948966 rad + pos: -18.5,-40.5 parent: 2 -- proto: DefaultStationBeaconLibrary - entities: - - uid: 15766 + - uid: 8197 components: - type: Transform - pos: 14.5,-37.5 + rot: 3.141592653589793 rad + pos: -12.5,13.5 parent: 2 - - uid: 15780 + - uid: 8520 components: - type: Transform - pos: 22.5,-36.5 + rot: 1.5707963267948966 rad + pos: 47.5,-4.5 parent: 2 - - type: NavMapBeacon - text: Reporter - - type: WarpPoint - location: Reporter -- proto: DefaultStationBeaconMedbay - entities: - - uid: 7722 + - uid: 8596 components: - - type: MetaData - name: station beacon - type: Transform - pos: -32.5,-45.5 + rot: -1.5707963267948966 rad + pos: 45.5,-2.5 parent: 2 - - type: NavMapBeacon - text: Psychologist - - uid: 15758 + - uid: 8597 components: - type: Transform - pos: -37.5,-24.5 + rot: 1.5707963267948966 rad + pos: 43.5,-2.5 parent: 2 -- proto: DefaultStationBeaconMedical - entities: - - uid: 18476 + - uid: 8622 components: - type: Transform - pos: -51.5,-43.5 + pos: 48.5,-20.5 parent: 2 - - type: NavMapBeacon - text: Virology - - type: WarpPoint - location: Virology -- proto: DefaultStationBeaconMorgue - entities: - - uid: 15759 + - uid: 8667 components: - type: Transform - pos: -41.5,-47.5 + pos: -12.5,9.5 parent: 2 -- proto: DefaultStationBeaconPermaBrig - entities: - - uid: 3705 + - uid: 8837 components: - type: Transform - pos: -39.5,-3.5 + rot: 1.5707963267948966 rad + pos: 45.5,1.5 parent: 2 -- proto: DefaultStationBeaconPowerBank - entities: - - uid: 11424 + - uid: 8981 components: - type: Transform - pos: -2.5,-21.5 + rot: 1.5707963267948966 rad + pos: 26.5,-12.5 parent: 2 -- proto: DefaultStationBeaconRDRoom - entities: - - uid: 3230 + - uid: 9210 components: - type: Transform - pos: 27.5,-33.5 + pos: 47.5,-20.5 parent: 2 -- proto: DefaultStationBeaconRND - entities: - - uid: 15764 + - uid: 9211 components: - type: Transform - pos: 20.5,-27.5 + rot: 3.141592653589793 rad + pos: 47.5,-18.5 parent: 2 -- proto: DefaultStationBeaconRobotics - entities: - - uid: 15765 + - uid: 9212 components: - type: Transform - pos: 36.5,-26.5 + pos: 51.5,-20.5 parent: 2 -- proto: DefaultStationBeaconSalvage - entities: - - uid: 1545 + - uid: 9214 components: - type: Transform - pos: 14.5,23.5 + rot: 3.141592653589793 rad + pos: 47.5,-22.5 parent: 2 -- proto: DefaultStationBeaconScience - entities: - - uid: 12219 + - uid: 9302 components: - type: Transform - pos: 32.5,-30.5 + rot: 3.141592653589793 rad + pos: 48.5,-22.5 parent: 2 -- proto: DefaultStationBeaconSecurity - entities: - - uid: 2354 + - uid: 9304 components: - type: Transform - pos: -29.5,11.5 + rot: 3.141592653589793 rad + pos: 49.5,-22.5 parent: 2 - - type: NavMapBeacon - text: Brig Med - - type: WarpPoint - location: Brig Med - - uid: 19161 + - uid: 9305 components: - type: Transform - pos: -25.5,-0.5 + rot: 3.141592653589793 rad + pos: 50.5,-22.5 parent: 2 -- proto: DefaultStationBeaconServerRoom - entities: - - uid: 18571 + - uid: 9319 components: - type: Transform - pos: 31.5,-35.5 + pos: 49.5,-20.5 parent: 2 -- proto: DefaultStationBeaconSolars - entities: - - uid: 5574 + - uid: 9321 components: - type: Transform - pos: -30.5,23.5 + pos: 50.5,-20.5 parent: 2 - - uid: 15747 + - uid: 9322 components: - type: Transform - pos: -45.5,-54.5 + rot: 3.141592653589793 rad + pos: 51.5,-22.5 parent: 2 - - uid: 15769 + - uid: 9327 components: - type: Transform - pos: 45.5,2.5 + rot: 3.141592653589793 rad + pos: 48.5,-18.5 parent: 2 -- proto: DefaultStationBeaconSurgery - entities: - - uid: 16070 + - uid: 9328 components: - type: Transform - pos: -51.5,-30.5 + rot: 3.141592653589793 rad + pos: 49.5,-18.5 parent: 2 -- proto: DefaultStationBeaconTechVault - entities: - - uid: 10240 + - uid: 9329 components: - type: Transform - pos: 14.5,-18.5 + rot: 3.141592653589793 rad + pos: 50.5,-18.5 parent: 2 -- proto: DefaultStationBeaconTEG - entities: - - uid: 1249 + - uid: 9330 components: - type: Transform - pos: 0.5,-8.5 + rot: 3.141592653589793 rad + pos: 51.5,-18.5 parent: 2 -- proto: DefaultStationBeaconTelecoms - entities: - - uid: 15771 + - uid: 9334 components: - type: Transform - pos: 21.5,1.5 + rot: 3.141592653589793 rad + pos: 27.5,-13.5 parent: 2 -- proto: DefaultStationBeaconToolRoom - entities: - - uid: 15773 + - uid: 9348 components: - type: Transform - pos: -16.5,-24.5 + rot: 1.5707963267948966 rad + pos: 47.5,-24.5 parent: 2 -- proto: DefaultStationBeaconVault - entities: - - uid: 15774 + - uid: 9349 components: - type: Transform - pos: 9.5,4.5 + rot: -1.5707963267948966 rad + pos: 49.5,-24.5 parent: 2 -- proto: DefaultStationBeaconWardensOffice - entities: - - uid: 19160 + - uid: 9625 components: - type: Transform - pos: -20.5,-4.5 + pos: -26.5,-30.5 parent: 2 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 447 + - uid: 10116 components: - type: Transform - pos: -30.5,12.5 + pos: -27.5,-30.5 parent: 2 - - uid: 7793 + - uid: 10229 components: - type: Transform - pos: -46.5,-29.5 + rot: 3.141592653589793 rad + pos: -26.5,-29.5 parent: 2 - - uid: 8615 + - uid: 10681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-26.5 + rot: -1.5707963267948966 rad + pos: -55.5,-54.5 parent: 2 - - uid: 9365 + - uid: 10916 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-19.5 + pos: 18.5,5.5 parent: 2 - - uid: 9875 + - uid: 10951 components: - type: Transform - pos: -15.5,-49.5 + rot: 1.5707963267948966 rad + pos: -8.5,-68.5 parent: 2 - - uid: 14298 + - uid: 10954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-23.5 + rot: 1.5707963267948966 rad + pos: -8.5,-67.5 parent: 2 - - uid: 15927 + - uid: 11173 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-23.5 + rot: 1.5707963267948966 rad + pos: -8.5,-70.5 parent: 2 - - uid: 20143 + - uid: 11183 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-34.5 + pos: -2.5,-14.5 parent: 2 -- proto: DeployableBarrier - entities: - - uid: 664 + - uid: 11281 components: - type: Transform - pos: -29.5,-1.5 + rot: 3.141592653589793 rad + pos: -27.5,-29.5 parent: 2 - - uid: 666 + - uid: 11967 components: - type: Transform - pos: -28.5,-1.5 + rot: 3.141592653589793 rad + pos: -29.5,-29.5 parent: 2 -- proto: DeskBell - entities: - - uid: 1746 + - uid: 12231 components: - type: Transform - pos: 4.357331,15.490134 + rot: -1.5707963267948966 rad + pos: 43.5,15.5 parent: 2 - - uid: 2381 + - uid: 12664 components: - type: Transform - pos: -19.44472,-2.4078405 + rot: 1.5707963267948966 rad + pos: 23.5,8.5 parent: 2 - - uid: 3445 + - uid: 12710 components: - type: Transform - pos: -21.404652,-38.42122 + rot: -1.5707963267948966 rad + pos: 25.5,8.5 parent: 2 - - uid: 20291 + - uid: 13021 components: - type: Transform - pos: 21.485853,-23.412918 + pos: -44.5,-20.5 parent: 2 - - uid: 20292 + - uid: 13022 components: - type: Transform - pos: -14.384096,-14.383596 + pos: -43.5,-20.5 parent: 2 -- proto: DiceBag - entities: - - uid: 11294 + - uid: 13023 components: - type: Transform - pos: 19.172066,-48.195263 + pos: -42.5,-20.5 parent: 2 -- proto: DimLightBulb - entities: - - uid: 3511 + - uid: 15109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.46949,-0.30218017 + pos: 8.5,-87.5 parent: 2 - - uid: 5405 + - uid: 15112 components: - type: Transform - pos: -23.289038,22.108608 + rot: 1.5707963267948966 rad + pos: -20.5,-40.5 parent: 2 - - uid: 5438 + - uid: 15310 components: - type: Transform - pos: -23.729557,22.108608 + rot: 3.141592653589793 rad + pos: -12.5,7.5 parent: 2 -- proto: DiseaseDiagnoser - entities: - - uid: 8222 + - uid: 15463 components: - type: Transform - pos: -49.5,-40.5 + pos: 21.5,-20.5 parent: 2 -- proto: DiseaseSwab - entities: - - uid: 7191 + - uid: 15464 components: - type: Transform - pos: -52.67026,-41.73423 + pos: 22.5,-20.5 parent: 2 - - uid: 7957 + - uid: 15659 components: - type: Transform - pos: -52.628574,-41.94271 + rot: 3.141592653589793 rad + pos: 39.5,19.5 parent: 2 - - uid: 17702 + - uid: 15750 components: - type: Transform - pos: 48.393944,-59.417625 + rot: 3.141592653589793 rad + pos: 38.5,19.5 parent: 2 - - uid: 17703 + - uid: 16071 components: - type: Transform - pos: 48.60238,-59.469746 + rot: 1.5707963267948966 rad + pos: -35.5,-42.5 parent: 2 - - uid: 19980 + - uid: 16163 components: - type: Transform - pos: -38.368652,2.5475187 + pos: 39.5,21.5 parent: 2 - - uid: 20000 + - uid: 16258 components: - type: Transform - pos: -38.62907,2.599638 + pos: -40.5,-1.5 parent: 2 -- proto: DisposalBend - entities: - - uid: 2957 + - uid: 17643 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-22.5 + pos: -6.5,21.5 parent: 2 - - uid: 3899 + - uid: 17644 components: - type: Transform - pos: 10.5,16.5 + rot: 3.141592653589793 rad + pos: -7.5,21.5 parent: 2 - - uid: 4053 + - uid: 17697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-16.5 + rot: 1.5707963267948966 rad + pos: 42.5,-59.5 parent: 2 - - uid: 4264 + - uid: 17698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-27.5 + rot: 1.5707963267948966 rad + pos: 42.5,-60.5 parent: 2 - - uid: 4290 + - uid: 18867 components: - type: Transform - pos: -8.5,-34.5 + rot: 3.141592653589793 rad + pos: 4.5,10.5 parent: 2 - - uid: 4456 + - uid: 18868 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-30.5 + pos: 5.5,10.5 parent: 2 - - uid: 4709 + - uid: 18869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-37.5 + rot: 3.141592653589793 rad + pos: 3.5,10.5 parent: 2 - - uid: 4846 + - uid: 19188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-25.5 + pos: 13.5,-58.5 parent: 2 - - uid: 4876 + - uid: 19201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-22.5 + pos: 9.5,-87.5 parent: 2 - - uid: 5056 + - uid: 20422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-32.5 + pos: -38.5,-4.5 parent: 2 - - uid: 5061 + - uid: 20423 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-27.5 + pos: -37.5,-4.5 parent: 2 - - uid: 5062 + - uid: 20424 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-25.5 + pos: -36.5,-4.5 parent: 2 - - uid: 5180 + - uid: 21813 components: - type: Transform - pos: -7.5,-41.5 + rot: -1.5707963267948966 rad + pos: -51.5,-53.5 parent: 2 - - uid: 5235 + - uid: 21814 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,2.5 + pos: 22.5,5.5 parent: 2 - - uid: 5679 + - uid: 21815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,17.5 + rot: -1.5707963267948966 rad + pos: 24.5,5.5 parent: 2 - - uid: 6298 + - uid: 22517 components: - type: Transform - pos: 35.5,-18.5 + rot: -1.5707963267948966 rad + pos: -14.5,-40.5 parent: 2 - - uid: 6567 + - uid: 22702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-23.5 + pos: -19.5,-18.5 parent: 2 - - uid: 6824 + - uid: 22703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-46.5 + pos: -18.5,-18.5 parent: 2 - - uid: 6855 + - uid: 22704 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-29.5 + rot: 1.5707963267948966 rad + pos: -17.5,-13.5 parent: 2 - - uid: 7174 + - uid: 22705 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,23.5 + pos: -17.5,-14.5 parent: 2 - - uid: 7231 + - uid: 22776 components: - type: Transform - pos: -24.5,-42.5 + rot: 1.5707963267948966 rad + pos: -16.5,-40.5 parent: 2 - - uid: 7672 +- proto: ChairFolding + entities: + - uid: 981 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-34.5 + rot: 3.141592653589793 rad + pos: 0.5,22.5 parent: 2 - - uid: 8092 + - uid: 4299 components: - type: Transform - pos: 16.5,8.5 + rot: 3.141592653589793 rad + pos: -13.606078,-18.412556 parent: 2 - - uid: 8095 + - uid: 4320 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-21.5 + pos: -12.553472,-17.38059 parent: 2 - - uid: 8391 + - uid: 5356 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-47.5 + pos: -0.5,22.5 parent: 2 - - uid: 9892 + - uid: 9001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-55.5 + pos: 38.535606,21.511303 parent: 2 - - uid: 9893 + - uid: 11869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-47.5 + rot: 3.141592653589793 rad + pos: 67.56035,-63.3134 parent: 2 - - uid: 9942 + - uid: 12391 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-37.5 + pos: 32.62121,-76.3481 parent: 2 - - uid: 10698 + - uid: 12531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-21.5 + pos: -26.495022,23.598328 parent: 2 - - uid: 11009 + - uid: 14245 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-55.5 + rot: -1.5707963267948966 rad + pos: 1.5,24.5 parent: 2 - - uid: 11067 + - uid: 15292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-41.5 + rot: -1.5707963267948966 rad + pos: 1.5,23.5 parent: 2 - - uid: 11096 + - uid: 15940 components: - type: Transform - pos: 24.5,-43.5 + rot: 3.141592653589793 rad + pos: 14.45649,-5.334695 parent: 2 - - uid: 11129 + - uid: 16206 components: - type: Transform - pos: 41.5,8.5 + pos: 68.44139,-61.385746 parent: 2 - - uid: 11139 + - uid: 18833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-19.5 + rot: 3.141592653589793 rad + pos: 96.49125,-32.383053 parent: 2 - - uid: 11144 + - uid: 21444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-42.5 + rot: -1.5707963267948966 rad + pos: -32.534172,-20.28666 parent: 2 - - uid: 11145 + - uid: 22312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-42.5 + rot: 1.5707963267948966 rad + pos: 21.512619,19.602446 parent: 2 - - uid: 11154 + - uid: 22313 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-58.5 + pos: 23.47563,19.5841 parent: 2 - - uid: 11437 + - uid: 22613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-4.5 + pos: 20.500767,19.519604 parent: 2 - - uid: 12156 + - uid: 22615 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-34.5 + pos: 20.469517,17.597729 parent: 2 - - uid: 12173 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 18834 components: - type: Transform - pos: -12.5,-38.5 + rot: 1.5707963267948966 rad + pos: 93.481026,-25.317404 parent: 2 - - uid: 12174 +- proto: ChairOfficeDark + entities: + - uid: 145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-38.5 + rot: 1.5707963267948966 rad + pos: 31.554409,-34.438152 parent: 2 - - uid: 12179 + - uid: 271 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-0.5 + pos: 48.551674,-8.388277 parent: 2 - - uid: 12196 + - uid: 342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-66.5 + pos: 46.413918,-32.460354 parent: 2 - - uid: 12218 + - uid: 463 components: - type: Transform - pos: -22.5,-33.5 + rot: -1.5707963267948966 rad + pos: -26.467375,12.56866 parent: 2 - - uid: 12230 + - uid: 858 components: - type: Transform - pos: -35.5,-22.5 + rot: -1.5707963267948966 rad + pos: 0.53031445,19.5489 parent: 2 - - uid: 12278 + - uid: 914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-42.5 + rot: -1.5707963267948966 rad + pos: 29.369165,11.450459 parent: 2 - - uid: 12287 + - uid: 985 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,2.5 + pos: 8.638504,23.593374 parent: 2 - - uid: 12325 + - uid: 2229 components: - type: Transform - pos: 36.5,-25.5 + rot: -1.5707963267948966 rad + pos: -13.517146,-14.363466 parent: 2 - - uid: 13025 + - uid: 2536 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-43.5 + pos: -8.486219,-26.40157 parent: 2 - - uid: 13055 + - uid: 2730 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-43.5 + pos: 18.482578,12.543639 parent: 2 - - uid: 13070 + - uid: 2878 + components: + - type: Transform + pos: 16.481586,14.607573 + parent: 2 + - uid: 3438 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,10.5 + pos: -20.471191,-38.39636 parent: 2 - - uid: 13124 + - uid: 3606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-48.5 + pos: 22.534935,-43.371696 parent: 2 - - uid: 13125 + - uid: 3856 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-48.5 + rot: 1.5707963267948966 rad + pos: 21.497955,-37.360138 parent: 2 - - uid: 13260 + - uid: 4190 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-3.5 + pos: 19.495235,-24.55801 parent: 2 - - uid: 14594 + - uid: 4357 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-6.5 + pos: 33.51684,-27.290215 parent: 2 - - uid: 14724 + - uid: 4498 components: - type: Transform - pos: 46.5,-39.5 + rot: -1.5707963267948966 rad + pos: 36.41877,-40.356174 parent: 2 - - uid: 14725 + - uid: 4582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-39.5 + pos: 35.68654,-45.333687 parent: 2 - - uid: 15686 + - uid: 5153 components: - type: Transform - pos: 32.5,-20.5 + rot: 1.5707963267948966 rad + pos: -25.459198,-51.18674 parent: 2 - - uid: 15940 + - uid: 5740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-56.5 + pos: 36.457546,-2.4914064 parent: 2 - - uid: 16370 + - uid: 6063 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-16.5 + pos: 36.624294,-4.3468614 parent: 2 - - uid: 16371 + - uid: 6163 components: - type: Transform - pos: -38.5,-12.5 + rot: 1.5707963267948966 rad + pos: 38.543137,2.6380181 parent: 2 - - uid: 17010 + - uid: 6601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-46.5 + pos: -28.47198,-25.341808 parent: 2 - - uid: 17462 + - uid: 7418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,11.5 + rot: 3.141592653589793 rad + pos: -40.459618,-53.280823 parent: 2 - - uid: 17511 + - uid: 7532 components: - type: Transform - pos: 12.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.527239,-44.349594 parent: 2 - - uid: 17512 + - uid: 7557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,20.5 + rot: 1.5707963267948966 rad + pos: -19.45379,-44.412136 parent: 2 - - uid: 17513 + - uid: 7570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,20.5 + rot: 3.141592653589793 rad + pos: -13.5,-46.5 parent: 2 - - uid: 17523 + - uid: 7675 components: - type: Transform - pos: 15.5,11.5 + pos: 4.5026083,16.648575 parent: 2 - - uid: 18103 + - uid: 8636 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-37.5 + pos: 18.439327,1.646283 parent: 2 - - uid: 18105 + - uid: 8675 components: - type: Transform - pos: 34.5,-30.5 + rot: 1.5707963267948966 rad + pos: 27.426058,10.683699 parent: 2 - - uid: 18106 + - uid: 8739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-30.5 + rot: -1.5707963267948966 rad + pos: 25.522947,0.75847006 parent: 2 - - uid: 18550 + - uid: 9031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-21.5 + rot: -1.5707963267948966 rad + pos: 21.519394,-40.42816 parent: 2 - - uid: 18573 + - uid: 9358 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-36.5 + pos: -20.466059,-3.4152722 parent: 2 - - uid: 18622 + - uid: 9793 components: - type: Transform - pos: 19.5,-37.5 + pos: -18.350943,-56.397285 parent: 2 - - uid: 18649 + - uid: 9794 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-3.5 + pos: -15.307766,-56.313892 parent: 2 - - uid: 18650 + - uid: 9795 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-3.5 + pos: -19.59114,-56.293045 parent: 2 - - uid: 18856 + - uid: 9796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-37.5 + rot: -1.5707963267948966 rad + pos: -19.497345,-53.457745 parent: 2 - - uid: 20308 + - uid: 9797 components: - type: Transform - pos: 20.5,-20.5 + rot: 1.5707963267948966 rad + pos: -15.224391,-52.759342 parent: 2 - - uid: 20309 + - uid: 10214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-26.5 + pos: -27.543253,-8.208982 parent: 2 - - uid: 20310 + - uid: 11230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-24.5 + rot: -1.5707963267948966 rad + pos: -49.474953,-45.30314 parent: 2 - - uid: 20312 + - uid: 11550 components: - type: Transform - pos: 46.5,-21.5 + rot: 1.5707963267948966 rad + pos: -51.438198,-11.359901 parent: 2 - - uid: 20337 + - uid: 12035 components: - type: Transform rot: 3.141592653589793 rad - pos: 41.5,-4.5 - parent: 2 - - uid: 20338 - components: - - type: Transform - pos: 45.5,-4.5 + pos: -28.42853,-34.31103 parent: 2 - - uid: 20339 + - uid: 12339 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-53.5 + pos: -27.444351,-22.321272 parent: 2 - - uid: 20340 + - uid: 12930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-25.5 + rot: -1.5707963267948966 rad + pos: -58.541805,-30.342693 parent: 2 - - uid: 20341 + - uid: 12940 components: - type: Transform - pos: 48.5,-25.5 + rot: 1.5707963267948966 rad + pos: -54.421295,-28.385447 parent: 2 - - uid: 20342 + - uid: 13075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-52.5 + pos: -48.451073,-21.408466 parent: 2 - - uid: 20343 + - uid: 13076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-52.5 + rot: 3.141592653589793 rad + pos: -47.429733,-23.3668 parent: 2 - - uid: 20344 + - uid: 13340 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-53.5 + pos: 27.486774,-18.330626 parent: 2 - - uid: 20345 + - uid: 14116 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-54.5 + rot: 1.5707963267948966 rad + pos: -43.414894,-22.46213 parent: 2 - - uid: 20373 + - uid: 14186 components: - type: Transform - pos: 31.5,-3.5 + rot: -1.5707963267948966 rad + pos: -41.520638,-46.383194 parent: 2 -- proto: DisposalJunction - entities: - - uid: 3213 + - uid: 14535 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-28.5 + pos: -3.5106664,-21.31229 parent: 2 - - uid: 4465 + - uid: 14536 components: - type: Transform - pos: -7.5,-44.5 + rot: 3.141592653589793 rad + pos: -1.4385903,-21.32861 parent: 2 - - uid: 4892 + - uid: 15792 components: - type: Transform - pos: 29.5,-55.5 + rot: -1.5707963267948966 rad + pos: -57.518234,-60.342995 parent: 2 - - uid: 4949 + - uid: 17148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-6.5 + rot: 1.5707963267948966 rad + pos: -38.466614,-53.402744 parent: 2 - - uid: 4957 + - uid: 21761 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-25.5 + pos: 21.511818,3.5986362 parent: 2 - - uid: 5447 +- proto: ChairPilotSeat + entities: + - uid: 405 components: - type: Transform - pos: 11.5,17.5 + rot: 3.141592653589793 rad + pos: 1.5,-84.5 parent: 2 - - uid: 6916 + - uid: 4866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,11.5 + pos: 47.5,-87.5 parent: 2 - - uid: 7192 +- proto: ChairRitual + entities: + - uid: 6689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-21.5 + rot: 3.141592653589793 rad + pos: 20.405823,-54.259743 parent: 2 - - uid: 9336 + - type: Pullable + prevFixedRotation: True + - uid: 6690 components: - type: Transform - pos: -23.5,-38.5 + rot: 3.141592653589793 rad + pos: 21.614756,-54.27017 parent: 2 - - uid: 10307 + - uid: 6691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-21.5 + rot: 3.141592653589793 rad + pos: 19.509544,-54.311863 parent: 2 - - uid: 11056 +- proto: ChairWood + entities: + - uid: 5946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-41.5 + rot: -1.5707963267948966 rad + pos: -9.522023,-39.41736 parent: 2 - - uid: 11057 + - uid: 9272 components: - type: Transform - pos: 48.5,-37.5 + rot: 3.141592653589793 rad + pos: 14.477526,-51.48397 parent: 2 - - uid: 11071 + - uid: 11457 components: - type: Transform - pos: -23.5,-30.5 + rot: 1.5707963267948966 rad + pos: -8.476615,-38.440464 parent: 2 - - uid: 11150 + - uid: 11472 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,11.5 + pos: -6.6215286,-38.39877 parent: 2 - - uid: 11830 + - uid: 11700 components: - type: Transform - pos: 41.5,6.5 + rot: -1.5707963267948966 rad + pos: -9.532445,-38.447933 parent: 2 - - uid: 12071 + - uid: 11701 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-21.5 + pos: -11.325001,-38.510475 parent: 2 - - uid: 12175 + - uid: 15116 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,8.5 + rot: 1.5707963267948966 rad + pos: -8.434928,-39.430737 parent: 2 - - uid: 12229 + - uid: 16650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-30.5 + rot: -1.5707963267948966 rad + pos: -6.517309,-39.399464 parent: 2 - - uid: 13036 + - uid: 21865 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-43.5 + pos: -11.304156,-39.51117 parent: 2 - - uid: 20299 +- proto: CheapLighter + entities: + - uid: 20278 components: - type: Transform - pos: -15.5,-1.5 + pos: -0.6716547,-52.415966 parent: 2 -- proto: DisposalJunctionFlipped +- proto: CheckerBoard entities: - - uid: 3248 + - uid: 3712 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-48.5 + pos: 13.5153,-32.39743 parent: 2 - - uid: 3914 +- proto: ChemDispenser + entities: + - uid: 10460 components: - type: Transform - pos: 32.5,15.5 + pos: -29.5,-38.5 parent: 2 - - uid: 4779 + - uid: 12053 components: - type: Transform - pos: 29.5,-54.5 + pos: -35.5,-37.5 parent: 2 - - uid: 5169 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 1331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-41.5 + pos: -29.057194,-46.390995 parent: 2 - - uid: 6873 +- proto: ChemistryEmptyBottle03 + entities: + - uid: 7111 components: - type: Transform - pos: 45.5,-16.5 + pos: 41.36574,-10.112856 parent: 2 - - uid: 8090 +- proto: ChemistryHotplate + entities: + - uid: 12037 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,2.5 + pos: -30.5,-36.5 parent: 2 - - uid: 8093 +- proto: ChemMaster + entities: + - uid: 12031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-21.5 + pos: -30.5,-38.5 parent: 2 - - uid: 8320 + - uid: 12050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-21.5 + pos: -34.5,-37.5 parent: 2 - - uid: 9890 +- proto: ChessBoard + entities: + - uid: 3711 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-47.5 + pos: 11.503945,-30.39604 parent: 2 - - uid: 9891 + - uid: 12554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-47.5 + rot: 3.141592653589793 rad + pos: -12.468615,8.584222 parent: 2 - - uid: 11109 +- proto: ChurchBell + entities: + - uid: 7099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-43.5 + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 parent: 2 - - uid: 11149 +- proto: ChurchOrganInstrument + entities: + - uid: 5786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-41.5 + rot: -1.5707963267948966 rad + pos: 34.5,-9.5 parent: 2 - - uid: 12153 +- proto: Cigar + entities: + - uid: 4661 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-21.5 + pos: -27.764887,-46.23464 parent: 2 - - uid: 12160 +- proto: CigaretteSpent + entities: + - uid: 707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-41.5 + pos: -12.708114,16.927711 parent: 2 - - uid: 12195 + - uid: 8528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-58.5 + pos: 47.263664,-5.226495 parent: 2 - - uid: 12217 + - uid: 8529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-30.5 + rot: -1.5707963267948966 rad + pos: 48.02446,-5.309886 parent: 2 - - uid: 12232 + - uid: 8530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-30.5 + rot: 3.141592653589793 rad + pos: 48.628925,-5.393277 parent: 2 - - uid: 18098 + - uid: 8531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-32.5 + pos: 48.264164,-5.705994 parent: 2 - - uid: 20290 + - uid: 8532 components: - type: Transform - pos: -16.5,-12.5 + pos: 47.552822,-5.7639065 parent: 2 -- proto: DisposalMachineFrame - entities: - - uid: 18765 + - uid: 8533 components: - type: Transform - pos: 79.5,-46.5 + pos: 47.82379,-4.210745 parent: 2 -- proto: DisposalPipe - entities: - - uid: 344 + - uid: 8534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-55.5 + pos: 47.375652,-4.106506 parent: 2 - - uid: 482 + - uid: 8535 components: - type: Transform - pos: 10.5,-54.5 + rot: 3.141592653589793 rad + pos: 46.75034,-5.461613 parent: 2 - - uid: 819 + - uid: 8536 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-51.5 + pos: 47.177635,-5.816026 parent: 2 - - uid: 1028 + - uid: 8537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-12.5 + rot: 3.141592653589793 rad + pos: 48.313618,-5.5345807 parent: 2 - - uid: 1354 + - uid: 8539 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-25.5 + pos: 48.824287,-4.5651574 parent: 2 - - uid: 1928 + - uid: 8868 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-46.5 + pos: 48.750854,-5.6496964 parent: 2 - - uid: 1932 + - uid: 18988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-18.5 + pos: 27.633686,-28.791403 parent: 2 - - uid: 2388 + - uid: 18989 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-4.5 + pos: 27.779593,-28.603773 parent: 2 - - uid: 2429 +- proto: CigarGold + entities: + - uid: 5608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-16.5 + pos: 46.37376,-33.116898 parent: 2 - - uid: 2445 +- proto: CigarGoldCase + entities: + - uid: 1915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-16.5 + pos: -30.487106,-64.386795 parent: 2 - - uid: 2694 + - uid: 20240 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-48.5 + pos: -24.514952,-51.179676 parent: 2 - - uid: 2893 +- proto: CigarSpent + entities: + - uid: 706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-25.5 + pos: -14.617033,15.569173 parent: 2 - - uid: 2903 + - uid: 4978 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-25.5 + pos: -27.3897,-46.380573 parent: 2 - - uid: 2905 + - uid: 5612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-48.5 - parent: 2 - - uid: 2955 + parent: 5611 + - type: Physics + canCollide: False + - uid: 5714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-12.5 + pos: 52.710236,-39.433784 parent: 2 - - uid: 2959 +- proto: CigCartonBlack + entities: + - uid: 8519 components: - type: Transform - pos: 10.5,-39.5 + pos: 47.50337,-3.3606157 parent: 2 - - uid: 3052 +- proto: CigPackBlack + entities: + - uid: 8522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-48.5 + pos: 48.399647,-4.3404627 parent: 2 - - uid: 3071 +- proto: CigPackGreen + entities: + - uid: 6142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-48.5 + pos: 27.353765,-12.522836 parent: 2 - - uid: 3162 +- proto: CircuitImprinter + entities: + - uid: 4192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-48.5 + pos: 19.5,-29.5 parent: 2 - - uid: 3164 +- proto: CleanerDispenser + entities: + - uid: 5745 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-48.5 - parent: 2 - - uid: 3233 - components: - - type: Transform - pos: 10.5,-55.5 + pos: 29.5,0.5 parent: 2 - - uid: 3234 +- proto: ClosetBombFilled + entities: + - uid: 4471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-32.5 + pos: 26.5,-43.5 parent: 2 - - uid: 3380 + - uid: 14051 components: - type: Transform - pos: 10.5,-38.5 + pos: -24.5,12.5 parent: 2 - - uid: 3381 +- proto: ClosetChefFilled + entities: + - uid: 2729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-46.5 + pos: -3.5,-30.5 parent: 2 - - uid: 3454 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-21.5 + pos: -6.5,-59.5 parent: 2 - - uid: 3484 + - uid: 2332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-41.5 + pos: 24.5,10.5 parent: 2 - - uid: 3521 + - uid: 2532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,11.5 + pos: -32.5,-78.5 parent: 2 - - uid: 3566 + - uid: 2757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-17.5 + pos: -34.5,-11.5 parent: 2 - - uid: 3576 + - uid: 3033 components: - type: Transform - pos: 29.5,-57.5 + pos: -32.5,-77.5 parent: 2 - - uid: 3581 + - uid: 3165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-34.5 + pos: 36.5,-32.5 parent: 2 - - uid: 3636 + - uid: 3527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-30.5 + pos: -15.5,-18.5 parent: 2 - - uid: 3685 + - uid: 3578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-29.5 + pos: 37.5,-32.5 parent: 2 - - uid: 3686 + - uid: 3585 components: - type: Transform - pos: -35.5,-28.5 + pos: 30.5,-52.5 parent: 2 - - uid: 3688 + - uid: 4057 components: - type: Transform - pos: 46.5,-22.5 + pos: 11.5,-75.5 parent: 2 - - uid: 3689 + - uid: 4111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-29.5 + pos: 11.5,-74.5 parent: 2 - - uid: 3724 + - uid: 4270 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-31.5 + pos: 41.5,17.5 parent: 2 - - uid: 3735 + - uid: 4332 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-51.5 + pos: -3.5,12.5 parent: 2 - - uid: 3892 + - uid: 6827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-22.5 + pos: 50.5,-26.5 parent: 2 - - uid: 3902 + - uid: 7597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,14.5 + pos: -4.5,12.5 parent: 2 - - uid: 3927 + - uid: 7600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-12.5 + pos: -15.5,-19.5 parent: 2 - - uid: 3928 + - uid: 7866 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-12.5 + pos: -49.5,-32.5 parent: 2 - - uid: 3994 + - uid: 9337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-27.5 + pos: 51.5,-26.5 parent: 2 - - uid: 4067 + - uid: 10026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-25.5 + pos: 44.5,-18.5 parent: 2 - - uid: 4118 + - uid: 10578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-25.5 + pos: -8.5,-75.5 parent: 2 - - uid: 4119 + - uid: 10953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-43.5 + pos: -8.5,-74.5 parent: 2 - - uid: 4147 + - uid: 11321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-38.5 + pos: -58.5,-53.5 parent: 2 - - uid: 4196 + - uid: 11564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-41.5 + pos: 38.5,-52.5 parent: 2 - - uid: 4226 + - uid: 13119 components: - type: Transform - pos: -7.5,-45.5 + pos: -47.5,-41.5 parent: 2 - - uid: 4235 + - uid: 14053 components: - type: Transform - pos: 10.5,-27.5 + pos: -47.5,-40.5 parent: 2 - - uid: 4253 + - uid: 14979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-16.5 + pos: 11.5,-60.5 parent: 2 - - uid: 4318 + - uid: 14982 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-26.5 + pos: 11.5,-59.5 parent: 2 - - uid: 4375 + - uid: 16306 components: - type: Transform - pos: -8.5,-36.5 + pos: -32.5,-65.5 parent: 2 - - uid: 4376 + - uid: 18550 components: - type: Transform - pos: -7.5,-43.5 + pos: 15.5,-11.5 parent: 2 - - uid: 4382 + - uid: 18572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-4.5 + pos: 15.5,-10.5 parent: 2 - - uid: 4385 + - uid: 18847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-21.5 + pos: 52.5,-63.5 parent: 2 - - uid: 4387 + - uid: 19762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-28.5 + pos: 59.5,-50.5 parent: 2 - - uid: 4388 + - uid: 19890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-26.5 + pos: 61.5,-52.5 parent: 2 - - uid: 4390 + - uid: 21615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-29.5 + pos: -53.5,-60.5 parent: 2 - - uid: 4391 + - uid: 21616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-27.5 + pos: -52.5,-60.5 parent: 2 - - uid: 4426 + - uid: 21994 components: - type: Transform - pos: -7.5,-54.5 + pos: 23.5,10.5 parent: 2 - - uid: 4442 + - uid: 22037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-27.5 + pos: -36.5,11.5 parent: 2 - - uid: 4448 + - uid: 22047 components: - type: Transform - pos: -23.5,-39.5 + pos: 37.5,15.5 parent: 2 - - uid: 4449 + - uid: 22048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-47.5 + pos: 36.5,15.5 parent: 2 - - uid: 4452 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 2790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-28.5 + pos: -34.5,-12.5 parent: 2 - - uid: 4476 + - uid: 2973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,17.5 + pos: -32.5,-75.5 parent: 2 - - uid: 4494 + - uid: 4153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-6.5 + pos: 13.5,-55.5 parent: 2 - - uid: 4511 + - uid: 5375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-22.5 + pos: 29.5,19.5 parent: 2 - - uid: 4623 + - uid: 9982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-23.5 + pos: 59.5,-51.5 parent: 2 - - uid: 4629 + - uid: 10027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-25.5 + pos: 44.5,-19.5 parent: 2 - - uid: 4656 + - uid: 11269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-27.5 + pos: -36.5,13.5 parent: 2 - - uid: 4687 + - uid: 11562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,15.5 + pos: 39.5,-52.5 parent: 2 - - uid: 4702 + - uid: 18543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-21.5 + pos: 15.5,-9.5 parent: 2 - - uid: 4704 + - uid: 18848 components: - type: Transform - pos: 19.5,-38.5 + pos: 52.5,-64.5 parent: 2 - - uid: 4708 + - uid: 19891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-48.5 + pos: 61.5,-54.5 parent: 2 - - uid: 4713 + - uid: 21614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-44.5 + pos: -51.5,-60.5 parent: 2 - - uid: 4857 +- proto: ClosetFireFilled + entities: + - uid: 63 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-22.5 + pos: -6.5,-60.5 parent: 2 - - uid: 4865 + - uid: 2758 components: - type: Transform - pos: -8.5,-37.5 + pos: -34.5,-13.5 parent: 2 - - uid: 4868 + - uid: 3039 components: - type: Transform - pos: -8.5,-38.5 + pos: -32.5,-76.5 parent: 2 - - uid: 4878 + - uid: 3532 components: - type: Transform - pos: -8.5,-39.5 + pos: -8.5,-73.5 parent: 2 - - uid: 4910 + - uid: 4580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-41.5 + pos: 37.5,-42.5 parent: 2 - - uid: 4969 + - uid: 4997 components: - type: Transform - pos: -23.5,-40.5 + pos: -15.5,-20.5 parent: 2 - - uid: 5015 + - uid: 5135 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-3.5 + pos: 25.5,10.5 parent: 2 - - uid: 5050 + - uid: 12324 components: - type: Transform - pos: -7.5,-46.5 + pos: -34.5,11.5 parent: 2 - - uid: 5051 + - uid: 12744 components: - type: Transform - pos: -7.5,-42.5 + pos: -3.5,-55.5 parent: 2 - - uid: 5052 + - uid: 13130 components: - type: Transform - pos: -7.5,-47.5 + pos: -49.5,-31.5 parent: 2 - - uid: 5055 + - uid: 13370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-28.5 + pos: 11.5,-73.5 parent: 2 - - uid: 5057 + - uid: 13728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-29.5 + pos: -38.5,-19.5 parent: 2 - - uid: 5063 + - uid: 14798 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-30.5 + pos: 52.5,-15.5 parent: 2 - - uid: 5164 + - uid: 15021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-46.5 + pos: 13.5,-56.5 parent: 2 - - uid: 5168 + - uid: 16305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-21.5 + pos: -32.5,-64.5 parent: 2 - - uid: 5171 + - uid: 17472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,17.5 + pos: -5.5,12.5 parent: 2 - - uid: 5189 + - uid: 18531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,17.5 + pos: 38.5,-32.5 parent: 2 - - uid: 5210 + - uid: 18880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-21.5 + pos: 43.5,-50.5 parent: 2 - - uid: 5211 + - uid: 20817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-47.5 + pos: 15.5,-15.5 parent: 2 - - uid: 5213 + - uid: 21676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 + pos: -36.5,-49.5 parent: 2 - - uid: 5225 + - uid: 21677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,17.5 + pos: -58.5,-52.5 parent: 2 - - uid: 5226 +- proto: ClosetJanitorFilled + entities: + - uid: 9635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,17.5 + pos: 24.5,2.5 parent: 2 - - uid: 5229 +- proto: ClosetL3JanitorFilled + entities: + - uid: 4025 components: - type: Transform - pos: -25.5,-2.5 + pos: 25.5,3.5 parent: 2 - - uid: 5230 +- proto: ClosetL3ScienceFilled + entities: + - uid: 16224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-37.5 + pos: 26.5,-42.5 parent: 2 - - uid: 5231 +- proto: ClosetL3SecurityFilled + entities: + - uid: 17618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-54.5 + pos: -27.5,9.5 parent: 2 - - uid: 5232 +- proto: ClosetL3VirologyFilled + entities: + - uid: 618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 + pos: -51.5,-29.5 parent: 2 - - uid: 5236 + - uid: 12706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-25.5 + pos: -51.5,-31.5 parent: 2 - - uid: 5237 +- proto: ClosetMaintenance + entities: + - uid: 3103 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,1.5 + pos: -29.5,15.5 parent: 2 - - uid: 5238 + - uid: 7316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,0.5 + pos: 16.5,-58.5 parent: 2 - - uid: 5239 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-35.5 + pos: 41.5,18.5 parent: 2 - - uid: 5240 + - uid: 1410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-36.5 + pos: 39.5,5.5 parent: 2 - - uid: 5248 + - uid: 2301 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-6.5 + pos: 51.5,-35.5 parent: 2 - - uid: 5249 + - uid: 5348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-5.5 + pos: 22.5,-2.5 parent: 2 - - uid: 5250 + - uid: 5627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,17.5 + pos: 42.5,-2.5 parent: 2 - - uid: 5251 + - 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: 5671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-2.5 + pos: 31.5,-52.5 parent: 2 - - uid: 5257 + - uid: 7264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,4.5 + pos: 16.5,-59.5 parent: 2 - - uid: 5258 + - uid: 9934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,5.5 + pos: -32.5,-17.5 parent: 2 - - uid: 5259 + - uid: 10770 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,6.5 + pos: 28.5,19.5 parent: 2 - - uid: 5260 + - uid: 11167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,7.5 + pos: -29.5,14.5 parent: 2 - - uid: 5261 + - uid: 14345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,8.5 + pos: 25.5,-56.5 parent: 2 - - uid: 5262 + - uid: 15294 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,9.5 + pos: -36.5,-45.5 parent: 2 - - uid: 5265 + - uid: 15336 components: - type: Transform - pos: -15.5,10.5 + pos: -26.5,19.5 parent: 2 - - uid: 5273 + - uid: 16910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-3.5 + pos: -53.5,-48.5 parent: 2 - - uid: 5282 + - uid: 16914 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-45.5 + pos: -52.5,-47.5 parent: 2 - - uid: 5283 + - uid: 18579 components: - type: Transform - pos: 3.5,-26.5 + pos: -16.5,19.5 parent: 2 - - uid: 5301 + - uid: 18865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,17.5 + pos: 55.5,-55.5 parent: 2 - - uid: 5306 + - uid: 18908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,17.5 + pos: 38.5,-61.5 parent: 2 - - uid: 5392 + - uid: 21805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,17.5 + pos: 40.5,22.5 parent: 2 - - uid: 5434 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 42 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,17.5 + pos: 26.5,-41.5 parent: 2 - - uid: 5441 + - uid: 21216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,17.5 + pos: 16.5,-15.5 parent: 2 - - uid: 5506 +- proto: ClosetSteelBase + entities: + - uid: 2309 components: - type: Transform - pos: 10.5,-37.5 + pos: 50.5,-35.5 parent: 2 - - uid: 5507 + - uid: 11559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-12.5 + pos: 40.5,-52.5 parent: 2 - - uid: 5509 + - uid: 12931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-25.5 + pos: -59.5,-31.5 parent: 2 - - uid: 5564 +- proto: ClosetToolFilled + entities: + - uid: 8408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-41.5 + pos: 12.5,-2.5 parent: 2 - - uid: 5619 +- proto: ClothingBackpackClown + entities: + - uid: 12498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-1.5 + pos: 5.475765,-27.366299 parent: 2 - - uid: 5670 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: >- + It provides the following protection: + + - [color=orange]Explosion[/color] damage [color=white]to contents[/color] reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingBackpackDuffel + entities: + - uid: 1038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-55.5 + pos: 52.586926,-35.256138 parent: 2 - - uid: 6209 +- proto: ClothingBackpackDuffelAtmospherics + entities: + - uid: 2267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-55.5 + pos: 12.441172,-10.7048235 parent: 2 - - uid: 6210 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-55.5 + - 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 +- proto: ClothingBackpackDuffelCargo + entities: + - uid: 979 + components: + - type: Transform + pos: 0.116775274,20.693357 parent: 2 - - uid: 6215 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 14163 components: - type: Transform - pos: 29.5,-56.5 + pos: -50.48092,-44.354164 parent: 2 - - uid: 6277 + - 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 +- proto: ClothingBackpackDuffelSyndicatePyjamaBundle + entities: + - uid: 7203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 + pos: 47.61371,-9.3577 parent: 2 - - uid: 6279 + - 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]90%[/color]. + priority: 0 + component: Armor + - message: This decreases your running speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + title: null +- proto: ClothingBeltChefFilled + entities: + - uid: 3884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-41.5 + pos: -2.4525337,-35.40037 parent: 2 - - uid: 6291 +- proto: ClothingBeltJanitorFilled + entities: + - uid: 9362 components: - type: Transform - pos: 35.5,-19.5 + pos: 25.580952,-0.3524922 parent: 2 - - uid: 6340 +- proto: ClothingBeltMedicalEMTFilled + entities: + - uid: 1293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 + pos: 18.387218,3.4808908 parent: 2 - - uid: 6417 + - uid: 12344 components: - type: Transform - pos: 10.5,-40.5 + pos: -28.528223,-21.415022 parent: 2 - - uid: 6444 +- proto: ClothingBeltPlantFilled + entities: + - uid: 3461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-16.5 + pos: -18.676945,-29.53736 parent: 2 - - uid: 6539 +- proto: ClothingBeltSecurityFilled + entities: + - uid: 1489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-21.5 + pos: -23.511723,15.622659 parent: 2 - - uid: 6568 +- proto: ClothingBeltUtility + entities: + - uid: 1290 components: - type: Transform - pos: -35.5,-26.5 + pos: -18.438002,-22.34795 parent: 2 - - uid: 6569 + - uid: 16990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-25.5 + pos: 27.302391,-29.306028 parent: 2 - - uid: 6748 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 2235 components: - type: Transform - pos: 20.5,13.5 + pos: -11.6501,-13.9699955 parent: 2 - - uid: 6798 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 15332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-25.5 + pos: -29.944489,-36.514187 parent: 2 - - uid: 6799 +- proto: ClothingEyesGlassesGarGiga + entities: + - uid: 2773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-25.5 + pos: -30.43842,-63.914627 parent: 2 - - uid: 6800 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 2171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-25.5 + pos: -11.389554,-13.938724 parent: 2 - - uid: 6810 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 5700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-45.5 + pos: 45.643505,-32.712418 parent: 2 - - uid: 6811 +- proto: ClothingHandsGlovesBoxingGreen + entities: + - uid: 3354 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-44.5 + pos: 53.148388,-40.7539 parent: 2 - - uid: 6812 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 2285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-43.5 + pos: 51.41836,-41.410606 parent: 2 - - uid: 6813 +- proto: ClothingHandsGlovesBoxingYellow + entities: + - uid: 3329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-42.5 + pos: 55.644142,-41.512356 parent: 2 - - uid: 6814 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 3621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-41.5 + pos: 7.5706596,-16.44566 parent: 2 - - uid: 6815 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 14105 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-40.5 + pos: -53.26527,-23.38064 parent: 2 - - uid: 6816 + - uid: 18092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-39.5 + pos: 28.602928,-39.43728 parent: 2 - - uid: 6817 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 6051 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-38.5 + pos: 41.41785,-10.425573 parent: 2 - - uid: 6828 + - uid: 14731 components: - type: Transform - pos: 29.5,-23.5 + pos: 22.49661,-58.714924 parent: 2 - - uid: 6830 + - uid: 14851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-28.5 + pos: -45.437046,-23.20726 parent: 2 - - uid: 6831 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 12947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-28.5 + pos: -53.45067,-27.958363 parent: 2 - - uid: 6832 +- proto: ClothingHandsTacticalMaidGloves + entities: + - uid: 15742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-28.5 + pos: -46.58147,-56.80421 parent: 2 - - uid: 6833 +- proto: ClothingHeadBandBotany + entities: + - uid: 21440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-28.5 + pos: 6.9404736,-45.65364 parent: 2 - - uid: 6834 +- proto: ClothingHeadHatAnimalCat + entities: + - uid: 6055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-28.5 + pos: -16.499865,8.60507 parent: 2 - - uid: 6835 +- proto: ClothingHeadHatAnimalCatBlack + entities: + - uid: 8601 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-22.5 + pos: 44.30121,-2.3817148 parent: 2 - - uid: 6840 +- proto: ClothingHeadHatBeret + entities: + - uid: 3009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-37.5 + pos: -17.67299,30.71278 parent: 2 - - uid: 6843 +- proto: ClothingHeadHatBeretQM + entities: + - uid: 1014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-22.5 + pos: -7.5870266,17.820057 parent: 2 - - uid: 6844 +- proto: ClothingHeadHatBeretRND + entities: + - uid: 5049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-38.5 + pos: 28.369284,-48.32308 parent: 2 - - uid: 6845 +- proto: ClothingHeadHatBrownFlatcap + entities: + - uid: 10989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-39.5 + pos: 19.452253,-58.458893 parent: 2 - - uid: 6846 +- proto: ClothingHeadHatCargosoft + entities: + - uid: 8997 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-40.5 + pos: 0.18218291,23.608202 parent: 2 - - uid: 6847 +- proto: ClothingHeadHatChef + entities: + - uid: 3264 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-41.5 + pos: 1.263932,-33.25513 parent: 2 - - uid: 6848 +- proto: ClothingHeadHatCone + entities: + - uid: 340 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-39.5 + pos: 29.572224,-77.60282 parent: 2 - - uid: 6849 + - uid: 6791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-42.5 + pos: 31.329733,-77.7259 parent: 2 - - uid: 6851 + - uid: 7438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-43.5 + pos: 32.340652,-78.34091 parent: 2 - - uid: 6852 +- proto: ClothingHeadHatFancyCrown + entities: + - uid: 20254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-43.5 + pos: -22.46544,41.477055 parent: 2 - - uid: 6853 +- proto: ClothingHeadHatFez + entities: + - uid: 16992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-43.5 + pos: 46.541893,-36.255573 parent: 2 - - uid: 6854 +- proto: ClothingHeadHatFlowerWreath + entities: + - uid: 18623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-43.5 + pos: -15.4590845,13.626832 parent: 2 - - uid: 6856 +- proto: ClothingHeadHatMimesoft + entities: + - uid: 14256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-28.5 + pos: 7.316777,-31.202648 parent: 2 - - uid: 6858 +- proto: ClothingHeadHatParamedicsoft + entities: + - uid: 7155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-29.5 + pos: -27.565483,-26.458542 parent: 2 - - uid: 6859 +- proto: ClothingHeadHatPartyWaterCup + entities: + - uid: 1076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-29.5 + pos: -0.26819527,12.552498 parent: 2 - - uid: 6860 +- proto: ClothingHeadHatPirate + entities: + - uid: 13827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-26.5 + pos: 25.671356,-58.306297 parent: 2 - - uid: 6861 +- proto: ClothingHeadHatRichard + entities: + - uid: 5281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-35.5 + pos: 56.495144,-40.47507 parent: 2 - - uid: 6862 +- proto: ClothingHeadHatSantahat + entities: + - uid: 809 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-34.5 + pos: -9.481663,24.584553 parent: 2 - - uid: 6863 + - uid: 20267 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-33.5 + pos: -27.292542,6.769797 parent: 2 - - uid: 6864 +- proto: ClothingHeadHatStrawHat + entities: + - uid: 1731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-32.5 + pos: 7.627987,-57.35527 parent: 2 - - uid: 6865 +- proto: ClothingHeadHatSyndie + entities: + - uid: 8321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-31.5 + pos: 47.35316,-9.274309 parent: 2 - - uid: 6866 +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 16937 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-30.5 + pos: -46.77624,-56.27259 parent: 2 - - uid: 6869 +- proto: ClothingHeadHatWarden + entities: + - uid: 14570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-44.5 + pos: -19.224272,-5.6646905 parent: 2 - - uid: 6870 +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 8588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-43.5 + pos: 47.500233,-4.4413204 parent: 2 - - uid: 6907 +- proto: ClothingHeadHatXmasCrown + entities: + - uid: 19889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,6.5 + pos: 38.306744,-59.476147 parent: 2 - - uid: 6921 +- proto: ClothingHeadHelmetAncient + entities: + - uid: 11652 components: - type: Transform - pos: 10.5,-53.5 + pos: 71.56463,-77.43635 parent: 2 - - uid: 6936 +- proto: ClothingMaskBreath + entities: + - uid: 4372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,6.5 + pos: 38.57368,-27.453815 parent: 2 - - uid: 7175 + - uid: 12380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,23.5 + pos: -26.402035,-21.70669 parent: 2 - - uid: 7176 + - uid: 14850 components: - type: Transform - pos: 32.5,22.5 + pos: -45.364094,-22.894545 parent: 2 - - uid: 7177 + - uid: 15155 components: - type: Transform - pos: 32.5,21.5 + pos: 2.9914923,-55.272697 parent: 2 - - uid: 7178 + - uid: 15184 components: - type: Transform - pos: 32.5,20.5 + pos: 3.1165543,-55.522873 parent: 2 - - uid: 7179 +- proto: ClothingMaskFox + entities: + - uid: 1054 components: - type: Transform - pos: 32.5,19.5 + pos: -15.470441,19.607038 parent: 2 - - uid: 7180 +- proto: ClothingMaskGas + entities: + - uid: 9073 components: - type: Transform - pos: 32.5,18.5 + pos: 45.507942,-27.364006 parent: 2 - - uid: 7181 +- proto: ClothingMaskWeldingGas + entities: + - uid: 22698 components: - type: Transform - pos: 32.5,17.5 + pos: 41.5,-27.5 parent: 2 - - uid: 7182 +- proto: ClothingNeckBling + entities: + - uid: 2518 components: - type: Transform - pos: 32.5,16.5 + pos: -28.53385,-62.910625 parent: 2 - - uid: 7232 +- proto: ClothingNeckCloakAce + entities: + - uid: 8506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-30.5 + pos: 47.501015,-87.459625 parent: 2 - - uid: 7465 +- proto: ClothingNeckCloakAro + entities: + - uid: 16222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-21.5 + pos: 21.531446,-49.442505 parent: 2 - - uid: 7728 +- proto: ClothingNeckCloakEnby + entities: + - uid: 16221 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-2.5 + pos: 24.430853,-59.5613 parent: 2 - - uid: 7936 +- proto: ClothingNeckCloakGay + entities: + - uid: 2876 components: - type: Transform - pos: 21.5,-22.5 + pos: 45.549652,7.560146 parent: 2 - - uid: 8326 +- proto: ClothingNeckCloakLesbian + entities: + - uid: 4815 components: - type: Transform - pos: 10.5,-42.5 + pos: -30.482735,-54.52887 parent: 2 - - uid: 8502 +- proto: ClothingNeckCloakMoth + entities: + - uid: 19903 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-5.5 + pos: 44.536793,-50.46367 parent: 2 - - uid: 8628 +- proto: ClothingNeckCloakPan + entities: + - uid: 19277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,6.5 + pos: 50.483807,-55.407658 parent: 2 - - uid: 8633 +- proto: ClothingNeckCloakTrans + entities: + - uid: 7432 components: - type: Transform - pos: 41.5,5.5 + pos: 41.510986,-27.452278 parent: 2 - - uid: 8639 +- proto: ClothingNeckMantle + entities: + - uid: 3505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,6.5 + pos: -17.641726,30.389639 parent: 2 - - uid: 8648 +- proto: ClothingNeckScarfStripedGreen + entities: + - uid: 13915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,6.5 + pos: 27.65064,-12.475961 parent: 2 - - uid: 8649 +- proto: ClothingOuterArmorRiot + entities: + - uid: 6250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,6.5 + pos: -20.638523,5.589691 parent: 2 - - uid: 8650 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]60%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]60%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=yellow]Heat[/color] damage reduced by [color=lightblue]10%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]10%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]10%[/color]. + priority: 0 + component: Armor + title: null + - uid: 6885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,6.5 + pos: -20.471773,5.495876 parent: 2 - - uid: 8651 +- proto: ClothingOuterCoatLabChem + entities: + - uid: 15303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,6.5 + pos: -36.619774,-46.301968 parent: 2 - - uid: 8652 +- proto: ClothingOuterCoatLabOpened + entities: + - uid: 13981 components: - type: Transform - pos: 41.5,7.5 + pos: 22.667826,-58.4226 parent: 2 - - uid: 8663 +- proto: ClothingOuterCoatLabViro + entities: + - uid: 4560 components: - type: Transform - pos: 32.5,9.5 + pos: -11.640305,-26.281458 parent: 2 - - uid: 8983 +- proto: ClothingOuterCoatPirate + entities: + - uid: 13843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-30.5 + pos: 25.374481,-58.415672 parent: 2 - - uid: 9145 +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 11557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 + pos: 72.44567,-77.43635 parent: 2 - - uid: 9206 +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 19589 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-0.5 + pos: -20.669172,5.685884 parent: 2 - - uid: 9265 + - uid: 19998 components: - type: Transform - pos: 10.5,-52.5 + pos: -20.408627,5.5503736 parent: 2 - - uid: 9339 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: This decreases your speed by [color=yellow]25%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + It provides the following protection: + + - [color=yellow]Blunt[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Slash[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Piercing[/color] damage reduced by [color=lightblue]40%[/color]. + + - [color=yellow]Caustic[/color] damage reduced by [color=lightblue]30%[/color]. + + - [color=orange]Explosion[/color] damage reduced by [color=lightblue]60%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingOuterSanta + entities: + - uid: 20268 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-29.5 + pos: -27.584208,6.675982 parent: 2 - - uid: 9578 +- proto: ClothingOuterWinterBar + entities: + - uid: 7386 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-47.5 + pos: 40.502384,12.611003 parent: 2 - - uid: 9883 +- proto: ClothingOuterWinterChem + entities: + - uid: 15305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-43.5 + pos: -36.38007,-46.343662 parent: 2 - - uid: 9900 +- proto: ClothingOuterWinterColorBlue + entities: + - uid: 12666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-47.5 + pos: -44.511585,-39.395977 parent: 2 - - uid: 9901 +- proto: ClothingOuterWinterEngi + entities: + - uid: 22470 components: - type: Transform - pos: -22.5,-48.5 + pos: 19.54724,-15.513248 parent: 2 - - uid: 9902 +- proto: ClothingOuterWinterSci + entities: + - uid: 16014 components: - type: Transform - pos: -22.5,-49.5 + pos: 28.62983,-48.427315 parent: 2 - - uid: 9903 +- proto: ClothingOuterWinterViro + entities: + - uid: 4654 components: - type: Transform - pos: -22.5,-50.5 + pos: -11.400722,-26.44824 parent: 2 - - uid: 9904 +- proto: ClothingShoesBootsMag + entities: + - uid: 12737 components: - type: Transform - pos: -22.5,-51.5 + pos: 0.37740684,-55.29615 parent: 2 - - uid: 9905 + - uid: 12741 components: - type: Transform - pos: -22.5,-52.5 + pos: 0.5441561,-55.410812 parent: 2 - - uid: 9906 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 11860 components: - type: Transform - pos: -22.5,-53.5 + pos: -10.521948,19.518375 parent: 2 - - uid: 9907 +- proto: ClothingUnderSocksCoder + entities: + - uid: 6471 components: - type: Transform - pos: -22.5,-54.5 + pos: 27.539923,-8.522268 parent: 2 - - uid: 9908 +- proto: ClothingUniformColorRainbow + entities: + - uid: 19887 components: - type: Transform - pos: -20.5,-50.5 + pos: 38.429108,-59.892277 parent: 2 - - uid: 9909 +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 10800 components: - type: Transform - pos: -20.5,-49.5 + pos: 36.39724,-58.57563 parent: 2 - - uid: 9910 +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 10767 components: - type: Transform - pos: -20.5,-48.5 + pos: 36.699474,-58.388 parent: 2 - - uid: 9941 +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 12371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-43.5 + pos: -46.279236,-56.303864 parent: 2 - - uid: 9947 +- proto: ClothingUniformJumpskirtYellowTurtleneckDress + entities: + - uid: 13909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-54.5 + pos: 19.530016,-58.5476 parent: 2 - - uid: 10179 +- proto: ClothingUniformJumpsuitReporter + entities: + - uid: 3942 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-21.5 + pos: 22.515583,-35.497555 parent: 2 - - uid: 10180 +- proto: Cobweb1 + entities: + - uid: 7815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-21.5 + pos: 39.5,12.5 parent: 2 - - uid: 10692 + - uid: 9882 components: - type: Transform - pos: 20.5,12.5 + rot: -1.5707963267948966 rad + pos: 38.5,9.5 parent: 2 - - uid: 10946 + - uid: 15851 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-21.5 + pos: 40.5,8.5 parent: 2 - - uid: 10988 + - uid: 17546 components: - type: Transform - pos: 20.5,11.5 + pos: 45.5,-27.5 parent: 2 - - uid: 11007 + - uid: 17549 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-50.5 + pos: 33.5,-53.5 parent: 2 - - uid: 11008 +- proto: Cobweb2 + entities: + - uid: 10737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-49.5 + pos: 21.5,15.5 parent: 2 - - uid: 11012 + - uid: 11858 components: - type: Transform - pos: 48.5,-27.5 + pos: 19.5,8.5 parent: 2 - - uid: 11027 + - uid: 17550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-21.5 + pos: 28.5,-48.5 parent: 2 - - uid: 11029 + - uid: 21354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-21.5 + rot: 3.141592653589793 rad + pos: 19.5,-16.5 parent: 2 - - uid: 11030 +- proto: CocoaSeeds + entities: + - uid: 12439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-21.5 + pos: 18.38787,8.735438 parent: 2 - - uid: 11031 +- proto: ComfyChair + entities: + - uid: 725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-21.5 + rot: 1.5707963267948966 rad + pos: 55.5,-20.5 parent: 2 - - uid: 11032 + - uid: 726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-21.5 + rot: 1.5707963267948966 rad + pos: 55.5,-22.5 parent: 2 - - uid: 11034 + - uid: 1335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-21.5 + pos: -30.5,-51.5 parent: 2 - - uid: 11035 + - uid: 1336 components: - type: Transform - pos: -35.5,-25.5 + pos: -29.5,-51.5 parent: 2 - - uid: 11037 + - uid: 1337 + components: + - type: Transform + pos: -29.5,-54.5 + parent: 2 + - uid: 1348 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-22.5 + pos: -29.5,-53.5 parent: 2 - - uid: 11048 + - uid: 1354 components: - type: Transform - pos: -35.5,-24.5 + rot: 3.141592653589793 rad + pos: -30.5,-53.5 parent: 2 - - uid: 11078 + - uid: 1385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-43.5 + pos: -27.5,-44.5 parent: 2 - - uid: 11079 + - uid: 1586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-43.5 + pos: -30.5,-54.5 parent: 2 - - uid: 11080 + - uid: 1615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-43.5 + rot: 3.141592653589793 rad + pos: -29.5,-56.5 parent: 2 - - uid: 11081 + - uid: 1734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-43.5 + pos: -35.5,-63.5 parent: 2 - - uid: 11082 + - uid: 1738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 + rot: 3.141592653589793 rad + pos: -35.5,-65.5 parent: 2 - - uid: 11083 + - uid: 3470 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-43.5 + pos: -2.5,-38.5 parent: 2 - - uid: 11084 + - uid: 3555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-44.5 + rot: 1.5707963267948966 rad + pos: 12.5,-32.5 parent: 2 - - uid: 11085 + - uid: 3567 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-45.5 + pos: 15.5,-31.5 parent: 2 - - uid: 11086 + - uid: 3591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-46.5 + pos: 11.5,-29.5 parent: 2 - - uid: 11087 + - uid: 3592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-47.5 + pos: 15.5,-29.5 parent: 2 - - uid: 11088 + - uid: 3610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-48.5 + rot: -1.5707963267948966 rad + pos: 14.5,-32.5 parent: 2 - - uid: 11089 + - uid: 3612 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-49.5 + pos: 11.5,-31.5 parent: 2 - - uid: 11090 + - uid: 3736 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-50.5 + rot: -1.5707963267948966 rad + pos: 14.5,-36.5 parent: 2 - - uid: 11091 + - uid: 3743 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-51.5 + pos: 15.5,-39.5 parent: 2 - - uid: 11092 + - uid: 3773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-52.5 + rot: -1.5707963267948966 rad + pos: 14.5,-38.5 parent: 2 - - uid: 11093 + - uid: 3892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-53.5 + pos: -35.5,-79.5 parent: 2 - - uid: 11094 + - uid: 4691 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-54.5 + pos: -30.5,-56.5 parent: 2 - - uid: 11095 + - uid: 4964 components: - type: Transform - pos: 10.5,-36.5 + rot: 1.5707963267948966 rad + pos: -30.5,-46.5 parent: 2 - - uid: 11098 + - uid: 4979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-30.5 + pos: -29.5,-44.5 parent: 2 - - uid: 11099 + - uid: 4990 components: - type: Transform - pos: -35.5,-23.5 + rot: -1.5707963267948966 rad + pos: -26.5,-45.5 parent: 2 - - uid: 11100 + - uid: 5014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-22.5 + rot: -1.5707963267948966 rad + pos: -26.5,-46.5 parent: 2 - - uid: 11101 + - uid: 5084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-30.5 + pos: -30.5,-45.5 parent: 2 - - uid: 11102 + - uid: 5122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-29.5 + pos: -28.5,-44.5 parent: 2 - - uid: 11103 + - uid: 5718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-29.5 + rot: 3.141592653589793 rad + pos: 46.5,-34.5 parent: 2 - - uid: 11104 + - uid: 5869 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-29.5 + pos: 21.5,-15.5 parent: 2 - - uid: 11105 + - uid: 6044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-29.5 + rot: 3.141592653589793 rad + pos: -9.5,-60.5 parent: 2 - - uid: 11106 + - uid: 6046 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-27.5 + pos: -9.5,-65.5 parent: 2 - - uid: 11134 + - uid: 6066 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-45.5 + pos: 9.5,-72.5 parent: 2 - - uid: 11135 + - uid: 6201 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-46.5 + pos: 9.5,-70.5 parent: 2 - - uid: 11136 + - uid: 6227 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-47.5 + pos: -29.5,-47.5 parent: 2 - - uid: 11137 + - uid: 6328 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-22.5 + rot: -1.5707963267948966 rad + pos: 0.5,-52.5 parent: 2 - - uid: 11141 + - uid: 6387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-19.5 + rot: 3.141592653589793 rad + pos: 3.5,-53.5 parent: 2 - - uid: 11148 + - uid: 6532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-15.5 + rot: 3.141592653589793 rad + pos: -0.5,-53.5 parent: 2 - - uid: 11153 + - uid: 7387 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,2.5 + pos: 47.5,7.5 parent: 2 - - uid: 11155 + - uid: 7576 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-57.5 + pos: -0.5,-51.5 parent: 2 - - uid: 11156 + - uid: 7854 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-56.5 + pos: 19.5,-11.5 parent: 2 - - uid: 11157 + - uid: 7856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-21.5 + pos: -9.5,-63.5 parent: 2 - - uid: 11158 + - uid: 8094 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-21.5 + pos: 45.5,7.5 parent: 2 - - uid: 11433 + - uid: 8738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-21.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 2 - - uid: 11434 + - uid: 8763 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-34.5 + pos: 20.5,-8.5 parent: 2 - - uid: 11438 + - uid: 9077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-37.5 + rot: 1.5707963267948966 rad + pos: 2.5,-87.5 parent: 2 - - uid: 11454 + - uid: 9127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,13.5 + rot: -1.5707963267948966 rad + pos: 21.5,-16.5 parent: 2 - - uid: 11467 + - uid: 10149 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-0.5 + pos: 19.5,-15.5 parent: 2 - - uid: 11602 + - uid: 10638 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-19.5 + pos: -38.5,-55.5 parent: 2 - - uid: 11603 + - uid: 10980 components: - type: Transform rot: 3.141592653589793 rad - pos: 45.5,-20.5 + pos: 7.5,-24.5 parent: 2 - - uid: 11606 + - uid: 10982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-16.5 + rot: 3.141592653589793 rad + pos: 8.5,-24.5 parent: 2 - - uid: 11607 + - uid: 10983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-46.5 + pos: 7.5,-22.5 parent: 2 - - uid: 11608 + - uid: 10984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-43.5 + pos: 8.5,-22.5 parent: 2 - - uid: 11952 + - uid: 10996 + components: + - type: Transform + pos: 11.5,-24.5 + parent: 2 + - uid: 10997 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-31.5 + pos: 11.5,-26.5 parent: 2 - - uid: 12016 + - uid: 12919 + components: + - type: Transform + pos: -58.5,-28.5 + parent: 2 + - uid: 13245 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-41.5 + pos: 19.5,-16.5 parent: 2 - - uid: 12059 + - uid: 14569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-18.5 + pos: 3.5,-51.5 parent: 2 - - uid: 12060 + - uid: 14955 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-27.5 + pos: 19.5,-8.5 parent: 2 - - uid: 12061 + - uid: 15043 components: - type: Transform - pos: -7.5,-50.5 + rot: 1.5707963267948966 rad + pos: 2.5,-52.5 parent: 2 - - uid: 12080 + - uid: 16009 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-25.5 + pos: 1.5,-45.5 parent: 2 - - uid: 12139 + - uid: 19259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-48.5 + pos: -9.5,-58.5 parent: 2 - - uid: 12140 + - uid: 20842 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-48.5 + pos: 15.5,-62.5 parent: 2 - - uid: 12141 +- proto: CommandmentCircuitBoard + entities: + - uid: 16471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-48.5 + pos: -60.976395,-16.360863 parent: 2 - - uid: 12142 +- proto: CommsComputerCircuitboard + entities: + - uid: 13265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-48.5 + pos: 8.540823,-14.37939 parent: 2 - - uid: 12143 +- proto: ComputerAlert + entities: + - uid: 1850 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-48.5 + pos: -7.5,-7.5 parent: 2 - - uid: 12144 + - uid: 6359 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-48.5 + pos: -14.5,-55.5 parent: 2 - - uid: 12145 + - uid: 14699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-48.5 + rot: 1.5707963267948966 rad + pos: -52.5,-11.5 parent: 2 - - uid: 12146 +- proto: ComputerAnalysisConsole + entities: + - uid: 4548 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-48.5 + pos: 36.5,-45.5 parent: 2 - - uid: 12147 + - type: DeviceLinkSource + linkedPorts: + 4541: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 2340 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-48.5 + pos: -14.5,-56.5 parent: 2 - - uid: 12149 + - uid: 20126 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-48.5 + pos: -7.5,-8.5 parent: 2 - - uid: 12155 +- proto: computerBodyScanner + entities: + - uid: 453 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-34.5 + pos: -30.5,10.5 parent: 2 - - uid: 12157 + - uid: 14114 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-41.5 + pos: -50.5,-45.5 parent: 2 - - uid: 12158 + - uid: 14115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-41.5 + rot: -1.5707963267948966 rad + pos: -42.5,-22.5 parent: 2 - - uid: 12161 +- proto: ComputerBroken + entities: + - uid: 613 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-41.5 + rot: -1.5707963267948966 rad + pos: 2.5,-84.5 parent: 2 - - uid: 12162 + - uid: 2188 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-41.5 + pos: 15.5,14.5 parent: 2 - - uid: 12163 + - uid: 6515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-41.5 + pos: 1.5,-83.5 parent: 2 - - uid: 12164 + - uid: 7079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-41.5 + pos: 48.5,-85.5 parent: 2 - - uid: 12165 + - uid: 8389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-41.5 + rot: 3.141592653589793 rad + pos: 46.5,-88.5 parent: 2 - - uid: 12166 + - uid: 14174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-41.5 + pos: -42.5,-43.5 parent: 2 - - uid: 12167 + - uid: 14185 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-41.5 + pos: -42.5,-46.5 parent: 2 - - uid: 12168 + - uid: 16455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-30.5 + rot: 1.5707963267948966 rad + pos: -70.5,-12.5 parent: 2 - - uid: 12169 + - uid: 20680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-30.5 + pos: -34.5,18.5 parent: 2 - - uid: 12170 +- proto: ComputerCargoBounty + entities: + - uid: 2573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,7.5 + pos: -17.5,-55.5 parent: 2 - - uid: 12171 + - uid: 4250 components: - type: Transform - pos: -12.5,-39.5 + rot: 1.5707963267948966 rad + pos: -0.5,19.5 parent: 2 - - uid: 12172 +- proto: ComputerCargoOrders + entities: + - uid: 850 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-38.5 - parent: 2 - - uid: 12177 - components: - - type: Transform - pos: -7.5,-49.5 + pos: 9.5,23.5 parent: 2 - - uid: 12178 + - uid: 2027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-20.5 + rot: 1.5707963267948966 rad + pos: 3.5,14.5 parent: 2 - - uid: 12183 + - uid: 2426 components: - type: Transform - pos: -7.5,-52.5 + pos: -18.5,-55.5 parent: 2 - - uid: 12184 + - uid: 14297 components: - type: Transform - pos: -7.5,-53.5 + rot: 1.5707963267948966 rad + pos: 3.5,16.5 parent: 2 - - uid: 12185 +- proto: ComputerComms + entities: + - uid: 9723 components: - type: Transform - pos: -7.5,-55.5 + rot: 3.141592653589793 rad + pos: -17.5,-57.5 parent: 2 - - uid: 12186 +- proto: ComputerCrewMonitoring + entities: + - uid: 6213 components: - type: Transform - pos: -7.5,-56.5 + rot: 1.5707963267948966 rad + pos: -20.5,-54.5 parent: 2 - - uid: 12187 + - uid: 7501 components: - type: Transform - pos: -7.5,-57.5 + rot: -1.5707963267948966 rad + pos: -12.5,-46.5 parent: 2 - - uid: 12188 + - uid: 9435 components: - type: Transform - pos: -7.5,-65.5 + pos: -27.5,-24.5 parent: 2 - - uid: 12189 + - uid: 13079 components: - type: Transform - pos: -7.5,-64.5 + rot: -1.5707963267948966 rad + pos: -47.5,-21.5 parent: 2 - - uid: 12190 + - uid: 13891 components: - type: Transform - pos: -7.5,-63.5 + rot: -1.5707963267948966 rad + pos: 39.5,3.5 parent: 2 - - uid: 12191 + - uid: 15785 components: - type: Transform - pos: -7.5,-62.5 + rot: -1.5707963267948966 rad + pos: 22.5,3.5 parent: 2 - - uid: 12192 + - uid: 20606 components: - type: Transform - pos: -7.5,-61.5 + rot: -1.5707963267948966 rad + pos: -19.5,-3.5 parent: 2 - - uid: 12193 +- proto: ComputerCriminalRecords + entities: + - uid: 625 components: - type: Transform - pos: -7.5,-59.5 + rot: 1.5707963267948966 rad + pos: -27.5,2.5 parent: 2 - - uid: 12194 + - uid: 3695 components: - type: Transform - pos: -7.5,-60.5 + rot: -1.5707963267948966 rad + pos: -19.5,-4.5 parent: 2 - - uid: 12200 + - uid: 7278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-66.5 + rot: -1.5707963267948966 rad + pos: 39.5,2.5 parent: 2 - - uid: 12201 + - uid: 9729 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-58.5 + pos: -20.5,-55.5 parent: 2 - - uid: 12208 +- proto: ComputerFrame + entities: + - uid: 7187 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-17.5 + pos: 48.5,-88.5 parent: 2 - - uid: 12209 + - uid: 11859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-14.5 + pos: 47.5,-11.5 parent: 2 - - uid: 12210 + - uid: 18761 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-13.5 + pos: 74.5,-46.5 parent: 2 - - uid: 12212 +- proto: ComputerId + entities: + - uid: 7571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-11.5 + rot: 1.5707963267948966 rad + pos: -14.5,-46.5 parent: 2 - - uid: 12213 + - uid: 9720 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-10.5 + pos: -18.5,-57.5 parent: 2 - - uid: 12214 +- proto: ComputerMassMedia + entities: + - uid: 3855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-9.5 + rot: -1.5707963267948966 rad + pos: 22.5,-37.5 parent: 2 - - uid: 12215 +- proto: ComputerMedicalRecords + entities: + - uid: 10723 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-7.5 + pos: -28.5,-24.5 parent: 2 - - uid: 12216 +- proto: ComputerPowerMonitoring + entities: + - uid: 2227 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-8.5 + pos: -13.5,-13.5 parent: 2 - - uid: 12220 + - uid: 2565 components: - type: Transform - pos: 19.5,-22.5 + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 parent: 2 - - uid: 12222 + - uid: 5520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-30.5 + pos: -3.5,-20.5 parent: 2 - - uid: 12223 + - uid: 8518 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-30.5 + pos: -50.5,-11.5 parent: 2 - - uid: 12224 + - uid: 8955 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-30.5 + pos: -28.5,23.5 parent: 2 - - uid: 12225 + - uid: 9721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-30.5 + pos: -16.5,-55.5 parent: 2 - - uid: 12226 + - uid: 10292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-30.5 + rot: 1.5707963267948966 rad + pos: 26.5,-18.5 parent: 2 - - uid: 12227 + - uid: 15885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-30.5 + rot: 1.5707963267948966 rad + pos: -58.5,-60.5 parent: 2 - - uid: 12228 +- proto: ComputerRadar + entities: + - uid: 5026 components: - type: Transform - pos: -36.5,-31.5 + rot: 3.141592653589793 rad + pos: -16.5,-57.5 parent: 2 - - uid: 12234 + - uid: 22124 components: - type: Transform - pos: -35.5,-27.5 + pos: 16.5,32.5 parent: 2 - - uid: 12236 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 4271 components: - type: Transform - pos: -43.5,-21.5 + rot: 1.5707963267948966 rad + pos: 18.5,-24.5 parent: 2 - - uid: 12237 + - uid: 4411 components: - type: Transform - pos: -43.5,-24.5 + rot: -1.5707963267948966 rad + pos: 32.5,-34.5 parent: 2 - - uid: 12241 + - uid: 4497 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-24.5 + rot: 1.5707963267948966 rad + pos: 35.5,-40.5 parent: 2 - - uid: 12248 + - uid: 9731 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,13.5 + rot: -1.5707963267948966 rad + pos: -14.5,-52.5 parent: 2 - - uid: 12249 +- proto: ComputerRoboticsControl + entities: + - uid: 4356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,12.5 + rot: 1.5707963267948966 rad + pos: 32.5,-27.5 parent: 2 - - uid: 12250 + - uid: 6477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,11.5 + rot: -1.5707963267948966 rad + pos: -14.5,-53.5 parent: 2 - - uid: 12251 +- proto: ComputerSalvageExpedition + entities: + - uid: 21998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,10.5 + rot: -1.5707963267948966 rad + pos: 17.5,23.5 parent: 2 - - uid: 12252 +- proto: ComputerShuttleCargo + entities: + - uid: 5376 components: - type: Transform - pos: 19.5,-23.5 + pos: 4.5,26.5 parent: 2 - - uid: 12253 +- proto: ComputerSolarControl + entities: + - uid: 1922 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,8.5 + pos: -13.5,-15.5 parent: 2 - - uid: 12254 + - uid: 4380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,7.5 + pos: -1.5,-20.5 parent: 2 - - uid: 12256 + - uid: 8836 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,5.5 + rot: -1.5707963267948966 rad + pos: 46.5,1.5 parent: 2 - - uid: 12257 + - uid: 8953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,4.5 + pos: -29.5,24.5 parent: 2 - - uid: 12259 + - uid: 16430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,1.5 + rot: -1.5707963267948966 rad + pos: -56.5,-60.5 parent: 2 - - uid: 12261 +- proto: ComputerStationRecords + entities: + - uid: 9730 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-0.5 + rot: 1.5707963267948966 rad + pos: -20.5,-56.5 parent: 2 - - uid: 12262 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 9722 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-1.5 + rot: 1.5707963267948966 rad + pos: -20.5,-53.5 parent: 2 - - uid: 12264 + - uid: 13090 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,3.5 + rot: 1.5707963267948966 rad + pos: -21.5,-3.5 parent: 2 - - uid: 12265 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 8337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-7.5 + rot: -1.5707963267948966 rad + pos: 29.5,-39.5 parent: 2 - - uid: 12266 +- proto: ComputerTelevision + entities: + - uid: 7593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-8.5 + pos: -11.5,-46.5 parent: 2 - - uid: 12267 + - uid: 12920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-9.5 + rot: -1.5707963267948966 rad + pos: -59.5,-28.5 parent: 2 - - uid: 12268 + - uid: 15927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-10.5 + rot: 1.5707963267948966 rad + pos: 14.5,-4.5 parent: 2 - - uid: 12269 + - uid: 17190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-11.5 + pos: 27.5,-27.5 parent: 2 - - uid: 12270 + - uid: 17247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-12.5 + rot: 1.5707963267948966 rad + pos: 37.5,4.5 parent: 2 - - uid: 12271 +- proto: ComputerTelevisionCircuitboard + entities: + - uid: 18914 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-13.5 + pos: 46.514275,-72.41335 parent: 2 - - uid: 12272 +- proto: ConveyorBelt + entities: + - uid: 1065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-14.5 + pos: 2.5,29.5 parent: 2 - - uid: 12273 + - uid: 1066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-15.5 + pos: 6.5,27.5 parent: 2 - - uid: 12274 + - uid: 1903 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-16.5 + rot: -1.5707963267948966 rad + pos: -10.5,-32.5 parent: 2 - - uid: 12275 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 1933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-17.5 + rot: -1.5707963267948966 rad + pos: -12.5,-32.5 parent: 2 - - uid: 12276 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 2671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-18.5 + pos: 6.5,26.5 parent: 2 - - uid: 12277 + - uid: 2960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-19.5 + pos: 6.5,29.5 parent: 2 - - uid: 12279 + - uid: 3487 components: - type: Transform - pos: 35.5,-20.5 + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 parent: 2 - - uid: 12281 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 3871 components: - type: Transform - pos: -30.5,-29.5 + pos: 6.5,28.5 parent: 2 - - uid: 12283 + - uid: 4763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 parent: 2 - - uid: 12284 + - uid: 5314 components: - type: Transform - pos: 31.5,-5.5 + rot: 1.5707963267948966 rad + pos: 33.5,-58.5 parent: 2 - - uid: 12285 + - uid: 5321 components: - type: Transform - pos: 19.5,-24.5 + pos: 2.5,26.5 parent: 2 - - uid: 12286 + - uid: 5354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,2.5 + pos: 2.5,27.5 parent: 2 - - uid: 12436 + - uid: 5362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,14.5 + pos: 2.5,28.5 parent: 2 - - uid: 12449 + - uid: 6837 components: - type: Transform - pos: 32.5,0.5 + rot: -1.5707963267948966 rad + pos: -11.5,-32.5 parent: 2 - - uid: 12579 + - type: DeviceLinkSink + invokeCounter: 4 + - uid: 9114 components: - type: Transform - pos: 20.5,14.5 + rot: 1.5707963267948966 rad + pos: 30.5,-58.5 parent: 2 - - uid: 12788 + - uid: 9115 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,17.5 + pos: 28.5,-58.5 parent: 2 - - uid: 12899 + - uid: 9352 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-29.5 + pos: 31.5,-58.5 parent: 2 - - uid: 13002 + - uid: 11225 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,10.5 + pos: -25.5,-36.5 parent: 2 - - uid: 13006 + - uid: 11226 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,10.5 + pos: -27.5,-36.5 parent: 2 - - uid: 13019 + - uid: 14292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-43.5 + pos: 6.5,16.5 parent: 2 - - uid: 13033 + - uid: 14293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-43.5 + pos: 6.5,14.5 parent: 2 - - uid: 13034 + - uid: 14332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-43.5 + pos: 6.5,15.5 parent: 2 - - uid: 13035 + - uid: 15071 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-43.5 + pos: -10.5,-92.5 parent: 2 - - uid: 13038 + - uid: 18127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-44.5 + rot: 1.5707963267948966 rad + pos: 29.5,-58.5 parent: 2 - - uid: 13039 + - uid: 18131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-45.5 + rot: 1.5707963267948966 rad + pos: 32.5,-58.5 parent: 2 - - uid: 13040 + - uid: 19238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-46.5 + rot: -1.5707963267948966 rad + pos: -11.5,-92.5 parent: 2 - - uid: 13049 + - uid: 21999 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-43.5 + pos: 16.5,19.5 parent: 2 - - uid: 13050 +- proto: CorporateCircuitBoard + entities: + - uid: 16463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-43.5 + pos: -61.414112,-16.256622 parent: 2 - - uid: 13051 +- proto: CrateArtifactContainer + entities: + - uid: 4533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-43.5 + pos: 38.5,-40.5 parent: 2 - - uid: 13052 + - uid: 4534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-43.5 + pos: 39.5,-40.5 parent: 2 - - uid: 13053 +- proto: CrateCandles + entities: + - uid: 10087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-43.5 + pos: 35.5,-7.5 parent: 2 - - uid: 13054 +- proto: CrateChemistrySecure + entities: + - uid: 22540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-43.5 + pos: -37.5,-37.5 parent: 2 - - uid: 13056 +- proto: CrateCoffin + entities: + - uid: 5813 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-42.5 + pos: 43.5,-10.5 parent: 2 - - uid: 13057 + - uid: 6942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-41.5 + pos: 43.5,-11.5 parent: 2 - - uid: 13058 +- proto: CrateContrabandStorageSecure + entities: + - uid: 19590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-40.5 + pos: -21.5,-5.5 parent: 2 - - uid: 13059 +- proto: CrateEmptySpawner + entities: + - uid: 14 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-39.5 + pos: 77.5,-40.5 parent: 2 - - uid: 13060 + - uid: 994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-37.5 + pos: -0.5,18.5 parent: 2 - - uid: 13061 + - uid: 3634 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-36.5 + pos: 12.5,-63.5 parent: 2 - - uid: 13062 + - uid: 4618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-35.5 + pos: 28.5,-37.5 parent: 2 - - uid: 13063 + - uid: 8133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-34.5 + pos: -13.5,-94.5 parent: 2 - - uid: 13064 + - uid: 8140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-33.5 + pos: -13.5,-95.5 parent: 2 - - uid: 13065 + - uid: 12753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-32.5 + pos: 5.5,-93.5 parent: 2 - - uid: 13066 + - uid: 15570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,10.5 + pos: 46.5,19.5 parent: 2 - - uid: 13067 + - uid: 15607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-38.5 + pos: 5.5,-57.5 parent: 2 - - uid: 13068 + - uid: 15658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,10.5 + pos: 47.5,19.5 parent: 2 - - uid: 13071 + - uid: 16869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-15.5 + pos: 2.5,-92.5 parent: 2 - - uid: 13079 + - uid: 17178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-30.5 + pos: -1.5,-93.5 parent: 2 - - uid: 13080 + - uid: 17457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-30.5 + pos: -2.5,23.5 parent: 2 - - uid: 13095 + - uid: 17458 components: - type: Transform - pos: 21.5,-23.5 + pos: 9.5,20.5 parent: 2 - - uid: 13096 + - uid: 18063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 + pos: 5.5,24.5 parent: 2 - - uid: 13097 + - uid: 18066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,11.5 + pos: 5.5,18.5 parent: 2 - - uid: 13098 + - uid: 18414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,11.5 + pos: 34.5,25.5 parent: 2 - - uid: 13099 + - uid: 18760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,11.5 + pos: 67.5,-42.5 parent: 2 - - uid: 13104 + - uid: 18805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,11.5 + pos: 84.5,-16.5 parent: 2 - - uid: 13105 + - uid: 18840 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,11.5 + pos: 89.5,-29.5 parent: 2 - - uid: 13106 + - uid: 18842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,11.5 + pos: 72.5,-63.5 parent: 2 - - uid: 13108 + - uid: 19211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,11.5 + pos: 4.5,-89.5 parent: 2 - - uid: 13109 + - uid: 21079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 + pos: 12.5,-62.5 parent: 2 - - uid: 13110 + - uid: 22316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 + pos: 30.5,22.5 parent: 2 - - uid: 13111 + - uid: 22317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,11.5 + pos: 33.5,19.5 parent: 2 - - uid: 13112 + - uid: 22635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,11.5 + pos: 32.5,15.5 parent: 2 - - uid: 13113 +- proto: CrateEngineeringAMEJar + entities: + - uid: 19547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 + pos: -7.5,-17.5 parent: 2 - - uid: 13114 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 17719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,11.5 + pos: -10.5,-17.5 parent: 2 - - uid: 13115 +- proto: CrateEngineeringCableBulk + entities: + - uid: 7426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,11.5 + pos: 28.5,-51.5 parent: 2 - - uid: 13117 + - uid: 9382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-55.5 + pos: 5.5,-19.5 parent: 2 - - uid: 13118 +- proto: CrateEngineeringElectricalSupplies + entities: + - uid: 9601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-54.5 + pos: 25.5,19.5 parent: 2 - - uid: 13119 +- proto: CrateEngineeringSolar + entities: + - uid: 4024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-53.5 + pos: 26.5,-16.5 parent: 2 - - uid: 13120 + - uid: 5322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-52.5 + pos: -31.5,22.5 parent: 2 - - uid: 13121 + - uid: 20713 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-51.5 + pos: -9.5,-13.5 parent: 2 - - uid: 13122 + - uid: 21617 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-50.5 + pos: -56.5,-58.5 parent: 2 - - uid: 13123 +- proto: CrateFilledSpawner + entities: + - uid: 5411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-49.5 + pos: 21.5,14.5 parent: 2 - - uid: 13126 + - uid: 6111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + pos: 5.5,20.5 parent: 2 - - uid: 13127 + - uid: 8878 components: - type: Transform - pos: -27.5,-47.5 + pos: 48.5,-13.5 parent: 2 - - uid: 13128 + - uid: 15729 components: - type: Transform - pos: -27.5,-46.5 + pos: 5.5,-58.5 parent: 2 - - uid: 13129 + - uid: 17448 components: - type: Transform - pos: -27.5,-45.5 + pos: 3.5,22.5 parent: 2 - - uid: 13130 + - uid: 17449 components: - type: Transform - pos: -27.5,-44.5 + pos: 3.5,23.5 parent: 2 - - uid: 13131 + - uid: 17450 components: - type: Transform - pos: -27.5,-43.5 + pos: 5.5,23.5 parent: 2 - - uid: 13132 + - uid: 17451 components: - type: Transform - pos: -27.5,-42.5 + pos: 5.5,22.5 parent: 2 - - uid: 13133 + - uid: 17453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,11.5 + pos: 5.5,19.5 parent: 2 - - uid: 13134 + - uid: 17454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,11.5 + pos: 3.5,19.5 parent: 2 - - uid: 13135 + - uid: 17455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-48.5 + pos: 3.5,20.5 parent: 2 - - uid: 13142 + - uid: 18806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,11.5 + pos: 83.5,-16.5 parent: 2 - - uid: 13146 +- proto: CrateFreezer + entities: + - uid: 3241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,11.5 + pos: -2.5,-32.5 parent: 2 - - uid: 13147 + - 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: EntityStorage + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True + - uid: 12674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,11.5 + pos: -51.5,-36.5 parent: 2 - - uid: 13148 + - uid: 12681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,11.5 + pos: -52.5,-36.5 parent: 2 - - uid: 13158 + - uid: 13179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,11.5 + pos: -45.5,-24.5 parent: 2 - - uid: 13175 + - uid: 14823 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-26.5 + pos: -42.5,-39.5 parent: 2 - - uid: 13235 +- proto: CrateMaterialPlasma + entities: + - uid: 6438 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,5.5 + pos: -60.5,-9.5 parent: 2 - - uid: 13236 + - uid: 9490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,4.5 + pos: 39.5,-36.5 parent: 2 - - uid: 13237 +- proto: CrateMedicalScrubs + entities: + - uid: 7892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,3.5 + pos: -40.5,-24.5 parent: 2 - - uid: 13238 +- proto: CrateMedicalSurgery + entities: + - uid: 4374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,2.5 + pos: 37.5,-28.5 parent: 2 - - uid: 13239 + - uid: 11994 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,1.5 + pos: -45.5,-25.5 parent: 2 - - uid: 13240 +- proto: CrateNPCHamlet + entities: + - uid: 20764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,0.5 + pos: -16.5,-50.5 parent: 2 - - uid: 13241 +- proto: CrateSecurityTrackingMindshieldImplants + entities: + - uid: 4184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-0.5 + pos: -22.5,2.5 parent: 2 - - uid: 13242 +- proto: CrateServiceBoozeDispenser + entities: + - uid: 2764 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-2.5 + pos: 39.5,11.5 parent: 2 - - uid: 13243 +- proto: CrateServiceBureaucracy + entities: + - uid: 3167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-1.5 + pos: -22.5,-46.5 parent: 2 - - uid: 13244 + - uid: 17597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-3.5 + pos: 0.5,18.5 parent: 2 - - uid: 13245 +- proto: CrateServiceCustomSmokable + entities: + - uid: 19900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 + pos: 47.5,-56.5 parent: 2 - - uid: 13246 +- proto: CrateServiceHolidayLights + entities: + - uid: 8448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-3.5 + pos: 3.5,18.5 parent: 2 - - uid: 13247 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 4506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-3.5 + pos: 28.5,-0.5 parent: 2 - - uid: 13248 +- proto: CrateTrashCart + entities: + - uid: 9291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-3.5 + pos: -33.5,-5.5 parent: 2 - - uid: 13249 + - uid: 22407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-3.5 + pos: 23.5,15.5 parent: 2 - - uid: 13250 +- proto: CrateTrashCartFilled + entities: + - uid: 3860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-3.5 + pos: -0.5,-29.5 parent: 2 - - uid: 13251 + - uid: 13309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-3.5 + pos: -46.5,-50.5 parent: 2 - - uid: 13252 +- proto: CrateTrashCartJani + entities: + - uid: 757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-3.5 + pos: 24.5,-2.5 parent: 2 - - uid: 13253 +- proto: CrayonBox + entities: + - uid: 3589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-3.5 + pos: 7.546462,-31.401642 parent: 2 - - uid: 13254 +- proto: CrayonMime + entities: + - uid: 5407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-3.5 + pos: -11.287609,19.532997 parent: 2 - - uid: 13255 +- proto: CrayonRed + entities: + - uid: 19011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-3.5 + pos: 19.457184,-53.361088 parent: 2 - - uid: 13256 +- proto: Crematorium + entities: + - uid: 7059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-3.5 + rot: -1.5707963267948966 rad + pos: 43.5,-9.5 parent: 2 - - uid: 13258 + - 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: CrewMonitoringServer + entities: + - uid: 17648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-3.5 + pos: -55.5,-21.5 parent: 2 - - uid: 14212 +- proto: CrowbarGreen + entities: + - uid: 8024 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-22.5 + pos: 12.561003,-94.61276 parent: 2 - - uid: 14717 +- proto: CrowbarYellow + entities: + - uid: 13864 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-40.5 + pos: 19.53374,-58.377003 parent: 2 - - uid: 14718 +- proto: CryogenicSleepUnit + entities: + - uid: 3206 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-40.5 + pos: -35.5,-5.5 parent: 2 - - uid: 14719 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 1260 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-38.5 + pos: 15.5,-46.5 parent: 2 - - uid: 15130 + - uid: 11726 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,6.5 + pos: 13.5,-48.5 parent: 2 - - uid: 15162 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 1261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-15.5 + pos: 15.5,-48.5 parent: 2 - - uid: 15370 + - uid: 11727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-37.5 + rot: 3.141592653589793 rad + pos: 13.5,-47.5 parent: 2 - - uid: 15748 + - uid: 18712 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-44.5 + pos: 13.5,-46.5 parent: 2 - - uid: 16079 +- proto: CryoPod + entities: + - uid: 11935 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-45.5 + pos: -44.5,-37.5 parent: 2 - - uid: 16336 + - uid: 12045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-16.5 + pos: -42.5,-37.5 parent: 2 - - uid: 16337 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 12678 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-16.5 + pos: -43.609703,-39.262962 parent: 2 - - uid: 16338 + - uid: 12679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-16.5 + pos: -43.36284,-39.375145 parent: 2 - - uid: 16339 +- proto: CultAltarSpawner + entities: + - uid: 6698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-16.5 + pos: 20.5,-52.5 parent: 2 - - uid: 16340 +- proto: CurtainsBlackOpen + entities: + - uid: 2453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-16.5 + pos: 38.5,-5.5 parent: 2 - - uid: 16341 + - uid: 5860 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-16.5 + pos: 7.5,-41.5 parent: 2 - - uid: 16342 + - uid: 7295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-16.5 + pos: 38.5,-1.5 parent: 2 - - uid: 16343 + - uid: 15677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-16.5 + pos: 40.5,-14.5 parent: 2 - - uid: 16344 + - uid: 15700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-16.5 + rot: 1.5707963267948966 rad + pos: 36.5,-8.5 parent: 2 - - uid: 16345 + - uid: 17568 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-16.5 + pos: 6.5,-33.5 parent: 2 - - uid: 16346 +- proto: CurtainsBlueOpen + entities: + - uid: 2578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-16.5 + pos: -4.5,-26.5 parent: 2 - - uid: 16347 + - uid: 14090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-16.5 + pos: -52.5,-21.5 parent: 2 - - uid: 16348 +- proto: CurtainsCyanOpen + entities: + - uid: 3193 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-15.5 + pos: 7.5,-39.5 parent: 2 - - uid: 16349 +- proto: CurtainsGreenOpen + entities: + - uid: 21439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-14.5 + pos: 7.5,-45.5 parent: 2 - - uid: 16350 +- proto: CurtainsOrangeOpen + entities: + - uid: 6421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-13.5 + rot: -1.5707963267948966 rad + pos: -7.5,19.5 parent: 2 - - uid: 16351 +- proto: CurtainSpawner + entities: + - uid: 17570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 + pos: 5.5,-27.5 parent: 2 - - uid: 16352 +- proto: CurtainsPurpleOpen + entities: + - uid: 6139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-12.5 + pos: -35.5,-54.5 parent: 2 - - uid: 16353 + - uid: 7199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-12.5 + pos: -35.5,-51.5 parent: 2 - - uid: 16354 + - uid: 11353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-12.5 + pos: 26.5,-34.5 parent: 2 - - uid: 16355 + - uid: 12857 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-12.5 + pos: -39.5,-55.5 parent: 2 - - uid: 16356 +- proto: CurtainsRedOpen + entities: + - uid: 1705 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-12.5 + pos: 34.5,1.5 parent: 2 - - uid: 16357 + - uid: 11588 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-12.5 + pos: 34.5,3.5 parent: 2 - - uid: 16358 + - uid: 14818 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,-12.5 + pos: -22.5,12.5 parent: 2 - - uid: 16359 + - uid: 17653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 + pos: 30.5,11.5 parent: 2 - - uid: 16360 + - uid: 21820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 + pos: 27.5,9.5 parent: 2 - - uid: 16361 + - uid: 22731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-12.5 + rot: -1.5707963267948966 rad + pos: 39.5,0.5 parent: 2 - - uid: 17464 +- proto: CurtainsWhiteOpen + entities: + - uid: 16619 components: - type: Transform - pos: -14.5,16.5 + pos: 17.5,-10.5 parent: 2 - - uid: 17465 + - uid: 16620 components: - type: Transform - pos: -14.5,15.5 + pos: 17.5,-9.5 parent: 2 - - uid: 17466 +- proto: d20Dice + entities: + - uid: 16991 components: - type: Transform - pos: -14.5,14.5 + pos: 20.413567,-48.967503 parent: 2 - - uid: 17467 +- proto: d6Dice + entities: + - uid: 6543 components: - type: Transform - pos: -14.5,13.5 + pos: 0.6303221,24.546352 parent: 2 - - uid: 17468 + - uid: 7323 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-21.5 + pos: 0.70327437,23.795832 parent: 2 - - uid: 17469 + - uid: 9003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-21.5 + pos: -0.526502,23.57693 parent: 2 - - uid: 17510 + - uid: 17279 components: - type: Transform - pos: 12.5,21.5 + pos: 8.486209,-23.492792 parent: 2 - - uid: 17516 + - uid: 17793 components: - type: Transform - pos: 11.5,18.5 + pos: 7.569087,-23.232195 parent: 2 - - uid: 17517 +- proto: DawInstrumentMachineCircuitboard + entities: + - uid: 4880 components: - type: Transform - pos: 11.5,19.5 + pos: 7.4465623,-33.43011 parent: 2 - - uid: 17519 +- proto: DefaultStationBeaconAICore + entities: + - uid: 5150 components: - type: Transform - pos: 11.5,14.5 + pos: -66.5,-12.5 parent: 2 - - uid: 17520 +- proto: DefaultStationBeaconAIPower + entities: + - uid: 10751 components: - type: Transform - pos: 11.5,13.5 + pos: -61.5,-9.5 parent: 2 - - uid: 17521 +- proto: DefaultStationBeaconAISatellite + entities: + - uid: 4927 components: - type: Transform - pos: 11.5,12.5 + pos: -52.5,-12.5 parent: 2 - - uid: 17524 +- proto: DefaultStationBeaconAIUpload + entities: + - uid: 10750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-21.5 + pos: -61.5,-15.5 parent: 2 - - uid: 17525 +- proto: DefaultStationBeaconAME + entities: + - uid: 4329 components: - type: Transform - pos: 15.5,9.5 + pos: -10.5,-19.5 parent: 2 - - uid: 17528 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 11028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,11.5 + pos: 40.5,-36.5 parent: 2 - - uid: 17529 +- proto: DefaultStationBeaconArmory + entities: + - uid: 558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,11.5 + pos: -21.5,4.5 parent: 2 - - uid: 17530 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 20185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,11.5 + pos: 1.5,-61.5 parent: 2 - - uid: 17531 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 15778 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 + pos: 34.5,-43.5 parent: 2 - - uid: 17612 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 12446 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-21.5 + pos: -0.5,-2.5 parent: 2 - - uid: 18006 +- proto: DefaultStationBeaconBar + entities: + - uid: 15718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-0.5 + pos: -3.5,-44.5 parent: 2 - - uid: 18008 +- proto: DefaultStationBeaconBotany + entities: + - uid: 15719 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,0.5 + pos: -17.5,-35.5 parent: 2 - - uid: 18009 +- proto: DefaultStationBeaconBridge + entities: + - uid: 15720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,1.5 + pos: -17.5,-54.5 parent: 2 - - uid: 18010 +- proto: DefaultStationBeaconBrig + entities: + - uid: 13861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,2.5 + pos: -25.5,-9.5 parent: 2 - - uid: 18011 +- proto: DefaultStationBeaconBrigMed + entities: + - uid: 10754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,3.5 + pos: -29.5,11.5 parent: 2 - - uid: 18057 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 15722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-0.5 + pos: -24.5,-51.5 parent: 2 - - uid: 18058 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 17684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-0.5 + pos: 4.5,24.5 parent: 2 - - uid: 18059 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 3903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-0.5 + pos: 4.5,18.5 parent: 2 - - uid: 18060 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 15724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 + pos: -7.5,-25.5 parent: 2 - - uid: 18062 +- proto: DefaultStationBeaconChapel + entities: + - uid: 5796 components: - type: Transform - pos: 10.5,-26.5 + pos: 36.5,-14.5 parent: 2 - - uid: 18099 +- proto: DefaultStationBeaconClinic + entities: + - uid: 9509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-33.5 + pos: 20.5,0.5 parent: 2 - - uid: 18100 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 21741 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-34.5 + pos: -50.5,-22.5 parent: 2 - - uid: 18101 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 21739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-35.5 + pos: -43.5,-37.5 parent: 2 - - uid: 18102 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 15728 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-36.5 + pos: 14.5,-47.5 parent: 2 - - uid: 18107 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 7305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-30.5 + pos: 37.5,2.5 parent: 2 - - uid: 18108 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 12181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-30.5 + pos: 29.5,-56.5 parent: 2 - - uid: 18109 +- proto: DefaultStationBeaconDockingArm + entities: + - uid: 15569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-30.5 + pos: -33.5,-73.5 parent: 2 - - uid: 18110 +- proto: DefaultStationBeaconDorms + entities: + - uid: 11067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-30.5 + pos: 7.5,-42.5 parent: 2 - - uid: 18111 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 7630 components: - type: Transform - pos: 34.5,-31.5 + pos: -10.5,-13.5 parent: 2 - - uid: 18250 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 22039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-12.5 + pos: -36.5,12.5 parent: 2 - - uid: 18542 +- proto: DefaultStationBeaconEvac + entities: + - uid: 8793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-21.5 + pos: 50.5,-21.5 parent: 2 - - uid: 18546 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 4222 components: - type: Transform - pos: 10.5,-24.5 + pos: -1.5,-56.5 parent: 2 - - uid: 18548 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 15753 components: - type: Transform - pos: 10.5,-23.5 + pos: -14.5,-47.5 parent: 2 - - uid: 18549 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 2880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-22.5 + pos: -21.5,11.5 parent: 2 - - uid: 18558 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 21809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-28.5 + pos: 26.5,2.5 parent: 2 - - uid: 18560 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 15756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-35.5 + pos: -7.5,-32.5 parent: 2 - - uid: 18563 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 15757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-26.5 + pos: 28.5,11.5 parent: 2 - - uid: 18564 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 6173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-23.5 + pos: 18.5,-41.5 parent: 2 - - uid: 18569 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 21744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-22.5 + pos: -42.5,-30.5 parent: 2 - - uid: 18574 +- proto: DefaultStationBeaconMedical + entities: + - uid: 21745 components: - type: Transform - pos: -27.5,-35.5 + pos: -28.5,-30.5 parent: 2 - - uid: 18577 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 22178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-21.5 + pos: -47.5,-44.5 parent: 2 - - uid: 18587 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 3705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-21.5 + pos: -39.5,-3.5 parent: 2 - - uid: 18588 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 11424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-44.5 + pos: -2.5,-21.5 parent: 2 - - uid: 18617 +- proto: DefaultStationBeaconPsychology + entities: + - uid: 21746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-19.5 + pos: -38.5,-53.5 parent: 2 - - uid: 18618 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 3230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-19.5 + pos: 27.5,-33.5 parent: 2 - - uid: 18619 +- proto: DefaultStationBeaconReporter + entities: + - uid: 6283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-19.5 + pos: 21.5,-36.5 parent: 2 - - uid: 18620 +- proto: DefaultStationBeaconRND + entities: + - uid: 15764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-19.5 + pos: 20.5,-27.5 parent: 2 - - uid: 18621 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 15765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-19.5 + pos: 36.5,-26.5 parent: 2 - - uid: 18866 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 1545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-54.5 + pos: 14.5,23.5 parent: 2 - - uid: 19897 +- proto: DefaultStationBeaconScience + entities: + - uid: 12219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-46.5 + pos: 32.5,-30.5 parent: 2 - - uid: 20285 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 19161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-47.5 + pos: -25.5,-0.5 parent: 2 - - uid: 20286 +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 18571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 + pos: 31.5,-35.5 parent: 2 - - uid: 20287 +- proto: DefaultStationBeaconSolars + entities: + - uid: 5574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-29.5 + pos: -30.5,23.5 parent: 2 - - uid: 20288 + - uid: 15769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-29.5 + pos: 45.5,2.5 parent: 2 - - uid: 20289 + - uid: 21605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-15.5 + pos: -57.5,-59.5 parent: 2 - - uid: 20293 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 21743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 + pos: -43.5,-23.5 parent: 2 - - uid: 20294 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 9886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 + pos: 5.5,-17.5 parent: 2 - - uid: 20295 +- proto: DefaultStationBeaconTEG + entities: + - uid: 6506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-1.5 + pos: -0.5,-9.5 parent: 2 - - uid: 20297 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 21622 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 + pos: 13.5,-18.5 parent: 2 - - uid: 20298 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 15773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 + pos: -16.5,-24.5 parent: 2 - - uid: 20300 +- proto: DefaultStationBeaconVault + entities: + - uid: 4856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 + pos: -29.5,-61.5 parent: 2 - - uid: 20301 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 19160 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,15.5 + pos: -20.5,-4.5 parent: 2 - - uid: 20305 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-26.5 + pos: -30.5,12.5 parent: 2 - - uid: 20306 + - uid: 5482 components: - type: Transform - pos: 19.5,-25.5 + pos: -29.5,-23.5 parent: 2 - - uid: 20307 + - uid: 6563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-26.5 + rot: 3.141592653589793 rad + pos: -26.5,-33.5 parent: 2 - - uid: 20311 + - uid: 6577 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-21.5 + pos: -38.5,-28.5 parent: 2 - - uid: 20313 + - uid: 9365 components: - type: Transform - pos: 45.5,-15.5 + rot: 3.141592653589793 rad + pos: 51.5,-19.5 parent: 2 - - uid: 20314 + - uid: 9875 components: - type: Transform - pos: 45.5,-14.5 + pos: -15.5,-49.5 parent: 2 - - uid: 20315 + - uid: 14298 components: - type: Transform - pos: 45.5,-13.5 + rot: -1.5707963267948966 rad + pos: 12.5,-23.5 parent: 2 - - uid: 20316 + - uid: 21976 components: - type: Transform - pos: 45.5,-12.5 + pos: 20.5,4.5 parent: 2 - - uid: 20317 + - uid: 22287 components: - type: Transform - pos: 45.5,-11.5 + pos: 3.5,-46.5 parent: 2 - - uid: 20318 +- proto: DeployableBarrier + entities: + - uid: 1413 components: - type: Transform - pos: 45.5,-10.5 + pos: -30.5,-0.5 parent: 2 - - uid: 20319 + - uid: 2047 components: - type: Transform - pos: 45.5,-9.5 + pos: -30.5,-1.5 parent: 2 - - uid: 20320 +- proto: DeskBell + entities: + - uid: 1746 components: - type: Transform - pos: 45.5,-8.5 + pos: 4.357331,15.490134 parent: 2 - - uid: 20321 + - uid: 2381 components: - type: Transform - pos: 45.5,-7.5 + pos: -19.44472,-2.4078405 parent: 2 - - uid: 20322 + - uid: 2415 components: - type: Transform - pos: 45.5,-6.5 + pos: -29.620085,-26.463236 parent: 2 - - uid: 20323 + - uid: 2913 components: - type: Transform - pos: 45.5,-5.5 + pos: -27.371931,-33.501823 parent: 2 - - uid: 20324 + - uid: 3445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-4.5 + pos: -21.404652,-38.42122 parent: 2 - - uid: 20325 + - uid: 20291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-4.5 + pos: 21.485853,-23.412918 parent: 2 - - uid: 20326 + - uid: 20292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-4.5 + pos: -14.384096,-14.383596 parent: 2 - - uid: 20327 +- proto: DiceBag + entities: + - uid: 11294 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-3.5 + pos: 19.172066,-48.195263 parent: 2 - - uid: 20328 +- proto: DimLightBulb + entities: + - uid: 3511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-2.5 + pos: 24.710743,0.20568168 parent: 2 - - uid: 20329 + - uid: 5405 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-1.5 + pos: -23.289038,22.108608 parent: 2 - - uid: 20330 + - uid: 5438 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-0.5 + pos: -23.729557,22.108608 parent: 2 - - uid: 20331 +- proto: DiseaseDiagnoser + entities: + - uid: 12945 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,0.5 + pos: -55.5,-27.5 parent: 2 - - uid: 20332 +- proto: DiseaseSwab + entities: + - uid: 17702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,2.5 + pos: 48.393944,-59.417625 parent: 2 - - uid: 20333 + - uid: 17703 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,3.5 + pos: 48.60238,-59.469746 parent: 2 - - uid: 20334 + - uid: 19980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,4.5 + pos: -38.368652,2.5475187 parent: 2 - - uid: 20335 + - uid: 20000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,1.5 + pos: -38.62907,2.599638 parent: 2 - - uid: 20346 +- proto: DisposalBend + entities: + - uid: 286 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-54.5 + pos: 27.5,3.5 parent: 2 - - uid: 20347 + - uid: 3143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-54.5 + rot: 1.5707963267948966 rad + pos: -33.5,-41.5 parent: 2 - - uid: 20348 + - uid: 3156 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-54.5 + pos: -33.5,-60.5 parent: 2 - - uid: 20349 + - uid: 3180 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-54.5 + pos: 9.5,-16.5 parent: 2 - - uid: 20350 + - uid: 3894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-53.5 + rot: 3.141592653589793 rad + pos: 9.5,-21.5 parent: 2 - - uid: 20351 + - uid: 3899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-53.5 + pos: 10.5,16.5 parent: 2 - - uid: 20352 + - uid: 4053 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-53.5 + pos: 50.5,-16.5 parent: 2 - - uid: 20353 + - uid: 4171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-53.5 + rot: 3.141592653589793 rad + pos: 15.5,6.5 parent: 2 - - uid: 20354 + - uid: 4264 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-53.5 + pos: 3.5,-27.5 parent: 2 - - uid: 20355 + - uid: 4290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-53.5 + pos: -8.5,-34.5 parent: 2 - - uid: 20356 + - uid: 4709 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-52.5 + rot: 1.5707963267948966 rad + pos: 45.5,-37.5 parent: 2 - - uid: 20357 + - uid: 4876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,-52.5 + rot: 3.141592653589793 rad + pos: -16.5,-22.5 parent: 2 - - uid: 20358 + - uid: 5056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-52.5 + rot: 3.141592653589793 rad + pos: 0.5,-32.5 parent: 2 - - uid: 20359 + - uid: 5061 components: - type: Transform - pos: 46.5,-23.5 + rot: 1.5707963267948966 rad + pos: 0.5,-27.5 parent: 2 - - uid: 20360 + - uid: 5062 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-50.5 + rot: 1.5707963267948966 rad + pos: 3.5,-25.5 parent: 2 - - uid: 20361 + - uid: 5180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-49.5 + pos: -7.5,-41.5 parent: 2 - - uid: 20362 + - uid: 5235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-48.5 + rot: 1.5707963267948966 rad + pos: -25.5,2.5 parent: 2 - - uid: 20363 + - uid: 5679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-47.5 + rot: 1.5707963267948966 rad + pos: -1.5,17.5 parent: 2 - - uid: 20364 + - uid: 5874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-46.5 + pos: 24.5,-33.5 parent: 2 - - uid: 20365 + - uid: 6298 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-45.5 + pos: 35.5,-18.5 parent: 2 - - uid: 20366 + - uid: 6647 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-44.5 + pos: -39.5,-12.5 parent: 2 - - uid: 20367 + - uid: 6824 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-43.5 + rot: -1.5707963267948966 rad + pos: 33.5,-46.5 parent: 2 - - uid: 20368 + - uid: 6845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-42.5 + rot: -1.5707963267948966 rad + pos: 15.5,-43.5 parent: 2 - - uid: 20369 + - uid: 7231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-41.5 + pos: -24.5,-42.5 parent: 2 - - uid: 20370 + - uid: 7901 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-40.5 + rot: -1.5707963267948966 rad + pos: 32.5,5.5 parent: 2 - - uid: 20371 + - uid: 8095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-39.5 + rot: -1.5707963267948966 rad + pos: 31.5,-21.5 parent: 2 - - uid: 20372 + - uid: 9892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-38.5 + rot: -1.5707963267948966 rad + pos: -22.5,-55.5 parent: 2 - - uid: 20374 + - uid: 9893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-36.5 + rot: -1.5707963267948966 rad + pos: -17.5,-47.5 parent: 2 - - uid: 20375 + - uid: 9942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-35.5 + rot: -1.5707963267948966 rad + pos: 34.5,-37.5 parent: 2 - - uid: 20376 + - uid: 10698 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-33.5 + pos: 32.5,-21.5 parent: 2 - - uid: 20377 + - uid: 11009 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-32.5 + pos: 24.5,-55.5 parent: 2 - - uid: 20378 + - uid: 11129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-31.5 + pos: 41.5,8.5 parent: 2 - - uid: 20379 + - uid: 11139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-30.5 + rot: 1.5707963267948966 rad + pos: -23.5,-19.5 parent: 2 - - uid: 20380 + - uid: 11144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-29.5 + rot: 1.5707963267948966 rad + pos: -23.5,-42.5 parent: 2 - - uid: 20381 + - uid: 11145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-28.5 + rot: -1.5707963267948966 rad + pos: -22.5,-42.5 parent: 2 - - uid: 20382 + - uid: 12156 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-34.5 + pos: -22.5,-34.5 parent: 2 - - uid: 20383 + - uid: 12173 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - uid: 12174 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-27.5 + pos: -14.5,-38.5 parent: 2 - - uid: 20384 + - uid: 12179 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-26.5 + pos: -22.5,-0.5 parent: 2 - - uid: 20385 + - uid: 12218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-25.5 + pos: -22.5,-33.5 parent: 2 - - uid: 20386 + - uid: 12278 components: - type: Transform - pos: 46.5,-24.5 + rot: 3.141592653589793 rad + pos: -25.5,-42.5 parent: 2 - - uid: 20414 + - uid: 12325 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 13070 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-25.5 + pos: 20.5,10.5 parent: 2 - - uid: 20415 + - uid: 14594 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-25.5 + pos: -25.5,-6.5 parent: 2 -- proto: DisposalRouter - entities: - - uid: 384 + - uid: 14724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-41.5 + pos: 46.5,-39.5 parent: 2 - - type: DisposalRouter - tags: - - Bridge - - uid: 4022 + - uid: 14725 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-4.5 + rot: 1.5707963267948966 rad + pos: 44.5,-39.5 parent: 2 - - type: DisposalRouter - tags: - - Trash - - uid: 7201 + - uid: 14761 components: - type: Transform - pos: -15.5,-0.5 + pos: -48.5,-28.5 parent: 2 - - type: DisposalRouter - tags: - - Security - - uid: 11151 + - uid: 14904 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,10.5 + pos: -33.5,-22.5 parent: 2 - - type: DisposalRouter - tags: - - Mailing Room - - uid: 11152 + - uid: 15356 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,-20.5 + pos: -27.5,-36.5 parent: 2 - - type: DisposalRouter - tags: - - Trash - - uid: 12180 + - uid: 15397 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-21.5 + pos: -27.5,-24.5 parent: 2 - - type: DisposalRouter - tags: - - Science - - uid: 12221 + - uid: 15686 components: - type: Transform - pos: -23.5,-34.5 + pos: 32.5,-20.5 parent: 2 - - type: DisposalRouter - tags: - - Chemistry - - uid: 12433 + - uid: 15735 components: - type: Transform - pos: -23.5,-29.5 + rot: 1.5707963267948966 rad + pos: -43.5,-25.5 parent: 2 - - type: DisposalRouter - tags: - - Medical - - uid: 18552 + - uid: 15758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-32.5 + parent: 2 + - uid: 15759 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-43.5 + pos: -40.5,-32.5 parent: 2 - - type: DisposalRouter - tags: - - Trash - - uid: 20302 + - uid: 15760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,11.5 + pos: -40.5,-31.5 parent: 2 - - type: DisposalRouter - tags: - - Cargo -- proto: DisposalRouterFlipped - entities: - - uid: 2684 + - uid: 15852 components: - type: Transform - pos: -23.5,-33.5 + rot: 3.141592653589793 rad + pos: -35.5,-28.5 parent: 2 - - type: DisposalRouter - tags: - - Botany - - uid: 8351 + - uid: 17010 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-25.5 + pos: -23.5,-46.5 parent: 2 - - type: DisposalRouter - tags: - - Kitchen - - uid: 9203 + - uid: 17462 components: - type: Transform - pos: -16.5,-15.5 + rot: 1.5707963267948966 rad + pos: -15.5,11.5 parent: 2 - - type: DisposalRouter - tags: - - Engineering -- proto: DisposalTagger - entities: - - uid: 4732 + - uid: 17511 components: - type: Transform - pos: 29.5,-24.5 + pos: 12.5,22.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 4917 + - uid: 17512 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-40.5 + rot: -1.5707963267948966 rad + pos: 12.5,20.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 5228 + - uid: 17513 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-28.5 + pos: 11.5,20.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 6104 + - uid: 17523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-3.5 + pos: 15.5,11.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 7211 + - uid: 18103 components: - type: Transform - pos: 11.5,16.5 + rot: 1.5707963267948966 rad + pos: 33.5,-37.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 8300 + - uid: 18105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 + pos: 34.5,-30.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 8617 + - uid: 18106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-44.5 + rot: 3.141592653589793 rad + pos: 29.5,-30.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 8877 + - uid: 18649 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-20.5 + pos: -16.5,-3.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 9143 + - uid: 18650 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-6.5 + pos: -15.5,-3.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 9144 + - uid: 20284 components: - type: Transform - pos: -14.5,12.5 + rot: 1.5707963267948966 rad + pos: -27.5,-34.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 9204 + - uid: 20308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 + pos: 20.5,-20.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 10947 + - uid: 20309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-41.5 + rot: 3.141592653589793 rad + pos: 19.5,-26.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 11005 + - uid: 20310 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,-51.5 + pos: 21.5,-24.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 11053 + - uid: 20312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-51.5 + pos: 46.5,-21.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 11058 + - uid: 20337 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-40.5 + pos: 41.5,-4.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 11097 + - uid: 20338 components: - type: Transform - pos: -16.5,-20.5 + pos: 45.5,-4.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 12263 + - uid: 20339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-38.5 + rot: 1.5707963267948966 rad + pos: 37.5,-53.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 18572 + - uid: 20340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-30.5 + rot: 3.141592653589793 rad + pos: 46.5,-25.5 parent: 2 - - type: DisposalTagger - tag: Trash - - uid: 20304 + - uid: 20341 components: - type: Transform - pos: 16.5,7.5 + pos: 48.5,-25.5 parent: 2 - - type: DisposalTagger - tag: Trash -- proto: DisposalTrunk - entities: - - uid: 330 + - uid: 20342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-6.5 + rot: -1.5707963267948966 rad + pos: 48.5,-52.5 parent: 2 - - uid: 737 + - uid: 20343 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-18.5 + pos: 44.5,-52.5 parent: 2 - - uid: 1381 + - uid: 20344 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-23.5 + pos: 44.5,-53.5 parent: 2 - - uid: 2255 + - uid: 20345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-41.5 + rot: -1.5707963267948966 rad + pos: 37.5,-54.5 parent: 2 - - uid: 3050 + - uid: 20755 components: - type: Transform - pos: -14.5,-37.5 + rot: 1.5707963267948966 rad + pos: 25.5,7.5 parent: 2 - - uid: 3611 + - uid: 20832 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-58.5 + pos: -7.5,-63.5 parent: 2 - - uid: 3659 + - uid: 20835 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-46.5 + pos: 10.5,-63.5 parent: 2 - - uid: 3690 + - uid: 21356 components: - type: Transform - pos: 20.5,15.5 + pos: 31.5,6.5 parent: 2 - - uid: 4635 + - uid: 22555 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-24.5 - parent: 2 - - uid: 5053 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-34.5 + pos: -28.5,-38.5 parent: 2 - - uid: 5151 +- proto: DisposalJunction + entities: + - uid: 2526 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,16.5 + pos: -33.5,-51.5 parent: 2 - - uid: 5167 + - uid: 3213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-22.5 + rot: 3.141592653589793 rad + pos: 10.5,-28.5 parent: 2 - - uid: 5234 + - uid: 4345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,2.5 + rot: 1.5707963267948966 rad + pos: 27.5,7.5 parent: 2 - - uid: 5681 + - uid: 4465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-12.5 + pos: -7.5,-44.5 parent: 2 - - uid: 5728 + - uid: 4892 components: - type: Transform - pos: 29.5,-53.5 + pos: 29.5,-55.5 parent: 2 - - uid: 5744 + - uid: 4949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 + rot: 3.141592653589793 rad + pos: 31.5,-6.5 parent: 2 - - uid: 6173 + - uid: 4957 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-40.5 + pos: 29.5,-25.5 parent: 2 - - uid: 6782 + - uid: 4996 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-46.5 + pos: 10.5,-21.5 parent: 2 - - uid: 6792 + - uid: 5447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-26.5 + pos: 11.5,17.5 parent: 2 - - uid: 6829 + - uid: 6898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-28.5 + rot: 3.141592653589793 rad + pos: 10.5,-43.5 parent: 2 - - uid: 7173 + - uid: 6916 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,23.5 + pos: 11.5,11.5 parent: 2 - - uid: 7263 + - uid: 7192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 + rot: 1.5707963267948966 rad + pos: 44.5,-21.5 parent: 2 - - uid: 7836 + - uid: 7790 components: - type: Transform - pos: 50.5,-15.5 + rot: 1.5707963267948966 rad + pos: -28.5,-31.5 parent: 2 - - uid: 8496 + - uid: 7908 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-42.5 + pos: -23.5,-31.5 parent: 2 - - uid: 8662 + - uid: 7909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,8.5 + pos: 32.5,7.5 parent: 2 - - uid: 9790 + - uid: 8182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-52.5 + rot: 1.5707963267948966 rad + pos: -0.5,-48.5 parent: 2 - - uid: 9885 + - uid: 10307 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-55.5 + pos: 29.5,-21.5 parent: 2 - - uid: 9888 + - uid: 10757 components: - type: Transform - pos: -17.5,-46.5 + rot: 3.141592653589793 rad + pos: -24.5,-47.5 parent: 2 - - uid: 11171 + - uid: 11056 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-58.5 + pos: -25.5,-41.5 parent: 2 - - uid: 11446 + - uid: 11057 + components: + - type: Transform + pos: 48.5,-37.5 + parent: 2 + - uid: 11150 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-36.5 + pos: -14.5,11.5 parent: 2 - - uid: 11469 + - uid: 11830 components: - type: Transform - pos: -43.5,-20.5 + pos: 41.5,6.5 parent: 2 - - uid: 12198 + - uid: 12071 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-66.5 + pos: 21.5,-21.5 parent: 2 - - uid: 12204 + - uid: 15364 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-58.5 + pos: -25.5,-31.5 parent: 2 - - uid: 12288 + - uid: 15609 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,1.5 + rot: 1.5707963267948966 rad + pos: -41.5,-31.5 parent: 2 - - uid: 12898 + - uid: 20299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-15.5 + pos: -15.5,-1.5 parent: 2 - - uid: 13022 +- proto: DisposalJunctionFlipped + entities: + - uid: 3248 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-48.5 + pos: 10.5,-48.5 parent: 2 - - uid: 13023 + - uid: 3550 components: - type: Transform - pos: -49.5,-42.5 + pos: -8.5,-36.5 parent: 2 - - uid: 13155 + - uid: 3914 components: - type: Transform - pos: -37.5,-29.5 + pos: 32.5,15.5 parent: 2 - - uid: 14722 + - uid: 4779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-20.5 + pos: 29.5,-54.5 parent: 2 - - uid: 14882 + - uid: 5169 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-44.5 + pos: -8.5,-41.5 parent: 2 - - uid: 15160 + - uid: 6873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-38.5 + pos: 45.5,-16.5 parent: 2 - - uid: 16126 + - uid: 7894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,15.5 + pos: 32.5,19.5 parent: 2 - - uid: 16531 + - uid: 8093 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-12.5 - parent: 2 - - uid: 16653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-27.5 + pos: 35.5,-21.5 parent: 2 - - uid: 17463 + - uid: 8320 components: - type: Transform - pos: -14.5,17.5 + rot: 1.5707963267948966 rad + pos: 45.5,-21.5 parent: 2 - - uid: 17522 + - uid: 9890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,22.5 + rot: -1.5707963267948966 rad + pos: -20.5,-47.5 parent: 2 - - uid: 17580 + - uid: 9891 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-32.5 + pos: -22.5,-47.5 parent: 2 - - uid: 18097 + - uid: 10758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-32.5 + rot: 3.141592653589793 rad + pos: -33.5,-43.5 parent: 2 - - uid: 18566 + - uid: 11149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-24.5 + rot: 1.5707963267948966 rad + pos: -23.5,-41.5 parent: 2 - - uid: 18568 + - uid: 12153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-25.5 + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 parent: 2 - - uid: 18635 + - uid: 12160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-34.5 + rot: 1.5707963267948966 rad + pos: -12.5,-41.5 parent: 2 - - uid: 18669 + - uid: 15369 components: - type: Transform - pos: -22.5,0.5 + rot: 1.5707963267948966 rad + pos: -27.5,-31.5 parent: 2 - - uid: 18854 + - uid: 15574 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,16.5 + pos: -43.5,-31.5 parent: 2 - - uid: 20303 + - uid: 18098 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,6.5 + pos: 34.5,-32.5 parent: 2 - - uid: 20413 + - uid: 20290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-56.5 + pos: -16.5,-12.5 parent: 2 -- proto: DisposalUnit +- proto: DisposalMachineFrame entities: - - uid: 201 + - uid: 18765 components: - type: Transform - pos: -24.5,2.5 + pos: 79.5,-46.5 parent: 2 - - uid: 815 +- proto: DisposalPipe + entities: + - uid: 13 components: - type: Transform - pos: 34.5,-18.5 + pos: -7.5,-56.5 parent: 2 - - uid: 831 + - uid: 25 components: - type: Transform - pos: -14.5,17.5 + pos: -7.5,-55.5 parent: 2 - - uid: 1394 + - uid: 30 components: - type: Transform - pos: -1.5,16.5 + pos: -7.5,-59.5 parent: 2 - - uid: 3396 + - uid: 344 components: - type: Transform - pos: -15.5,-22.5 + rot: -1.5707963267948966 rad + pos: 28.5,-55.5 parent: 2 - - uid: 3441 + - uid: 374 components: - type: Transform - pos: -14.5,-37.5 + pos: 27.5,4.5 parent: 2 - - uid: 3446 + - uid: 550 components: - type: Transform - pos: -9.5,-34.5 + pos: -39.5,-13.5 parent: 2 - - uid: 3482 + - uid: 819 components: - type: Transform - pos: -5.5,-36.5 + rot: 3.141592653589793 rad + pos: -20.5,-51.5 parent: 2 - - uid: 3617 + - uid: 866 components: - type: Transform - pos: -7.5,-12.5 + pos: 24.5,-41.5 parent: 2 - - uid: 3713 + - uid: 958 components: - type: Transform - pos: 17.5,-28.5 + rot: 1.5707963267948966 rad + pos: 20.5,-33.5 parent: 2 - - uid: 3940 + - uid: 1028 components: - type: Transform - pos: -26.5,-6.5 + rot: -1.5707963267948966 rad + pos: -14.5,-12.5 parent: 2 - - uid: 4242 + - uid: 1250 components: - type: Transform - pos: 22.5,-24.5 + rot: 1.5707963267948966 rad + pos: -6.5,-63.5 parent: 2 - - uid: 4731 + - uid: 1713 components: - type: Transform - pos: 29.5,-53.5 + rot: 1.5707963267948966 rad + pos: 19.5,6.5 parent: 2 - - uid: 4733 + - uid: 1760 components: - type: Transform - pos: -42.5,-23.5 + rot: 1.5707963267948966 rad + pos: -32.5,-51.5 parent: 2 - - uid: 5531 + - uid: 1762 components: - type: Transform - pos: -50.5,-12.5 + rot: -1.5707963267948966 rad + pos: -29.5,-41.5 parent: 2 - - uid: 5834 + - uid: 1846 components: - type: Transform - pos: 31.5,-46.5 + rot: -1.5707963267948966 rad + pos: 37.5,19.5 parent: 2 - - uid: 5974 + - uid: 1928 components: - type: Transform - pos: 19.5,-40.5 + rot: -1.5707963267948966 rad + pos: 32.5,-46.5 parent: 2 - - uid: 6157 + - uid: 1932 components: - type: Transform - pos: 34.5,-6.5 + rot: 3.141592653589793 rad + pos: 45.5,-18.5 parent: 2 - - uid: 6278 + - uid: 2071 components: - type: Transform - pos: 18.5,-20.5 + pos: -7.5,-54.5 parent: 2 - - uid: 6377 + - uid: 2081 components: - type: Transform - pos: 40.5,8.5 + pos: 10.5,-56.5 parent: 2 - - uid: 6474 + - uid: 2388 components: - type: Transform - pos: -17.5,-46.5 + rot: 3.141592653589793 rad + pos: -25.5,-4.5 parent: 2 - - uid: 7159 + - uid: 2429 components: - type: Transform - pos: 34.5,23.5 + rot: -1.5707963267948966 rad + pos: 49.5,-16.5 parent: 2 - - uid: 7578 + - uid: 2445 components: - type: Transform - pos: -10.5,-44.5 + rot: -1.5707963267948966 rad + pos: 47.5,-16.5 parent: 2 - - uid: 7604 + - uid: 2560 components: - type: Transform - pos: -9.5,-66.5 + pos: -33.5,-46.5 parent: 2 - - uid: 8107 + - uid: 2569 components: - type: Transform - pos: -49.5,-42.5 + pos: -7.5,-50.5 parent: 2 - - uid: 8344 + - uid: 2584 components: - type: Transform - pos: 50.5,-15.5 + rot: -1.5707963267948966 rad + pos: -7.5,-36.5 parent: 2 - - uid: 8711 + - uid: 2694 components: - type: Transform - pos: 34.5,15.5 + rot: -1.5707963267948966 rad + pos: 5.5,-48.5 parent: 2 - - uid: 9187 + - uid: 2695 components: - type: Transform - pos: -9.5,-58.5 + pos: -33.5,-45.5 parent: 2 - - uid: 9233 + - uid: 2696 components: - type: Transform - pos: -41.5,-48.5 + pos: -33.5,-47.5 parent: 2 - - uid: 9527 + - uid: 2839 components: - type: Transform - pos: 29.5,1.5 + pos: -33.5,-53.5 parent: 2 - - uid: 9791 + - uid: 2845 components: - type: Transform - pos: -20.5,-52.5 + pos: -33.5,-52.5 parent: 2 - - uid: 11049 + - uid: 2846 components: - type: Transform - pos: -28.5,-56.5 + rot: -1.5707963267948966 rad + pos: -28.5,-41.5 parent: 2 - - uid: 11142 + - uid: 2893 components: - type: Transform - pos: 9.5,-58.5 + rot: -1.5707963267948966 rad + pos: 34.5,-25.5 parent: 2 - - uid: 11189 + - uid: 2902 components: - type: Transform - pos: 11.5,22.5 + pos: -33.5,-54.5 parent: 2 - - uid: 12613 + - uid: 2903 components: - type: Transform - pos: 44.5,-24.5 + rot: 1.5707963267948966 rad + pos: 35.5,-25.5 parent: 2 - - uid: 13069 + - uid: 2905 components: - type: Transform - pos: -27.5,-25.5 + rot: -1.5707963267948966 rad + pos: 6.5,-48.5 parent: 2 - - uid: 13233 + - uid: 2917 components: - type: Transform - pos: 16.5,6.5 + pos: -33.5,-57.5 parent: 2 - - uid: 14246 + - uid: 2949 components: - type: Transform - pos: 36.5,-27.5 + rot: -1.5707963267948966 rad + pos: -34.5,-60.5 parent: 2 - - uid: 15157 + - uid: 2952 components: - type: Transform - pos: -25.5,-38.5 + pos: -33.5,-59.5 parent: 2 - - uid: 15894 + - uid: 2955 components: - type: Transform - pos: -25.5,-16.5 + rot: -1.5707963267948966 rad + pos: -15.5,-12.5 parent: 2 - - uid: 17611 + - uid: 2957 components: - type: Transform - pos: -37.5,-29.5 + rot: -1.5707963267948966 rad + pos: -26.5,-41.5 parent: 2 - - uid: 18096 + - uid: 2959 components: - type: Transform - pos: 33.5,-32.5 + pos: 10.5,-39.5 parent: 2 -- proto: DisposalYJunction - entities: - - uid: 4786 + - uid: 3052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-48.5 + rot: -1.5707963267948966 rad + pos: 9.5,-48.5 parent: 2 - - uid: 8660 + - uid: 3071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,6.5 + rot: -1.5707963267948966 rad + pos: 8.5,-48.5 parent: 2 - - uid: 12242 + - uid: 3142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-19.5 + pos: -33.5,-49.5 parent: 2 - - uid: 12720 + - uid: 3151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 + pos: -33.5,-50.5 parent: 2 - - uid: 14723 + - uid: 3153 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-39.5 + pos: -33.5,-48.5 parent: 2 -- proto: DogBed - entities: - - uid: 671 + - uid: 3157 components: - type: Transform - pos: -19.5,-5.5 + pos: -33.5,-55.5 parent: 2 - - uid: 4638 + - uid: 3158 components: - type: Transform - pos: -42.5,-33.5 + pos: -33.5,-56.5 parent: 2 - - uid: 7547 + - uid: 3159 components: - type: Transform - pos: -15.5,-46.5 + pos: -33.5,-58.5 parent: 2 - - uid: 7733 + - uid: 3162 components: - type: Transform - pos: -34.5,-38.5 + rot: -1.5707963267948966 rad + pos: 4.5,-48.5 parent: 2 - - uid: 9647 + - uid: 3164 components: - type: Transform - pos: -6.5,17.5 + rot: -1.5707963267948966 rad + pos: 3.5,-48.5 parent: 2 - - uid: 9969 + - uid: 3234 components: - type: Transform - pos: -23.5,-53.5 + rot: 3.141592653589793 rad + pos: -23.5,-32.5 parent: 2 - - uid: 10728 + - uid: 3240 components: - type: Transform - pos: -42.5,-35.5 + rot: 1.5707963267948966 rad + pos: 26.5,6.5 parent: 2 -- proto: DoorElectronics - entities: - - uid: 10846 + - uid: 3380 components: - type: Transform - pos: 65.54841,-77.60572 + pos: 10.5,-38.5 parent: 2 -- proto: DresserCaptainFilled - entities: - - uid: 20236 + - uid: 3381 components: - type: Transform - pos: -26.5,-55.5 + rot: 1.5707963267948966 rad + pos: -22.5,-46.5 parent: 2 -- proto: DresserChiefEngineerFilled - entities: - - uid: 2576 + - uid: 3454 components: - type: Transform - pos: -4.5,-25.5 + rot: 3.141592653589793 rad + pos: -23.5,-21.5 parent: 2 -- proto: DresserChiefMedicalOfficerFilled - entities: - - uid: 15312 + - uid: 3484 components: - type: Transform - pos: -42.5,-38.5 + rot: 1.5707963267948966 rad + pos: -21.5,-41.5 parent: 2 -- proto: DresserFilled - entities: - - uid: 3806 + - uid: 3516 components: - type: Transform - pos: 5.5,-39.5 + rot: -1.5707963267948966 rad + pos: 38.5,19.5 parent: 2 - - uid: 6044 + - uid: 3521 components: - type: Transform - pos: 5.5,-41.5 + rot: -1.5707963267948966 rad + pos: -13.5,11.5 parent: 2 -- proto: DresserHeadOfPersonnelFilled - entities: - - uid: 4707 + - uid: 3566 components: - type: Transform - pos: -10.5,-51.5 + rot: 3.141592653589793 rad + pos: 45.5,-17.5 parent: 2 -- proto: DresserHeadOfSecurityFilled - entities: - - uid: 814 + - uid: 3576 components: - type: Transform - pos: -21.5,12.5 + pos: 29.5,-57.5 parent: 2 -- proto: DresserQuarterMasterFilled - entities: - - uid: 14268 + - uid: 3597 components: - type: Transform - pos: -6.5,19.5 + rot: -1.5707963267948966 rad + pos: 39.5,19.5 parent: 2 -- proto: DresserResearchDirectorFilled - entities: - - uid: 4172 + - uid: 3688 components: - type: Transform - pos: 26.5,-33.5 + pos: 46.5,-22.5 parent: 2 -- proto: DrinkBeerBottleFull - entities: - - uid: 4302 + - uid: 3698 components: - type: Transform - pos: -13.470593,-17.08872 + rot: -1.5707963267948966 rad + pos: -6.5,-36.5 parent: 2 - - uid: 4319 + - uid: 3724 components: - type: Transform - pos: -13.260548,-17.318047 + rot: 3.141592653589793 rad + pos: 0.5,-31.5 parent: 2 - - uid: 4321 + - uid: 3735 components: - type: Transform - pos: -13.710296,-17.338894 + rot: 3.141592653589793 rad + pos: 48.5,-51.5 parent: 2 -- proto: DrinkBloodGlass - entities: - - uid: 6694 + - uid: 3758 components: - type: Transform - pos: 19.484085,-52.344112 + rot: -1.5707963267948966 rad + pos: 35.5,19.5 parent: 2 -- proto: DrinkCanPack - entities: - - uid: 13018 + - uid: 3821 components: - type: Transform - pos: -24.276548,-48.390488 + rot: -1.5707963267948966 rad + pos: 36.5,19.5 parent: 2 -- proto: DrinkCreamCarton - entities: - - uid: 3245 + - uid: 3849 components: - type: Transform - pos: -2.4337258,-32.333588 + pos: 9.5,-17.5 parent: 2 -- proto: DrinkDoctorsDelightGlass - entities: - - uid: 8346 + - uid: 3874 components: - type: Transform - pos: -40.717422,-34.3464 + pos: 9.5,-18.5 parent: 2 -- proto: DrinkFlask - entities: - - uid: 20258 + - uid: 3879 components: - type: Transform - pos: -26.689734,-54.180744 + pos: 9.5,-20.5 parent: 2 -- proto: DrinkGinBottleFull - entities: - - uid: 17686 + - uid: 3902 components: - type: Transform - pos: -26.391235,-54.158222 + rot: 3.141592653589793 rad + pos: 32.5,14.5 parent: 2 -- proto: DrinkGlass - entities: - - uid: 3700 + - uid: 3927 components: - type: Transform - pos: -4.397609,-45.428547 + rot: -1.5707963267948966 rad + pos: -12.5,-12.5 parent: 2 - - uid: 3704 + - uid: 3928 components: - type: Transform - pos: -4.6477337,-45.22007 + rot: -1.5707963267948966 rad + pos: -13.5,-12.5 parent: 2 - - uid: 17135 + - uid: 3994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.3320751,-41.260803 + rot: 1.5707963267948966 rad + pos: 2.5,-27.5 parent: 2 - - uid: 17137 + - uid: 4067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.6169379,-41.441483 + rot: -1.5707963267948966 rad + pos: 6.5,-25.5 parent: 2 -- proto: DrinkGoldenCup - entities: - - uid: 13172 + - uid: 4097 components: - type: Transform - pos: 8.481442,4.6880107 + rot: 1.5707963267948966 rad + pos: 22.5,6.5 parent: 2 -- proto: DrinkHotCoco - entities: - - uid: 3404 + - uid: 4118 components: - type: Transform - pos: -21.652742,-16.472178 + rot: -1.5707963267948966 rad + pos: 7.5,-25.5 parent: 2 - - uid: 5083 + - uid: 4149 components: - type: Transform - pos: -36.873867,-20.45384 + rot: 1.5707963267948966 rad + pos: 16.5,6.5 parent: 2 - - uid: 7000 + - uid: 4156 components: - type: Transform - pos: 23.939922,-9.299497 + rot: 1.5707963267948966 rad + pos: 28.5,6.5 parent: 2 -- proto: DrinkIcedGreenTeaGlass - entities: - - uid: 2030 + - uid: 4196 components: - type: Transform - pos: 15.729584,-57.12312 + rot: -1.5707963267948966 rad + pos: -9.5,-41.5 parent: 2 -- proto: DrinkJuiceLimeCarton - entities: - - uid: 821 + - uid: 4226 components: - type: Transform - pos: -26.630938,-54.356277 + pos: -7.5,-45.5 parent: 2 -- proto: DrinkJuiceOrangeCarton - entities: - - uid: 2551 + - uid: 4235 components: - type: Transform - pos: -20.543522,10.757981 + pos: 10.5,-27.5 parent: 2 -- proto: DrinkLemonadeGlass - entities: - - uid: 5286 + - uid: 4253 components: - type: Transform - pos: 31.741688,-35.19893 + rot: 3.141592653589793 rad + pos: -16.5,-16.5 parent: 2 -- proto: DrinkMilkCarton - entities: - - uid: 3244 + - uid: 4376 components: - type: Transform - pos: -2.6525853,-32.28147 + pos: -7.5,-43.5 parent: 2 -- proto: DrinkMopwataBottleRandom - entities: - - uid: 18891 + - uid: 4382 components: - type: Transform - pos: 35.367874,17.591213 + rot: 3.141592653589793 rad + pos: -16.5,-4.5 parent: 2 - - uid: 18980 + - uid: 4385 components: - type: Transform - pos: 35.743057,17.789268 + rot: -1.5707963267948966 rad + pos: 41.5,-21.5 parent: 2 -- proto: DrinkMug - entities: - - uid: 8869 + - uid: 4387 components: - type: Transform - pos: 44.624287,-2.3087473 + rot: 3.141592653589793 rad + pos: 29.5,-28.5 parent: 2 -- proto: DrinkMugBlue - entities: - - uid: 3930 + - uid: 4388 components: - type: Transform - pos: -15.916694,-48.270462 + rot: 3.141592653589793 rad + pos: 29.5,-26.5 parent: 2 -- proto: DrinkMugRainbow - entities: - - uid: 11561 + - uid: 4390 components: - type: Transform - pos: 38.63713,-59.378235 + rot: 3.141592653589793 rad + pos: 29.5,-29.5 parent: 2 -- proto: DrinkMugRed - entities: - - uid: 13344 + - uid: 4391 components: - type: Transform - pos: -27.239447,0.50863326 + rot: 3.141592653589793 rad + pos: 29.5,-27.5 parent: 2 -- proto: DrinkShaker - entities: - - uid: 3699 + - uid: 4431 components: - type: Transform - pos: -4.178751,-45.28261 + rot: 1.5707963267948966 rad + pos: 27.5,6.5 parent: 2 - - uid: 7371 + - uid: 4448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.393734,11.449828 + pos: -23.5,-39.5 parent: 2 - - uid: 18819 + - uid: 4449 components: - type: Transform - pos: 72.445305,-64.57543 + rot: 1.5707963267948966 rad + pos: -19.5,-47.5 parent: 2 - - uid: 20412 + - uid: 4476 components: - type: Transform - pos: -7.6339245,17.767937 + rot: 1.5707963267948966 rad + pos: 10.5,17.5 parent: 2 -- proto: DrinkShotGlass - entities: - - uid: 6 + - uid: 4598 components: - type: Transform - pos: 0.40104163,24.025158 + pos: 27.5,5.5 parent: 2 - - uid: 1766 + - uid: 4601 components: - type: Transform - pos: 52.977722,-39.23201 + pos: 27.5,6.5 parent: 2 - - uid: 1806 + - uid: 4623 components: - type: Transform - pos: 53.98864,-39.388367 + rot: 3.141592653589793 rad + pos: 44.5,-23.5 parent: 2 - - uid: 3041 + - uid: 4629 components: - type: Transform - pos: -0.088784575,23.71244 + rot: 1.5707963267948966 rad + pos: 30.5,-25.5 parent: 2 -- proto: DrinkSoyMilkCarton - entities: - - uid: 3246 + - uid: 4656 components: - type: Transform - pos: -2.246133,-32.28147 + rot: 1.5707963267948966 rad + pos: 1.5,-27.5 parent: 2 -- proto: DrinkSpaceGlue - entities: - - uid: 3898 + - uid: 4687 components: - type: Transform - pos: 20.686771,-38.929775 + rot: -1.5707963267948966 rad + pos: 33.5,15.5 parent: 2 -- proto: DrinkTeacup - entities: - - uid: 290 + - uid: 4702 components: - type: Transform - pos: 6.7192326,-51.458447 + rot: -1.5707963267948966 rad + pos: 40.5,-21.5 parent: 2 -- proto: DrinkTonicWaterCan - entities: - - uid: 16986 + - uid: 4708 components: - type: Transform - pos: -26.356236,-54.17032 + rot: -1.5707963267948966 rad + pos: 7.5,-48.5 parent: 2 -- proto: DrinkVermouthBottleFull - entities: - - uid: 20407 + - uid: 4713 components: - type: Transform - pos: -7.654758,17.79921 + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 parent: 2 -- proto: DrinkVodkaBottleFull - entities: - - uid: 2377 + - uid: 4753 components: - type: Transform - pos: -20.329561,10.8367405 + pos: -33.5,-42.5 parent: 2 -- proto: DrinkWaterBottleFull - entities: - - uid: 16666 + - uid: 4767 components: - type: Transform - pos: -34.283783,-2.3082447 + rot: -1.5707963267948966 rad + pos: 40.5,19.5 parent: 2 -- proto: DrinkWaterCup - entities: - - uid: 1051 + - uid: 4785 components: - type: Transform - pos: -0.5374012,12.51578 + rot: -1.5707963267948966 rad + pos: -30.5,-41.5 parent: 2 - - uid: 1064 + - uid: 4799 components: - type: Transform - pos: -0.67200494,12.711606 + rot: -1.5707963267948966 rad + pos: -31.5,-41.5 parent: 2 -- proto: DrinkWaterJug - entities: - - uid: 320 + - uid: 4865 components: - type: Transform - pos: 5.6644287,-44.29744 + pos: -8.5,-37.5 parent: 2 -- proto: DrinkWhiskeyBottleFull - entities: - - uid: 7297 + - uid: 4868 components: - type: Transform - pos: 35.441143,3.7775984 + pos: -8.5,-38.5 parent: 2 - - uid: 7805 + - uid: 4878 components: - type: Transform - pos: 0.18218291,24.00431 + pos: -8.5,-39.5 parent: 2 - - uid: 20411 + - uid: 4910 components: - type: Transform - pos: -7.3526745,17.8826 + rot: 3.141592653589793 rad + pos: 44.5,-41.5 parent: 2 -- proto: DrinkWhiskeyGlass - entities: - - uid: 7298 + - uid: 4933 components: - type: Transform - pos: 35.67042,3.7359033 + rot: 1.5707963267948966 rad + pos: -34.5,-43.5 parent: 2 -- proto: ElectricGuitarInstrument - entities: - - uid: 3227 + - uid: 4969 components: - type: Transform - pos: 10.388435,3.6684923 + pos: -23.5,-40.5 parent: 2 -- proto: EmergencyLight - entities: - - uid: 1154 + - uid: 5004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-1.5 + pos: -23.5,-38.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 2699 + - uid: 5006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-5.5 + pos: -23.5,-30.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 2792 + - uid: 5010 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -7.5,-47.5 + parent: 2 + - uid: 5055 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-58.5 + pos: 0.5,-28.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 2952 + - uid: 5057 components: - type: Transform - pos: -39.5,-40.5 + rot: 3.141592653589793 rad + pos: 0.5,-29.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 3539 + - uid: 5063 components: - type: Transform - pos: -36.5,-57.5 + rot: 3.141592653589793 rad + pos: 0.5,-30.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 4936 + - uid: 5128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,2.5 + pos: -33.5,-44.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 5436 + - uid: 5164 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-2.5 + pos: -21.5,-46.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 5680 + - uid: 5168 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,16.5 + pos: -16.5,-21.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 6744 + - uid: 5171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-36.5 + rot: 1.5707963267948966 rad + pos: -0.5,17.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 6789 + - uid: 5189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-33.5 + rot: 1.5707963267948966 rad + pos: 0.5,17.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 8350 + - uid: 5210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-11.5 + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 8962 + - uid: 5211 components: - type: Transform - pos: -14.5,-23.5 + rot: 1.5707963267948966 rad + pos: -23.5,-47.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 12379 + - uid: 5220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 + pos: -23.5,-29.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 14438 + - uid: 5225 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,5.5 + pos: 1.5,17.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 14568 + - uid: 5226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 5230 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-53.5 + pos: 46.5,-37.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16689 + - uid: 5231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-3.5 + pos: 32.5,-54.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16691 + - uid: 5232 components: - type: Transform - pos: 40.5,-20.5 + rot: -1.5707963267948966 rad + pos: 4.5,-25.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16692 + - uid: 5236 components: - type: Transform - pos: 51.5,-24.5 + rot: -1.5707963267948966 rad + pos: 5.5,-25.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16693 + - uid: 5237 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-18.5 + pos: -25.5,1.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16694 + - uid: 5238 components: - type: Transform - pos: 26.5,-20.5 + rot: 3.141592653589793 rad + pos: -25.5,0.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16695 + - uid: 5239 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-22.5 + pos: -23.5,-35.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16696 + - uid: 5248 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-18.5 + pos: -16.5,-6.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16697 + - uid: 5249 components: - type: Transform - pos: 56.5,-24.5 + rot: 3.141592653589793 rad + pos: -16.5,-5.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16698 + - uid: 5250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-27.5 + rot: 1.5707963267948966 rad + pos: 3.5,17.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16699 + - uid: 5251 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,-31.5 + pos: -15.5,-2.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16700 + - uid: 5257 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-22.5 + pos: -15.5,4.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16701 + - uid: 5258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-27.5 + rot: 3.141592653589793 rad + pos: -15.5,5.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16702 + - uid: 5259 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-40.5 + rot: 3.141592653589793 rad + pos: -15.5,6.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16703 + - uid: 5260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-48.5 + rot: 3.141592653589793 rad + pos: -15.5,7.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16704 + - uid: 5261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-48.5 + rot: 3.141592653589793 rad + pos: -15.5,8.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16705 + - uid: 5262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-59.5 + rot: 3.141592653589793 rad + pos: -15.5,9.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16706 + - uid: 5265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-65.5 + pos: -15.5,10.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16707 + - uid: 5273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-65.5 + rot: 3.141592653589793 rad + pos: -25.5,-3.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16708 + - uid: 5282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-57.5 + rot: 3.141592653589793 rad + pos: -23.5,-45.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16710 + - uid: 5283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-53.5 + pos: 3.5,-26.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16711 + - uid: 5301 components: - type: Transform - pos: 1.5,-47.5 + rot: 1.5707963267948966 rad + pos: 5.5,17.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16712 + - uid: 5306 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-4.5 + rot: 1.5707963267948966 rad + pos: 6.5,17.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16713 + - uid: 5392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-1.5 + rot: 1.5707963267948966 rad + pos: 7.5,17.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16714 + - uid: 5434 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,6.5 + pos: 8.5,17.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16720 + - uid: 5441 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,10.5 + pos: 9.5,17.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16722 + - uid: 5506 components: - type: Transform - pos: -27.5,0.5 + pos: 10.5,-37.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16726 + - uid: 5507 components: - type: Transform - pos: -23.5,-7.5 + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16727 + - uid: 5564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16729 + - uid: 5619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-4.5 + rot: 1.5707963267948966 rad + pos: -24.5,-1.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16733 + - uid: 5670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-13.5 + rot: -1.5707963267948966 rad + pos: 25.5,-55.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16734 + - uid: 6148 components: - type: Transform - pos: -0.5,-6.5 + rot: -1.5707963267948966 rad + pos: 34.5,19.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16735 + - uid: 6150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-39.5 + rot: 3.141592653589793 rad + pos: 32.5,24.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16736 + - uid: 6209 components: - type: Transform - pos: -32.5,-67.5 + rot: -1.5707963267948966 rad + pos: 26.5,-55.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16737 + - uid: 6210 components: - type: Transform - pos: -11.5,-53.5 + rot: -1.5707963267948966 rad + pos: 27.5,-55.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16738 + - uid: 6215 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-48.5 + pos: 29.5,-56.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16739 + - uid: 6251 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-53.5 + pos: 33.5,19.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16741 + - uid: 6277 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-56.5 + pos: -22.5,-1.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16742 + - uid: 6279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-43.5 + rot: 3.141592653589793 rad + pos: 10.5,-41.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16743 + - uid: 6291 components: - type: Transform - pos: -47.5,-42.5 + pos: 35.5,-19.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16746 + - uid: 6299 components: - type: Transform - pos: -36.5,-20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-33.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16747 + - uid: 6302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-27.5 + rot: 1.5707963267948966 rad + pos: 11.5,-33.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16748 + - uid: 6340 components: - type: Transform - pos: -29.5,-29.5 + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16750 + - uid: 6417 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 + - uid: 6444 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-35.5 + pos: 48.5,-16.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16751 + - uid: 6463 components: - type: Transform - pos: -16.5,-32.5 + rot: -1.5707963267948966 rad + pos: 26.5,7.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16753 + - uid: 6539 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-20.5 + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16754 + - uid: 6639 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-16.5 + pos: 32.5,23.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16755 + - uid: 6748 components: - type: Transform - pos: -51.5,-11.5 + pos: 20.5,13.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16757 + - uid: 6798 components: - type: Transform - pos: -67.5,-14.5 + rot: 1.5707963267948966 rad + pos: 31.5,-25.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16758 + - uid: 6799 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,-10.5 + rot: 1.5707963267948966 rad + pos: 32.5,-25.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16764 + - uid: 6800 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-13.5 + pos: 33.5,-25.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16766 + - uid: 6810 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,18.5 + pos: 33.5,-45.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16767 + - uid: 6811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,35.5 + rot: 3.141592653589793 rad + pos: 33.5,-44.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16768 + - uid: 6812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,22.5 + rot: 3.141592653589793 rad + pos: 33.5,-43.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16769 + - uid: 6813 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,12.5 + rot: 3.141592653589793 rad + pos: 33.5,-42.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16770 + - uid: 6814 components: - type: Transform - pos: 24.5,-8.5 + rot: 3.141592653589793 rad + pos: 33.5,-41.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16771 + - uid: 6815 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-0.5 + pos: 33.5,-40.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16772 + - uid: 6816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-18.5 + rot: 3.141592653589793 rad + pos: 33.5,-39.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16773 + - uid: 6817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-43.5 + rot: 3.141592653589793 rad + pos: 33.5,-38.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16775 + - uid: 6828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-25.5 + pos: 29.5,-23.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16776 + - uid: 6830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-14.5 + rot: -1.5707963267948966 rad + pos: 16.5,-28.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 16778 + - uid: 6831 components: - type: Transform - pos: 30.5,-37.5 + rot: -1.5707963267948966 rad + pos: 15.5,-28.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 17136 + - uid: 6832 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,16.5 + pos: 14.5,-28.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 18371 + - uid: 6833 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-10.5 + pos: 13.5,-28.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 18964 + - uid: 6834 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,12.5 + pos: 12.5,-28.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 19286 + - uid: 6847 components: - type: Transform - pos: 61.5,-52.5 + rot: 1.5707963267948966 rad + pos: 11.5,-43.5 parent: 2 - - type: Battery - startingCharge: 30000 - - uid: 20766 + - uid: 6848 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,29.5 + pos: 12.5,-43.5 parent: 2 - - type: Battery - startingCharge: 30000 -- proto: EmergencyMedipen - entities: - - uid: 4814 + - uid: 6861 components: - type: Transform - pos: -29.574272,-25.38519 + rot: 3.141592653589793 rad + pos: 10.5,-35.5 parent: 2 - - uid: 4815 + - uid: 6862 components: - type: Transform - pos: -29.574272,-25.187136 + rot: 3.141592653589793 rad + pos: 10.5,-34.5 parent: 2 - - uid: 4816 + - uid: 6863 components: - type: Transform - pos: -29.574272,-25.593668 + rot: 1.5707963267948966 rad + pos: 14.5,-43.5 parent: 2 -- proto: EmergencyRollerBed - entities: - - uid: 1510 + - uid: 6864 components: - type: Transform - pos: -31.5,-29.5 + rot: 3.141592653589793 rad + pos: 10.5,-32.5 parent: 2 - - uid: 1880 + - uid: 6865 components: - type: Transform - pos: 52.441402,-37.397106 + rot: 3.141592653589793 rad + pos: 10.5,-31.5 parent: 2 - - uid: 7269 + - uid: 6866 components: - type: Transform - pos: -32.5,-29.5 + rot: 3.141592653589793 rad + pos: 10.5,-30.5 parent: 2 - - uid: 18764 + - uid: 6869 components: - type: Transform - pos: 75.49805,-44.26112 + rot: 3.141592653589793 rad + pos: 10.5,-44.5 parent: 2 -- proto: Envelope - entities: - - uid: 18858 + - uid: 6870 components: - type: Transform - pos: 16.005564,13.58702 + rot: 1.5707963267948966 rad + pos: 12.5,-33.5 parent: 2 -- proto: EvidenceMarkerOne - entities: - - uid: 1842 + - uid: 6893 components: - type: Transform - pos: 53.401356,-41.193207 + rot: 1.5707963267948966 rad + pos: 13.5,-33.5 parent: 2 -- proto: EvidenceMarkerThree - entities: - - uid: 2203 + - uid: 6894 components: - type: Transform - pos: 50.5562,-39.54623 + rot: 1.5707963267948966 rad + pos: 14.5,-33.5 parent: 2 -- proto: EvidenceMarkerTwo - entities: - - uid: 2170 + - uid: 6895 components: - type: Transform - pos: 52.380016,-39.285633 + rot: 1.5707963267948966 rad + pos: 15.5,-33.5 parent: 2 -- proto: ExosuitFabricator - entities: - - uid: 8462 + - uid: 6896 components: - type: Transform - pos: 34.5,-27.5 + rot: 1.5707963267948966 rad + pos: 16.5,-33.5 parent: 2 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 3541 + - uid: 6897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,21.5 + pos: 17.5,-33.5 parent: 2 - - uid: 3633 + - uid: 6907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,21.5 + rot: -1.5707963267948966 rad + pos: 40.5,6.5 parent: 2 - - uid: 5101 + - uid: 6936 components: - type: Transform - pos: -23.5,6.5 + rot: -1.5707963267948966 rad + pos: 34.5,6.5 parent: 2 - - uid: 5429 + - uid: 7071 components: - type: Transform - pos: -22.5,15.5 + pos: 24.5,-43.5 parent: 2 - - uid: 5444 + - uid: 7136 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,-37.5 + pos: 32.5,22.5 parent: 2 - - uid: 5833 + - uid: 7137 components: - type: Transform - pos: 26.5,-26.5 + rot: 3.141592653589793 rad + pos: 32.5,21.5 parent: 2 - - uid: 9363 + - uid: 7181 components: - type: Transform - pos: 51.5,-23.5 + pos: 32.5,17.5 parent: 2 - - uid: 10348 + - uid: 7182 components: - type: Transform - pos: 9.5,-63.5 + pos: 32.5,16.5 parent: 2 - - uid: 12342 + - uid: 7465 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-39.5 + pos: 26.5,-21.5 parent: 2 - - uid: 17619 + - uid: 7584 components: - type: Transform - pos: -23.5,-2.5 + pos: 10.5,-54.5 parent: 2 - - uid: 17620 + - uid: 7586 components: - type: Transform - pos: -11.5,9.5 + pos: 10.5,-60.5 parent: 2 - - uid: 17621 + - uid: 7587 components: - type: Transform - pos: 0.5,13.5 + pos: 10.5,-57.5 parent: 2 - - uid: 17622 + - uid: 7718 components: - type: Transform - pos: 13.5,7.5 + rot: 1.5707963267948966 rad + pos: -27.5,-41.5 parent: 2 - - uid: 17623 + - uid: 7719 components: - type: Transform - pos: 18.5,-1.5 + pos: 24.5,-34.5 parent: 2 - - uid: 17624 + - uid: 7849 components: - type: Transform - pos: 34.5,-2.5 + pos: 24.5,-37.5 parent: 2 - - uid: 17626 + - uid: 7850 components: - type: Transform - pos: 30.5,39.5 + pos: 24.5,-38.5 parent: 2 - - uid: 17628 + - uid: 7893 components: - type: Transform - pos: 17.5,-23.5 + rot: 3.141592653589793 rad + pos: 32.5,20.5 parent: 2 - - uid: 17629 + - uid: 7898 components: - type: Transform - pos: 8.5,-43.5 + rot: 1.5707963267948966 rad + pos: 24.5,6.5 parent: 2 - - uid: 17630 + - uid: 7900 components: - type: Transform - pos: -1.5,-46.5 + rot: 1.5707963267948966 rad + pos: 25.5,6.5 parent: 2 - - uid: 17631 + - uid: 7906 components: - type: Transform - pos: -6.5,-63.5 + pos: 25.5,6.5 parent: 2 - - uid: 17632 + - uid: 7918 components: - type: Transform - pos: -21.5,-50.5 + rot: 3.141592653589793 rad + pos: 31.5,-4.5 parent: 2 - - uid: 17633 + - uid: 7921 components: - type: Transform - pos: -32.5,-59.5 + rot: 1.5707963267948966 rad + pos: 18.5,-20.5 parent: 2 - - uid: 17635 + - uid: 7936 components: - type: Transform - pos: -31.5,-22.5 + pos: 21.5,-22.5 parent: 2 - - uid: 17636 + - uid: 7997 components: - type: Transform - pos: -21.5,-17.5 + rot: -1.5707963267948966 rad + pos: 23.5,6.5 parent: 2 - - uid: 20761 + - uid: 8092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,14.5 + pos: 15.5,7.5 parent: 2 - - uid: 20762 + - uid: 8201 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-23.5 + pos: 22.5,-33.5 parent: 2 -- proto: EZNutrientChemistryBottle - entities: - - uid: 17701 + - uid: 8289 components: - type: Transform - pos: 48.696175,-60.376625 + pos: 24.5,-40.5 parent: 2 -- proto: FaxMachineBase - entities: - - uid: 626 + - uid: 8325 components: - type: Transform - pos: -27.5,4.5 + pos: 31.5,-3.5 parent: 2 - - type: FaxMachine - name: Security - - uid: 2661 + - uid: 8326 components: - type: Transform - pos: 2.5,20.5 + pos: 10.5,-42.5 parent: 2 - - type: FaxMachine - name: Cargo - - uid: 3574 + - uid: 8461 components: - type: Transform - pos: 18.5,-25.5 + pos: 32.5,18.5 parent: 2 - - type: FaxMachine - name: Science - - uid: 3951 + - uid: 8502 components: - type: Transform - pos: 15.5,-35.5 + rot: 3.141592653589793 rad + pos: -25.5,-5.5 parent: 2 - - type: FaxMachine - name: Library - - uid: 4817 + - uid: 8512 components: - type: Transform - pos: -11.5,-13.5 + pos: 31.5,-1.5 parent: 2 - - uid: 6057 + - uid: 8521 components: - type: Transform - pos: 35.5,-2.5 + pos: 31.5,-2.5 parent: 2 - - type: FaxMachine - name: Chapel - - uid: 6354 + - uid: 8575 components: - type: Transform - pos: -12.5,-48.5 + rot: -1.5707963267948966 rad + pos: -34.5,-22.5 parent: 2 - - type: FaxMachine - name: HoP - - uid: 8716 + - uid: 8628 components: - type: Transform - pos: 27.5,13.5 + rot: -1.5707963267948966 rad + pos: 35.5,6.5 parent: 2 - - type: FaxMachine - name: Lawyer - - uid: 9402 + - uid: 8633 components: - type: Transform - pos: 28.5,4.5 + pos: 41.5,5.5 parent: 2 - - type: FaxMachine - name: Janitorial - - uid: 10152 + - uid: 8639 components: - type: Transform - pos: -34.5,-44.5 + rot: -1.5707963267948966 rad + pos: 33.5,6.5 parent: 2 - - type: FaxMachine - name: Psychologist - - uid: 11473 + - uid: 8648 components: - type: Transform - pos: -45.5,-21.5 - parent: 2 - - type: FaxMachine - name: Medical - - uid: 11651 - components: - - type: Transform - pos: -17.5,-50.5 + rot: -1.5707963267948966 rad + pos: 39.5,6.5 parent: 2 - - type: FaxMachine - name: Bridge - - uid: 20243 + - uid: 8649 components: - type: Transform - pos: -24.5,-50.5 + rot: -1.5707963267948966 rad + pos: 38.5,6.5 parent: 2 - - type: FaxMachine - name: Captain -- proto: FigureSpawner - entities: - - uid: 3832 + - uid: 8650 components: - type: Transform - pos: 13.5,-38.5 + rot: -1.5707963267948966 rad + pos: 37.5,6.5 parent: 2 - - uid: 3833 + - uid: 8651 components: - type: Transform - pos: 20.5,-38.5 + rot: -1.5707963267948966 rad + pos: 36.5,6.5 parent: 2 - - uid: 11317 + - uid: 8652 components: - type: Transform - pos: -40.5,-51.5 + pos: 41.5,7.5 parent: 2 -- proto: filingCabinetDrawerRandom - entities: - - uid: 3740 + - uid: 8663 components: - type: Transform - pos: 19.502523,-35.329025 + pos: 32.5,9.5 parent: 2 - - uid: 4211 + - uid: 8892 components: - type: Transform - pos: 27.5,-37.5 + pos: 24.5,-35.5 parent: 2 - - uid: 4499 + - uid: 8910 components: - type: Transform - pos: 37.5,-40.5 + rot: 1.5707963267948966 rad + pos: 20.5,6.5 parent: 2 - - uid: 6883 + - uid: 9145 components: - type: Transform - pos: 1.5,16.5 + rot: -1.5707963267948966 rad + pos: -11.5,-12.5 parent: 2 - - uid: 10151 + - uid: 9188 components: - type: Transform - pos: -32.826313,-43.344933 + pos: -7.5,-53.5 parent: 2 - - uid: 17685 + - uid: 9206 components: - type: Transform - pos: -40.5,-53.5 + rot: 3.141592653589793 rad + pos: -25.5,-0.5 parent: 2 - - uid: 20242 + - uid: 9339 components: - type: Transform - pos: -23.5,-50.5 + rot: 3.141592653589793 rad + pos: 10.5,-29.5 parent: 2 -- proto: filingCabinetRandom - entities: - - uid: 6355 + - uid: 9431 components: - type: Transform - pos: -16.72891,-46.37863 + pos: 24.5,-39.5 parent: 2 - - uid: 6362 + - uid: 9467 components: - type: Transform - pos: -16.21824,-46.39948 + rot: 1.5707963267948966 rad + pos: 23.5,-33.5 parent: 2 -- proto: filingCabinetTallRandom - entities: - - uid: 3715 + - uid: 9511 components: - type: Transform - pos: 18.223299,13.545596 + rot: 1.5707963267948966 rad + pos: 19.5,-33.5 parent: 2 - - uid: 6753 + - uid: 9512 components: - type: Transform - pos: 18.74439,13.545596 + pos: 24.5,-42.5 parent: 2 - - uid: 8232 + - uid: 9550 components: - type: Transform - pos: -42.252365,-45.359486 + rot: 1.5707963267948966 rad + pos: 29.5,6.5 parent: 2 - - uid: 8268 + - uid: 9900 components: - type: Transform - pos: -42.80472,-45.390755 + rot: 1.5707963267948966 rad + pos: -21.5,-47.5 parent: 2 - - uid: 8664 + - uid: 9901 components: - type: Transform - pos: 28.608572,13.505003 + pos: -22.5,-48.5 parent: 2 - - type: Pullable - prevFixedRotation: True - - uid: 13259 + - uid: 9902 components: - type: Transform - pos: 28.18472,13.505003 + pos: -22.5,-49.5 parent: 2 - - type: Pullable - prevFixedRotation: True -- proto: FireAlarm - entities: - - uid: 110 + - uid: 9903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 + pos: -22.5,-50.5 parent: 2 - - type: DeviceList - devices: - - 15242 - - 15241 - - 15240 - - 15230 - - 15231 - - 15232 - - uid: 1586 + - uid: 9904 components: - type: Transform - pos: -43.5,-39.5 + pos: -22.5,-51.5 parent: 2 - - uid: 1667 + - uid: 9905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-26.5 + pos: -22.5,-52.5 parent: 2 - - type: DeviceList - devices: - - 15211 - - 15210 - - 15209 - - 15208 - - uid: 3816 + - uid: 9906 components: - type: Transform - pos: -10.5,-5.5 + pos: -22.5,-53.5 parent: 2 - - type: DeviceList - devices: - - 15393 - - 15394 - - uid: 6790 + - uid: 9907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-49.5 + pos: -22.5,-54.5 parent: 2 - - type: DeviceList - devices: - - 15626 - - 15625 - - 15638 - - 15639 - - uid: 9987 + - uid: 9908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,26.5 + pos: -20.5,-50.5 parent: 2 - - type: DeviceList - devices: - - 15242 - - 15241 - - 15240 - - 15259 - - 15258 - - 15257 - - uid: 13342 + - uid: 9909 components: - type: Transform - pos: 22.5,-23.5 + pos: -20.5,-49.5 parent: 2 - - type: DeviceList - devices: - - 15435 - - 15181 - - 15182 - - 15183 - - uid: 13663 + - uid: 9910 components: - type: Transform - pos: 17.5,-20.5 + pos: -20.5,-48.5 parent: 2 - - type: DeviceList - devices: - - 15209 - - 15208 - - 15206 - - 15207 - - 15214 - - 15213 - - 15212 - - 15181 - - 15182 - - 15183 - - uid: 14371 + - uid: 9941 components: - type: Transform - pos: 31.5,-36.5 + rot: 3.141592653589793 rad + pos: -24.5,-43.5 parent: 2 - - type: DeviceList - devices: - - 15430 - - 15429 - - 14305 - - 14266 - - 14329 - - 14308 - - 13649 - - 13651 - - uid: 15163 + - uid: 9947 components: - type: Transform - pos: -13.5,-39.5 + rot: -1.5707963267948966 rad + pos: 31.5,-54.5 parent: 2 - - type: DeviceList - devices: - - 15154 - - 15155 - - 15156 - - 15153 - - 15152 - - 15151 - - 1722 - - 15148 - - 15149 - - 15170 - - 15169 - - 15168 - - 15166 - - 15150 - - 15164 - - 15165 - - uid: 15197 + - uid: 10063 components: - type: Transform - pos: 4.5,-46.5 + pos: 24.5,-36.5 parent: 2 - - type: DeviceList - devices: - - 15192 - - 15193 - - 15194 - - 15156 - - 15155 - - 15154 - - uid: 15202 + - uid: 10179 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-40.5 + pos: 42.5,-21.5 parent: 2 - - type: DeviceList - devices: - - 15199 - - 15200 - - 15201 - - 15192 - - 15193 - - 15194 - - 15203 - - 15204 - - uid: 15226 + - uid: 10180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-29.5 + rot: -1.5707963267948966 rad + pos: 43.5,-21.5 parent: 2 - - type: DeviceList - devices: - - 15199 - - 15200 - - 15201 - - 15211 - - 15210 - - 15206 - - 15207 - - uid: 15227 + - uid: 10542 components: - type: Transform - pos: 33.5,-19.5 + rot: 1.5707963267948966 rad + pos: 18.5,6.5 parent: 2 - - type: DeviceList - devices: - - 15214 - - 15213 - - 15212 - - 2282 - - 2642 - - 1580 - - 15225 - - 15224 - - 15223 - - 15220 - - 15221 - - 15222 - - 15228 - - 15229 - - uid: 15236 + - uid: 10620 components: - type: Transform - pos: 26.5,-1.5 + rot: 1.5707963267948966 rad + pos: 21.5,6.5 parent: 2 - - type: DeviceList - devices: - - 15233 - - 15234 - - 15235 - - 15238 - - 15237 - - 15230 - - 15231 - - 15232 - - uid: 15261 + - uid: 10685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,22.5 + pos: -32.5,-41.5 parent: 2 - - type: DeviceList - devices: - - 15242 - - 15241 - - 15240 - - 15259 - - 15258 - - 15257 - - uid: 15272 + - uid: 10692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-11.5 + pos: 20.5,12.5 parent: 2 - - type: DeviceList - devices: - - 15230 - - 15231 - - 15232 - - 2282 - - 2642 - - 1580 - - uid: 15279 + - uid: 10946 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,5.5 + rot: 1.5707963267948966 rad + pos: 33.5,-21.5 parent: 2 - - type: DeviceList - devices: - - 15273 - - 15274 - - 15275 - - 15235 - - 15234 - - 15233 - - uid: 15384 + - uid: 10988 components: - type: Transform - pos: -38.5,-28.5 + pos: 20.5,11.5 parent: 2 - - type: DeviceList - devices: - - 15343 - - 14732 - - 15333 - - 15339 - - 15340 - - 15341 - - 15344 - - 15380 - - 15381 - - uid: 15385 + - uid: 11012 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-24.5 + pos: 48.5,-27.5 parent: 2 - - type: DeviceList - devices: - - 15380 - - 15381 - - 15382 - - uid: 15386 + - uid: 11027 components: - type: Transform - pos: -31.5,-32.5 + rot: -1.5707963267948966 rad + pos: 17.5,-21.5 parent: 2 - - type: DeviceList - devices: - - 15343 - - 15348 - - 15349 - - uid: 15388 + - uid: 11029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-25.5 + rot: -1.5707963267948966 rad + pos: 39.5,-21.5 parent: 2 - - type: DeviceList - devices: - - 15339 - - 15333 - - 14732 - - 15325 - - 15326 - - 15327 - - 15151 - - uid: 15391 + - uid: 11030 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-9.5 + pos: 38.5,-21.5 parent: 2 - - type: DeviceList - devices: - - 19003 - - 15302 - - 15323 - - 15324 - - 8854 - - 15574 - - 15672 - - 19006 - - 19008 - - uid: 15403 + - uid: 11031 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-10.5 + pos: 37.5,-21.5 parent: 2 - - type: DeviceList - devices: - - 15301 - - 15302 - - 15324 - - 15323 - - uid: 15415 + - uid: 11032 components: - type: Transform - pos: 0.5,-5.5 + rot: -1.5707963267948966 rad + pos: 36.5,-21.5 parent: 2 - - type: DeviceList - devices: - - 15395 - - 15396 - - 15398 - - 15397 - - uid: 15424 + - uid: 11034 components: - type: Transform - pos: 23.5,-29.5 + rot: -1.5707963267948966 rad + pos: 34.5,-21.5 parent: 2 - - type: DeviceList - devices: - - 15435 - - uid: 15425 + - uid: 11037 components: - type: Transform - pos: 36.5,-30.5 + rot: 3.141592653589793 rad + pos: 44.5,-22.5 parent: 2 - - type: DeviceList - devices: - - 13649 - - 13651 - - uid: 15427 + - uid: 11084 components: - type: Transform - pos: 32.5,-39.5 + rot: 3.141592653589793 rad + pos: 24.5,-44.5 parent: 2 - - type: DeviceList - devices: - - 15431 - - 15429 - - 15430 - - uid: 15439 + - uid: 11085 components: - type: Transform - pos: 32.5,-23.5 + rot: 3.141592653589793 rad + pos: 24.5,-45.5 parent: 2 - - type: DeviceList - devices: - - 15437 - - 15229 - - 15228 - - uid: 15440 + - uid: 11086 components: - type: Transform - pos: 44.5,-17.5 + rot: 3.141592653589793 rad + pos: 24.5,-46.5 parent: 2 - - type: DeviceList - devices: - - 15220 - - 15221 - - 15222 - - uid: 15619 + - uid: 11087 components: - type: Transform - pos: 12.5,-59.5 + rot: 3.141592653589793 rad + pos: 24.5,-47.5 parent: 2 - - uid: 15620 + - uid: 11088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-54.5 + rot: 3.141592653589793 rad + pos: 24.5,-48.5 parent: 2 - - uid: 15621 + - uid: 11089 components: - type: Transform - pos: -9.5,-57.5 + rot: 3.141592653589793 rad + pos: 24.5,-49.5 parent: 2 - - type: DeviceList - devices: - - 15184 - - 15185 - - uid: 15622 + - uid: 11090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-52.5 + rot: 3.141592653589793 rad + pos: 24.5,-50.5 parent: 2 - - type: DeviceList - devices: - - 15184 - - 15185 - - uid: 15640 + - uid: 11091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-55.5 + rot: 3.141592653589793 rad + pos: 24.5,-51.5 parent: 2 - - type: DeviceList - devices: - - 15626 - - 15625 - - uid: 16078 + - uid: 11092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,6.5 + rot: 3.141592653589793 rad + pos: 24.5,-52.5 parent: 2 - - type: DeviceList - devices: - - 5390 - - 5467 - - 14382 - - 14368 - - 19001 - - uid: 17349 + - uid: 11093 components: - type: Transform - pos: -2.5,13.5 + rot: 3.141592653589793 rad + pos: 24.5,-53.5 parent: 2 - - type: DeviceList - devices: - - 5390 - - 5467 - - 5417 - - 12068 - - 12057 - - 5418 - - 5419 - - 5443 - - 15273 - - 15274 - - 15275 - - 18877 - - 18878 - - 18879 - - uid: 19007 + - uid: 11094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 + rot: 3.141592653589793 rad + pos: 24.5,-54.5 parent: 2 - - type: DeviceList - devices: - - 14382 - - 14368 - - 19001 - - 19008 - - 19006 - - 15672 - - uid: 19010 + - uid: 11095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-20.5 + pos: 10.5,-36.5 parent: 2 - - type: DeviceList - devices: - - 15325 - - 15326 - - 15327 - - 19003 - - 8854 - - 15574 -- proto: FireAxeCabinetFilled - entities: - - uid: 2521 + - uid: 11100 components: - type: Transform - pos: -10.5,-0.5 + rot: 3.141592653589793 rad + pos: 15.5,8.5 parent: 2 - - uid: 9848 + - uid: 11134 components: - type: Transform - pos: -16.5,-49.5 + rot: 3.141592653589793 rad + pos: 10.5,-45.5 parent: 2 -- proto: FireExtinguisher - entities: - - uid: 868 + - uid: 11135 components: - type: Transform - pos: 11.64466,24.083237 + rot: 3.141592653589793 rad + pos: 10.5,-46.5 parent: 2 - - uid: 4820 + - uid: 11136 components: - type: Transform - pos: 11.279896,24.114508 + rot: 3.141592653589793 rad + pos: 10.5,-47.5 parent: 2 -- proto: FirelockEdge - entities: - - uid: 1548 + - uid: 11137 components: - type: Transform - pos: -17.5,-39.5 + rot: 3.141592653589793 rad + pos: -23.5,-22.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13846 - - 58 - - uid: 1557 + - uid: 11141 components: - type: Transform - pos: -16.5,-39.5 + rot: 1.5707963267948966 rad + pos: -22.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13846 - - 58 - - uid: 1563 + - uid: 11148 components: - type: Transform - pos: -15.5,-39.5 + rot: -1.5707963267948966 rad + pos: -13.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13846 - - 58 - - uid: 5418 + - uid: 11157 components: - type: Transform - pos: 10.5,15.5 + rot: 1.5707963267948966 rad + pos: 24.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17348 - - 17349 - - 17351 - - uid: 5419 + - uid: 11158 components: - type: Transform - pos: 11.5,15.5 + rot: 1.5707963267948966 rad + pos: 22.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17348 - - 17349 - - 17351 - - uid: 5443 + - uid: 11433 components: - type: Transform - pos: 12.5,15.5 + rot: 1.5707963267948966 rad + pos: 23.5,-21.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17348 - - 17349 - - 17351 - - uid: 12211 + - uid: 11434 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,27.5 + rot: 1.5707963267948966 rad + pos: -21.5,-34.5 parent: 2 - - uid: 13649 + - uid: 11438 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-33.5 + pos: -23.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - 13657 - - 14371 - - 15425 - - uid: 13651 + - uid: 11454 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-33.5 + pos: 10.5,13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 29 - - 13657 - - 14371 - - 15425 - - uid: 14266 + - uid: 11467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,-34.5 + pos: -17.5,-0.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13657 - - 14371 - - uid: 14305 + - uid: 11576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-38.5 + rot: -1.5707963267948966 rad + pos: 28.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13657 - - 14371 - - uid: 15257 + - uid: 11602 components: - type: Transform - pos: 31.5,34.5 + rot: 3.141592653589793 rad + pos: 45.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 9987 - - uid: 15258 + - uid: 11603 components: - type: Transform - pos: 32.5,34.5 + rot: 3.141592653589793 rad + pos: 45.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 9987 - - uid: 15259 + - uid: 11606 components: - type: Transform - pos: 33.5,34.5 + rot: 1.5707963267948966 rad + pos: 46.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 9987 - - uid: 15357 + - uid: 11607 components: - type: Transform - pos: -18.5,-39.5 + rot: 1.5707963267948966 rad + pos: -20.5,-46.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13846 - - 58 - - uid: 15358 + - uid: 11608 components: - type: Transform - pos: -19.5,-39.5 + rot: 3.141592653589793 rad + pos: -23.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13846 - - 58 - - uid: 15435 + - uid: 12059 components: - type: Transform - pos: 20.5,-27.5 + rot: 3.141592653589793 rad + pos: -16.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13653 - - 15424 - - 13654 - - 13342 - - uid: 17424 + - uid: 12060 components: - type: Transform - pos: 15.5,17.5 + rot: 3.141592653589793 rad + pos: -23.5,-27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17353 -- proto: FirelockGlass - entities: - - uid: 115 + - uid: 12080 components: - type: Transform - pos: 3.5,21.5 + rot: 3.141592653589793 rad + pos: -23.5,-25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17351 - - 17352 - - uid: 227 + - uid: 12139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-50.5 + rot: -1.5707963267948966 rad + pos: 2.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 431 + - uid: 12140 components: - type: Transform - pos: 41.5,-57.5 + rot: -1.5707963267948966 rad + pos: 0.5,-48.5 parent: 2 - - uid: 1284 + - uid: 12142 components: - type: Transform - pos: 58.5,-49.5 + rot: -1.5707963267948966 rad + pos: -1.5,-48.5 parent: 2 - - uid: 1580 + - uid: 12143 components: - type: Transform - pos: 30.5,-15.5 + rot: -1.5707963267948966 rad + pos: -2.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15227 - - 13639 - - 15421 - - 15272 - - uid: 1722 + - uid: 12144 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-40.5 + pos: -3.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 - - 58 - - 15163 - - uid: 2282 + - uid: 12145 components: - type: Transform - pos: 32.5,-15.5 + rot: -1.5707963267948966 rad + pos: -4.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15227 - - 13639 - - 15421 - - 15272 - - uid: 2642 + - uid: 12146 components: - type: Transform - pos: 31.5,-15.5 + rot: -1.5707963267948966 rad + pos: -5.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15227 - - 13639 - - 15421 - - 15272 - - uid: 2693 + - uid: 12147 components: - type: Transform - pos: -14.5,-49.5 + rot: -1.5707963267948966 rad + pos: -6.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14047 - - 14019 - - uid: 5390 + - uid: 12149 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,11.5 + pos: 1.5,-48.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17348 - - 17349 - - 16078 - - 8606 - - uid: 5395 + - uid: 12157 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,18.5 + pos: -10.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17351 - - uid: 5417 + - uid: 12158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 + rot: 1.5707963267948966 rad + pos: -11.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17348 - - 17349 - - 17351 - - uid: 5420 + - uid: 12161 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,21.5 + pos: -14.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17353 - - 17351 - - uid: 5421 + - uid: 12162 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,20.5 + pos: -15.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17353 - - 17351 - - uid: 5467 + - uid: 12163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 + rot: 1.5707963267948966 rad + pos: -16.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17348 - - 17349 - - 16078 - - 8606 - - uid: 7288 + - uid: 12164 components: - type: Transform - pos: 52.5,-50.5 + rot: 1.5707963267948966 rad + pos: -17.5,-41.5 parent: 2 - - uid: 7414 + - uid: 12165 components: - type: Transform - pos: 39.5,-62.5 + rot: 1.5707963267948966 rad + pos: -18.5,-41.5 parent: 2 - - uid: 8854 + - uid: 12166 components: - type: Transform - pos: -16.5,-17.5 + rot: 1.5707963267948966 rad + pos: -19.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15673 - - 19010 - - 15391 - - 17658 - - uid: 9943 + - uid: 12167 components: - type: Transform - pos: 45.5,-55.5 + rot: 1.5707963267948966 rad + pos: -20.5,-41.5 parent: 2 - - uid: 9973 + - uid: 12171 components: - type: Transform - pos: 49.5,-57.5 + pos: -12.5,-39.5 parent: 2 - - uid: 9975 + - uid: 12172 components: - type: Transform - pos: 54.5,-54.5 + rot: -1.5707963267948966 rad + pos: -13.5,-38.5 parent: 2 - - uid: 12056 + - uid: 12178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,19.5 + rot: 3.141592653589793 rad + pos: -23.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17353 - - 17351 - - uid: 12057 + - uid: 12208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,15.5 + rot: 3.141592653589793 rad + pos: -16.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17348 - - 17349 - - 17351 - - uid: 12058 + - uid: 12209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,21.5 + rot: 3.141592653589793 rad + pos: -16.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17351 - - 17352 - - uid: 12062 + - uid: 12210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,21.5 + rot: 3.141592653589793 rad + pos: -16.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17351 - - 17352 - - uid: 12068 + - uid: 12212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,15.5 + rot: 3.141592653589793 rad + pos: -16.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17348 - - 17349 - - 17351 - - uid: 12246 + - uid: 12213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,25.5 + rot: 3.141592653589793 rad + pos: -16.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17353 - - 17352 - - uid: 12247 + - uid: 12214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,21.5 + rot: 3.141592653589793 rad + pos: -16.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17351 - - 17352 - - uid: 12294 + - uid: 12215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,21.5 + rot: 3.141592653589793 rad + pos: -16.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17351 - - 17352 - - uid: 12296 + - uid: 12216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,24.5 + rot: 3.141592653589793 rad + pos: -16.5,-8.5 parent: 2 - - uid: 13082 + - uid: 12220 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-32.5 + pos: 19.5,-22.5 parent: 2 - - uid: 14308 + - uid: 12241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-37.5 + rot: 3.141592653589793 rad + pos: -23.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13657 - - 14371 - - uid: 14329 + - uid: 12248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-35.5 + rot: 3.141592653589793 rad + pos: 32.5,13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13657 - - 14371 - - uid: 14368 + - uid: 12249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,4.5 + rot: 3.141592653589793 rad + pos: 32.5,12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 16078 - - 8606 - - uid: 14382 + - uid: 12250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,4.5 + rot: 3.141592653589793 rad + pos: 32.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 16078 - - 8606 - - uid: 14732 + - uid: 12251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-31.5 + rot: 3.141592653589793 rad + pos: 32.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15331 - - 15384 - - 15388 - - uid: 15143 + - uid: 12252 components: - type: Transform - pos: -13.5,-45.5 + pos: 19.5,-23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14047 - - 58 - - uid: 15145 + - uid: 12253 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-50.5 + rot: 3.141592653589793 rad + pos: 32.5,8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 15146 + - uid: 12265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-62.5 + rot: 3.141592653589793 rad + pos: 31.5,-7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 15147 + - uid: 12266 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-62.5 + rot: 3.141592653589793 rad + pos: 31.5,-8.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - uid: 15148 + - uid: 12267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 - - 58 - - 15163 - - uid: 15149 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-42.5 + rot: 3.141592653589793 rad + pos: 31.5,-9.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 - - 58 - - 15163 - - uid: 15150 + - uid: 12268 components: - type: Transform - pos: -8.5,-35.5 + rot: 3.141592653589793 rad + pos: 31.5,-10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 15139 - - 17576 - - uid: 15151 + - uid: 12269 components: - type: Transform - pos: -24.5,-39.5 + rot: 3.141592653589793 rad + pos: 31.5,-11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 15332 - - 15388 - - 58 - - uid: 15152 + - uid: 12270 components: - type: Transform - pos: -23.5,-39.5 + rot: 3.141592653589793 rad + pos: 31.5,-12.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15332 - - 58 - - 15163 - - uid: 15153 + - uid: 12271 components: - type: Transform - pos: -22.5,-39.5 + rot: 3.141592653589793 rad + pos: 31.5,-13.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15332 - - 58 - - 15163 - - uid: 15154 + - uid: 12272 components: - type: Transform - pos: -9.5,-46.5 + rot: 3.141592653589793 rad + pos: 31.5,-14.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 14980 - - 15197 - - 15139 - - uid: 15155 + - uid: 12273 components: - type: Transform - pos: -8.5,-46.5 + rot: 3.141592653589793 rad + pos: 31.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 14980 - - 15197 - - 15139 - - uid: 15156 + - uid: 12274 components: - type: Transform - pos: -7.5,-46.5 + rot: 3.141592653589793 rad + pos: 31.5,-16.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 14980 - - 15197 - - 15139 - - uid: 15164 + - uid: 12275 components: - type: Transform - pos: -7.5,-35.5 + rot: 3.141592653589793 rad + pos: 31.5,-17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 15139 - - 17576 - - uid: 15165 + - uid: 12276 components: - type: Transform - pos: -6.5,-35.5 + rot: 3.141592653589793 rad + pos: 31.5,-18.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 15139 - - 17576 - - uid: 15166 + - uid: 12277 components: - type: Transform - pos: -6.5,-43.5 + rot: 3.141592653589793 rad + pos: 31.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 15139 - - uid: 15168 + - uid: 12279 components: - type: Transform - pos: -5.5,-42.5 + pos: 35.5,-20.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 15139 - - uid: 15169 + - uid: 12283 components: - type: Transform - pos: -4.5,-42.5 + rot: 3.141592653589793 rad + pos: 10.5,15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 15139 - - uid: 15170 + - uid: 12284 components: - type: Transform - pos: -3.5,-42.5 + pos: 31.5,-5.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15163 - - 15139 - - uid: 15171 + - uid: 12285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-54.5 + pos: 19.5,-24.5 parent: 2 - - uid: 15172 + - uid: 12385 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-55.5 + pos: 17.5,6.5 parent: 2 - - uid: 15175 + - uid: 12436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-47.5 + rot: 3.141592653589793 rad + pos: 10.5,14.5 parent: 2 - - uid: 15176 + - uid: 12579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-47.5 + pos: 20.5,14.5 parent: 2 - - uid: 15181 + - uid: 12707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-23.5 + rot: -1.5707963267948966 rad + pos: 29.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13640 - - 13654 - - 13663 - - 13342 - - uid: 15182 + - uid: 12708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-23.5 + rot: -1.5707963267948966 rad + pos: 30.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13640 - - 13654 - - 13663 - - 13342 - - uid: 15183 + - uid: 12788 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,-23.5 + pos: 4.5,17.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13640 - - 13654 - - 13663 - - 13342 - - uid: 15184 + - uid: 13002 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-57.5 + pos: 16.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15037 - - 15074 - - 15621 - - 15622 - - uid: 15185 + - uid: 13006 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-57.5 + pos: 17.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15037 - - 15074 - - 15621 - - 15622 - - uid: 15186 + - uid: 13066 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-59.5 + pos: 18.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - 15188 - - uid: 15187 + - uid: 13068 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-59.5 + pos: 19.5,10.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15050 - - 15188 - - uid: 15192 + - uid: 13071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-46.5 + rot: -1.5707963267948966 rad + pos: -14.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14980 - - 15197 - - 13662 - - 13650 - - 15202 - - uid: 15193 + - uid: 13095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-46.5 + pos: 21.5,-23.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14980 - - 15197 - - 13662 - - 13650 - - 15202 - - uid: 15194 + - uid: 13096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-46.5 + rot: -1.5707963267948966 rad + pos: 9.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14980 - - 15197 - - 13662 - - 13650 - - 15202 - - uid: 15198 + - uid: 13097 components: - type: Transform - pos: 20.5,-56.5 + rot: -1.5707963267948966 rad + pos: 8.5,11.5 parent: 2 - - uid: 15199 + - uid: 13098 components: - type: Transform - pos: 11.5,-35.5 + rot: -1.5707963267948966 rad + pos: 7.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 - - 13650 - - 15202 - - 15226 - - 13665 - - uid: 15200 + - uid: 13099 components: - type: Transform - pos: 10.5,-35.5 + rot: -1.5707963267948966 rad + pos: 5.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 - - 13650 - - 15202 - - 15226 - - 13665 - - uid: 15201 + - uid: 13104 components: - type: Transform - pos: 9.5,-35.5 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 - - 13650 - - 15202 - - 15226 - - 13665 - - uid: 15203 + - uid: 13105 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,-45.5 + pos: 3.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15202 - - 13662 - - 13650 - - uid: 15204 + - uid: 13106 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,-41.5 + pos: 2.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15202 - - 13662 - - 13650 - - uid: 15206 + - uid: 13108 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-22.5 + rot: -1.5707963267948966 rad + pos: 1.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13665 - - 13640 - - 15226 - - 13663 - - uid: 15207 + - uid: 13109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-21.5 + rot: -1.5707963267948966 rad + pos: 0.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13665 - - 13640 - - 15226 - - 13663 - - uid: 15208 + - uid: 13110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-23.5 + rot: -1.5707963267948966 rad + pos: -0.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2395 - - 13640 - - 13663 - - 1667 - - uid: 15209 + - uid: 13111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-23.5 + rot: -1.5707963267948966 rad + pos: 6.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2395 - - 13640 - - 13663 - - 1667 - - uid: 15210 + - uid: 13112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-27.5 + rot: -1.5707963267948966 rad + pos: -2.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13665 - - 2395 - - 15226 - - 1667 - - uid: 15211 + - uid: 13113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-27.5 + rot: -1.5707963267948966 rad + pos: -1.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13665 - - 2395 - - 15226 - - 1667 - - uid: 15212 + - uid: 13114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-20.5 + rot: -1.5707963267948966 rad + pos: -3.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13640 - - 13663 - - 13639 - - 15227 - - uid: 15213 + - uid: 13115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-21.5 + rot: -1.5707963267948966 rad + pos: -5.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13640 - - 13663 - - 13639 - - 15227 - - uid: 15214 + - uid: 13126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-22.5 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13640 - - 13663 - - 13639 - - 15227 - - uid: 15220 + - uid: 13133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-20.5 + rot: -1.5707963267948966 rad + pos: -7.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13639 - - 15227 - - 15440 - - 13549 - - uid: 15221 + - uid: 13134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-21.5 + rot: -1.5707963267948966 rad + pos: -8.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13639 - - 15227 - - 15440 - - 13549 - - uid: 15222 + - uid: 13142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-22.5 + rot: -1.5707963267948966 rad + pos: -9.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13639 - - 15227 - - 15440 - - 13549 - - uid: 15223 + - uid: 13146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-19.5 + rot: -1.5707963267948966 rad + pos: -4.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13639 - - 15227 - - 13612 - - uid: 15224 + - uid: 13147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-19.5 + rot: -1.5707963267948966 rad + pos: -10.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13639 - - 15227 - - 13612 - - uid: 15225 + - uid: 13148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-19.5 + rot: -1.5707963267948966 rad + pos: -12.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13639 - - 15227 - - 13612 - - uid: 15228 + - uid: 13158 components: - type: Transform - pos: 34.5,-23.5 + rot: -1.5707963267948966 rad + pos: -11.5,11.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15227 - - 13639 - - 15439 - - 13655 - - uid: 15229 + - uid: 13175 components: - type: Transform - pos: 33.5,-23.5 + rot: 3.141592653589793 rad + pos: 36.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15227 - - 13639 - - 15439 - - 13655 - - uid: 15230 + - uid: 13183 components: - type: Transform - pos: 33.5,-1.5 + rot: -1.5707963267948966 rad + pos: 31.5,7.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 14085 - - 110 - - 15422 - - 15421 - - 15272 - - uid: 15231 + - uid: 13297 components: - type: Transform - pos: 32.5,-1.5 + pos: -7.5,-57.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 14085 - - 110 - - 15422 - - 15421 - - 15272 - - uid: 15232 + - uid: 13298 components: - type: Transform - pos: 31.5,-1.5 + pos: -7.5,-60.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 14085 - - 110 - - 15422 - - 15421 - - 15272 - - uid: 15233 + - uid: 13372 components: - type: Transform - pos: 19.5,-4.5 + pos: 10.5,-52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - 15236 - - 15279 - - 38 - - uid: 15234 + - uid: 13378 components: - type: Transform - pos: 19.5,-3.5 + pos: -7.5,-61.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - 15236 - - 15279 - - 38 - - uid: 15235 + - uid: 13379 components: - type: Transform - pos: 19.5,-2.5 + pos: -7.5,-58.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15422 - - 15236 - - 15279 - - 38 - - uid: 15237 + - uid: 13380 components: - type: Transform - pos: 28.5,-1.5 + pos: -7.5,-52.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 15422 - - uid: 15238 + - uid: 13381 components: - type: Transform - pos: 27.5,-1.5 + pos: 10.5,-53.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15236 - - 15422 - - uid: 15239 + - uid: 14212 components: - type: Transform - pos: 41.5,4.5 + rot: 3.141592653589793 rad + pos: 29.5,-22.5 parent: 2 - - uid: 15240 + - uid: 14717 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,21.5 + pos: 44.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 14085 - - 9987 - - 110 - - uid: 15241 + - uid: 14718 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,21.5 + pos: 46.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 14085 - - 9987 - - 110 - - uid: 15242 + - uid: 14719 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,21.5 + pos: 45.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - - 15261 - - 14085 - - 9987 - - 110 - - uid: 15273 + - uid: 14966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,8.5 + pos: 10.5,-55.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15279 - - 17348 - - 17349 - - 38 - - uid: 15274 + - uid: 15162 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,8.5 + pos: -12.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15279 - - 17348 - - 17349 - - 38 - - uid: 15275 + - uid: 15348 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,8.5 + pos: -24.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15279 - - 17348 - - 17349 - - 38 - - uid: 15301 + - uid: 15349 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-14.5 + pos: -25.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15403 - - 13798 - - uid: 15302 + - uid: 15353 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-15.5 + pos: -26.5,-36.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15391 - - 15403 - - 13798 - - 17658 - - uid: 15315 + - uid: 15361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-4.5 + pos: -27.5,-35.5 parent: 2 - - uid: 15323 + - uid: 15370 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-12.5 + pos: 47.5,-37.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15391 - - 15403 - - 13798 - - 17658 - - uid: 15324 + - uid: 15380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-11.5 + rot: 1.5707963267948966 rad + pos: -26.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15391 - - 15403 - - 13798 - - 17658 - - uid: 15325 + - uid: 15381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-21.5 + pos: -27.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15673 - - 15331 - - 15388 - - 19010 - - uid: 15326 + - uid: 15382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-21.5 + pos: -27.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15673 - - 15331 - - 15388 - - 19010 - - uid: 15327 + - uid: 15384 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-21.5 + pos: -27.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15673 - - 15331 - - 15388 - - 19010 - - uid: 15333 + - uid: 15385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-30.5 + pos: -27.5,-27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15331 - - 15384 - - 15388 - - uid: 15337 + - uid: 15386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-37.5 + pos: -27.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15332 - - 13846 - - uid: 15338 + - uid: 15388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-38.5 + pos: -27.5,-25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15332 - - 13846 - - uid: 15339 + - uid: 15403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-29.5 + rot: 3.141592653589793 rad + pos: -48.5,-45.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15331 - - 15384 - - 15388 - - uid: 15340 + - uid: 15406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-28.5 + rot: 3.141592653589793 rad + pos: -48.5,-44.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14783 - - uid: 15341 + - uid: 15409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-28.5 + rot: 3.141592653589793 rad + pos: -48.5,-43.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14783 - - uid: 15343 + - uid: 15410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-32.5 + rot: 3.141592653589793 rad + pos: -48.5,-41.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 15386 - - 14765 - - uid: 15344 + - uid: 15411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-27.5 + rot: 3.141592653589793 rad + pos: -48.5,-40.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14783 - - uid: 15348 + - uid: 15412 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 + rot: 3.141592653589793 rad + pos: -48.5,-39.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15332 - - 15386 - - 14765 - - uid: 15349 + - uid: 15413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 + rot: 3.141592653589793 rad + pos: -48.5,-38.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15332 - - 15386 - - 14765 - - uid: 15354 + - uid: 15414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-28.5 + rot: 3.141592653589793 rad + pos: -48.5,-37.5 parent: 2 - - uid: 15355 + - uid: 15416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-32.5 + rot: 3.141592653589793 rad + pos: -48.5,-36.5 parent: 2 - - uid: 15356 + - uid: 15422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-23.5 + rot: 3.141592653589793 rad + pos: -48.5,-35.5 parent: 2 - - uid: 15380 + - uid: 15468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-28.5 + rot: 3.141592653589793 rad + pos: -48.5,-34.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14940 - - 15385 - - uid: 15381 + - uid: 15473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-28.5 + rot: 3.141592653589793 rad + pos: -48.5,-33.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 2564 - - 15384 - - 14940 - - 15385 - - uid: 15382 + - uid: 15477 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-22.5 + rot: 3.141592653589793 rad + pos: -48.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14940 - - 15385 - - uid: 15393 + - uid: 15483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-5.5 + rot: 3.141592653589793 rad + pos: -48.5,-42.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - - 13796 - - 3816 - - uid: 15394 + - uid: 15485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 + rot: 1.5707963267948966 rad + pos: -47.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 81 - - 13796 - - 3816 - - uid: 15395 + - uid: 15538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-5.5 + rot: 1.5707963267948966 rad + pos: -46.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - 13796 - - 15415 - - uid: 15396 + - uid: 15544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-5.5 + rot: 1.5707963267948966 rad + pos: -45.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - 13796 - - 15415 - - uid: 15397 + - uid: 15571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-11.5 + rot: 1.5707963267948966 rad + pos: -44.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - 15415 - - uid: 15398 + - uid: 15605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 + rot: 1.5707963267948966 rad + pos: -42.5,-31.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - 15415 - - uid: 15429 + - uid: 15617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-39.5 + pos: -43.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15427 - - 13645 - - 13657 - - 14371 - - uid: 15430 + - uid: 15618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-39.5 + pos: -43.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15427 - - 13645 - - 13657 - - 14371 - - uid: 15431 + - uid: 15651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-43.5 + pos: -43.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15427 - - 13645 - - uid: 15437 + - uid: 15652 components: - type: Transform - pos: 31.5,-25.5 + pos: -43.5,-27.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15439 - - 13655 - - uid: 15574 + - uid: 15653 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-17.5 + pos: -43.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15391 - - 17658 - - 15673 - - 19010 - - uid: 15625 + - uid: 15666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-49.5 + rot: 3.141592653589793 rad + pos: -35.5,-26.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14004 - - 15640 - - 14019 - - 6790 - - uid: 15626 + - uid: 15673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-49.5 + pos: -33.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14004 - - 15640 - - 14019 - - 6790 - - uid: 15638 + - uid: 15674 components: - type: Transform - pos: -22.5,-49.5 + pos: -33.5,-24.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14004 - - 6790 - - uid: 15639 + - uid: 15681 components: - type: Transform - pos: -18.5,-47.5 + pos: -33.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 14004 - - 14047 - - 6790 - - uid: 15672 + - uid: 15683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-5.5 + pos: -33.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 15391 - - 17658 - - uid: 18455 + - uid: 15685 components: - type: Transform - pos: 48.5,-47.5 + pos: -33.5,-27.5 parent: 2 - - uid: 18502 + - uid: 15691 components: - type: Transform - pos: 57.5,-57.5 + pos: -33.5,-26.5 parent: 2 - - uid: 18539 + - uid: 15699 components: - type: Transform - pos: 41.5,-53.5 + pos: -33.5,-25.5 parent: 2 - - uid: 18640 + - uid: 15706 components: - type: Transform - pos: 49.5,-47.5 + pos: -33.5,-23.5 parent: 2 - - uid: 18877 + - uid: 15707 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,12.5 + pos: -35.5,-25.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17349 - - 17348 - - uid: 18878 + - uid: 15717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 + pos: -48.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17349 - - 17348 - - uid: 18879 + - uid: 15734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,13.5 + pos: -48.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 17349 - - 17348 - - uid: 19001 + - uid: 15736 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,4.5 + pos: -38.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 16078 - - 8606 - - uid: 19003 + - uid: 15737 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-17.5 + pos: -39.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15391 - - 17658 - - 15673 - - 19010 - - uid: 19006 + - uid: 15744 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-5.5 + pos: -37.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 15391 - - 17658 - - uid: 19008 + - uid: 15745 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,-5.5 + pos: -36.5,-32.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 19007 - - 19009 - - 15391 - - 17658 -- proto: FlashlightLantern - entities: - - uid: 4904 + - uid: 15748 components: - type: Transform - pos: 42.44693,-29.3774 + rot: 3.141592653589793 rad + pos: -24.5,-44.5 parent: 2 - - uid: 6167 + - uid: 15751 components: - type: Transform - pos: -32.516693,-57.438038 + rot: 1.5707963267948966 rad + pos: -35.5,-32.5 parent: 2 - - type: HandheldLight - toggleActionEntity: 14387 - - type: ContainerContainer - containers: + - uid: 15752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-32.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-31.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-31.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - uid: 15827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 2 + - uid: 15828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-28.5 + parent: 2 + - uid: 15830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-28.5 + parent: 2 + - uid: 15831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 15832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-28.5 + parent: 2 + - uid: 15833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-28.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-28.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-28.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 2 + - uid: 15840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-28.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-28.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-27.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-45.5 + parent: 2 + - uid: 16352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-12.5 + parent: 2 + - uid: 16353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 2 + - uid: 16354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 2 + - uid: 16355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - uid: 16356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 + - uid: 16357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - uid: 16358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - uid: 16359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-12.5 + parent: 2 + - uid: 16360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-12.5 + parent: 2 + - uid: 16361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-12.5 + parent: 2 + - uid: 16898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-33.5 + parent: 2 + - uid: 17464 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + pos: -14.5,15.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + pos: -14.5,14.5 + parent: 2 + - uid: 17467 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 17468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 2 + - uid: 17510 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 17516 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 17517 + components: + - type: Transform + pos: 11.5,19.5 + parent: 2 + - uid: 17519 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 17520 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 17521 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 17524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 2 + - uid: 17525 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 17528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - uid: 17529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,11.5 + parent: 2 + - uid: 17530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 2 + - uid: 18006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - uid: 18008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,0.5 + parent: 2 + - uid: 18009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 2 + - uid: 18010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,2.5 + parent: 2 + - uid: 18011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,3.5 + parent: 2 + - uid: 18057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - uid: 18058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - uid: 18059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - uid: 18060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - uid: 18062 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 18099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-33.5 + parent: 2 + - uid: 18100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-34.5 + parent: 2 + - uid: 18101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-35.5 + parent: 2 + - uid: 18102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 18107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-30.5 + parent: 2 + - uid: 18108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-30.5 + parent: 2 + - uid: 18109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 2 + - uid: 18110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-30.5 + parent: 2 + - uid: 18111 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 18250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - uid: 18542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-21.5 + parent: 2 + - uid: 18546 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 18548 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 18549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-22.5 + parent: 2 + - uid: 18560 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-35.5 + parent: 2 + - uid: 18563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-26.5 + parent: 2 + - uid: 18564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-23.5 + parent: 2 + - uid: 18577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-21.5 + parent: 2 + - uid: 18587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-21.5 + parent: 2 + - uid: 18588 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-44.5 + parent: 2 + - uid: 18617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 2 + - uid: 18618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-19.5 + parent: 2 + - uid: 18619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-19.5 + parent: 2 + - uid: 18620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-19.5 + parent: 2 + - uid: 18621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 2 + - uid: 18866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-54.5 + parent: 2 + - uid: 19143 + components: + - type: Transform + pos: -7.5,-51.5 + parent: 2 + - uid: 19144 + components: + - type: Transform + pos: 10.5,-58.5 + parent: 2 + - uid: 19145 + components: + - type: Transform + pos: 10.5,-51.5 + parent: 2 + - uid: 19146 + components: + - type: Transform + pos: 10.5,-59.5 + parent: 2 + - uid: 19190 + components: + - type: Transform + pos: 10.5,-50.5 + parent: 2 + - uid: 19897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-46.5 + parent: 2 + - uid: 20217 + components: + - type: Transform + pos: -7.5,-62.5 + parent: 2 + - uid: 20285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 2 + - uid: 20289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-15.5 + parent: 2 + - uid: 20293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - uid: 20294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + - uid: 20295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-1.5 + parent: 2 + - uid: 20297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - uid: 20298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 20300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,12.5 + parent: 2 + - uid: 20301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,15.5 + parent: 2 + - uid: 20305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-26.5 + parent: 2 + - uid: 20306 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 20307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-26.5 + parent: 2 + - uid: 20311 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-21.5 + parent: 2 + - uid: 20313 + components: + - type: Transform + pos: 45.5,-15.5 + parent: 2 + - uid: 20314 + components: + - type: Transform + pos: 45.5,-14.5 + parent: 2 + - uid: 20315 + components: + - type: Transform + pos: 45.5,-13.5 + parent: 2 + - uid: 20316 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 20317 + components: + - type: Transform + pos: 45.5,-11.5 + parent: 2 + - uid: 20318 + components: + - type: Transform + pos: 45.5,-10.5 + parent: 2 + - uid: 20319 + components: + - type: Transform + pos: 45.5,-9.5 + parent: 2 + - uid: 20320 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 + - uid: 20321 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 20322 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 20323 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 20324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 2 + - uid: 20325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 2 + - uid: 20326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-4.5 + parent: 2 + - uid: 20327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-3.5 + parent: 2 + - uid: 20328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-2.5 + parent: 2 + - uid: 20329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-1.5 + parent: 2 + - uid: 20330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-0.5 + parent: 2 + - uid: 20331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,0.5 + parent: 2 + - uid: 20332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,2.5 + parent: 2 + - uid: 20333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,3.5 + parent: 2 + - uid: 20334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,4.5 + parent: 2 + - uid: 20335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 2 + - uid: 20346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-54.5 + parent: 2 + - uid: 20347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-54.5 + parent: 2 + - uid: 20348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-54.5 + parent: 2 + - uid: 20349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-54.5 + parent: 2 + - uid: 20350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-53.5 + parent: 2 + - uid: 20351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-53.5 + parent: 2 + - uid: 20352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-53.5 + parent: 2 + - uid: 20353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-53.5 + parent: 2 + - uid: 20354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-53.5 + parent: 2 + - uid: 20355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-53.5 + parent: 2 + - uid: 20356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-52.5 + parent: 2 + - uid: 20357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-52.5 + parent: 2 + - uid: 20358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-52.5 + parent: 2 + - uid: 20359 + components: + - type: Transform + pos: 46.5,-23.5 + parent: 2 + - uid: 20360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-50.5 + parent: 2 + - uid: 20361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-49.5 + parent: 2 + - uid: 20362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-48.5 + parent: 2 + - uid: 20363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-47.5 + parent: 2 + - uid: 20364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-46.5 + parent: 2 + - uid: 20365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-45.5 + parent: 2 + - uid: 20366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-44.5 + parent: 2 + - uid: 20367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-43.5 + parent: 2 + - uid: 20368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-42.5 + parent: 2 + - uid: 20369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-41.5 + parent: 2 + - uid: 20370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-40.5 + parent: 2 + - uid: 20371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-39.5 + parent: 2 + - uid: 20372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-38.5 + parent: 2 + - uid: 20374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-36.5 + parent: 2 + - uid: 20375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-35.5 + parent: 2 + - uid: 20376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-33.5 + parent: 2 + - uid: 20377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-32.5 + parent: 2 + - uid: 20378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-31.5 + parent: 2 + - uid: 20379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-30.5 + parent: 2 + - uid: 20380 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-29.5 + parent: 2 + - uid: 20381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-28.5 + parent: 2 + - uid: 20382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-34.5 + parent: 2 + - uid: 20383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-27.5 + parent: 2 + - uid: 20384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-26.5 + parent: 2 + - uid: 20385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-25.5 + parent: 2 + - uid: 20386 + components: + - type: Transform + pos: 46.5,-24.5 + parent: 2 + - uid: 20414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 2 + - uid: 20415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 20416 + components: + - type: Transform + pos: 10.5,-62.5 + parent: 2 + - uid: 20619 + components: + - type: Transform + pos: 10.5,-61.5 + parent: 2 + - uid: 20804 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-63.5 + parent: 2 + - uid: 21348 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 21349 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 21350 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 21351 + components: + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 21353 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 21361 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 21409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,19.5 + parent: 2 + - uid: 22548 + components: + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - uid: 22549 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 22550 + components: + - type: Transform + pos: -28.5,-34.5 + parent: 2 + - uid: 22551 + components: + - type: Transform + pos: -28.5,-35.5 + parent: 2 + - uid: 22552 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - uid: 22553 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - uid: 22554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 +- proto: DisposalRouter + entities: + - uid: 384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - type: DisposalRouter + tags: + - Bridge + - uid: 6849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-33.5 + parent: 2 + - type: DisposalRouter + tags: + - Trash + - uid: 7201 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - type: DisposalRouter + tags: + - Security + - uid: 7897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 + - type: DisposalRouter + tags: + - Trash + - uid: 7917 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - type: DisposalRouter + tags: + - Medical + - uid: 11151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 2 + - type: DisposalRouter + tags: + - Mailing Room + - uid: 11152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-20.5 + parent: 2 + - type: DisposalRouter + tags: + - Trash + - uid: 12180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 2 + - type: DisposalRouter + tags: + - Science + - uid: 15344 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - type: DisposalRouter + tags: + - Chemistry + - uid: 20302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 + - type: DisposalRouter + tags: + - Cargo +- proto: DisposalRouterFlipped + entities: + - uid: 2684 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - type: DisposalRouter + tags: + - Botany + - uid: 8351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 2 + - type: DisposalRouter + tags: + - Kitchen + - uid: 9203 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 2 + - type: DisposalRouter + tags: + - Engineering +- proto: DisposalTagger + entities: + - uid: 3893 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 4732 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 4917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-40.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 5228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-28.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 6226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-49.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 6229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-49.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 6851 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-43.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 7211 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 7577 + components: + - type: Transform + pos: -0.5,-49.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 8300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 8617 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-44.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 8877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-20.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 9143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 9144 + components: + - type: Transform + pos: -14.5,12.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 9204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 10118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 10947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-41.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 11058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-40.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 11097 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - type: DisposalTagger + tag: Trash + - uid: 15362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-31.5 + parent: 2 + - type: DisposalTagger + tag: Trash +- proto: DisposalTrunk + entities: + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 2 + - uid: 689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-14.5 + parent: 2 + - uid: 737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-18.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-41.5 + parent: 2 + - uid: 3050 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-51.5 + parent: 2 + - uid: 3611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-58.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-46.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 20.5,15.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-60.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-24.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 2 + - uid: 5167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 2 + - uid: 5234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-46.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-26.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-36.5 + parent: 2 + - uid: 8496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-42.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,19.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 8662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - uid: 9790 + components: + - type: Transform + 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 + pos: -17.5,-46.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - uid: 14762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-34.5 + parent: 2 + - uid: 14882 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-44.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-32.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-46.5 + parent: 2 + - uid: 15613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-32.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-25.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 15826 + components: + - type: Transform + pos: -35.5,-24.5 + parent: 2 + - uid: 16126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - uid: 16531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-12.5 + parent: 2 + - uid: 16653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-27.5 + parent: 2 + - uid: 16904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-48.5 + parent: 2 + - uid: 17463 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - uid: 17522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - uid: 17580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-32.5 + parent: 2 + - uid: 18097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-32.5 + parent: 2 + - uid: 18477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,5.5 + parent: 2 + - uid: 18566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + - uid: 18635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-34.5 + parent: 2 + - uid: 18669 + components: + - type: Transform + pos: -22.5,0.5 + parent: 2 + - uid: 18854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,16.5 + parent: 2 + - uid: 20814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-63.5 + parent: 2 + - uid: 20833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-63.5 + parent: 2 + - uid: 22556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-38.5 + parent: 2 + - uid: 22766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-43.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 201 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -14.5,17.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: -31.5,-51.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: 29.5,-53.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: -35.5,-60.5 + parent: 2 + - uid: 5280 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: 31.5,-46.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: -17.5,-46.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -5.5,-63.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + pos: 50.5,-15.5 + parent: 2 + - uid: 8689 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 8711 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 9791 + components: + - type: Transform + pos: -20.5,-52.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: 15.5,-42.5 + parent: 2 + - uid: 11189 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 13382 + components: + - type: Transform + pos: -0.5,-50.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: -48.5,-46.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 14783 + components: + - type: Transform + pos: -25.5,-32.5 + parent: 2 + - uid: 14829 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: -41.5,-32.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 15711 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + pos: -49.5,-28.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 16903 + components: + - type: Transform + pos: -24.5,-48.5 + parent: 2 + - uid: 18096 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - uid: 20189 + components: + - type: Transform + pos: 8.5,-63.5 + parent: 2 + - uid: 21367 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 22547 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 4786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-48.5 + parent: 2 + - uid: 8660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-19.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - uid: 14723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-39.5 + parent: 2 + - uid: 15716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 +- proto: DogBed + entities: + - uid: 671 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + pos: -23.5,-53.5 + parent: 2 + - uid: 12175 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + pos: -49.5,-24.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: -47.5,-24.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 10846 + components: + - type: Transform + pos: 65.54841,-77.60572 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 20236 + components: + - type: Transform + pos: -26.5,-55.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 2576 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 13394 + components: + - type: Transform + pos: -53.5,-21.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 7877 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: 6.5,-41.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 4707 + components: + - type: Transform + pos: -10.5,-51.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 814 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 14268 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 4172 + components: + - type: Transform + pos: 26.5,-33.5 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 4302 + components: + - type: Transform + pos: -13.470593,-17.08872 + parent: 2 + - uid: 4319 + components: + - type: Transform + pos: -13.260548,-17.318047 + parent: 2 + - uid: 4321 + components: + - type: Transform + pos: -13.710296,-17.338894 + parent: 2 +- proto: DrinkBloodGlass + entities: + - uid: 6694 + components: + - type: Transform + pos: 19.484085,-52.344112 + parent: 2 +- proto: DrinkCafeLatte + entities: + - uid: 13074 + components: + - type: Transform + pos: 24.646425,8.638431 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 13018 + components: + - type: Transform + pos: -27.49392,-48.37154 + parent: 2 +- proto: DrinkCreamCarton + entities: + - uid: 3245 + components: + - type: Transform + pos: -2.4337258,-32.333588 + parent: 2 +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 14103 + components: + - type: Transform + pos: -48.62749,-22.34152 + parent: 2 +- proto: DrinkFlask + entities: + - uid: 20258 + components: + - type: Transform + pos: -26.689734,-54.180744 + parent: 2 +- proto: DrinkGinBottleFull + entities: + - uid: 17686 + components: + - type: Transform + pos: -26.391235,-54.158222 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 3700 + components: + - type: Transform + pos: -0.6311126,-43.208096 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: -0.25592685,-43.343605 + parent: 2 + - uid: 17135 + components: + - type: Transform + pos: -1.3591337,-41.268375 + parent: 2 + - uid: 17137 + components: + - type: Transform + pos: -1.6301017,-41.40389 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 4738 + components: + - type: Transform + pos: -28.465271,-63.271435 + parent: 2 + - uid: 5509 + components: + - type: Transform + pos: 18.431465,17.597729 + parent: 2 +- proto: DrinkHotCoco + entities: + - uid: 12659 + components: + - type: Transform + pos: -44.09471,-39.250145 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 12481 + components: + - type: Transform + pos: 23.356998,5.6595306 + parent: 2 +- proto: DrinkIcedGreenTeaGlass + entities: + - uid: 2045 + components: + - type: Transform + pos: 13.687973,-59.21468 + parent: 2 +- proto: DrinkIcedTeaCan + entities: + - uid: 3168 + components: + - type: Transform + pos: 13.862172,-10.998358 + parent: 2 + - uid: 3175 + components: + - type: Transform + pos: 13.116106,-9.493994 + parent: 2 +- proto: DrinkJuiceLimeCarton + entities: + - uid: 821 + components: + - type: Transform + pos: -26.630938,-54.356277 + parent: 2 +- proto: DrinkJuiceOrangeCarton + entities: + - uid: 2551 + components: + - type: Transform + pos: -20.543522,10.757981 + parent: 2 +- proto: DrinkLemonadeGlass + entities: + - uid: 5286 + components: + - type: Transform + pos: 31.741688,-35.19893 + parent: 2 +- proto: DrinkMilkCarton + entities: + - uid: 3244 + components: + - type: Transform + pos: -2.6525853,-32.28147 + parent: 2 +- proto: DrinkMopwataBottleRandom + entities: + - uid: 1380 + components: + - type: Transform + pos: 43.25334,17.451698 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: 43.62834,17.58721 + parent: 2 +- proto: DrinkMug + entities: + - uid: 8869 + components: + - type: Transform + pos: 44.624287,-2.3087473 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 3930 + components: + - type: Transform + pos: -16.25185,-48.327908 + parent: 2 +- proto: DrinkMugGreen + entities: + - uid: 12463 + components: + - type: Transform + pos: 18.653496,8.469813 + parent: 2 +- proto: DrinkMugMetal + entities: + - uid: 21451 + components: + - type: Transform + pos: 21.160868,-6.4974823 + parent: 2 + - uid: 21452 + components: + - type: Transform + pos: 21.004618,-6.2318573 + parent: 2 +- proto: DrinkMugRainbow + entities: + - uid: 11561 + components: + - type: Transform + pos: 38.63713,-59.378235 + parent: 2 +- proto: DrinkMugRed + entities: + - uid: 13344 + components: + - type: Transform + pos: -27.239447,0.50863326 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 3699 + components: + - type: Transform + pos: -0.5581603,-43.416573 + parent: 2 + - uid: 7371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.393734,11.449828 + parent: 2 + - uid: 18819 + components: + - type: Transform + pos: 72.445305,-64.57543 + parent: 2 + - uid: 20412 + components: + - type: Transform + pos: -7.6339245,17.767937 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 6 + components: + - type: Transform + pos: 0.40104163,24.025158 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: 52.977722,-39.23201 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: 53.98864,-39.388367 + parent: 2 + - uid: 3041 + components: + - type: Transform + pos: -0.088784575,23.71244 + parent: 2 +- proto: DrinkSoyMilkCarton + entities: + - uid: 3246 + components: + - type: Transform + pos: -2.246133,-32.28147 + parent: 2 +- proto: DrinkSpaceGlue + entities: + - uid: 3898 + components: + - type: Transform + pos: 21.342222,-41.262074 + parent: 2 +- proto: DrinkTeacup + entities: + - uid: 359 + components: + - type: Transform + pos: 19.428297,-9.307767 + parent: 2 + - uid: 9369 + components: + - type: Transform + pos: 20.50759,-10.36513 + parent: 2 + - uid: 12889 + components: + - type: Transform + pos: 19.365797,-10.370267 + parent: 2 + - uid: 22638 + components: + - type: Transform + pos: 20.50759,-9.255755 + parent: 2 +- proto: DrinkTeapot + entities: + - uid: 12536 + components: + - type: Transform + pos: 20.03884,-9.787005 + parent: 2 +- proto: DrinkTonicWaterCan + entities: + - uid: 16986 + components: + - type: Transform + pos: -26.356236,-54.17032 + parent: 2 +- proto: DrinkVermouthBottleFull + entities: + - uid: 20407 + components: + - type: Transform + pos: -7.654758,17.79921 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 2377 + components: + - type: Transform + pos: -20.329561,10.8367405 + parent: 2 +- proto: DrinkWaterCup + entities: + - uid: 1051 + components: + - type: Transform + pos: -0.5374012,12.51578 + parent: 2 + - uid: 1064 + components: + - type: Transform + pos: -0.67200494,12.711606 + parent: 2 +- proto: DrinkWaterJug + entities: + - uid: 13184 + components: + - type: Transform + pos: 6.905526,-44.991566 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 7297 + components: + - type: Transform + pos: 35.441143,3.7775984 + parent: 2 + - uid: 20411 + components: + - type: Transform + pos: -7.3526745,17.8826 + parent: 2 +- proto: DrinkWhiskeyGlass + entities: + - uid: 7298 + components: + - type: Transform + pos: 35.67042,3.7359033 + parent: 2 +- proto: ElectricGuitarInstrument + entities: + - uid: 4740 + components: + - type: Transform + pos: -29.517876,-64.39722 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 110 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-44.5 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-1.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 2699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 4915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 2 + - uid: 4936 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 5436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-2.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 5680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,16.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 6030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-10.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: 20.5,22.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-36.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 6789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-33.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 7860 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,22.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: -14.5,-23.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 9655 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 11124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-1.5 + parent: 2 + - uid: 12129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 + - uid: 12379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 14438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16691 + components: + - type: Transform + pos: 40.5,-20.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16692 + components: + - type: Transform + pos: 51.5,-24.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-18.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16694 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-22.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-18.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16697 + components: + - type: Transform + pos: 56.5,-24.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-31.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-22.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-27.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-40.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-48.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16711 + components: + - type: Transform + pos: 1.5,-47.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,10.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16722 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16726 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-13.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-39.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16737 + components: + - type: Transform + pos: -11.5,-53.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-48.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-53.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-35.5 + parent: 2 + - uid: 16751 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-20.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16755 + components: + - type: Transform + pos: -51.5,-11.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16757 + components: + - type: Transform + pos: -67.5,-14.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,-10.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,12.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-43.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-25.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16776 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 16778 + components: + - type: Transform + pos: 30.5,-37.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 18371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 19286 + components: + - type: Transform + pos: 61.5,-52.5 + parent: 2 + - type: Battery + startingCharge: 30000 + - uid: 21379 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 21380 + components: + - type: Transform + pos: 17.5,7.5 + parent: 2 + - uid: 21381 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 2 + - uid: 21396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-19.5 + parent: 2 + - uid: 21397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 2 + - uid: 21449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 21844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,24.5 + parent: 2 + - uid: 21845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 2 + - uid: 21954 + components: + - type: Transform + pos: 6.5,20.5 + parent: 2 + - uid: 22142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,15.5 + parent: 2 + - uid: 22193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-29.5 + parent: 2 + - uid: 22194 + components: + - type: Transform + pos: -38.5,-32.5 + parent: 2 + - uid: 22195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-27.5 + parent: 2 + - uid: 22196 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 22197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-32.5 + parent: 2 + - uid: 22198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-32.5 + parent: 2 + - uid: 22199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-40.5 + parent: 2 + - uid: 22200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-35.5 + parent: 2 + - uid: 22201 + components: + - type: Transform + pos: -46.5,-43.5 + parent: 2 + - uid: 22202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-37.5 + parent: 2 + - uid: 22203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-38.5 + parent: 2 + - uid: 22204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-36.5 + parent: 2 + - uid: 22205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-24.5 + parent: 2 + - uid: 22206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-22.5 + parent: 2 + - uid: 22207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-23.5 + parent: 2 + - uid: 22208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-25.5 + parent: 2 + - uid: 22209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-15.5 + parent: 2 + - uid: 22288 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-49.5 + parent: 2 +- proto: EmergencyMedipen + entities: + - uid: 9502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.574697,-22.069391 + parent: 2 + - uid: 22140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.595541,-22.257023 + parent: 2 + - uid: 22141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.605963,-22.4655 + parent: 2 +- proto: EmergencyRollerBed + entities: + - uid: 1880 + components: + - type: Transform + pos: 52.441402,-37.397106 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: -35.5,-31.5 + parent: 2 + - uid: 14765 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 18764 + components: + - type: Transform + pos: 75.49805,-44.26112 + parent: 2 +- proto: Envelope + entities: + - uid: 18858 + components: + - type: Transform + pos: 16.005564,13.58702 + parent: 2 +- proto: EvidenceMarkerOne + entities: + - uid: 1842 + components: + - type: Transform + pos: 53.401356,-41.193207 + parent: 2 +- proto: EvidenceMarkerThree + entities: + - uid: 2203 + components: + - type: Transform + pos: 50.5562,-39.54623 + parent: 2 +- proto: EvidenceMarkerTwo + entities: + - uid: 2170 + components: + - type: Transform + pos: 52.380016,-39.285633 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 8462 + components: + - type: Transform + pos: 34.5,-27.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 1672 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 + - uid: 3541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,21.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: -22.5,15.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: 51.5,-23.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + - uid: 10763 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 + - uid: 13802 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + pos: -11.5,9.5 + parent: 2 + - uid: 17621 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 17632 + components: + - type: Transform + pos: -21.5,-50.5 + parent: 2 + - uid: 17636 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 20761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - uid: 20762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + pos: -25.5,-37.5 + parent: 2 + - uid: 21219 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 + - uid: 21220 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 21221 + components: + - type: Transform + pos: -43.5,-45.5 + parent: 2 + - uid: 21224 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 2 + - uid: 22185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-65.5 + parent: 2 + - uid: 22267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-65.5 + parent: 2 + - uid: 22268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-50.5 + parent: 2 + - uid: 22269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-76.5 + parent: 2 + - uid: 22271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-76.5 + parent: 2 + - uid: 22285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-50.5 + parent: 2 + - uid: 22286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-46.5 + parent: 2 + - uid: 22722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - uid: 22734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,22.5 + parent: 2 + - uid: 22736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,20.5 + parent: 2 + - uid: 22737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,25.5 + parent: 2 +- proto: EZNutrientChemistryBottle + entities: + - uid: 17701 + components: + - type: Transform + pos: 48.704712,-60.28858 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 36 + components: + - type: Transform + pos: 24.5,1.5 + parent: 2 + - type: FaxMachine + name: Janitor + - uid: 626 + components: + - type: Transform + pos: -27.5,4.5 + parent: 2 + - type: FaxMachine + name: Security + - uid: 2661 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - type: FaxMachine + name: Cargo + - uid: 3574 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 2 + - type: FaxMachine + name: Science + - uid: 3951 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 2 + - type: FaxMachine + name: Library + - uid: 4817 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - type: FaxMachine + name: Engineering + - uid: 6045 + components: + - type: Transform + pos: -41.5,-52.5 + parent: 2 + - type: FaxMachine + name: Psychology + - uid: 6057 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - type: FaxMachine + name: Chapel + - uid: 6354 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - type: FaxMachine + name: HoP + - uid: 8716 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - type: FaxMachine + name: Lawyer + - uid: 10400 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 2 + - type: FaxMachine + name: CMO + - uid: 10402 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - type: FaxMachine + name: Medical + - uid: 11651 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 2 + - type: FaxMachine + name: Bridge + - uid: 20243 + components: + - type: Transform + pos: -24.5,-50.5 + parent: 2 + - type: FaxMachine + name: Captain +- proto: FigureSpawner + entities: + - uid: 3832 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 2 + - uid: 6473 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: 18.5,-38.5 + parent: 2 +- proto: filingCabinetDrawerRandom + entities: + - uid: 4211 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 2 + - uid: 6883 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 10226 + components: + - type: Transform + pos: -31.5,-25.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: -40.5,-55.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + pos: -47.5,-43.5 + parent: 2 + - uid: 20242 + components: + - type: Transform + pos: -23.5,-50.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 6355 + components: + - type: Transform + pos: -16.72891,-46.37863 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: -16.21824,-46.39948 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 3715 + components: + - type: Transform + pos: 18.223299,13.545596 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: 18.74439,13.545596 + parent: 2 + - uid: 8664 + components: + - type: Transform + pos: 28.608572,13.505003 + parent: 2 + - type: Pullable + prevFixedRotation: True + - uid: 13259 + components: + - type: Transform + pos: 28.18472,13.505003 + parent: 2 + - type: Pullable + prevFixedRotation: True +- proto: FireAlarm + entities: + - uid: 1667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-26.5 + parent: 2 + - type: DeviceList + devices: + - 15211 + - 15210 + - 15209 + - 15208 + - uid: 2276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 14950 + - 14949 + - 14951 + - 14952 + - 14946 + - 14945 + - 14947 + - 14948 + - uid: 3315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 14950 + - 14949 + - 14951 + - 14952 + - uid: 3687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 13367 + - 13236 + - 21847 + - 11233 + - uid: 3816 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 15393 + - 15394 + - uid: 3820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 2520 + - 1720 + - 2342 + - 21855 + - 21854 + - 21853 + - 21856 + - 10397 + - 10457 + - 10396 + - 3985 + - 2321 + - 2919 + - uid: 6790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 15626 + - 15625 + - 15638 + - 15639 + - uid: 13342 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 15435 + - 15181 + - 15182 + - 15183 + - uid: 14371 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 15430 + - 15429 + - 14305 + - 14266 + - 14329 + - 14308 + - 13649 + - 13651 + - uid: 15163 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 15153 + - 15152 + - 15151 + - 16320 + - 16319 + - 16318 + - 15170 + - 15169 + - 15168 + - 15166 + - 15150 + - 15164 + - 15165 + - uid: 15202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 15199 + - 15200 + - 15201 + - 15192 + - 15193 + - 15194 + - uid: 15226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 15199 + - 15200 + - 15201 + - 15211 + - 15210 + - 15206 + - 15207 + - uid: 15227 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 15214 + - 15213 + - 15212 + - 2282 + - 2642 + - 1580 + - 15225 + - 15224 + - 15223 + - 15220 + - 15221 + - 15222 + - 15228 + - 15229 + - uid: 15272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 3985 + - 2321 + - 2919 + - 2282 + - 2642 + - 1580 + - uid: 15391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 4519 + - 15302 + - 15323 + - 15324 + - 4559 + - 2011 + - 15672 + - 19006 + - 19008 + - 15301 + - uid: 15415 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 15395 + - 15396 + - 2540 + - 2516 + - 3025 + - uid: 15424 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 15435 + - uid: 15425 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 13649 + - 13651 + - uid: 15427 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - type: DeviceList + devices: + - 15431 + - 15429 + - 15430 + - uid: 15439 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 15437 + - 15229 + - 15228 + - uid: 15440 + components: + - type: Transform + pos: 44.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 15220 + - 15221 + - 15222 + - uid: 15621 + components: + - type: Transform + pos: -9.5,-57.5 + parent: 2 + - type: DeviceList + devices: + - 11140 + - 8188 + - 10579 + - uid: 15622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-52.5 + parent: 2 + - type: DeviceList + devices: + - 1537 + - 11007 + - 1533 + - 15192 + - 15193 + - 15194 + - 10579 + - 8188 + - 5039 + - 11142 + - 11143 + - 11140 + - uid: 15640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-55.5 + parent: 2 + - type: DeviceList + devices: + - 15626 + - 15625 + - uid: 15907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 15153 + - 15152 + - 15151 + - 15338 + - 15337 + - 14952 + - 14951 + - 14950 + - 14949 + - 4519 + - 4559 + - 2011 + - uid: 16008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 15153 + - 15152 + - 15151 + - 15338 + - 15337 + - 14952 + - 14951 + - 14950 + - 14949 + - 4519 + - 4559 + - 2011 + - uid: 16078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 5390 + - 5467 + - 14382 + - 14368 + - 19001 + - uid: 16314 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-69.5 + parent: 2 + - type: DeviceList + devices: + - 6558 + - 8436 + - 8446 + - uid: 16315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-78.5 + parent: 2 + - uid: 16316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-49.5 + parent: 2 + - type: DeviceList + devices: + - 6558 + - 8436 + - 8446 + - 4961 + - 5024 + - 4976 + - uid: 16317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-43.5 + parent: 2 + - type: DeviceList + devices: + - 16320 + - 16319 + - 16318 + - 4961 + - 5024 + - 4976 + - uid: 17349 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - type: DeviceList + devices: + - 5390 + - 5467 + - 5417 + - 12068 + - 12057 + - 5418 + - 5419 + - 5443 + - 15273 + - 15274 + - 15275 + - 18877 + - 18878 + - 18879 + - uid: 19007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 14382 + - 14368 + - 19001 + - 19008 + - 19006 + - 15672 + - uid: 21082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-52.5 + parent: 2 + - type: DeviceList + devices: + - 11007 + - 1537 + - 1533 + - 15192 + - 15193 + - 15194 + - 10579 + - 8188 + - 5039 + - 11142 + - 11143 + - 11140 + - uid: 21083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-59.5 + parent: 2 + - type: DeviceList + devices: + - 11007 + - 1537 + - 1533 + - uid: 21906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 2520 + - 1720 + - 2342 + - 21907 + - 18410 + - 18412 + - 21817 + - 8966 + - uid: 22029 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 21907 + - 18410 + - 18412 + - 167 + - 21360 + - 17823 + - 5591 + - 5597 + - uid: 22075 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 15273 + - 15274 + - 15275 + - 10396 + - 10457 + - 10397 + - 21856 + - uid: 22601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-63.5 + parent: 2 + - type: DeviceList + devices: + - 8446 + - 8436 + - 6558 + - 4961 + - 5024 + - 4976 +- proto: FireAxeCabinetFilled + entities: + - uid: 2521 + components: + - type: Transform + pos: -10.5,-0.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + pos: -16.5,-49.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 868 + components: + - type: Transform + pos: 11.606097,24.11854 + parent: 2 + - uid: 4820 + components: + - type: Transform + pos: 11.376817,23.764128 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 1548 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13846 + - 58 + - uid: 1557 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13846 + - 58 + - uid: 1563 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13846 + - 58 + - uid: 2516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 15415 + - uid: 2540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 15415 + - uid: 3025 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 15415 + - uid: 5418 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 17351 + - uid: 5419 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 17351 + - uid: 5443 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 17351 + - uid: 12211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,27.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - 13657 + - 14371 + - 15425 + - uid: 13651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29 + - 13657 + - 14371 + - 15425 + - uid: 14266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13657 + - 14371 + - uid: 14305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13657 + - 14371 + - uid: 15357 + components: + - type: Transform + pos: -18.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13846 + - 58 + - uid: 15358 + components: + - type: Transform + pos: -19.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13846 + - 58 + - uid: 15435 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13653 + - 15424 + - 13654 + - 13342 + - uid: 17424 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 +- proto: FirelockGlass + entities: + - uid: 115 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17352 + - uid: 167 + components: + - type: Transform + pos: 38.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22029 + - 22432 + - 22439 + - uid: 431 + components: + - type: Transform + pos: 41.5,-57.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 58.5,-49.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 9.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21083 + - 9393 + - 21082 + - 2583 + - 15622 + - uid: 1537 + components: + - type: Transform + pos: 10.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 + - 21083 + - 21082 + - 2583 + - 15622 + - uid: 1580 + components: + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15227 + - 13639 + - 15272 + - 15421 + - uid: 1720 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 21906 + - 22438 + - uid: 2011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - 10102 + - 15907 + - 15331 + - 16008 + - uid: 2282 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15227 + - 13639 + - 15272 + - 15421 + - uid: 2321 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 15421 + - 15272 + - uid: 2342 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 21906 + - 22438 + - uid: 2520 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 21906 + - 22438 + - uid: 2642 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15227 + - 13639 + - 15272 + - 15421 + - uid: 2693 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14047 + - 14019 + - uid: 2919 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 15421 + - 15272 + - uid: 3985 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 15421 + - 15272 + - uid: 4519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - 10102 + - 15907 + - 15331 + - 16008 + - uid: 4559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - 10102 + - 15907 + - 15331 + - 16008 + - uid: 4961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16316 + - 16317 + - 9309 + - 22601 + - uid: 4976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16316 + - 16317 + - 9309 + - 22601 + - uid: 5024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16316 + - 16317 + - 9309 + - 22601 + - uid: 5039 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - uid: 5390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 16078 + - 8606 + - uid: 5395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - uid: 5417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 17351 + - uid: 5420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 21678 + - uid: 5421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 21678 + - uid: 5467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 16078 + - 8606 + - uid: 5591 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22029 + - 22439 + - uid: 5597 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22029 + - 22439 + - uid: 6322 + components: + - type: Transform + pos: -1.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 6558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - 16314 + - 9309 + - 16316 + - 22601 + - uid: 7288 + components: + - type: Transform + pos: 52.5,-50.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: 39.5,-62.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + pos: -8.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - 15621 + - 5030 + - uid: 8436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - 16314 + - 9309 + - 16316 + - 22601 + - uid: 8446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-66.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - 16314 + - 9309 + - 16316 + - 22601 + - uid: 8966 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22432 + - 22438 + - uid: 9943 + components: + - type: Transform + pos: 45.5,-55.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + pos: 49.5,-57.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + pos: 54.5,-54.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 22071 + - 22075 + - uid: 10397 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 22071 + - 22075 + - uid: 10457 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - 3820 + - 22071 + - 22075 + - uid: 10579 + components: + - type: Transform + pos: -6.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - 15621 + - 5030 + - uid: 11007 + components: + - type: Transform + pos: 11.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 + - 21083 + - 21082 + - 2583 + - 15622 + - uid: 11140 + components: + - type: Transform + pos: -7.5,-54.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - 15621 + - 5030 + - uid: 11142 + components: + - type: Transform + pos: -8.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - uid: 11143 + components: + - type: Transform + pos: -7.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21082 + - 2583 + - 15622 + - uid: 11233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3687 + - 14943 + - uid: 12056 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 21678 + - uid: 12057 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 17351 + - uid: 12058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17352 + - uid: 12062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17352 + - uid: 12068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 17351 + - uid: 12246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17352 + - 21678 + - uid: 12247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17352 + - uid: 12294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - 17352 + - uid: 12296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,24.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,20.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3687 + - 21678 + - 14943 + - uid: 13367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3687 + - 21678 + - 14943 + - uid: 13781 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 14210 + - uid: 14308 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13657 + - 14371 + - uid: 14329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13657 + - 14371 + - uid: 14368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19007 + - 19009 + - 16078 + - 8606 + - uid: 14382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19007 + - 19009 + - 16078 + - 8606 + - uid: 14931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14915 + - 15862 + - uid: 14941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14915 + - 15862 + - uid: 14945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - 16062 + - 2276 + - uid: 14946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - 16062 + - 2276 + - uid: 14947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - 16062 + - 2276 + - uid: 14948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15862 + - 16062 + - 2276 + - uid: 14949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15907 + - 16008 + - 16062 + - 3315 + - 2276 + - uid: 14950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15907 + - 16008 + - 16062 + - 3315 + - 2276 + - uid: 14951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15907 + - 16008 + - 16062 + - 3315 + - 2276 + - uid: 14952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15907 + - 16008 + - 16062 + - 3315 + - 2276 + - uid: 15035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 2 + - uid: 15044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-20.5 + parent: 2 + - uid: 15130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 + - uid: 15141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 2 + - uid: 15143 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14047 + - 58 + - uid: 15150 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15163 + - 15139 + - 17576 + - uid: 15151 + components: + - type: Transform + pos: -24.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15163 + - 58 + - 15907 + - 15331 + - 16008 + - uid: 15152 + components: + - type: Transform + pos: -23.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 + - 15163 + - 15907 + - 15331 + - 16008 + - uid: 15153 + components: + - type: Transform + pos: -22.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 58 + - 15163 + - 15907 + - 15331 + - 16008 + - uid: 15164 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15163 + - 15139 + - 17576 + - uid: 15165 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15163 + - 15139 + - 17576 + - uid: 15166 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15163 + - 15139 + - 14795 + - uid: 15168 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15163 + - 15139 + - 14795 + - uid: 15169 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15163 + - 15139 + - 14795 + - uid: 15170 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15163 + - 15139 + - 14795 + - uid: 15171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-54.5 + parent: 2 + - uid: 15172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-55.5 + parent: 2 + - uid: 15175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-47.5 + parent: 2 + - uid: 15176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-47.5 + parent: 2 + - uid: 15181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13640 + - 13654 + - 13342 + - uid: 15182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13640 + - 13654 + - 13342 + - uid: 15183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13640 + - 13654 + - 13342 + - uid: 15192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - 21082 + - 7178 + - 15202 + - 15622 + - uid: 15193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - 21082 + - 7178 + - 15202 + - 15622 + - uid: 15194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - 21082 + - 7178 + - 15202 + - 15622 + - uid: 15198 + components: + - type: Transform + pos: 20.5,-56.5 + parent: 2 + - uid: 15199 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - 15202 + - 15226 + - 13665 + - uid: 15200 + components: + - type: Transform + pos: 10.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - 15202 + - 15226 + - 13665 + - uid: 15201 + components: + - type: Transform + pos: 9.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - 15202 + - 15226 + - 13665 + - uid: 15206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13665 + - 13640 + - 15226 + - uid: 15207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13665 + - 13640 + - 15226 + - uid: 15208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2395 + - 13640 + - 1667 + - uid: 15209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2395 + - 13640 + - 1667 + - uid: 15210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13665 + - 2395 + - 15226 + - 1667 + - uid: 15211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13665 + - 2395 + - 15226 + - 1667 + - uid: 15212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13640 + - 13639 + - 15227 + - uid: 15213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13640 + - 13639 + - 15227 + - uid: 15214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13640 + - 13639 + - 15227 + - uid: 15220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13639 + - 15227 + - 15440 + - 13549 + - uid: 15221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13639 + - 15227 + - 15440 + - 13549 + - uid: 15222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13639 + - 15227 + - 15440 + - 13549 + - uid: 15223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13639 + - 15227 + - 13612 + - uid: 15224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13639 + - 15227 + - 13612 + - uid: 15225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13639 + - 15227 + - 13612 + - uid: 15228 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15227 + - 13639 + - 15439 + - 13655 + - uid: 15229 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15227 + - 13639 + - 15439 + - 13655 + - uid: 15239 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 15273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 22071 + - 22075 + - uid: 15274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 22071 + - 22075 + - uid: 15275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17348 + - 17349 + - 22071 + - 22075 + - uid: 15301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10102 + - 15391 + - uid: 15302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - 10102 + - uid: 15315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-4.5 + parent: 2 + - uid: 15323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - uid: 15324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15391 + - uid: 15337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13846 + - 15907 + - 15331 + - 16008 + - uid: 15338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13846 + - 15907 + - 15331 + - 16008 + - uid: 15354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-32.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 81 + - 13796 + - 3816 + - uid: 15394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 81 + - 13796 + - 3816 + - uid: 15395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 13796 + - 15415 + - uid: 15396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 13796 + - 15415 + - uid: 15429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15427 + - 13645 + - 13657 + - 14371 + - uid: 15430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15427 + - 13645 + - 13657 + - 14371 + - uid: 15431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15427 + - 13645 + - uid: 15437 + components: + - type: Transform + pos: 31.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15439 + - 13655 + - uid: 15625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14004 + - 15640 + - 14019 + - 6790 + - uid: 15626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14004 + - 15640 + - 14019 + - 6790 + - uid: 15638 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14004 + - 6790 + - uid: 15639 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14004 + - 14047 + - 6790 + - uid: 15672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19007 + - 19009 + - 15391 + - 10102 + - uid: 15860 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 15910 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 14210 + - uid: 15920 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 14210 + - uid: 15933 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15894 + - uid: 15934 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15894 + - uid: 15936 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15937 + - 15894 + - uid: 16318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16317 + - 15163 + - 58 + - uid: 16319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16317 + - 15163 + - 58 + - uid: 16320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7931 + - 16317 + - 15163 + - 58 + - uid: 16950 + components: + - type: Transform + pos: -43.5,-52.5 + parent: 2 + - uid: 17823 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22029 + - 22439 + - uid: 18410 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22029 + - 22438 + - 22439 + - uid: 18412 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22029 + - 22438 + - 22439 + - uid: 18455 + components: + - type: Transform + pos: 48.5,-47.5 + parent: 2 + - uid: 18502 + components: + - type: Transform + pos: 57.5,-57.5 + parent: 2 + - uid: 18539 + components: + - type: Transform + pos: 41.5,-53.5 + parent: 2 + - uid: 18640 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 18877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17349 + - 17348 + - uid: 18878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17349 + - 17348 + - uid: 18879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17349 + - 17348 + - uid: 19001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19007 + - 19009 + - 16078 + - 8606 + - uid: 19006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19007 + - 19009 + - 15391 + - 10102 + - uid: 19008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 19007 + - 19009 + - 15391 + - 10102 + - uid: 20173 + components: + - type: Transform + pos: -6.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 20277 + components: + - type: Transform + pos: -4.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 20393 + components: + - type: Transform + pos: -2.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - uid: 21360 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22029 + - 22432 + - 22439 + - uid: 21595 + components: + - type: Transform + pos: -39.5,-49.5 + parent: 2 + - uid: 21596 + components: + - type: Transform + pos: -39.5,-48.5 + parent: 2 + - uid: 21817 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22432 + - 22438 + - uid: 21847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3687 + - 14943 + - uid: 21853 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10105 + - 3820 + - 14085 + - uid: 21854 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10105 + - 3820 + - 14085 + - uid: 21855 + components: + - type: Transform + pos: 29.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10105 + - 3820 + - 14085 + - uid: 21856 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9147 + - 3820 + - 22075 + - uid: 21907 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21906 + - 22029 + - 22438 + - 22439 +- proto: Fireplace + entities: + - uid: 6141 + components: + - type: Transform + pos: -37.5,-51.5 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 4904 + components: + - type: Transform + pos: 42.44693,-29.3774 + parent: 2 + - uid: 11010 + components: + - type: Transform + pos: 28.34704,-39.254337 + parent: 2 + - uid: 12364 + components: + - type: Transform + pos: -29.552534,-21.321272 + parent: 2 + - uid: 13100 + components: + - type: Transform + pos: -38.657784,-14.248901 + parent: 2 + - uid: 15075 + components: + - type: Transform + pos: 2.4182906,-57.28451 + parent: 2 + - uid: 15156 + components: + - type: Transform + pos: 2.6579933,-57.47214 + parent: 2 + - uid: 16761 + components: + - type: Transform + pos: -52.476463,-13.445257 + parent: 2 + - uid: 16762 + components: + - type: Transform + pos: -11.40432,-23.46709 + parent: 2 + - type: HandheldLight + toggleActionEntity: 5704 + - type: ContainerContainer + containers: cell_slot: !type:ContainerSlot showEnts: False occludes: True @@ -67031,6578 +74306,8105 @@ entities: showEnts: False occludes: True ents: - - 14387 + - 5704 - type: ActionsContainer - - uid: 6188 + - uid: 19898 + components: + - type: Transform + pos: 45.4472,-50.26539 + parent: 2 + - type: HandheldLight + toggleActionEntity: 19899 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 19899 + - type: ActionsContainer +- proto: FlashlightSeclite + entities: + - uid: 492 + components: + - type: Transform + pos: -23.535683,15.622428 + parent: 2 + - type: HandheldLight + toggleActionEntity: 494 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 494 + - type: ActionsContainer +- proto: FlippoLighter + entities: + - uid: 20241 + components: + - type: Transform + pos: -24.681618,-50.804417 + parent: 2 +- proto: Floodlight + entities: + - uid: 88 + components: + - type: Transform + pos: -9.483673,-93.49975 + parent: 2 + - type: HandheldLight + toggleActionEntity: 121 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 121 + - type: ActionsContainer +- proto: FloorDrain + entities: + - uid: 1143 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 2688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-28.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 4655 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 9834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-55.5 + 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 + rot: 3.141592653589793 rad + pos: -57.5,-31.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 13019 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14062 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 14126 + components: + - type: Transform + pos: -48.5,-45.5 + 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 + pos: -43.5,-23.5 + 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 + components: + - type: Transform + pos: 39.33514,12.721781 + parent: 2 + - type: Stack + count: 30 +- proto: FloorTileItemLino + entities: + - uid: 7397 + components: + - type: Transform + pos: 39.61653,12.544575 + parent: 2 + - type: Stack + count: 30 +- proto: FloraRockSolid + entities: + - uid: 19552 + components: + - type: Transform + pos: -10.482171,6.58344 + parent: 2 + - uid: 19971 + components: + - type: Transform + pos: -10.482171,3.5846229 + parent: 2 +- proto: FloraTree + entities: + - uid: 4626 + components: + - type: Transform + pos: 7.666235,-51.78729 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: -2.334277,-51.76644 + parent: 2 + - uid: 4638 + components: + - type: Transform + pos: -4.6896114,-51.756016 + parent: 2 + - uid: 4639 + components: + - type: Transform + pos: 5.37343,-51.964497 + parent: 2 + - uid: 22274 + components: + - type: Transform + pos: -16.095478,15.975274 + parent: 2 + - uid: 22275 + components: + - type: Transform + pos: -16.178854,14.151091 + parent: 2 + - uid: 22276 + components: + - type: Transform + pos: -10.780342,16.194176 + parent: 2 +- proto: FloraTreeLarge + entities: + - uid: 6630 + components: + - type: Transform + pos: -19.469257,30.462284 + parent: 2 +- proto: FloraTreeStump + entities: + - uid: 8044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.154366,15.115424 + parent: 2 + - uid: 11256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.62285,14.114729 + parent: 2 + - uid: 12001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.760044,15.310355 + parent: 2 + - uid: 21121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.83384,-53.40124 + parent: 2 +- proto: FoamCutlass + entities: + - uid: 3601 + components: + - type: Transform + pos: 7.473509,-31.443338 + parent: 2 +- proto: FolderSpawner + entities: + - uid: 1181 + components: + - type: Transform + pos: -27.58403,0.63008094 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -29.390694,-45.42049 + parent: 2 + - uid: 4502 + components: + - type: Transform + pos: 35.670486,-41.46836 + parent: 2 + - uid: 4720 + components: + - type: Transform + pos: 22.613304,-44.33881 + parent: 2 + - uid: 5222 + components: + - type: Transform + pos: -18.613434,-22.431986 + parent: 2 + - uid: 6591 + components: + - type: Transform + pos: 26.394815,-37.93541 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: 37.366684,2.5039263 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: -21.61111,-44.37044 + parent: 2 + - uid: 9709 + components: + - type: Transform + pos: -15.489538,-48.309826 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: -15.2811,-48.58085 + parent: 2 + - uid: 10399 + components: + - type: Transform + pos: -28.344467,-26.498697 + parent: 2 + - uid: 10918 + components: + - type: Transform + pos: 20.540285,-41.386803 + parent: 2 + - uid: 13895 + components: + - type: Transform + pos: 28.405712,10.798362 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: -27.376095,3.9398522 + parent: 2 +- proto: FoodBakedCookieOatmeal + entities: + - uid: 19237 + components: + - type: Transform + pos: 13.387823,-59.475697 + parent: 2 +- proto: FoodBanana + entities: + - uid: 44 + components: + - type: Transform + pos: -11.728128,20.206146 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 6.29909,-27.428843 + parent: 2 + - uid: 2618 + components: + - type: Transform + pos: 6.7341714,-27.445194 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: 6.549214,-27.293333 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: -11.361029,20.14495 + parent: 2 +- proto: FoodBowlBig + entities: + - uid: 3250 + components: + - type: Transform + pos: 1.388993,-33.390644 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 39.47634,-17.316113 + parent: 2 + - uid: 20417 + components: + - type: Transform + pos: -37.462013,-5.335156 + parent: 2 +- proto: FoodBowlBigTrash + entities: + - uid: 3205 + components: + - type: Transform + pos: 1.4228268,-29.25675 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 9642 + components: + - type: Transform + pos: -28.571066,-7.4939437 + parent: 2 +- proto: FoodBoxPizzaFilled + entities: + - uid: 12863 + components: + - type: Transform + pos: -26.574448,-48.267326 + parent: 2 +- proto: FoodBurgerCheese + entities: + - uid: 2928 + components: + - type: Transform + pos: 13.395158,-10.606978 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: 12.649092,-9.787528 + parent: 2 +- proto: FoodCartHot + entities: + - uid: 16000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-34.5 + parent: 2 +- proto: FoodCondimentBottleBBQ + entities: + - uid: 12868 + components: + - type: Transform + pos: -27.418615,-45.588383 + parent: 2 +- proto: FoodCondimentBottleHotsauce + entities: + - uid: 12872 + components: + - type: Transform + pos: -27.772959,-45.411175 + parent: 2 +- proto: FoodCondimentBottleKetchup + entities: + - uid: 3083 + components: + - type: Transform + pos: 12.110945,-10.631439 + parent: 2 +- proto: FoodCondimentPacketAstrotame + entities: + - uid: 6714 + components: + - type: Transform + pos: 20.47634,-9.86513 + parent: 2 +- proto: FoodCondimentPacketSugar + entities: + - uid: 6652 + components: + - type: Transform + pos: 20.585714,-9.67763 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: 19.398214,-9.818255 + parent: 2 +- proto: FoodContainerEgg + entities: + - uid: 3260 + components: + - type: Transform + pos: -4.502074,-32.16814 + parent: 2 +- proto: FoodDonutCaramel + entities: + - uid: 5594 + components: + - type: Transform + pos: 31.391466,-35.205338 + parent: 2 +- proto: FoodFrozenSnowconeTrash + entities: + - uid: 1060 + components: + - type: Transform + pos: -0.26819527,12.736085 + parent: 2 +- proto: FoodLime + entities: + - uid: 4330 + components: + - type: Transform + pos: -13.635734,-17.245079 + parent: 2 +- proto: FoodMealFries + entities: + - uid: 2931 + components: + - type: Transform + pos: 12.857012,-10.447981 + parent: 2 + - uid: 2933 + components: + - type: Transform + pos: 12.318865,-10.1666765 + parent: 2 +- proto: FoodMeat + entities: + - uid: 3383 + components: + - type: Transform + pos: -2.3587275,-32.516136 + parent: 2 + - uid: 3676 + components: + - type: Transform + pos: -2.6524074,-32.45494 + parent: 2 +- proto: FoodOnion + entities: + - uid: 1024 + components: + - type: Transform + pos: -2.5319834,-32.413868 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 5033 + components: + - type: Transform + pos: 6.677691,-27.220387 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: -11.495632,20.622276 + parent: 2 +- proto: FoodPlateSmallPlastic + entities: + - uid: 6443 + components: + - type: Transform + pos: 13.408668,-59.42358 + parent: 2 +- proto: FoodPlateTin + entities: + - uid: 3253 + components: + - type: Transform + pos: 1.7537582,-33.348946 + parent: 2 +- proto: FoodPoppy + entities: + - uid: 600 + components: + - type: Transform + pos: -10.466447,17.588402 + parent: 2 + - uid: 5316 components: - type: Transform - pos: -32.77724,-57.239983 + pos: -8.369396,12.742838 parent: 2 - - type: HandheldLight - toggleActionEntity: 14544 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 14544 - - type: ActionsContainer - - uid: 11010 +- proto: FoodShakerPepper + entities: + - uid: 12891 components: - type: Transform - pos: 28.34704,-39.254337 + pos: -8.667622,-35.44696 parent: 2 - - uid: 16760 +- proto: FoodShakerSalt + entities: + - uid: 17578 components: - type: Transform - pos: -52.622368,-13.288898 + pos: -8.459184,-35.530354 parent: 2 - - uid: 16761 +- proto: FoodTinBeansTrash + entities: + - uid: 20051 components: - type: Transform - pos: -52.476463,-13.445257 + pos: 72.542496,-40.466583 parent: 2 - - uid: 16762 + - uid: 20054 components: - type: Transform - pos: -11.40432,-23.46709 + pos: 87.53548,-29.466497 parent: 2 - - type: HandheldLight - toggleActionEntity: 5704 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 5704 - - type: ActionsContainer - - uid: 19550 + - uid: 21604 components: - type: Transform - pos: 27.562937,-29.514505 + pos: -46.263836,-51.228725 parent: 2 - - type: HandheldLight - toggleActionEntity: 19551 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 19551 - - type: ActionsContainer - - uid: 19898 +- proto: FoodTinMRE + entities: + - uid: 22107 components: - type: Transform - pos: 45.4472,-50.26539 + pos: 39.421116,20.68132 parent: 2 - - type: HandheldLight - toggleActionEntity: 19899 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 19899 - - type: ActionsContainer -- proto: FlashlightSeclite +- proto: FoodTinMRETrash entities: - - uid: 492 + - uid: 13164 components: - type: Transform - pos: -26.740911,15.543136 + pos: -0.2445485,-29.114664 parent: 2 - - type: HandheldLight - toggleActionEntity: 494 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 494 - - type: ActionsContainer -- proto: FlippoLighter + - uid: 20052 + components: + - type: Transform + pos: 76.46632,-46.470753 + parent: 2 + - uid: 21603 + components: + - type: Transform + pos: -52.670994,-55.272808 + parent: 2 + - uid: 22488 + components: + - type: Transform + pos: 38.43058,20.625526 + parent: 2 +- proto: FoodTinPeachesMaint entities: - - uid: 20241 + - uid: 2963 components: - type: Transform - pos: -24.681618,-50.804417 + pos: 14.418226,-6.5569444 parent: 2 -- proto: FloorDrain + - uid: 3941 + components: + - type: Transform + pos: 1.491024,-28.265974 + parent: 2 + - uid: 18407 + components: + - type: Transform + pos: 30.276194,24.49647 + parent: 2 +- proto: FoodTinPeachesMaintTrash entities: - - uid: 296 + - uid: 2978 components: - type: Transform - pos: -51.5,-33.5 + pos: 14.2359705,-6.420357 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 297 +- proto: FoodTinPeachesTrash + entities: + - uid: 13161 components: - type: Transform - pos: -51.5,-27.5 + pos: -0.69730604,-29.139143 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 712 + - uid: 20055 components: - type: Transform - pos: -43.5,-47.5 + pos: 86.51489,-16.43149 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 2688 +- proto: Football + entities: + - uid: 13188 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-31.5 + pos: 14.401545,-6.1120505 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 3142 +- proto: ForkPlastic + entities: + - uid: 21675 components: - type: Transform - pos: -47.5,-31.5 + pos: 38.637722,20.57708 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 4108 +- proto: GameMasterCircuitBoard + entities: + - uid: 16465 components: - type: Transform - pos: -30.5,-35.5 + pos: -63.581856,-16.131536 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 4366 +- proto: GasAnalyzer + entities: + - uid: 2089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-28.5 + pos: -13.562385,-8.409812 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 4655 +- proto: GasFilter + entities: + - uid: 12658 components: - type: Transform - pos: -17.5,-34.5 + rot: -1.5707963267948966 rad + pos: -42.5,-35.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 8162 + - type: GasFilter + filteredGas: CarbonDioxide + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasFilterFlipped + entities: + - uid: 1575 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-45.5 + rot: -1.5707963267948966 rad + pos: 0.5,0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 9416 + - uid: 1588 components: - type: Transform - pos: 28.5,0.5 + rot: -1.5707963267948966 rad + pos: -1.5,0.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 9834 + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4512 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-55.5 + pos: 27.5,-45.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 13041 +- proto: GasMinerCarbonDioxide + entities: + - uid: 1456 components: - type: Transform - pos: -36.5,-2.5 + pos: -3.5,5.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 14495 +- proto: GasMinerNitrogenStation + entities: + - uid: 1452 components: - type: Transform - pos: -40.5,1.5 + pos: -7.5,5.5 parent: 2 - - type: Fixtures - fixtures: {} - - uid: 15897 +- proto: GasMinerOxygenStation + entities: + - uid: 1453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-43.5 + pos: -5.5,5.5 parent: 2 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemBar +- proto: GasMinerWaterVapor entities: - - uid: 7398 + - uid: 1459 components: - type: Transform - pos: 39.33514,12.721781 + pos: -1.5,5.5 parent: 2 - - type: Stack - count: 30 -- proto: FloorTileItemDarkPavementVertical +- proto: GasMixer entities: - - uid: 11940 + - uid: 6033 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 13007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasMixerFlipped + entities: + - uid: 1601 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.51076,5.6010513 + pos: -8.5,-2.5 parent: 2 - - type: Stack - count: 30 -- proto: FloorTileItemLino + - 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 + pos: -53.5,-12.5 + parent: 2 +- proto: GasOutletInjector entities: - - uid: 7397 + - uid: 2010 components: - type: Transform - pos: 39.61653,12.544575 + pos: 4.5,4.5 parent: 2 - - type: Stack - count: 30 -- proto: FloorWaterEntity + - uid: 2012 + components: + - type: Transform + pos: -1.5,4.5 + parent: 2 + - uid: 2013 + components: + - type: Transform + pos: -3.5,4.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -7.5,4.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + 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 + pos: 0.5,4.5 + parent: 2 + - uid: 10015 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 +- proto: GasPassiveVent entities: - - uid: 6987 + - uid: 2004 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-6.5 + pos: -7.5,6.5 parent: 2 - - uid: 8231 + - uid: 2005 components: - type: Transform - pos: -39.5,-42.5 + rot: -1.5707963267948966 rad + pos: -5.5,6.5 parent: 2 - - uid: 8266 + - uid: 2006 components: - type: Transform - pos: -40.5,-42.5 + rot: -1.5707963267948966 rad + pos: -3.5,6.5 parent: 2 -- proto: FloraRockSolid + - uid: 2007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 2562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 2 + - 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: 9527 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 10809 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 16419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16425 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 16426 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-15.5 + parent: 2 +- proto: GasPipeBend entities: - - uid: 17948 + - uid: 672 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.492828,-6.4149537 + pos: -39.5,-4.5 parent: 2 - - uid: 19549 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 677 components: - type: Transform - pos: 12.574104,-1.440425 + rot: 3.141592653589793 rad + pos: -26.5,-11.5 parent: 2 - - uid: 19552 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 977 components: - type: Transform - pos: -10.482171,6.58344 + rot: -1.5707963267948966 rad + pos: 12.5,16.5 parent: 2 - - uid: 19556 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1506 components: - type: Transform - pos: 3.4913387,7.572454 + rot: 1.5707963267948966 rad + pos: 45.5,-18.5 parent: 2 - - uid: 19558 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1543 components: - type: Transform - pos: 9.461854,1.5700341 + rot: 1.5707963267948966 rad + pos: 12.5,19.5 parent: 2 - - uid: 19971 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1612 components: - type: Transform - pos: -10.482171,3.5846229 + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 parent: 2 - - uid: 19972 + - uid: 1619 components: - type: Transform - pos: 22.556618,18.605299 + rot: 1.5707963267948966 rad + pos: -9.5,0.5 parent: 2 - - uid: 20653 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 1650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-46.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - uid: 2019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 2 + - uid: 2428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2436 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2589 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2603 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-15.5 + 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 + rot: 1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4197 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4439 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4572 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4879 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5389 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5633 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-44.5 + parent: 2 + - uid: 6553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6675 + components: + - type: Transform + pos: -7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6721 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-38.5 + 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 + pos: -22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7608 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8729 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9518 + components: + - type: Transform + pos: 18.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10235 + components: + - type: Transform + pos: -41.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10976 + components: + - type: Transform + pos: -8.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11275 components: - type: Transform - pos: 27.553556,21.553436 + rot: -1.5707963267948966 rad + pos: -41.5,-38.5 parent: 2 -- proto: FloraTree - entities: - - uid: 1550 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 11282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.792082,16.220356 + rot: -1.5707963267948966 rad + pos: -6.5,-69.5 parent: 2 - - uid: 4620 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.873345,-6.103357 + rot: 3.141592653589793 rad + pos: 34.5,-25.5 parent: 2 -- proto: FloraTreeChristmas01 - entities: - - uid: 4951 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11611 components: - type: Transform - pos: -15.944529,13.000485 + rot: 3.141592653589793 rad + pos: -3.5,-44.5 parent: 2 - - uid: 9929 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11628 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.551569,-41.487434 + pos: -44.5,-36.5 parent: 2 - - uid: 12864 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 11904 components: - type: Transform - pos: -10.685584,16.372208 + rot: 1.5707963267948966 rad + pos: -43.5,-34.5 parent: 2 - - uid: 13195 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12007 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.497183,30.49985 + pos: -45.5,-38.5 parent: 2 -- proto: FloraTreeChristmas02 - entities: - - uid: 4896 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 12331 components: - type: Transform - pos: -8.998787,-40.16732 + rot: 3.141592653589793 rad + pos: -54.5,-22.5 parent: 2 -- proto: FloraTreeStump - entities: - - uid: 3262 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12411 components: - type: Transform - pos: -42.059097,-42.255505 + rot: -1.5707963267948966 rad + pos: -34.5,-32.5 parent: 2 - - uid: 3439 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12423 components: - type: Transform - pos: -40.14148,-41.577953 + rot: -1.5707963267948966 rad + pos: -34.5,-36.5 parent: 2 - - uid: 8044 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12424 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.154366,15.115424 + pos: -34.5,-35.5 parent: 2 - - uid: 11256 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.62285,14.114729 + rot: -1.5707963267948966 rad + pos: -33.5,-37.5 parent: 2 -- proto: FoamCutlass - entities: - - uid: 3601 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12427 components: - type: Transform - pos: 7.473509,-31.443338 + rot: 1.5707963267948966 rad + pos: -33.5,-36.5 parent: 2 -- proto: FolderSpawner - entities: - - uid: 1181 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12442 components: - type: Transform - pos: -27.58403,0.63008094 + pos: -48.5,-23.5 parent: 2 - - uid: 3952 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13038 components: - type: Transform - pos: 18.524017,-36.404434 + rot: -1.5707963267948966 rad + pos: -51.5,-38.5 parent: 2 - - uid: 4502 + - uid: 13202 components: - type: Transform - pos: 35.670486,-41.46836 + pos: 31.5,21.5 parent: 2 - - uid: 5222 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13501 components: - type: Transform - pos: -18.613434,-22.431986 + pos: 35.5,-30.5 parent: 2 - - uid: 6591 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13507 components: - type: Transform - pos: 26.394815,-37.93541 + rot: 1.5707963267948966 rad + pos: 20.5,-20.5 parent: 2 - - uid: 7282 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13508 components: - type: Transform - pos: 37.366684,2.5039263 + rot: -1.5707963267948966 rad + pos: 20.5,-21.5 parent: 2 - - uid: 7514 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13579 components: - type: Transform - pos: -21.61111,-44.37044 + rot: -1.5707963267948966 rad + pos: 36.5,-10.5 parent: 2 - - uid: 9709 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13598 components: - type: Transform - pos: -15.489538,-48.309826 + pos: 41.5,-6.5 parent: 2 - - uid: 9710 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13631 components: - type: Transform - pos: -15.2811,-48.58085 + rot: 1.5707963267948966 rad + pos: 26.5,-16.5 parent: 2 - - uid: 13895 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13632 components: - type: Transform - pos: 28.405712,10.798362 + rot: 3.141592653589793 rad + pos: 28.5,-18.5 parent: 2 - - uid: 16030 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13643 components: - type: Transform - pos: -33.490604,-32.45252 + rot: 3.141592653589793 rad + pos: 29.5,-37.5 parent: 2 - - uid: 16142 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13830 components: - type: Transform - pos: -27.376095,3.9398522 + pos: -15.5,-33.5 parent: 2 -- proto: FoodBakedCookieOatmeal - entities: - - uid: 12714 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13956 components: - type: Transform - pos: 15.401459,-57.43562 + rot: -1.5707963267948966 rad + pos: -22.5,-41.5 parent: 2 -- proto: FoodBanana - entities: - - uid: 44 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13957 components: - type: Transform - pos: -11.728128,20.206146 + rot: 1.5707963267948966 rad + pos: -23.5,-41.5 parent: 2 - - uid: 1126 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13974 components: - type: Transform - pos: 6.452728,-27.469671 + rot: 3.141592653589793 rad + pos: -24.5,-48.5 parent: 2 - - uid: 2618 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13976 components: - type: Transform - pos: 6.7341714,-27.445194 + pos: -19.5,-46.5 parent: 2 - - uid: 4338 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14008 components: - type: Transform - pos: 6.636278,-27.530867 + rot: 3.141592653589793 rad + pos: -19.5,-50.5 parent: 2 - - uid: 5386 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14010 components: - type: Transform - pos: -11.361029,20.14495 + pos: -16.5,-50.5 parent: 2 -- proto: FoodBowlBig - entities: - - uid: 3250 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14011 components: - type: Transform - pos: 1.388993,-33.390644 + rot: 3.141592653589793 rad + pos: -20.5,-51.5 parent: 2 - - uid: 8402 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14012 components: - type: Transform - pos: 39.47634,-17.316113 + pos: -18.5,-51.5 parent: 2 - - uid: 20417 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14143 components: - type: Transform - pos: -37.462013,-5.335156 + rot: -1.5707963267948966 rad + pos: -48.5,-44.5 parent: 2 -- proto: FoodBowlBigTrash - entities: - - uid: 3205 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14286 components: - type: Transform - pos: 1.4228268,-29.25675 + rot: 1.5707963267948966 rad + pos: -34.5,-40.5 parent: 2 -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 7420 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14486 components: - type: Transform - pos: 11.683109,-13.410268 + pos: -38.5,3.5 parent: 2 -- proto: FoodBoxDonut - entities: - - uid: 9642 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14599 components: - type: Transform - pos: -27.510775,-7.9826107 + rot: -1.5707963267948966 rad + pos: -14.5,-4.5 parent: 2 -- proto: FoodBoxPizzaFilled - entities: - - uid: 12863 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14600 components: - type: Transform - pos: -24.3443,-48.2645 + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 parent: 2 -- proto: FoodCakeChristmas - entities: - - uid: 20217 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14601 components: - type: Transform - pos: -10.4618225,-39.519108 + rot: 1.5707963267948966 rad + pos: -15.5,-4.5 parent: 2 -- proto: FoodCakeChristmasSlice - entities: - - uid: 20218 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14602 components: - type: Transform - pos: -7.4209366,-39.35231 + rot: 1.5707963267948966 rad + pos: -17.5,-3.5 parent: 2 -- proto: FoodCartHot - entities: - - uid: 16000 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-34.5 + rot: 1.5707963267948966 rad + pos: -28.5,0.5 parent: 2 -- proto: FoodCondimentBottleBBQ - entities: - - uid: 12868 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14672 components: - type: Transform - pos: -23.446165,-48.288555 + rot: 1.5707963267948966 rad + pos: -22.5,-20.5 parent: 2 - - uid: 12889 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14707 components: - type: Transform - pos: -40.66454,-50.845734 + rot: -1.5707963267948966 rad + pos: -17.5,-23.5 parent: 2 -- proto: FoodCondimentBottleHotsauce - entities: - - uid: 12872 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14708 components: - type: Transform - pos: -23.70671,-48.236435 + rot: -1.5707963267948966 rad + pos: -13.5,-24.5 parent: 2 -- proto: FoodContainerEgg - entities: - - uid: 3260 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14866 components: - type: Transform - pos: -4.502074,-32.16814 + rot: -1.5707963267948966 rad + pos: -43.5,-29.5 parent: 2 -- proto: FoodDonutCaramel - entities: - - uid: 5594 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14877 components: - type: Transform - pos: 31.391466,-35.205338 + rot: 3.141592653589793 rad + pos: -22.5,-0.5 parent: 2 -- proto: FoodFrozenSnowconeTrash - entities: - - uid: 1060 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14894 components: - type: Transform - pos: -0.26819527,12.736085 + pos: -33.5,-23.5 parent: 2 -- proto: FoodLime - entities: - - uid: 4330 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14899 components: - type: Transform - pos: -13.635734,-17.245079 + rot: 3.141592653589793 rad + pos: -38.5,-24.5 parent: 2 -- proto: FoodMeat - entities: - - uid: 3383 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15006 components: - type: Transform - pos: -2.3587275,-32.516136 + rot: 3.141592653589793 rad + pos: -9.5,-48.5 parent: 2 - - uid: 3676 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15097 components: - type: Transform - pos: -2.6524074,-32.45494 + pos: -3.5,-40.5 parent: 2 -- proto: FoodMeatHuman - entities: - - uid: 6703 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15110 components: - type: Transform - pos: 20.478777,-53.488373 + pos: -4.5,-41.5 parent: 2 -- proto: FoodOnion - entities: - - uid: 1024 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15113 components: - type: Transform - pos: -2.5319834,-32.413868 + rot: 1.5707963267948966 rad + pos: -9.5,-41.5 parent: 2 -- proto: FoodPieBananaCream - entities: - - uid: 5033 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15128 components: - type: Transform - pos: 6.677691,-27.220387 + rot: 1.5707963267948966 rad + pos: -11.5,-36.5 parent: 2 - - uid: 5406 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15129 components: - type: Transform - pos: -11.495632,20.622276 + rot: -1.5707963267948966 rad + pos: -8.5,-36.5 parent: 2 -- proto: FoodPlateSmallPlastic - entities: - - uid: 12869 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15133 components: - type: Transform - pos: -23.386118,-48.16896 + rot: 1.5707963267948966 rad + pos: -8.5,-32.5 parent: 2 - - uid: 15360 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15134 components: - type: Transform - pos: 15.448334,-57.357494 + pos: -6.5,-33.5 parent: 2 -- proto: FoodPlateSmallTrash - entities: - - uid: 4344 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15261 components: - type: Transform - pos: 11.441256,-12.588194 + rot: -1.5707963267948966 rad + pos: -29.5,-61.5 parent: 2 -- proto: FoodPlateTin - entities: - - uid: 3253 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15378 components: - type: Transform - pos: 1.7537582,-33.348946 + rot: 1.5707963267948966 rad + pos: -13.5,-17.5 parent: 2 -- proto: FoodPoppy - entities: - - uid: 600 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15846 components: - type: Transform - pos: -10.466447,17.588402 + pos: 14.5,10.5 parent: 2 - - uid: 5316 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16244 components: - type: Transform - pos: -8.369396,12.742838 + rot: 3.141592653589793 rad + pos: -24.5,-10.5 parent: 2 - - uid: 7431 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16311 components: - type: Transform - pos: -42.406033,-41.509243 + rot: 3.141592653589793 rad + pos: -34.5,-79.5 parent: 2 -- proto: FoodShakerPepper - entities: - - uid: 12891 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16312 components: - type: Transform - pos: -10.285194,-36.815365 + rot: -1.5707963267948966 rad + pos: -32.5,-77.5 parent: 2 -- proto: FoodShakerSalt - entities: - - uid: 17578 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 16427 components: - type: Transform - pos: -10.743755,-36.804943 + rot: -1.5707963267948966 rad + pos: -55.5,-12.5 parent: 2 -- proto: FoodTinBeansTrash - entities: - - uid: 20051 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16441 components: - type: Transform - pos: 72.542496,-40.466583 + rot: 3.141592653589793 rad + pos: -62.5,-15.5 parent: 2 - - uid: 20054 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16442 components: - type: Transform - pos: 87.53548,-29.466497 + rot: 1.5707963267948966 rad + pos: -62.5,-9.5 parent: 2 -- proto: FoodTinMRETrash - entities: - - uid: 13164 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16449 components: - type: Transform - pos: -0.2445485,-29.114664 + rot: 1.5707963267948966 rad + pos: -54.5,-12.5 parent: 2 - - uid: 20052 + - uid: 17291 components: - type: Transform - pos: 76.46632,-46.470753 + rot: 1.5707963267948966 rad + pos: 27.5,1.5 parent: 2 -- proto: FoodTinPeachesMaint - entities: - - uid: 3941 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17407 components: - type: Transform - pos: 1.491024,-28.265974 + rot: -1.5707963267948966 rad + pos: 10.5,17.5 parent: 2 -- proto: FoodTinPeachesTrash - entities: - - uid: 13161 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17408 components: - type: Transform - pos: -0.69730604,-29.139143 + rot: 3.141592653589793 rad + pos: -1.5,17.5 parent: 2 - - uid: 20055 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17409 components: - type: Transform - pos: 86.51489,-16.43149 + rot: 1.5707963267948966 rad + pos: -1.5,25.5 parent: 2 -- proto: FoodTomato - entities: - - uid: 18586 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17431 components: - type: Transform - pos: 3.5404968,-19.16355 + rot: 3.141592653589793 rad + pos: -1.5,16.5 parent: 2 -- proto: GameMasterCircuitBoard - entities: - - uid: 16465 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17432 components: - type: Transform - pos: -63.581856,-16.131536 + pos: -1.5,17.5 parent: 2 -- proto: GasAnalyzer - entities: - - uid: 2089 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17437 components: - type: Transform - pos: -13.562385,-8.409812 + rot: 1.5707963267948966 rad + pos: -7.5,18.5 parent: 2 - - uid: 6957 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17878 components: - type: Transform - pos: -26.330072,-21.414108 + pos: -8.5,-13.5 parent: 2 - - uid: 14857 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17883 components: - type: Transform - pos: -6.3268914,-15.33333 + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 parent: 2 -- proto: GasFilter - entities: - - uid: 4998 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 19981 components: - type: Transform - pos: -33.5,-22.5 + rot: 1.5707963267948966 rad + pos: -12.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasFilterFlipped - entities: - - uid: 1575 + color: '#FF1212FF' + - uid: 19985 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,0.5 + pos: -11.5,-15.5 parent: 2 - - uid: 1588 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21065 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,0.5 + pos: -3.5,-57.5 parent: 2 - - uid: 1597 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + pos: 2.5,-55.5 parent: 2 - - uid: 1599 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 + rot: 3.141592653589793 rad + pos: 17.5,-49.5 parent: 2 - - uid: 1600 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,0.5 + pos: 19.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4512 + color: '#0055CCFF' + - uid: 22246 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-45.5 + pos: 17.5,-35.5 parent: 2 -- proto: GasMinerCarbonDioxide - entities: - - uid: 1456 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22314 components: - type: Transform - pos: -3.5,5.5 + pos: 16.5,23.5 parent: 2 -- proto: GasMinerNitrogenStation - entities: - - uid: 1452 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22318 components: - type: Transform - pos: -7.5,5.5 + rot: -1.5707963267948966 rad + pos: 16.5,19.5 parent: 2 -- proto: GasMinerOxygenStation - entities: - - uid: 1453 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22326 components: - type: Transform - pos: -5.5,5.5 + rot: 3.141592653589793 rad + pos: 12.5,22.5 parent: 2 -- proto: GasMinerWaterVapor - entities: - - uid: 1459 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22329 components: - type: Transform - pos: -1.5,5.5 + rot: 3.141592653589793 rad + pos: 13.5,23.5 parent: 2 -- proto: GasMixer - entities: - - uid: 6033 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22386 components: - type: Transform - pos: 29.5,-44.5 + rot: 1.5707963267948966 rad + pos: 27.5,24.5 parent: 2 - - uid: 6713 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22406 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-7.5 + pos: 32.5,24.5 parent: 2 -- proto: GasMixerFlipped - entities: - - uid: 1601 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22408 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-2.5 + pos: 32.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16423 + - uid: 22430 components: - type: Transform - pos: -53.5,-12.5 + rot: -1.5707963267948966 rad + pos: 37.5,19.5 parent: 2 -- proto: GasOutletInjector - entities: - - uid: 2010 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22435 components: - type: Transform - pos: 4.5,4.5 + pos: 37.5,24.5 parent: 2 - - uid: 2012 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22449 components: - type: Transform - pos: -1.5,4.5 + rot: -1.5707963267948966 rad + pos: 41.5,17.5 parent: 2 - - uid: 2013 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22453 components: - type: Transform - pos: -3.5,4.5 + rot: -1.5707963267948966 rad + pos: 47.5,20.5 parent: 2 - - uid: 2014 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22572 components: - type: Transform - pos: -5.5,4.5 + rot: 1.5707963267948966 rad + pos: -36.5,-54.5 parent: 2 - - uid: 2015 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22574 components: - type: Transform - pos: -7.5,4.5 + rot: 1.5707963267948966 rad + pos: -36.5,-51.5 parent: 2 - - uid: 2016 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22575 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-2.5 + pos: -36.5,-55.5 parent: 2 - - uid: 4429 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22576 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-7.5 + pos: -36.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4554 + - uid: 22589 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-44.5 + pos: -37.5,-54.5 parent: 2 - - uid: 7680 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22590 components: - type: Transform - pos: 0.5,4.5 + rot: 3.141592653589793 rad + pos: -40.5,-54.5 parent: 2 -- proto: GasPassiveVent + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourway entities: - - uid: 1648 + - uid: 676 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 + pos: -26.5,-10.5 parent: 2 - - uid: 2004 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,6.5 + pos: 29.5,-30.5 parent: 2 - - uid: 2005 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 + pos: -24.5,-7.5 parent: 2 - - uid: 2006 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,6.5 + pos: -23.5,-46.5 parent: 2 - - uid: 2007 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,6.5 + pos: 11.5,-28.5 parent: 2 - - uid: 2008 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,6.5 + pos: -17.5,-20.5 parent: 2 - - uid: 2009 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8856 components: - type: Transform - pos: 2.5,4.5 + pos: 30.5,6.5 parent: 2 - - uid: 2053 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-3.5 + pos: 11.5,-42.5 parent: 2 - - uid: 2562 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-31.5 + pos: 9.5,-44.5 parent: 2 - - uid: 4431 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 10981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 + pos: 37.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4546 + - uid: 11386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-46.5 + pos: -29.5,-31.5 parent: 2 - - uid: 16419 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-13.5 + pos: -27.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16425 + color: '#FF1212FF' + - uid: 13648 components: - type: Transform - pos: -53.5,-11.5 + pos: 33.5,-37.5 parent: 2 - - uid: 16426 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13836 components: - type: Transform - pos: -55.5,-11.5 + pos: -22.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16443 + color: '#0055CCFF' + - uid: 13939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-15.5 + pos: -24.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16444 + color: '#FF1212FF' + - uid: 13940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-9.5 + pos: -22.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16445 + color: '#0055CCFF' + - uid: 14451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-12.5 + pos: -26.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16457 + color: '#0055CCFF' + - uid: 14461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-15.5 + pos: -32.5,-61.5 parent: 2 -- proto: GasPipeBend - entities: - - uid: 672 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-4.5 + pos: -24.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 677 + - uid: 14558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-11.5 + pos: -26.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 977 + - uid: 15091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,16.5 + pos: -7.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1506 + color: '#0055CCFF' + - uid: 16433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-18.5 + pos: -62.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1543 + color: '#03FCD3FF' + - uid: 17336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,19.5 + pos: 5.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1612 +- proto: GasPipeSensor + entities: + - uid: 10164 components: + - type: MetaData + name: gas pipe sensor (Cryopods) - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-2.5 + pos: -43.5,-36.5 parent: 2 - - uid: 1619 + - type: AtmosPipeColor + color: '#03FCD3FF' + - type: Label + currentLabel: Cryopods + - type: NameModifier + baseName: gas pipe sensor +- proto: GasPipeSensorDistribution + entities: + - uid: 1139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,0.5 + pos: -8.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1784 + color: '#0055CCFF' +- proto: GasPipeSensorMixedAir + entities: + - uid: 9725 components: + - type: MetaData + name: gas pipe sensor (AI Satellite) - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 + rot: 1.5707963267948966 rad + pos: -58.5,-12.5 parent: 2 + - type: Label + currentLabel: AI Satellite - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 1857 + - type: NameModifier + baseName: gas pipe sensor +- proto: GasPipeSensorTEGCold + entities: + - uid: 1460 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-46.5 - parent: 2 - - uid: 2018 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,6.5 + pos: 0.5,-10.5 parent: 2 - - uid: 2019 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorTEGHot + entities: + - uid: 8669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 + rot: -1.5707963267948966 rad + pos: 0.5,-6.5 parent: 2 - - uid: 2020 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeSensorWaste + entities: + - uid: 1556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 + pos: -9.5,-6.5 parent: 2 - - uid: 2021 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasPipeStraight + entities: + - uid: 27 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,6.5 + rot: -1.5707963267948966 rad + pos: -18.5,-20.5 parent: 2 - - uid: 2022 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 43 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,6.5 + pos: -35.5,-14.5 parent: 2 - - uid: 2117 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 70 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-12.5 + pos: 8.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2428 + - uid: 74 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-24.5 + rot: 1.5707963267948966 rad + pos: 35.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3105 + - uid: 89 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-10.5 + rot: -1.5707963267948966 rad + pos: -33.5,-51.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3118 + color: '#FF1212FF' + - uid: 103 components: - type: Transform - pos: 7.5,-10.5 + rot: 1.5707963267948966 rad + pos: 19.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3150 + color: '#FF1212FF' + - uid: 107 components: - type: Transform - pos: 8.5,-9.5 + rot: -1.5707963267948966 rad + pos: 8.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3249 + color: '#0055CCFF' + - uid: 114 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-21.5 + rot: -1.5707963267948966 rad + pos: -16.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3938 + - uid: 128 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-18.5 + pos: -12.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4159 + - uid: 184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-38.5 + rot: 1.5707963267948966 rad + pos: -22.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4169 + - uid: 256 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-45.5 + pos: -51.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4197 + color: '#0055CCFF' + - uid: 317 components: - type: Transform - pos: -0.5,-31.5 + rot: -1.5707963267948966 rad + pos: -32.5,-3.5 parent: 2 - - uid: 4433 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 372 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-32.5 + pos: -22.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4443 + - uid: 377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-6.5 + rot: 3.141592653589793 rad + pos: -26.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4488 + color: '#0055CCFF' + - uid: 424 components: - type: Transform - pos: 25.5,1.5 + pos: 6.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4982 + - uid: 528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-23.5 + rot: 3.141592653589793 rad + pos: -27.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4994 + color: '#FF1212FF' + - uid: 616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-23.5 + rot: -1.5707963267948966 rad + pos: -22.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5388 + color: '#0055CCFF' + - uid: 621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 + rot: -1.5707963267948966 rad + pos: -23.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5389 + - uid: 628 components: - type: Transform - pos: 16.5,12.5 + rot: -1.5707963267948966 rad + pos: 16.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5394 + - uid: 633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,10.5 + rot: -1.5707963267948966 rad + pos: -24.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5633 + color: '#0055CCFF' + - uid: 634 components: - type: Transform - pos: 16.5,-28.5 + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5749 + - uid: 635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-48.5 + rot: 3.141592653589793 rad + pos: 14.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5752 + - uid: 637 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-49.5 + rot: 3.141592653589793 rad + pos: 35.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5753 + - uid: 645 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-48.5 + pos: -19.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5764 + color: '#0055CCFF' + - uid: 646 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-49.5 + pos: -21.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-44.5 - parent: 2 - - uid: 6458 + - uid: 682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-40.5 + pos: -29.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6615 + - uid: 692 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-41.5 + pos: -34.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6692 + color: '#0055CCFF' + - uid: 696 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-30.5 + rot: -1.5707963267948966 rad + pos: -31.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6705 + - uid: 716 components: - type: Transform - pos: 17.5,-33.5 + pos: -38.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6721 + - uid: 762 components: - type: Transform - pos: 34.5,-31.5 + rot: 1.5707963267948966 rad + pos: 18.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6724 + - uid: 777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-38.5 + pos: 16.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7552 + color: '#FF1212FF' + - uid: 846 components: - type: Transform - pos: -22.5,0.5 + pos: -27.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8177 + color: '#FF1212FF' + - uid: 865 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-21.5 + pos: 0.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 8248 + - uid: 889 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-13.5 + pos: 29.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9393 + - uid: 1080 components: - type: Transform - pos: 10.5,-49.5 + rot: -1.5707963267948966 rad + pos: -27.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9449 + - uid: 1086 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-46.5 + pos: -18.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9466 + color: '#FF1212FF' + - uid: 1123 components: - type: Transform - pos: 18.5,-44.5 + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9467 + - uid: 1125 components: - type: Transform - pos: 19.5,-42.5 + rot: 3.141592653589793 rad + pos: 7.5,-5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9515 + - uid: 1130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-38.5 + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9673 + - uid: 1183 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-4.5 + pos: 4.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9957 + color: '#FF1212FF' + - uid: 1254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-50.5 + rot: 3.141592653589793 rad + pos: 10.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9960 + - uid: 1395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-50.5 + pos: 2.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10254 + color: '#FF1212FF' + - uid: 1414 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-21.5 + pos: -1.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10438 + color: '#FF1212FF' + - uid: 1469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,11.5 + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10459 + color: '#FF1212FF' + - uid: 1566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,12.5 + pos: -9.5,-2.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10775 + color: '#FF1212FF' + - uid: 1570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-37.5 + rot: 3.141592653589793 rad + pos: 29.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11262 + color: '#0055CCFF' + - uid: 1578 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-26.5 + pos: -9.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11296 + - uid: 1596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-25.5 + pos: -9.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11370 + color: '#FF1212FF' + - uid: 1602 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-8.5 + pos: -6.5,0.5 parent: 2 - - uid: 13072 + - uid: 1603 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-19.5 + pos: -8.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13073 + - uid: 1606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-17.5 + pos: -8.5,-0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13075 + - uid: 1608 components: - type: Transform - pos: 13.5,-17.5 + rot: -1.5707963267948966 rad + pos: -4.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13228 + - uid: 1609 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,-4.5 + pos: -0.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13360 + - uid: 1611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 1616 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-14.5 + pos: -7.5,-2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13394 + - uid: 1617 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-4.5 + rot: -1.5707963267948966 rad + pos: 1.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13447 + - uid: 1618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-22.5 + rot: -1.5707963267948966 rad + pos: -2.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13501 + - uid: 1627 components: - type: Transform - pos: 35.5,-30.5 + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13507 + - uid: 1634 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-20.5 + pos: -4.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13508 + - uid: 1640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-21.5 + pos: 19.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13579 + - uid: 1646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-10.5 + pos: -28.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13598 + - uid: 1648 components: - type: Transform - pos: 41.5,-6.5 + rot: 1.5707963267948966 rad + pos: -2.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13631 + color: '#FF1212FF' + - uid: 1681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-16.5 + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13632 + color: '#03FCD3FF' + - uid: 1702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-18.5 + pos: -8.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13643 + - uid: 1710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-37.5 + pos: 2.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13755 + - uid: 1716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 + rot: 3.141592653589793 rad + pos: -8.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13830 + - uid: 1717 components: - type: Transform - pos: -15.5,-33.5 + rot: 3.141592653589793 rad + pos: -9.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13926 + - uid: 1737 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-46.5 + pos: -25.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13927 + color: '#0055CCFF' + - uid: 1757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-42.5 + pos: -8.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13928 + - uid: 1769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-40.5 + rot: -1.5707963267948966 rad + pos: -50.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13956 + color: '#FF1212FF' + - uid: 1776 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-41.5 + pos: -50.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13957 + - uid: 1780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-41.5 + pos: -27.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13974 + color: '#FF1212FF' + - uid: 1786 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-48.5 + pos: 2.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13976 + - uid: 1787 components: - type: Transform - pos: -19.5,-46.5 + rot: 3.141592653589793 rad + pos: 0.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14008 + - uid: 1788 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-50.5 + pos: 4.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14010 + - uid: 1789 components: - type: Transform - pos: -16.5,-50.5 + rot: 3.141592653589793 rad + pos: -0.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14011 + - uid: 1790 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-51.5 + pos: -2.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14012 + - uid: 1791 components: - type: Transform - pos: -18.5,-51.5 + rot: 3.141592653589793 rad + pos: -4.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14056 + - uid: 1792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,3.5 + rot: 3.141592653589793 rad + pos: -5.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14182 + - uid: 1793 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-2.5 + pos: -6.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14486 + - uid: 1794 components: - type: Transform - pos: -38.5,3.5 + rot: 3.141592653589793 rad + pos: -7.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14599 + - uid: 1795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-4.5 + rot: 3.141592653589793 rad + pos: -8.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14600 + - uid: 1811 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-3.5 + pos: 11.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14601 + color: '#FF1212FF' + - uid: 1887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-4.5 + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14602 + - uid: 1888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-3.5 + rot: -1.5707963267948966 rad + pos: 7.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14626 + - uid: 1889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,0.5 + rot: -1.5707963267948966 rad + pos: 6.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14672 + - uid: 1895 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,-20.5 + pos: -2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14707 + color: '#03FCD3FF' + - uid: 1968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-23.5 + rot: 3.141592653589793 rad + pos: 4.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14708 + - uid: 1969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-24.5 + rot: 3.141592653589793 rad + pos: 2.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14762 + - uid: 1970 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-34.5 + rot: 3.141592653589793 rad + pos: 2.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14763 + - uid: 1971 components: - type: Transform - pos: -28.5,-35.5 + rot: 3.141592653589793 rad + pos: 4.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14872 + - uid: 1972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-41.5 + rot: 3.141592653589793 rad + pos: 0.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14877 + - uid: 1973 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-0.5 + pos: 0.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14887 + - uid: 1974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-41.5 + rot: 3.141592653589793 rad + pos: -1.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14894 + - uid: 1975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-43.5 + rot: 3.141592653589793 rad + pos: -1.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14919 + - uid: 1976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-40.5 + rot: 3.141592653589793 rad + pos: -1.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14945 + - uid: 1977 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-23.5 + pos: -3.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14946 + - uid: 1978 components: - type: Transform rot: 3.141592653589793 rad - pos: -37.5,-27.5 + pos: -3.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14949 + - uid: 1979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-25.5 + rot: 3.141592653589793 rad + pos: -3.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15006 + - uid: 1980 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-48.5 + pos: -5.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15097 + - uid: 1981 components: - type: Transform - pos: -3.5,-40.5 + rot: 3.141592653589793 rad + pos: -5.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15110 + - uid: 1982 components: - type: Transform - pos: -4.5,-41.5 + rot: 3.141592653589793 rad + pos: -7.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15113 + - uid: 1983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-41.5 + rot: 3.141592653589793 rad + pos: -7.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15128 + - uid: 1984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-36.5 + rot: 3.141592653589793 rad + pos: -8.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15129 + - uid: 1985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-36.5 + rot: 3.141592653589793 rad + pos: -8.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15133 + - uid: 1986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 + rot: 3.141592653589793 rad + pos: -8.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15134 + - uid: 1987 components: - type: Transform - pos: -6.5,-33.5 + rot: 3.141592653589793 rad + pos: -8.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15190 + - uid: 1988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-37.5 + rot: 3.141592653589793 rad + pos: -6.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15253 + - uid: 1989 components: - type: Transform - pos: 33.5,38.5 + rot: 3.141592653589793 rad + pos: -6.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15254 + - uid: 1990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,40.5 + rot: 3.141592653589793 rad + pos: -6.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15378 + - uid: 1991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-17.5 + rot: 3.141592653589793 rad + pos: -6.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15846 + - uid: 1992 components: - type: Transform - pos: 14.5,10.5 + rot: 3.141592653589793 rad + pos: -4.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16244 + - uid: 1993 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-10.5 + pos: -4.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16377 + - uid: 1994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-15.5 + rot: 3.141592653589793 rad + pos: -4.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16379 + - uid: 1995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-15.5 + rot: 3.141592653589793 rad + pos: -4.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16380 + - uid: 1996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 + rot: 3.141592653589793 rad + pos: -2.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16427 + - uid: 1997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-12.5 + rot: 3.141592653589793 rad + pos: -2.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16441 + - uid: 1998 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-15.5 + pos: -2.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16442 + - uid: 1999 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-9.5 + rot: 3.141592653589793 rad + pos: -2.5,2.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16449 + - uid: 2000 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-12.5 + rot: 3.141592653589793 rad + pos: -0.5,2.5 parent: 2 - - uid: 16579 + - uid: 2001 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-16.5 + pos: -0.5,3.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16580 + - uid: 2002 components: - type: Transform - pos: -38.5,-12.5 + rot: 3.141592653589793 rad + pos: -0.5,4.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17407 + - uid: 2003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,17.5 + rot: 3.141592653589793 rad + pos: -0.5,5.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17408 + - uid: 2035 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,17.5 + pos: -9.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17409 + color: '#FF1212FF' + - uid: 2036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,25.5 + rot: 3.141592653589793 rad + pos: -9.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17419 + color: '#FF1212FF' + - uid: 2037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 + rot: 3.141592653589793 rad + pos: -9.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17420 + - uid: 2038 components: - type: Transform - pos: 13.5,25.5 + rot: 3.141592653589793 rad + pos: -8.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17431 + - uid: 2039 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17432 - components: - - type: Transform - pos: -1.5,17.5 + pos: -8.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17437 + color: '#0055CCFF' + - uid: 2040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,18.5 + rot: 3.141592653589793 rad + pos: -8.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17878 + - uid: 2043 components: - type: Transform - pos: -8.5,-13.5 + rot: -1.5707963267948966 rad + pos: -9.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17883 + color: '#0055CCFF' + - uid: 2092 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-12.5 + pos: -9.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19981 + - uid: 2095 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-11.5 + pos: -9.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19985 + - uid: 2097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-15.5 + pos: -7.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeBroken - entities: - - uid: 1089 + - uid: 2098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-12.5 + pos: -7.5,-19.5 parent: 2 - - uid: 1095 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-11.5 + pos: -7.5,-16.5 parent: 2 -- proto: GasPipeFourway - entities: - - uid: 676 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2103 components: - type: Transform - pos: -26.5,-10.5 + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1266 + - uid: 2117 components: - type: Transform - pos: -41.5,-43.5 + rot: -1.5707963267948966 rad + pos: 10.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2649 + color: '#FF1212FF' + - uid: 2119 components: - type: Transform - pos: 14.5,-44.5 + rot: -1.5707963267948966 rad + pos: 7.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4241 + - uid: 2125 components: - type: Transform - pos: 11.5,-42.5 + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4331 + color: '#FF1212FF' + - uid: 2130 components: - type: Transform - pos: 29.5,-30.5 + pos: -7.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4470 + - uid: 2135 components: - type: Transform - pos: 9.5,-44.5 + pos: -8.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4682 + - uid: 2136 components: - type: Transform - pos: -24.5,-7.5 + rot: 3.141592653589793 rad + pos: -9.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4980 + - uid: 2138 components: - type: Transform - pos: -34.5,-21.5 + rot: 1.5707963267948966 rad + pos: -5.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4981 + color: '#0055CCFF' + - uid: 2147 components: - type: Transform - pos: -33.5,-21.5 + rot: -1.5707963267948966 rad + pos: 6.5,-17.5 + 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: 6191 + - uid: 2155 components: - type: Transform - pos: 11.5,-28.5 + rot: -1.5707963267948966 rad + pos: -10.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7455 + - uid: 2182 components: - type: Transform - pos: -30.5,-29.5 + rot: 3.141592653589793 rad + pos: -7.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8073 + color: '#0055CCFF' + - uid: 2183 components: - type: Transform - pos: -50.5,-30.5 + rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8288 + - uid: 2189 components: - type: Transform - pos: -17.5,-20.5 + rot: -1.5707963267948966 rad + pos: -32.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9141 + color: '#FF1212FF' + - uid: 2212 components: - type: Transform - pos: -51.5,-31.5 + rot: 1.5707963267948966 rad + pos: -25.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10981 + - uid: 2243 components: - type: Transform - pos: 37.5,-20.5 + pos: 2.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13648 + - uid: 2265 components: - type: Transform - pos: 33.5,-37.5 + pos: -8.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13766 + - uid: 2357 components: - type: Transform - pos: 24.5,-4.5 + rot: 1.5707963267948966 rad + pos: -23.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13836 + color: '#0055CCFF' + - uid: 2370 components: - type: Transform - pos: -22.5,-38.5 + rot: 3.141592653589793 rad + pos: -20.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13923 + - uid: 2382 components: - type: Transform - pos: -28.5,-43.5 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13939 + - uid: 2384 components: - type: Transform - pos: -24.5,-42.5 + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13940 + - uid: 2385 components: - type: Transform - pos: -22.5,-40.5 + rot: 3.141592653589793 rad + pos: -16.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14451 + - uid: 2386 components: - type: Transform - pos: -26.5,0.5 + pos: -8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 2390 + components: + - type: Transform + pos: -7.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14557 + - uid: 2393 components: - type: Transform - pos: -24.5,11.5 + rot: 3.141592653589793 rad + pos: -16.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14558 + color: '#0055CCFF' + - uid: 2399 components: - type: Transform - pos: -26.5,10.5 + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15091 + - uid: 2402 components: - type: Transform - pos: -7.5,-40.5 + rot: 3.141592653589793 rad + pos: -16.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16433 + - uid: 2435 components: - type: Transform - pos: -62.5,-12.5 + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17336 + color: '#FF1212FF' + - uid: 2440 components: - type: Transform - pos: 5.5,16.5 + rot: 1.5707963267948966 rad + pos: -12.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' -- proto: GasPipeSensorDistribution - entities: - - uid: 1139 + - uid: 2441 components: - type: Transform - pos: -8.5,-7.5 + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasPipeSensorMixedAir - entities: - - uid: 9724 + - uid: 2446 components: - - type: MetaData - name: gas pipe sensor (Cryopods) - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,-21.5 + pos: -3.5,-15.5 parent: 2 - - type: Label - currentLabel: Cryopods - type: AtmosPipeColor - color: '#03FCD3FF' - - type: NameModifier - baseName: gas pipe sensor - - uid: 9725 + color: '#FF1212FF' + - uid: 2490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2494 components: - - type: MetaData - name: gas pipe sensor (AI Satellite) - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,-12.5 + pos: -13.5,-7.5 parent: 2 - - type: Label - currentLabel: AI Satellite - type: AtmosPipeColor - color: '#03FCD3FF' - - type: NameModifier - baseName: gas pipe sensor -- proto: GasPipeSensorTEGHot - entities: - - uid: 6714 + color: '#FF1212FF' + - uid: 2495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-6.5 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7506 + - uid: 2517 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-9.5 + pos: 5.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' -- proto: GasPipeSensorWaste - entities: - - uid: 1556 + color: '#FF1212FF' + - uid: 2524 components: - type: Transform - pos: -9.5,-6.5 + rot: 1.5707963267948966 rad + pos: -10.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' -- proto: GasPipeStraight - entities: - - uid: 27 + - uid: 2530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-20.5 + rot: 1.5707963267948966 rad + pos: -14.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 67 + color: '#FF1212FF' + - uid: 2590 components: - type: Transform - pos: -44.5,-35.5 + rot: 3.141592653589793 rad + pos: 8.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 74 + - uid: 2594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-35.5 + rot: -1.5707963267948966 rad + pos: 9.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 107 + color: '#0055CCFF' + - uid: 2598 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-39.5 + pos: -29.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 128 + color: '#FF1212FF' + - uid: 2599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-17.5 + rot: -1.5707963267948966 rad + pos: -27.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 184 + - uid: 2602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,3.5 + rot: 3.141592653589793 rad + pos: 11.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 195 + - uid: 2611 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-31.5 + pos: -32.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 241 + - uid: 2613 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-53.5 + pos: -32.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 303 + - uid: 2617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-12.5 + rot: -1.5707963267948966 rad + pos: -31.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 314 + color: '#FF1212FF' + - uid: 2623 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-54.5 + pos: 12.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 317 + - uid: 2637 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-3.5 + pos: -23.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 372 + - uid: 2638 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,11.5 + pos: -23.5,11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 377 + - uid: 2821 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,14.5 + rot: 1.5707963267948966 rad + pos: -24.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 445 + - uid: 2894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-19.5 + pos: -8.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 637 + - uid: 2912 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-33.5 + pos: 8.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 682 + color: '#03FCD3FF' + - uid: 2916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-4.5 + rot: 1.5707963267948966 rad + pos: 7.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 696 + color: '#03FCD3FF' + - uid: 2958 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-4.5 + pos: 26.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 716 + color: '#0055CCFF' + - uid: 2969 components: - type: Transform - pos: -38.5,2.5 + rot: -1.5707963267948966 rad + pos: 9.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 889 + - uid: 2971 components: - type: Transform - pos: 29.5,-36.5 + rot: 3.141592653589793 rad + pos: 35.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1023 + color: '#0055CCFF' + - uid: 2979 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-42.5 + rot: 3.141592653589793 rad + pos: 35.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1080 + - uid: 2984 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-9.5 + pos: 8.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1086 + - uid: 2985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-1.5 + pos: 28.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1130 + - uid: 3023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-1.5 + rot: 3.141592653589793 rad + pos: 29.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 2 - - uid: 1566 + color: '#0055CCFF' + - uid: 3035 components: - type: Transform - pos: -9.5,-2.5 + pos: 28.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1570 + - uid: 3049 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-26.5 + pos: 28.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1578 + color: '#FF1212FF' + - uid: 3060 components: - type: Transform - pos: -9.5,-1.5 + pos: 28.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1596 + - uid: 3080 components: - type: Transform - pos: -9.5,-0.5 + rot: 1.5707963267948966 rad + pos: -6.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1602 + - uid: 3096 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,0.5 + pos: 10.5,-28.5 parent: 2 - - uid: 1603 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3110 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,0.5 + pos: 8.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1606 - components: - - type: Transform - pos: -8.5,-0.5 - parent: 2 - - uid: 1608 + color: '#0055CCFF' + - uid: 3170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,0.5 + pos: 9.5,-18.5 parent: 2 - - uid: 1609 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3173 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,0.5 + pos: 8.5,-30.5 parent: 2 - - uid: 1611 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3176 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,0.5 - parent: 2 - - uid: 1613 - components: - - type: Transform - pos: -6.5,-1.5 + pos: 10.5,-18.5 parent: 2 - - uid: 1616 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3238 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-2.5 + pos: -1.5,-31.5 parent: 2 - - uid: 1617 + - uid: 3239 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,0.5 + pos: 24.5,8.5 parent: 2 - - uid: 1618 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3352 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 2 - - uid: 1634 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-9.5 + pos: -7.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 1646 + color: '#FF1212FF' + - uid: 3377 components: - type: Transform - pos: -28.5,-4.5 + pos: -7.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1654 + - uid: 3397 components: - type: Transform - pos: -44.5,-26.5 + rot: -1.5707963267948966 rad + pos: 10.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1660 + color: '#0055CCFF' + - uid: 3398 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-12.5 - parent: 2 - - uid: 1672 - components: - - type: Transform - pos: -44.5,-25.5 + pos: 8.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1706 + color: '#0055CCFF' + - uid: 3399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-34.5 + rot: -1.5707963267948966 rad + pos: 9.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1716 + color: '#0055CCFF' + - uid: 3449 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-5.5 + pos: -20.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1717 + - uid: 3503 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-5.5 + pos: -20.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1726 + color: '#0055CCFF' + - uid: 3526 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + pos: -4.5,-49.5 parent: 2 - - uid: 1737 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3528 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-8.5 + pos: -33.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,1.5 - parent: 2 - - uid: 1787 + - uid: 3641 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,1.5 + pos: -39.5,-0.5 parent: 2 - - uid: 1788 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 3723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + rot: -1.5707963267948966 rad + pos: -6.5,-49.5 parent: 2 - - uid: 1789 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 + rot: -1.5707963267948966 rad + pos: 23.5,5.5 parent: 2 - - uid: 1790 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 + pos: 33.5,-22.5 parent: 2 - - uid: 1791 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,1.5 + pos: 33.5,-21.5 parent: 2 - - uid: 1792 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,1.5 + pos: -24.5,-8.5 parent: 2 - - uid: 1793 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,1.5 + rot: 1.5707963267948966 rad + pos: -23.5,-18.5 parent: 2 - - uid: 1794 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4239 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,1.5 + pos: 9.5,-45.5 parent: 2 - - uid: 1795 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 + pos: 34.5,-33.5 parent: 2 - - uid: 1798 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4255 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-29.5 + pos: 9.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1836 + color: '#FF1212FF' + - uid: 4289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-30.5 + rot: 3.141592653589793 rad + pos: 33.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1838 + - uid: 4294 components: - type: Transform - pos: -51.5,-28.5 + rot: 1.5707963267948966 rad + pos: 36.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1843 + - uid: 4298 components: - type: Transform - pos: -51.5,-27.5 + rot: 1.5707963267948966 rad + pos: 37.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1863 + color: '#FF1212FF' + - uid: 4350 components: - type: Transform - pos: -51.5,-33.5 + rot: 3.141592653589793 rad + pos: 8.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1874 + - uid: 4354 components: - type: Transform - pos: -51.5,-32.5 + rot: 3.141592653589793 rad + pos: 8.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1910 - components: - - type: Transform - pos: -50.5,-32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1913 + - uid: 4359 components: - type: Transform - pos: -45.5,-32.5 + rot: 3.141592653589793 rad + pos: 9.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1914 + - uid: 4360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-33.5 + rot: 3.141592653589793 rad + pos: 9.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1915 + - uid: 4363 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-35.5 + pos: 9.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 2 - - uid: 1969 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,2.5 - parent: 2 - - uid: 1970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 - parent: 2 - - uid: 1971 + - uid: 4378 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,3.5 + pos: 29.5,-25.5 parent: 2 - - uid: 1972 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4408 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,2.5 + pos: 29.5,-29.5 parent: 2 - - uid: 1973 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,3.5 + rot: 1.5707963267948966 rad + pos: 37.5,-37.5 parent: 2 - - uid: 1974 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4427 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,2.5 + pos: 29.5,-28.5 parent: 2 - - uid: 1975 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4435 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,3.5 + rot: -1.5707963267948966 rad + pos: 15.5,-28.5 parent: 2 - - uid: 1976 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4436 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,1.5 + pos: -36.5,-13.5 parent: 2 - - uid: 1977 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4437 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,1.5 + pos: 28.5,-27.5 parent: 2 - - uid: 1978 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,2.5 + rot: 1.5707963267948966 rad + pos: -38.5,-12.5 parent: 2 - - uid: 1979 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4443 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,3.5 + rot: -1.5707963267948966 rad + pos: -28.5,-15.5 parent: 2 - - uid: 1980 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4452 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,2.5 + rot: -1.5707963267948966 rad + pos: -29.5,-15.5 parent: 2 - - uid: 1981 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4459 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,3.5 + rot: -1.5707963267948966 rad + pos: 13.5,-28.5 parent: 2 - - uid: 1982 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4462 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,2.5 + pos: 28.5,-24.5 parent: 2 - - uid: 1983 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,3.5 + rot: -1.5707963267948966 rad + pos: -30.5,-15.5 parent: 2 - - uid: 1984 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,2.5 + rot: 1.5707963267948966 rad + pos: 29.5,-28.5 parent: 2 - - uid: 1985 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,3.5 + rot: -1.5707963267948966 rad + pos: -26.5,-15.5 parent: 2 - - uid: 1986 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,4.5 + rot: -1.5707963267948966 rad + pos: -27.5,-15.5 parent: 2 - - uid: 1987 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4504 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,5.5 + rot: -1.5707963267948966 rad + pos: -25.5,-15.5 parent: 2 - - uid: 1988 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,5.5 + rot: -1.5707963267948966 rad + pos: 37.5,-46.5 parent: 2 - - uid: 1989 + - uid: 4522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,4.5 + rot: -1.5707963267948966 rad + pos: 37.5,-44.5 parent: 2 - - uid: 1990 + - uid: 4591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,3.5 + pos: 34.5,-24.5 parent: 2 - - uid: 1991 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,2.5 + rot: -1.5707963267948966 rad + pos: 32.5,-41.5 parent: 2 - - uid: 1992 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 + pos: 11.5,-43.5 parent: 2 - - uid: 1993 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,3.5 + pos: -6.5,-59.5 parent: 2 - - uid: 1994 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,4.5 + rot: -1.5707963267948966 rad + pos: -23.5,-31.5 parent: 2 - - uid: 1995 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,5.5 + rot: 1.5707963267948966 rad + pos: 32.5,-31.5 parent: 2 - - uid: 1996 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 + pos: -6.5,-60.5 parent: 2 - - uid: 1997 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,4.5 + rot: 1.5707963267948966 rad + pos: 30.5,-31.5 parent: 2 - - uid: 1998 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 4676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,3.5 + pos: -29.5,-30.5 parent: 2 - - uid: 1999 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4690 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 + pos: -29.5,-27.5 parent: 2 - - uid: 2000 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,2.5 + pos: -6.5,-54.5 parent: 2 - - uid: 2001 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 + pos: -6.5,-64.5 parent: 2 - - uid: 2002 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,4.5 + pos: -6.5,-63.5 parent: 2 - - uid: 2003 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,5.5 + pos: -6.5,-65.5 parent: 2 - - uid: 2029 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-29.5 + pos: -29.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2035 + color: '#0055CCFF' + - uid: 4780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-8.5 + pos: -27.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2036 + - uid: 4781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-9.5 + pos: -27.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2037 + - uid: 4801 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-10.5 + pos: 6.5,1.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2038 + - uid: 4850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-11.5 + rot: 1.5707963267948966 rad + pos: -12.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2039 + - uid: 4887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-10.5 + pos: -29.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2040 + - uid: 4889 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-9.5 + pos: -29.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2043 + - uid: 4896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-6.5 + pos: -6.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2092 + - uid: 4928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 + pos: -8.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2095 + color: '#FF1212FF' + - uid: 4941 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-17.5 + pos: -10.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2097 + - uid: 4986 components: - type: Transform - pos: -7.5,-18.5 + rot: -1.5707963267948966 rad + pos: -33.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2098 + color: '#FF1212FF' + - uid: 4988 components: - type: Transform - pos: -7.5,-19.5 + rot: -1.5707963267948966 rad + pos: -30.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2101 + color: '#FF1212FF' + - uid: 5028 components: - type: Transform - pos: -7.5,-16.5 + rot: -1.5707963267948966 rad + pos: -27.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2103 + - uid: 5031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-20.5 + pos: -8.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2104 + color: '#FF1212FF' + - uid: 5040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-12.5 + pos: -8.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2114 + - uid: 5046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-11.5 + pos: -8.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 2115 + color: '#FF1212FF' + - uid: 5047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-11.5 + pos: -8.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2119 + - uid: 5069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 + rot: -1.5707963267948966 rad + pos: -26.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2130 + - uid: 5077 components: - type: Transform - pos: -7.5,-15.5 + rot: -1.5707963267948966 rad + pos: -25.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2131 + color: '#FF1212FF' + - uid: 5082 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-12.5 + pos: -27.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2135 + color: '#FF1212FF' + - uid: 5133 components: - type: Transform - pos: -8.5,-15.5 + pos: 9.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2136 + - uid: 5163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-12.5 + rot: -1.5707963267948966 rad + pos: -31.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2138 + color: '#0055CCFF' + - uid: 5172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-20.5 + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2150 + - uid: 5212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 + rot: -1.5707963267948966 rad + pos: -26.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2155 + color: '#FF1212FF' + - uid: 5216 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-6.5 + pos: -28.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2182 + color: '#FF1212FF' + - uid: 5302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-23.5 + rot: -1.5707963267948966 rad + pos: -26.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2183 + - uid: 5325 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-24.5 + pos: -39.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2186 + color: '#FF1212FF' + - uid: 5391 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-23.5 + pos: 16.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2189 + color: '#0055CCFF' + - uid: 5396 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-4.5 + pos: -4.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2212 + - uid: 5401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,3.5 + pos: 16.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2265 + - uid: 5469 components: - type: Transform - pos: -8.5,-16.5 + rot: -1.5707963267948966 rad + pos: 4.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2357 + color: '#0055CCFF' + - uid: 5480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,3.5 + rot: -1.5707963267948966 rad + pos: 5.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2370 + - uid: 5525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-2.5 + rot: -1.5707963267948966 rad + pos: 10.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2382 + - uid: 5561 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-0.5 + pos: 31.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2384 + color: '#FF1212FF' + - uid: 5563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-1.5 + pos: 21.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2385 + color: '#0055CCFF' + - uid: 5590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,2.5 + rot: -1.5707963267948966 rad + pos: -24.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2386 + - uid: 5689 components: - type: Transform - pos: -8.5,-21.5 + rot: -1.5707963267948966 rad + pos: -35.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2387 + - uid: 5690 components: - type: Transform - pos: -7.5,-13.5 + rot: -1.5707963267948966 rad + pos: 12.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2390 + - uid: 5724 components: - type: Transform - pos: -7.5,-17.5 + pos: -26.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2393 + - uid: 5730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,3.5 + pos: -26.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2396 + - uid: 5738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-11.5 + pos: -24.5,-23.5 parent: 2 - - uid: 2402 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-1.5 + rot: -1.5707963267948966 rad + pos: -25.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2403 + - uid: 5799 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-12.5 - parent: 2 - - uid: 2415 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-11.5 + pos: 4.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 2440 + - uid: 5819 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-7.5 + pos: -29.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2450 + color: '#0055CCFF' + - uid: 6027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-12.5 + rot: -1.5707963267948966 rad + pos: -34.5,-4.5 parent: 2 - - uid: 2490 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6118 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-0.5 + pos: -19.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2494 + - uid: 6157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-7.5 + pos: 27.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2518 + color: '#0055CCFF' + - uid: 6174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-31.5 + pos: 27.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2519 + - uid: 6187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-35.5 + pos: 33.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2522 + color: '#FF1212FF' + - uid: 6196 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-35.5 + pos: -37.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2524 + color: '#FF1212FF' + - uid: 6198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-7.5 + pos: 33.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2525 + - uid: 6234 components: - type: Transform - pos: -44.5,-32.5 + rot: -1.5707963267948966 rad + pos: 26.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2530 + - uid: 6248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-7.5 + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2537 + - uid: 6249 components: - type: Transform - pos: -44.5,-27.5 + rot: -1.5707963267948966 rad + pos: -24.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2545 + - uid: 6263 components: - type: Transform - pos: -44.5,-28.5 + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2567 + color: '#03FCD3FF' + - uid: 6308 components: - type: Transform - pos: -44.5,-36.5 + rot: -1.5707963267948966 rad + pos: 28.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2594 + - uid: 6314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 + pos: 11.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2596 + - uid: 6315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-11.5 + pos: 9.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2598 + color: '#FF1212FF' + - uid: 6318 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-3.5 + pos: 11.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2599 + color: '#0055CCFF' + - uid: 6319 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-1.5 + pos: 9.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2602 + color: '#FF1212FF' + - uid: 6336 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-48.5 + pos: 11.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2611 + - uid: 6337 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-1.5 + pos: 11.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2613 + color: '#0055CCFF' + - uid: 6342 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-0.5 + pos: 11.5,-62.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2617 + color: '#0055CCFF' + - uid: 6344 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-0.5 + pos: 11.5,-64.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2623 + - uid: 6358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-26.5 + rot: 1.5707963267948966 rad + pos: -36.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2637 + - uid: 6366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,10.5 + pos: 7.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2638 + - uid: 6425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,11.5 + pos: 6.5,-6.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2678 + - uid: 6445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 + pos: 27.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2753 + color: '#0055CCFF' + - uid: 6459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 + pos: -8.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2805 + color: '#FF1212FF' + - uid: 6460 components: - type: Transform - pos: -30.5,-50.5 + pos: 9.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2821 + - uid: 6461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,3.5 + pos: 28.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2839 + color: '#FF1212FF' + - uid: 6467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-31.5 + pos: -28.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2858 + - uid: 6484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-33.5 + rot: 3.141592653589793 rad + pos: -15.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2868 + - uid: 6508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-29.5 + pos: 9.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2901 + - uid: 6509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-29.5 + pos: 9.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2902 + - uid: 6528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-31.5 + pos: 2.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2969 + - uid: 6531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-28.5 + pos: 2.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2971 + - uid: 6546 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-34.5 + pos: 27.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2973 + - uid: 6551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-27.5 + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2979 + color: '#03FCD3FF' + - uid: 6552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-35.5 + rot: 1.5707963267948966 rad + pos: 27.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2984 + color: '#FF1212FF' + - uid: 6559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-27.5 + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2985 + - uid: 6565 components: - type: Transform - pos: 28.5,-23.5 + pos: 31.5,7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3023 + - uid: 6590 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-24.5 + rot: -1.5707963267948966 rad + pos: 25.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3035 + color: '#FF1212FF' + - uid: 6592 components: - type: Transform - pos: 28.5,-26.5 + pos: 34.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3039 + color: '#0055CCFF' + - uid: 6593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-23.5 + pos: 34.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3049 + - uid: 6594 components: - type: Transform - pos: 28.5,-29.5 + pos: 33.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3060 + - uid: 6598 components: - type: Transform - pos: 28.5,-30.5 + pos: 33.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3096 + - uid: 6599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-28.5 + rot: 3.141592653589793 rad + pos: 28.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3110 + color: '#FF1212FF' + - uid: 6600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-28.5 + pos: 34.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3113 + - uid: 6605 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-9.5 + pos: 30.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3119 + color: '#FF1212FF' + - uid: 6606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-6.5 + rot: -1.5707963267948966 rad + pos: 29.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3148 + - uid: 6607 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-7.5 + pos: 28.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3152 + - uid: 6608 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-10.5 + rot: -1.5707963267948966 rad + pos: 33.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 3173 + color: '#0055CCFF' + - uid: 6609 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-30.5 + pos: 32.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3181 + color: '#0055CCFF' + - uid: 6610 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-51.5 + rot: -1.5707963267948966 rad + pos: 31.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3238 + color: '#0055CCFF' + - uid: 6611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-31.5 + rot: -1.5707963267948966 rad + pos: 30.5,-42.5 parent: 2 - - uid: 3377 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6612 components: - type: Transform - pos: -7.5,-14.5 + rot: -1.5707963267948966 rad + pos: 29.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3394 + - uid: 6649 components: - type: Transform - pos: -50.5,-28.5 + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3397 + - uid: 6650 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-31.5 + pos: -22.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3398 + color: '#FF1212FF' + - uid: 6651 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-31.5 + pos: -21.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3399 + color: '#FF1212FF' + - uid: 6656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-31.5 + pos: 30.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3449 + color: '#FF1212FF' + - uid: 6667 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-1.5 + pos: -17.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3486 + - uid: 6674 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6701 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-41.5 + pos: -7.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3491 + - uid: 6704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-31.5 + rot: 3.141592653589793 rad + pos: 32.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3496 + - uid: 6706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-44.5 + rot: -1.5707963267948966 rad + pos: -36.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3503 + color: '#0055CCFF' + - uid: 6708 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-3.5 + pos: 32.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3583 + - uid: 6709 components: - type: Transform - pos: -50.5,-27.5 + rot: 3.141592653589793 rad + pos: 30.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3641 + - uid: 6711 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-0.5 + pos: -24.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3957 + - uid: 6718 components: - type: Transform - pos: -35.5,-26.5 + rot: 3.141592653589793 rad + pos: 34.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4056 + - uid: 6726 components: - type: Transform - pos: 33.5,-22.5 + rot: -1.5707963267948966 rad + pos: 27.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4059 + color: '#0055CCFF' + - uid: 6729 components: - type: Transform - pos: 33.5,-21.5 + rot: -1.5707963267948966 rad + pos: 26.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4158 + - uid: 6749 components: - type: Transform - pos: -24.5,-8.5 + pos: 34.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4160 + - uid: 6758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-18.5 + rot: -1.5707963267948966 rad + pos: 25.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4183 + color: '#0055CCFF' + - uid: 6760 components: - type: Transform - pos: 10.5,-64.5 + pos: 19.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4239 + - uid: 6763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-45.5 + pos: 21.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4240 + color: '#0055CCFF' + - uid: 6764 components: - type: Transform - pos: 34.5,-33.5 + pos: 19.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4243 + - uid: 6767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-42.5 + rot: 3.141592653589793 rad + pos: 21.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4255 + - uid: 6768 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,-42.5 + pos: 19.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4289 + - uid: 6769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-43.5 + pos: 29.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4294 + color: '#0055CCFF' + - uid: 6770 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-37.5 + pos: 36.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4298 + color: '#FF1212FF' + - uid: 6771 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-35.5 + pos: 30.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4348 + color: '#0055CCFF' + - uid: 6772 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-45.5 + pos: 31.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4378 + - uid: 6773 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-25.5 + pos: 29.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4408 + - uid: 6785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-29.5 + rot: -1.5707963267948966 rad + pos: 14.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4409 + - uid: 6805 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,-37.5 + pos: 31.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4427 + color: '#FF1212FF' + - uid: 6806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-28.5 + pos: 35.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4435 + - uid: 6808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-28.5 + rot: 1.5707963267948966 rad + pos: 28.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4436 + - uid: 6888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-9.5 + rot: -1.5707963267948966 rad + pos: 29.5,1.5 parent: 2 - - uid: 4437 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6891 components: - type: Transform - pos: 28.5,-27.5 + pos: -24.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4439 + - uid: 6924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 + rot: -1.5707963267948966 rad + pos: 8.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4440 + - uid: 6938 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-10.5 + pos: -28.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4459 + color: '#0055CCFF' + - uid: 6958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-28.5 + pos: 8.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4462 + - uid: 6964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-24.5 + rot: 1.5707963267948966 rad + pos: -28.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4467 + - uid: 6984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-28.5 + rot: -1.5707963267948966 rad + pos: 9.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7018 + components: + - type: Transform + pos: 30.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4519 + - uid: 7046 components: - type: Transform - pos: 2.5,-6.5 + rot: 3.141592653589793 rad + pos: -8.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4521 + - uid: 7057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-46.5 + pos: -24.5,-6.5 parent: 2 - - uid: 4522 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7074 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,-44.5 + pos: -23.5,5.5 parent: 2 - - uid: 4538 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 7103 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,0.5 + pos: -30.5,-36.5 parent: 2 - - uid: 4559 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7104 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-9.5 + pos: 27.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4567 + color: '#FF1212FF' + - uid: 7177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-9.5 + rot: 3.141592653589793 rad + pos: 19.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4577 + color: '#0055CCFF' + - uid: 7220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-10.5 + pos: 30.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4591 + color: '#FF1212FF' + - uid: 7245 components: - type: Transform - pos: 34.5,-24.5 + rot: 3.141592653589793 rad + pos: -19.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4605 + color: '#FF1212FF' + - uid: 7246 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-41.5 + pos: -14.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4624 + color: '#0055CCFF' + - uid: 7247 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-54.5 + pos: -15.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4626 + - uid: 7358 components: - type: Transform - pos: -50.5,-33.5 + rot: -1.5707963267948966 rad + pos: 3.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4660 + color: '#0055CCFF' + - uid: 7451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-31.5 + pos: -26.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4665 + color: '#0055CCFF' + - uid: 7510 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-31.5 + rot: 3.141592653589793 rad + pos: 17.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4694 + - uid: 7517 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-27.5 + pos: 17.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4850 + color: '#FF1212FF' + - uid: 7522 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-21.5 + pos: 15.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4941 + color: '#FF1212FF' + - uid: 7575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 + rot: 3.141592653589793 rad + pos: -19.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4983 + - uid: 7703 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-22.5 + pos: -17.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4986 + - uid: 7712 components: - type: Transform - pos: -35.5,-25.5 + rot: -1.5707963267948966 rad + pos: 25.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4988 + - uid: 7825 components: - type: Transform - pos: -34.5,-22.5 + pos: -26.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4990 + color: '#0055CCFF' + - uid: 7834 components: - type: Transform - pos: -36.5,-23.5 + pos: -26.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4993 + color: '#0055CCFF' + - uid: 7835 components: - type: Transform - pos: -36.5,-24.5 + rot: -1.5707963267948966 rad + pos: -22.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4995 + - uid: 7855 components: - type: Transform - pos: -36.5,-26.5 + rot: 3.141592653589793 rad + pos: 17.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4996 + - uid: 7863 components: - type: Transform - pos: -36.5,-27.5 + pos: 33.5,4.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5000 + color: '#0055CCFF' + - uid: 7903 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-22.5 + pos: 31.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5027 + - uid: 7919 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-21.5 + pos: -52.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5038 + color: '#0055CCFF' + - uid: 7934 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-17.5 + pos: 29.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5068 + - uid: 7971 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-17.5 + pos: -16.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5208 + - uid: 8003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-43.5 + pos: 11.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5325 + - uid: 8004 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-3.5 + pos: 9.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5375 + - uid: 8005 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-6.5 + pos: -0.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5391 + - uid: 8009 components: - type: Transform - pos: 16.5,10.5 + pos: 9.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5396 + color: '#FF1212FF' + - uid: 8010 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,10.5 + pos: 1.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5401 + - uid: 8011 components: - type: Transform - pos: 16.5,11.5 + rot: -1.5707963267948966 rad + pos: 6.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5465 + color: '#FF1212FF' + - uid: 8012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-17.5 + rot: 3.141592653589793 rad + pos: 11.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5469 + - uid: 8018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 + pos: -6.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5480 + - uid: 8050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,12.5 + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8187 + components: + - type: Transform + pos: -6.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5519 + - uid: 8191 components: - type: Transform - pos: -30.5,-52.5 + pos: 11.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5561 + color: '#0055CCFF' + - uid: 8205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-41.5 + pos: 9.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5563 + - uid: 8206 components: - type: Transform - pos: 21.5,-24.5 + pos: 11.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5591 + - uid: 8214 components: - type: Transform - pos: -29.5,-52.5 + pos: -6.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5596 + - uid: 8219 components: - type: Transform - pos: -30.5,-53.5 + pos: -8.5,-71.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5621 + - uid: 8220 components: - type: Transform - pos: -29.5,-51.5 + pos: 9.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5650 + color: '#FF1212FF' + - uid: 8253 components: - type: Transform - pos: -29.5,-54.5 + pos: 9.5,-68.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5689 + color: '#FF1212FF' + - uid: 8264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-4.5 + pos: 34.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5690 + - uid: 8269 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-28.5 + pos: -17.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5724 + - uid: 8409 components: - type: Transform - pos: -26.5,-4.5 + pos: -8.5,-64.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5730 + color: '#FF1212FF' + - uid: 8464 components: - type: Transform - pos: -26.5,-5.5 + rot: -1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 8469 + components: + - type: Transform + pos: -6.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5738 + - uid: 8471 components: - type: Transform - pos: -24.5,-23.5 + pos: 30.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5747 + - uid: 8489 components: - type: Transform - pos: -29.5,-53.5 + rot: -1.5707963267948966 rad + pos: -33.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5750 + color: '#FF1212FF' + - uid: 8490 components: - type: Transform - pos: -30.5,-49.5 + rot: 3.141592653589793 rad + pos: -24.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5757 + - uid: 8494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-10.5 + pos: 34.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5844 + color: '#FF1212FF' + - uid: 8501 components: - type: Transform - pos: -28.5,-48.5 + pos: -29.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6027 + - uid: 8505 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-4.5 + pos: 11.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6030 + - uid: 8527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-9.5 + rot: 1.5707963267948966 rad + pos: 17.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 6031 + color: '#0055CCFF' + - uid: 8581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-6.5 + rot: -1.5707963267948966 rad + pos: 12.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6038 + - uid: 8590 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-19.5 + pos: 16.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6118 + - uid: 8598 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-0.5 + pos: -3.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6187 + color: '#FF1212FF' + - uid: 8602 components: - type: Transform - pos: 33.5,-38.5 + pos: -27.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6196 + - uid: 8615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-4.5 + rot: 3.141592653589793 rad + pos: -42.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6198 + - uid: 8642 components: - type: Transform - pos: 33.5,-39.5 + rot: 3.141592653589793 rad + pos: -1.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 8676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6234 + - uid: 8681 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-30.5 + pos: 21.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6358 + color: '#FF1212FF' + - uid: 8685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-3.5 + rot: 3.141592653589793 rad + pos: 32.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6461 + - uid: 8687 components: - type: Transform - pos: 28.5,-22.5 + rot: 3.141592653589793 rad + pos: 19.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6590 + - uid: 8690 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-31.5 + pos: 20.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6592 + - uid: 8693 components: - type: Transform - pos: 34.5,-39.5 + pos: 19.5,3.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6593 + color: '#FF1212FF' + - uid: 8708 components: - type: Transform - pos: 34.5,-40.5 + pos: 21.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6594 + - uid: 8713 components: - type: Transform - pos: 33.5,-40.5 + rot: -1.5707963267948966 rad + pos: 28.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6598 + - uid: 8714 components: - type: Transform - pos: 33.5,-42.5 + rot: -1.5707963267948966 rad + pos: 25.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6599 + - uid: 8717 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-25.5 + pos: 32.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6600 + color: '#0055CCFF' + - uid: 8719 components: - type: Transform - pos: 34.5,-41.5 + rot: -1.5707963267948966 rad + pos: 26.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6605 + color: '#FF1212FF' + - uid: 8720 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-41.5 + pos: 22.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6606 + - uid: 8721 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-41.5 + pos: 10.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6607 + color: '#0055CCFF' + - uid: 8724 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-41.5 + pos: 18.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6608 + - uid: 8727 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-42.5 + pos: 20.5,5.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6609 + color: '#FF1212FF' + - uid: 8728 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-42.5 + rot: 3.141592653589793 rad + pos: 32.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6610 + - uid: 8745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-42.5 + rot: 1.5707963267948966 rad + pos: 31.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6611 + - uid: 8804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-42.5 + rot: 3.141592653589793 rad + pos: 32.5,0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6612 + - uid: 8865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-42.5 + pos: 35.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6678 + - uid: 8884 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-1.5 + pos: 11.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6695 + color: '#0055CCFF' + - uid: 8990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-29.5 + rot: 1.5707963267948966 rad + pos: 30.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6701 + - uid: 9084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-18.5 + pos: 2.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6706 + color: '#03FCD3FF' + - uid: 9128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 + pos: 33.5,2.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 6716 + color: '#0055CCFF' + - uid: 9132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9141 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-10.5 + pos: -19.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 6718 + color: '#FF1212FF' + - uid: 9176 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-43.5 + pos: 33.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6726 + - uid: 9209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-30.5 + rot: 1.5707963267948966 rad + pos: 18.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6729 + - uid: 9283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-31.5 + rot: 1.5707963267948966 rad + pos: -36.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6737 + - uid: 9335 components: - type: Transform - pos: 2.5,-5.5 + pos: 32.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6749 + color: '#0055CCFF' + - uid: 9336 components: - type: Transform - pos: 34.5,-34.5 + rot: -1.5707963267948966 rad + pos: 30.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6758 + color: '#0055CCFF' + - uid: 9364 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-30.5 + rot: 3.141592653589793 rad + pos: 11.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6760 + - uid: 9366 components: - type: Transform - pos: 19.5,-24.5 + rot: 3.141592653589793 rad + pos: 9.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6763 + - uid: 9368 components: - type: Transform - pos: 21.5,-23.5 + rot: 3.141592653589793 rad + pos: 11.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6764 + - uid: 9371 components: - type: Transform - pos: 19.5,-23.5 + pos: 30.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6767 + - uid: 9372 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-25.5 + pos: 11.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6768 + - uid: 9374 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-25.5 + pos: 11.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6769 + color: '#0055CCFF' + - uid: 9377 components: - type: Transform - pos: 29.5,-31.5 + rot: 3.141592653589793 rad + pos: 11.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6770 + - uid: 9378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-35.5 + rot: 3.141592653589793 rad + pos: 11.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6771 + color: '#0055CCFF' + - uid: 9384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-30.5 + rot: 3.141592653589793 rad + pos: 11.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6772 + - uid: 9385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-30.5 + rot: 3.141592653589793 rad + pos: 11.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6773 + - uid: 9386 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-23.5 + pos: 11.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6785 + - uid: 9387 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-28.5 + pos: 28.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6805 + color: '#FF1212FF' + - uid: 9409 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-31.5 + pos: 22.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6806 + - uid: 9427 components: - type: Transform - pos: 35.5,-31.5 + rot: -1.5707963267948966 rad + pos: -40.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6808 + - uid: 9429 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-30.5 + pos: 10.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6891 + color: '#FF1212FF' + - uid: 9430 components: - type: Transform - pos: -24.5,-19.5 + rot: 1.5707963267948966 rad + pos: 11.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6924 + - uid: 9432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-33.5 + rot: 1.5707963267948966 rad + pos: 13.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6958 + - uid: 9433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-34.5 + rot: 1.5707963267948966 rad + pos: 12.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6984 + - uid: 9434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9439 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-34.5 + pos: 14.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6986 + color: '#FF1212FF' + - uid: 9441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-42.5 + pos: 15.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7046 + - uid: 9442 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-24.5 + pos: 15.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7057 + color: '#0055CCFF' + - uid: 9443 components: - type: Transform - pos: -24.5,-6.5 + pos: 15.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7074 + color: '#0055CCFF' + - uid: 9444 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,5.5 + pos: 15.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7104 + - uid: 9445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-31.5 + pos: 16.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7245 + - uid: 9456 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-3.5 + pos: 18.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7246 + - uid: 9459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 + rot: 3.141592653589793 rad + pos: 19.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7247 + - uid: 9460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-20.5 + rot: 3.141592653589793 rad + pos: 19.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7358 + - uid: 9461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,12.5 + rot: 3.141592653589793 rad + pos: 19.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7435 + - uid: 9462 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-30.5 + pos: 19.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7446 + - uid: 9463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-31.5 + rot: 3.141592653589793 rad + pos: 19.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7448 + - uid: 9464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7451 - components: - - type: Transform - pos: -26.5,-6.5 + pos: 17.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7452 + - uid: 9465 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-31.5 + pos: 18.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7454 + - uid: 9488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-29.5 + rot: -1.5707963267948966 rad + pos: 29.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7457 + - uid: 9491 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-31.5 + pos: 10.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7458 + color: '#FF1212FF' + - uid: 9492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-31.5 + rot: -1.5707963267948966 rad + pos: 12.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7459 + color: '#FF1212FF' + - uid: 9493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-29.5 + rot: -1.5707963267948966 rad + pos: 13.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7462 + - uid: 9494 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-31.5 + pos: 14.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7463 + color: '#FF1212FF' + - uid: 9498 components: - type: Transform - pos: -35.5,-28.5 + rot: 3.141592653589793 rad + pos: 31.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7464 + color: '#FF1212FF' + - uid: 9513 components: - type: Transform - pos: -36.5,-28.5 + rot: -1.5707963267948966 rad + pos: 16.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7467 + - uid: 9517 components: - type: Transform - pos: -30.5,-30.5 + rot: 3.141592653589793 rad + pos: 17.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7470 + - uid: 9530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-29.5 + rot: 3.141592653589793 rad + pos: 31.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7471 + - uid: 9545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-29.5 + pos: 33.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7472 + color: '#0055CCFF' + - uid: 9579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-29.5 + rot: 3.141592653589793 rad + pos: 33.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7473 + - uid: 9580 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-30.5 + pos: 34.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7476 + - uid: 9581 components: - type: Transform - pos: -30.5,-31.5 + rot: 3.141592653589793 rad + pos: 33.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7491 + - uid: 9582 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-29.5 + pos: 33.5,-25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7492 + color: '#FF1212FF' + - uid: 9613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-28.5 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7493 + color: '#03FCD3FF' + - uid: 9616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-27.5 + rot: -1.5707963267948966 rad + pos: 11.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7494 + - uid: 9632 components: - type: Transform - pos: -30.5,-28.5 + rot: 3.141592653589793 rad + pos: 33.5,6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7495 + color: '#0055CCFF' + - uid: 9639 components: - type: Transform - pos: -30.5,-27.5 + pos: -44.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7575 + color: '#0055CCFF' + - uid: 9666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-2.5 + pos: -29.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7825 + color: '#0055CCFF' + - uid: 9929 components: - type: Transform - pos: -26.5,-7.5 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7834 + color: '#03FCD3FF' + - uid: 9955 components: - type: Transform - pos: -26.5,-9.5 + rot: -1.5707963267948966 rad + pos: -24.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7835 + - uid: 9974 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,5.5 + pos: 8.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7971 + color: '#0055CCFF' + - uid: 9994 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-20.5 + pos: 15.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7982 + - uid: 10050 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-34.5 + pos: 32.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8050 + - uid: 10120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-7.5 + rot: 3.141592653589793 rad + pos: -14.5,3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8057 + - uid: 10152 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-30.5 + pos: -25.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8061 + color: '#0055CCFF' + - uid: 10153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-31.5 + pos: -29.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8072 + - uid: 10166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-31.5 + pos: -27.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8080 + - uid: 10170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-31.5 + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8085 + - uid: 10200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-29.5 + rot: -1.5707963267948966 rad + pos: -20.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8101 + - uid: 10201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-31.5 + rot: -1.5707963267948966 rad + pos: -30.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8123 + - uid: 10262 components: - type: Transform - pos: -44.5,-24.5 + rot: 3.141592653589793 rad + pos: -14.5,0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8124 + - uid: 10444 components: - type: Transform - pos: -44.5,-23.5 + rot: -1.5707963267948966 rad + pos: -27.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8130 + color: '#0055CCFF' + - uid: 10477 components: - type: Transform - pos: -43.5,-24.5 + rot: 3.141592653589793 rad + pos: 11.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8132 + - uid: 10488 components: - type: Transform - pos: -43.5,-23.5 + rot: -1.5707963267948966 rad + pos: -25.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8138 + - uid: 10517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-30.5 + rot: -1.5707963267948966 rad + pos: 13.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8147 + - uid: 10521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-31.5 + rot: -1.5707963267948966 rad + pos: -48.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8149 + - uid: 10522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-35.5 + rot: -1.5707963267948966 rad + pos: -51.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8155 + - uid: 10538 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-38.5 + pos: -14.5,2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8166 + - uid: 10539 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-39.5 + rot: -1.5707963267948966 rad + pos: -30.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8167 + - uid: 10544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-29.5 + rot: -1.5707963267948966 rad + pos: -29.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8174 + - uid: 10545 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-37.5 + rot: -1.5707963267948966 rad + pos: 10.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8176 + - uid: 10546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10547 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-32.5 + pos: -43.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8181 + color: '#03FCD3FF' + - uid: 10556 components: - type: Transform - pos: -45.5,-31.5 + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8187 + - uid: 10572 components: - type: Transform - pos: -8.5,-54.5 + pos: 11.5,-63.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8188 + color: '#0055CCFF' + - uid: 10575 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-53.5 + pos: -1.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8210 + - uid: 10583 components: - type: Transform - pos: -8.5,-55.5 + pos: 9.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8253 + - uid: 10585 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-54.5 + pos: 9.5,-53.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8264 + color: '#FF1212FF' + - uid: 10586 components: - type: Transform - pos: 34.5,-32.5 + rot: -1.5707963267948966 rad + pos: 3.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8269 + - uid: 10587 components: - type: Transform - pos: -17.5,-19.5 + pos: 11.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8394 + - uid: 10588 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-36.5 + rot: -1.5707963267948966 rad + pos: 2.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8409 + - uid: 10589 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-53.5 + pos: 7.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8489 + - uid: 10594 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-4.5 + pos: -2.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8490 + - uid: 10597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-5.5 + rot: -1.5707963267948966 rad + pos: 4.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8494 + - uid: 10598 components: - type: Transform - pos: 34.5,-36.5 + rot: -1.5707963267948966 rad + pos: 5.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8589 + - uid: 10600 components: - type: Transform - pos: -43.5,-25.5 + pos: -6.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8865 + - uid: 10601 components: - type: Transform - pos: 35.5,-32.5 + pos: -6.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8990 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9266 + - uid: 10602 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-51.5 + pos: -6.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9291 + - uid: 10603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-30.5 + pos: -6.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9295 + - uid: 10654 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-50.5 + pos: -14.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9298 + color: '#FF1212FF' + - uid: 10670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-49.5 + pos: 21.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9326 + - uid: 10680 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-32.5 + pos: -41.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9332 + color: '#03FCD3FF' + - uid: 10699 components: - type: Transform - pos: -43.5,-26.5 + rot: -1.5707963267948966 rad + pos: -24.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9345 + - uid: 10760 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-29.5 + pos: 21.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9364 + - uid: 10761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-29.5 + pos: 21.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9366 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9368 + - uid: 10774 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-46.5 + pos: 32.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9371 + - uid: 10801 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-43.5 + rot: -1.5707963267948966 rad + pos: 10.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9372 + - uid: 10895 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-44.5 + rot: -1.5707963267948966 rad + pos: 1.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9374 + - uid: 10943 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-30.5 + pos: 11.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9377 + - uid: 10944 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-41.5 + pos: 9.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9378 + color: '#FF1212FF' + - uid: 10945 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-40.5 + pos: 9.5,-52.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9384 + color: '#FF1212FF' + - uid: 10955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-37.5 + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9385 + color: '#03FCD3FF' + - uid: 10964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-36.5 + pos: -6.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9386 + - uid: 11055 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-35.5 + rot: -1.5707963267948966 rad + pos: -30.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9394 + - uid: 11062 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-49.5 + pos: -7.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9396 + color: '#0055CCFF' + - uid: 11069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-49.5 + pos: -31.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9397 + color: '#0055CCFF' + - uid: 11073 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-49.5 + pos: -6.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9429 + color: '#0055CCFF' + - uid: 11099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-44.5 + rot: -1.5707963267948966 rad + pos: -28.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9430 + - uid: 11112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-44.5 + pos: 1.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9431 + - uid: 11126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-44.5 + pos: -6.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9432 + color: '#0055CCFF' + - uid: 11154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-44.5 + pos: 11.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9433 + color: '#0055CCFF' + - uid: 11156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-42.5 + pos: 11.5,-68.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9434 + - uid: 11159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-42.5 + pos: 11.5,-65.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9435 + - uid: 11171 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,-1.5 + pos: 9.5,-71.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9437 + color: '#FF1212FF' + - uid: 11188 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,-47.5 + pos: -24.5,15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9439 + - uid: 11206 components: - type: Transform - pos: 14.5,-46.5 + rot: -1.5707963267948966 rad + pos: 1.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9440 + - uid: 11210 components: - type: Transform - pos: 14.5,-45.5 + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9441 + color: '#03FCD3FF' + - uid: 11215 components: - type: Transform - pos: 15.5,-45.5 + pos: -6.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9442 + color: '#FF1212FF' + - uid: 11259 components: - type: Transform - pos: 15.5,-44.5 + rot: -1.5707963267948966 rad + pos: -26.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9443 + - uid: 11276 components: - type: Transform - pos: 15.5,-43.5 + pos: -6.5,-67.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9444 + - uid: 11300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-44.5 + pos: -8.5,-69.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9445 + - uid: 11309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-44.5 + pos: -8.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9446 + - uid: 11339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-44.5 + rot: 1.5707963267948966 rad + pos: -16.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9447 + - uid: 11344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-42.5 + pos: 28.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9456 + color: '#FF1212FF' + - uid: 11346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-47.5 + rot: 1.5707963267948966 rad + pos: 29.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9457 + - uid: 11367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-46.5 + pos: 29.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9458 + color: '#0055CCFF' + - uid: 11370 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-45.5 + pos: -41.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9459 + color: '#03FCD3FF' + - uid: 11387 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-45.5 + rot: 1.5707963267948966 rad + pos: 32.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9460 + - uid: 11398 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,-46.5 + pos: 35.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9461 + - uid: 11426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-47.5 + rot: -1.5707963267948966 rad + pos: -31.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9462 + - uid: 11429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-44.5 + rot: -1.5707963267948966 rad + pos: -32.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9463 + - uid: 11431 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-43.5 + rot: 1.5707963267948966 rad + pos: -27.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9464 + - uid: 11436 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,-42.5 + pos: -29.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9465 + color: '#FF1212FF' + - uid: 11446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-42.5 + rot: -1.5707963267948966 rad + pos: -33.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9491 + color: '#FF1212FF' + - uid: 11451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-32.5 + pos: -25.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9492 + - uid: 11456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-32.5 + rot: 1.5707963267948966 rad + pos: 31.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9493 + - uid: 11464 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-32.5 + pos: -30.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9494 + - uid: 11465 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,-32.5 + pos: -26.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9495 + - uid: 11469 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-32.5 + pos: -31.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9496 + - uid: 11492 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-33.5 + pos: -32.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9497 + color: '#FF1212FF' + - uid: 11592 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-33.5 + pos: 0.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9498 + - uid: 11605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-33.5 + pos: 9.5,-65.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9499 + color: '#FF1212FF' + - uid: 11615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-33.5 + rot: 3.141592653589793 rad + pos: 11.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9500 + - uid: 11627 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11638 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-33.5 + pos: -0.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9501 + - uid: 11639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-34.5 + pos: -27.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9502 + color: '#FF1212FF' + - uid: 11645 components: - type: Transform rot: 3.141592653589793 rad - pos: 17.5,-35.5 + pos: -22.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9503 + - uid: 11649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-36.5 + rot: 3.141592653589793 rad + pos: -12.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9504 + color: '#FF1212FF' + - uid: 11779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-36.5 + rot: 3.141592653589793 rad + pos: -12.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9505 + color: '#FF1212FF' + - uid: 11783 components: - type: Transform - pos: 17.5,-37.5 + rot: 3.141592653589793 rad + pos: -12.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9506 + color: '#FF1212FF' + - uid: 11826 components: - type: Transform - pos: 17.5,-38.5 + pos: -29.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9510 + - uid: 11893 components: - type: Transform - pos: 15.5,-35.5 + rot: 3.141592653589793 rad + pos: -24.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9511 + - uid: 11902 components: - type: Transform - pos: 15.5,-34.5 + pos: -27.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9512 + - uid: 11916 components: - type: Transform - pos: 15.5,-33.5 + pos: 2.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9513 + color: '#0055CCFF' + - uid: 11949 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-36.5 + pos: 6.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9516 + - uid: 11962 components: - type: Transform rot: 3.141592653589793 rad - pos: 15.5,-37.5 + pos: -7.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9517 + color: '#0055CCFF' + - uid: 11982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-38.5 + rot: -1.5707963267948966 rad + pos: 9.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9518 + - uid: 11983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-38.5 + rot: -1.5707963267948966 rad + pos: 8.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9519 + - uid: 11984 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-38.5 + rot: -1.5707963267948966 rad + pos: 2.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9520 + - uid: 11989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-38.5 + rot: 3.141592653589793 rad + pos: -14.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9579 + color: '#0055CCFF' + - uid: 12010 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-23.5 + pos: -14.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9580 + color: '#0055CCFF' + - uid: 12028 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-23.5 + rot: 1.5707963267948966 rad + pos: 20.5,7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9581 + - uid: 12051 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,-24.5 + pos: -14.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9582 + - uid: 12061 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-25.5 + pos: 9.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9955 + - uid: 12115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-50.5 + pos: 2.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9974 + - uid: 12155 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,12.5 + pos: -37.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9994 + color: '#FF1212FF' + - uid: 12168 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,12.5 + pos: -37.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10120 + - uid: 12177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,3.5 + pos: -8.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10170 + - uid: 12185 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-21.5 + pos: -4.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10262 + - uid: 12188 + components: + - type: Transform + pos: 11.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12189 + components: + - type: Transform + pos: -8.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12190 + components: + - type: Transform + pos: 9.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12195 + components: + - type: Transform + pos: 0.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12201 + components: + - type: Transform + pos: 9.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12204 + components: + - type: Transform + pos: -8.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12261 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,0.5 + pos: 14.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10444 + - uid: 12280 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12388 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-10.5 + pos: -35.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10488 + color: '#FF1212FF' + - uid: 12392 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-11.5 + pos: -34.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10538 + - uid: 12393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,2.5 + rot: -1.5707963267948966 rad + pos: -36.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10654 + - uid: 12394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,1.5 + rot: 1.5707963267948966 rad + pos: -32.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10657 + - uid: 12400 components: - type: Transform - pos: -44.5,-34.5 + rot: 3.141592653589793 rad + pos: -33.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10801 + - uid: 12401 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-34.5 + rot: 3.141592653589793 rad + pos: -33.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10895 + - uid: 12402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,12.5 + rot: 3.141592653589793 rad + pos: -33.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11055 + - uid: 12403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-3.5 + rot: 3.141592653589793 rad + pos: -33.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11062 + - uid: 12404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,11.5 + rot: 3.141592653589793 rad + pos: -33.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11073 + - uid: 12405 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 + rot: 3.141592653589793 rad + pos: -33.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11112 + - uid: 12406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-17.5 + rot: 3.141592653589793 rad + pos: -33.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11188 + - uid: 12408 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,15.5 + pos: -34.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11206 + - uid: 12409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12410 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,10.5 + pos: -49.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11215 + - uid: 12413 components: - type: Transform - pos: -6.5,-34.5 + rot: 1.5707963267948966 rad + pos: -36.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11339 + - uid: 12414 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-1.5 + pos: -37.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11344 + - uid: 12416 components: - type: Transform - pos: 28.5,-21.5 + rot: 1.5707963267948966 rad + pos: -38.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11346 + - uid: 12417 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-31.5 + pos: -35.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11367 + color: '#0055CCFF' + - uid: 12418 components: - type: Transform - pos: 29.5,-32.5 + rot: 1.5707963267948966 rad + pos: -36.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11385 + - uid: 12419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-7.5 + rot: 1.5707963267948966 rad + pos: -37.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11387 + color: '#0055CCFF' + - uid: 12420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,-30.5 + pos: -38.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11398 + - uid: 12422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-36.5 + rot: -1.5707963267948966 rad + pos: -35.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11430 + - uid: 12428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 + rot: 1.5707963267948966 rad + pos: -33.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11456 + - uid: 12435 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-37.5 + pos: -41.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11592 + - uid: 12437 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,12.5 + pos: -42.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11638 + - uid: 12438 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,12.5 + pos: -40.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11645 + color: '#FF1212FF' + - uid: 12443 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-23.5 + rot: -1.5707963267948966 rad + pos: -43.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11649 + - uid: 12444 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,11.5 + pos: -44.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11779 + color: '#0055CCFF' + - uid: 12456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,12.5 + pos: -42.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11783 + - uid: 12457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,13.5 + pos: -42.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11893 + - uid: 12460 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,14.5 + pos: -42.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11949 + - uid: 12465 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,10.5 + pos: -45.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11962 + color: '#0055CCFF' + - uid: 12466 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-22.5 + rot: -1.5707963267948966 rad + pos: -46.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11982 + - uid: 12467 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,10.5 + pos: -46.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11983 + - uid: 12468 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,10.5 + pos: -45.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11984 + - uid: 12469 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,10.5 + pos: -44.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11989 + - uid: 12470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,12.5 + rot: -1.5707963267948966 rad + pos: -43.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12010 + color: '#FF1212FF' + - uid: 12471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,13.5 + rot: 1.5707963267948966 rad + pos: -41.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12051 + - uid: 12475 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,14.5 + pos: -44.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12053 + - uid: 12487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,10.5 + rot: 3.141592653589793 rad + pos: -45.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12055 + color: '#03FCD3FF' + - uid: 12521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,10.5 + pos: 0.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12231 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12280 + - uid: 12553 components: - type: Transform - pos: -15.5,-5.5 + pos: -8.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12295 + - uid: 12580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,14.5 + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12447 + - uid: 12623 components: - type: Transform - pos: 33.5,0.5 + rot: -1.5707963267948966 rad + pos: -49.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 12450 + color: '#03FCD3FF' + - uid: 12663 components: - type: Transform - pos: 31.5,2.5 + rot: 1.5707963267948966 rad + pos: -46.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12553 + color: '#03FCD3FF' + - uid: 12665 components: - type: Transform - pos: -8.5,-19.5 + rot: 1.5707963267948966 rad + pos: -47.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12580 + color: '#03FCD3FF' + - uid: 12667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 + rot: -1.5707963267948966 rad + pos: -48.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 12666 + color: '#03FCD3FF' + - uid: 12671 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-17.5 + pos: -50.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#03FCD3FF' - uid: 12673 components: - type: Transform @@ -73611,6 +82413,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12695 components: - type: Transform @@ -73627,348 +82437,350 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13045 + - uid: 12713 components: - type: Transform - pos: -45.5,-34.5 + pos: -8.5,-58.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13046 + - uid: 12714 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,1.5 + pos: -8.5,-70.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13047 + color: '#FF1212FF' + - uid: 12906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,0.5 + rot: -1.5707963267948966 rad + pos: -48.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13137 + color: '#FF1212FF' + - uid: 12907 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-4.5 + pos: -49.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13203 + - uid: 12908 components: - type: Transform - pos: 24.5,0.5 + rot: -1.5707963267948966 rad + pos: -50.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13211 + - uid: 12909 components: - type: Transform - pos: 25.5,0.5 + rot: -1.5707963267948966 rad + pos: -51.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13264 + color: '#FF1212FF' + - uid: 12910 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,12.5 + pos: -53.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13272 + color: '#FF1212FF' + - uid: 12911 components: - type: Transform - pos: -8.5,-20.5 + rot: -1.5707963267948966 rad + pos: -52.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13347 + - uid: 12912 components: - type: Transform - pos: 9.5,-47.5 + rot: -1.5707963267948966 rad + pos: -49.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13348 + color: '#0055CCFF' + - uid: 12913 components: - type: Transform - pos: 9.5,-46.5 + rot: -1.5707963267948966 rad + pos: -50.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13349 + color: '#0055CCFF' + - uid: 12914 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-15.5 + pos: -51.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13351 + color: '#0055CCFF' + - uid: 12915 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-15.5 + pos: -52.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13352 + color: '#0055CCFF' + - uid: 12916 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-15.5 + pos: -53.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13353 + color: '#0055CCFF' + - uid: 12951 components: - type: Transform - pos: 9.5,-40.5 + rot: -1.5707963267948966 rad + pos: -54.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13354 + color: '#0055CCFF' + - uid: 12953 components: - type: Transform - pos: 9.5,-39.5 + rot: -1.5707963267948966 rad + pos: -56.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13356 + color: '#0055CCFF' + - uid: 12954 components: - type: Transform - pos: 9.5,-37.5 + rot: -1.5707963267948966 rad + pos: -57.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13358 + color: '#0055CCFF' + - uid: 12968 components: - type: Transform - pos: 9.5,-35.5 + rot: -1.5707963267948966 rad + pos: -55.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13359 + - uid: 12970 components: - type: Transform - pos: 9.5,-34.5 + rot: -1.5707963267948966 rad + pos: -56.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13362 + - uid: 12971 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,-2.5 + pos: -57.5,-29.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13368 + color: '#FF1212FF' + - uid: 13044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-52.5 + rot: 3.141592653589793 rad + pos: -55.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13369 + - uid: 13046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-52.5 + rot: 3.141592653589793 rad + pos: -16.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13372 + - uid: 13047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-55.5 + rot: 3.141592653589793 rad + pos: -16.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13375 + color: '#0055CCFF' + - uid: 13052 components: - type: Transform - pos: 11.5,-53.5 + pos: -48.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13376 + - uid: 13053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-21.5 + pos: -48.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13377 + - uid: 13054 components: - type: Transform - pos: 11.5,-55.5 + pos: -47.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13378 + color: '#FF1212FF' + - uid: 13055 components: - type: Transform - pos: 11.5,-56.5 + pos: -47.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13379 + color: '#FF1212FF' + - uid: 13056 components: - type: Transform - pos: 11.5,-57.5 + pos: -47.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13380 + color: '#FF1212FF' + - uid: 13058 components: - type: Transform - pos: 11.5,-58.5 + pos: -48.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13381 + - uid: 13059 components: - type: Transform - pos: 11.5,-59.5 + pos: -48.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13382 + - uid: 13060 components: - type: Transform - pos: 11.5,-60.5 + pos: -48.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13383 + - uid: 13063 components: - type: Transform - pos: 10.5,-56.5 + pos: -47.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13384 + - uid: 13137 components: - type: Transform - pos: 10.5,-57.5 + rot: -1.5707963267948966 rad + pos: -36.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13385 + - uid: 13254 components: - type: Transform - pos: 10.5,-58.5 + rot: 3.141592653589793 rad + pos: -49.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13386 + color: '#0055CCFF' + - uid: 13264 components: - type: Transform - pos: 10.5,-59.5 + rot: -1.5707963267948966 rad + pos: 12.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13387 + color: '#0055CCFF' + - uid: 13272 components: - type: Transform - pos: 10.5,-60.5 + pos: -8.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13388 + - uid: 13284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 + pos: -8.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13391 + - uid: 13302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-52.5 + pos: -8.5,-60.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13392 + - uid: 13347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-53.5 + pos: 9.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13393 + - uid: 13348 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-54.5 + pos: 9.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13398 - components: - - type: Transform - pos: 11.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13399 + - uid: 13353 components: - type: Transform - pos: 11.5,-63.5 + pos: 9.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13400 + color: '#FF1212FF' + - uid: 13354 components: - type: Transform - pos: 11.5,-64.5 + pos: 9.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13401 + color: '#FF1212FF' + - uid: 13356 components: - type: Transform - pos: 10.5,-63.5 + pos: 9.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13403 + - uid: 13358 components: - type: Transform - pos: 10.5,-65.5 + pos: 9.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13404 + - uid: 13359 components: - type: Transform - pos: 10.5,-61.5 + pos: 9.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13405 + - uid: 13376 components: - type: Transform - pos: 10.5,-67.5 + rot: -1.5707963267948966 rad + pos: -8.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13406 + color: '#0055CCFF' + - uid: 13388 components: - type: Transform - pos: 10.5,-66.5 + rot: 1.5707963267948966 rad + pos: -6.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -74171,14 +82983,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13445 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13452 components: - type: Transform @@ -74738,1186 +83542,627 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13558 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13559 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13560 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13562 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13563 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13566 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13568 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13569 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13570 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13571 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13573 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13574 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13582 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13583 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13584 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13585 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13587 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13589 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13590 - components: - - type: Transform - pos: 41.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13591 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13592 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13593 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13597 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13604 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13605 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13606 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13607 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13615 - components: - - type: Transform - pos: -45.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13622 - components: - - type: Transform - pos: 30.5,-17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13623 - components: - - type: Transform - pos: 30.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13624 - components: - - type: Transform - pos: 30.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13625 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13626 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13627 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13628 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13629 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13630 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13647 - components: - - type: Transform - pos: -44.5,-33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13671 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13672 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13673 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13675 - components: - - type: Transform - pos: 7.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13712 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13713 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13714 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13715 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13720 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13721 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13722 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13728 - components: - - type: Transform - pos: 32.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13729 - components: - - type: Transform - pos: 32.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13731 - components: - - type: Transform - pos: 30.5,-5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13732 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13733 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13739 + - uid: 13554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-2.5 + rot: 3.141592653589793 rad + pos: 35.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13740 + - uid: 13555 components: - type: Transform - pos: 24.5,-6.5 + rot: 3.141592653589793 rad + pos: 37.5,-19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13741 + - uid: 13556 components: - type: Transform - pos: 31.5,-3.5 + rot: 3.141592653589793 rad + pos: 37.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13742 + - uid: 13558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-4.5 + rot: 3.141592653589793 rad + pos: 35.5,-17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13744 + color: '#0055CCFF' + - uid: 13559 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-4.5 + rot: 3.141592653589793 rad + pos: 35.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13745 + color: '#0055CCFF' + - uid: 13560 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-4.5 + rot: 3.141592653589793 rad + pos: 35.5,-15.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13746 + color: '#0055CCFF' + - uid: 13561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-38.5 + rot: 3.141592653589793 rad + pos: 35.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13747 + - uid: 13562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-4.5 + rot: 3.141592653589793 rad + pos: 35.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13748 + color: '#0055CCFF' + - uid: 13563 components: - type: Transform - pos: 31.5,-2.5 + rot: 3.141592653589793 rad + pos: 35.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13749 + color: '#0055CCFF' + - uid: 13564 components: - type: Transform - pos: 33.5,-1.5 + rot: 3.141592653589793 rad + pos: 35.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13750 + - uid: 13566 components: - type: Transform - pos: 31.5,-1.5 + rot: 3.141592653589793 rad + pos: 37.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13751 + - uid: 13567 components: - type: Transform - pos: 31.5,-0.5 + rot: 3.141592653589793 rad + pos: 37.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13752 + - uid: 13568 components: - type: Transform - pos: 33.5,-0.5 + rot: 3.141592653589793 rad + pos: 37.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13756 + color: '#FF1212FF' + - uid: 13569 components: - type: Transform - pos: 24.5,-5.5 + rot: 3.141592653589793 rad + pos: 37.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13757 + - uid: 13570 components: - type: Transform - pos: 24.5,-7.5 + rot: 3.141592653589793 rad + pos: 37.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13758 + - uid: 13571 components: - type: Transform - pos: 23.5,-4.5 + rot: 3.141592653589793 rad + pos: 37.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13759 + color: '#FF1212FF' + - uid: 13573 components: - type: Transform - pos: 23.5,-5.5 + rot: 3.141592653589793 rad + pos: 37.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13760 + color: '#FF1212FF' + - uid: 13574 components: - type: Transform - pos: 23.5,-6.5 + rot: 3.141592653589793 rad + pos: 37.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13761 + color: '#FF1212FF' + - uid: 13581 components: - type: Transform - pos: 23.5,-7.5 + rot: 3.141592653589793 rad + pos: 41.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13762 + - uid: 13582 components: - type: Transform - pos: 23.5,-3.5 + rot: 3.141592653589793 rad + pos: 41.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13779 + - uid: 13583 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-3.5 + pos: 40.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13780 + - uid: 13584 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-2.5 + pos: 40.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13782 + - uid: 13585 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-4.5 + pos: 39.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13783 + - uid: 13586 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-4.5 + pos: 38.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13784 + - uid: 13587 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-2.5 + pos: 38.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13792 + - uid: 13589 components: - type: Transform - pos: -17.5,-9.5 + rot: 1.5707963267948966 rad + pos: 40.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13825 + - uid: 13590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-38.5 + pos: 41.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13826 + - uid: 13591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-50.5 + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13829 + color: '#0055CCFF' + - uid: 13592 components: - type: Transform - pos: -19.5,-37.5 + rot: 3.141592653589793 rad + pos: 36.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13831 + - uid: 13593 components: - type: Transform - pos: -15.5,-37.5 + rot: 3.141592653589793 rad + pos: 36.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13832 + - uid: 13597 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-38.5 + rot: -1.5707963267948966 rad + pos: 39.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13834 + - uid: 13604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-38.5 + rot: 3.141592653589793 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13835 + - uid: 13607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-38.5 + rot: 3.141592653589793 rad + pos: 36.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13837 + - uid: 13608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-33.5 + rot: 3.141592653589793 rad + pos: 37.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13838 + - uid: 13622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-33.5 + pos: 30.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13839 + - uid: 13623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-33.5 + pos: 30.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13840 + - uid: 13624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-33.5 + pos: 30.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13841 + - uid: 13625 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-33.5 + pos: 30.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13842 + color: '#0055CCFF' + - uid: 13626 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-33.5 + pos: 31.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13868 + color: '#0055CCFF' + - uid: 13627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-58.5 + rot: -1.5707963267948966 rad + pos: 29.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13869 + - uid: 13628 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-59.5 + rot: -1.5707963267948966 rad + pos: 29.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13870 + color: '#0055CCFF' + - uid: 13629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-60.5 + rot: -1.5707963267948966 rad + pos: 28.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13871 + color: '#0055CCFF' + - uid: 13630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-61.5 + rot: -1.5707963267948966 rad + pos: 27.5,-16.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13872 + color: '#0055CCFF' + - uid: 13714 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-63.5 + pos: 30.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13873 + - uid: 13715 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,-62.5 + pos: 30.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13874 + - uid: 13716 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-63.5 + pos: 30.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13875 + color: '#FF1212FF' + - uid: 13718 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-62.5 + pos: 30.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13876 + color: '#FF1212FF' + - uid: 13719 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-61.5 + pos: 30.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13877 + color: '#FF1212FF' + - uid: 13722 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-60.5 + pos: 30.5,-6.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13878 + color: '#FF1212FF' + - uid: 13731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-59.5 + pos: 30.5,-5.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13879 + color: '#FF1212FF' + - uid: 13746 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,-58.5 + pos: -17.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13880 + - uid: 13792 components: - type: Transform - pos: -29.5,-57.5 + pos: -17.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13881 + - uid: 13825 components: - type: Transform - pos: -29.5,-56.5 + rot: 1.5707963267948966 rad + pos: -18.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13882 + - uid: 13826 components: - type: Transform - pos: -30.5,-56.5 + rot: 3.141592653589793 rad + pos: -20.5,-50.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13883 + - uid: 13829 components: - type: Transform - pos: -30.5,-55.5 + pos: -19.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13884 + color: '#0055CCFF' + - uid: 13831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-55.5 + pos: -15.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13885 + - uid: 13832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-55.5 + rot: 1.5707963267948966 rad + pos: -16.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13886 + - uid: 13834 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-55.5 + pos: -20.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13887 + - uid: 13835 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-55.5 + pos: -21.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13888 + - uid: 13837 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-54.5 + pos: -20.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13889 + - uid: 13838 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-54.5 + pos: -21.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13890 + - uid: 13839 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-54.5 + pos: -22.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13898 + - uid: 13840 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-50.5 + rot: -1.5707963267948966 rad + pos: -18.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13905 + color: '#FF1212FF' + - uid: 13841 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-43.5 + pos: -17.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13906 + color: '#FF1212FF' + - uid: 13842 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-43.5 + pos: -16.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13907 + color: '#FF1212FF' + - uid: 13869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-43.5 + pos: -48.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13908 + - uid: 13871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-46.5 + pos: -48.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13910 + color: '#0055CCFF' + - uid: 13872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-46.5 + pos: -47.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13911 + - uid: 13873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-46.5 + pos: -47.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13915 + - uid: 13874 components: - type: Transform - pos: -29.5,-47.5 + pos: -47.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13917 - components: - - type: Transform - pos: -28.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13918 + - uid: 13875 components: - type: Transform - pos: -28.5,-45.5 + pos: -47.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13919 + color: '#FF1212FF' + - uid: 13877 components: - type: Transform - pos: -28.5,-46.5 + pos: -44.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13920 + - uid: 13878 components: - type: Transform - pos: -28.5,-47.5 + pos: -44.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13922 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13924 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13925 + - uid: 13927 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-43.5 + pos: -47.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13929 components: - type: Transform - pos: -28.5,-42.5 + rot: -1.5707963267948966 rad + pos: -48.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 13930 components: - type: Transform - pos: -28.5,-41.5 + rot: -1.5707963267948966 rad + pos: -49.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 13931 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-40.5 + pos: -49.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-40.5 + rot: 3.141592653589793 rad + pos: -48.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -75949,7 +84194,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-45.5 + pos: -47.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -76144,6 +84389,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13978 components: - type: Transform @@ -76222,6 +84499,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 13996 components: - type: Transform @@ -76297,7 +84582,15 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-2.5 + pos: -47.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -76479,69 +84772,72 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,0.5 + pos: -48.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14053 + - uid: 14056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,0.5 + rot: -1.5707963267948966 rad + pos: -48.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14054 + - uid: 14064 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,1.5 + pos: 16.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14055 + - uid: 14065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,2.5 + rot: -1.5707963267948966 rad + pos: 17.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14064 + color: '#0055CCFF' + - uid: 14066 components: - type: Transform - pos: 31.5,0.5 + rot: -1.5707963267948966 rad + pos: -48.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14065 + - uid: 14067 components: - type: Transform - pos: 31.5,1.5 + rot: 3.141592653589793 rad + pos: -47.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14067 + - uid: 14068 components: - type: Transform - pos: 33.5,2.5 + pos: 33.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14068 + - uid: 14069 components: - type: Transform - pos: 33.5,3.5 + rot: 3.141592653589793 rad + pos: -48.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14070 components: - type: Transform - pos: 31.5,4.5 + rot: 3.141592653589793 rad + pos: -48.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0055CCFF' - uid: 14071 components: - type: Transform @@ -76606,43 +84902,35 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14086 + - uid: 14083 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,35.5 + pos: -47.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14087 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14088 + - uid: 14084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,6.5 + rot: -1.5707963267948966 rad + pos: -53.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14089 + color: '#FF1212FF' + - uid: 14086 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,7.5 + pos: -47.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14090 + color: '#FF1212FF' + - uid: 14087 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,8.5 + pos: 33.5,5.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -76662,14 +84950,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14094 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14096 components: - type: Transform @@ -76686,278 +84966,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14098 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,16.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14099 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14104 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14105 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14106 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14107 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14109 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14113 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14114 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14115 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14116 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14118 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,34.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14119 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,32.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14121 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,31.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14123 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,26.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14127 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,25.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14128 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14129 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,18.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14134 components: - type: Transform @@ -76974,14 +84982,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14137 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14138 components: - type: Transform @@ -77006,272 +85006,99 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,9.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14143 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,8.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14144 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14145 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,20.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14146 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,5.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14152 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14153 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14154 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14156 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14157 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14160 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14170 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14171 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14172 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14173 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14175 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14176 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14177 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14180 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-1.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14181 + - uid: 14142 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,-1.5 + pos: 31.5,9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14185 + color: '#FF1212FF' + - uid: 14152 components: - type: Transform - pos: 14.5,0.5 + rot: -1.5707963267948966 rad + pos: 32.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14186 + color: '#0055CCFF' + - uid: 14153 components: - type: Transform - pos: 14.5,1.5 + rot: -1.5707963267948966 rad + pos: 31.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14187 + color: '#0055CCFF' + - uid: 14154 components: - type: Transform - pos: 14.5,2.5 + rot: -1.5707963267948966 rad + pos: 30.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14188 + color: '#0055CCFF' + - uid: 14155 components: - type: Transform - pos: 16.5,2.5 + rot: -1.5707963267948966 rad + pos: 30.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14189 + color: '#FF1212FF' + - uid: 14156 components: - type: Transform - pos: 16.5,0.5 + rot: -1.5707963267948966 rad + pos: 29.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14190 + color: '#FF1212FF' + - uid: 14157 components: - type: Transform - pos: 16.5,-0.5 + rot: -1.5707963267948966 rad + pos: 29.5,10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14194 components: - type: Transform - pos: 14.5,3.5 + rot: -1.5707963267948966 rad + pos: -26.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14195 components: - type: Transform - pos: 14.5,4.5 + rot: -1.5707963267948966 rad + pos: -27.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14196 components: - type: Transform - pos: 14.5,5.5 + rot: -1.5707963267948966 rad + pos: -28.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14197 components: - type: Transform - pos: 14.5,6.5 + rot: -1.5707963267948966 rad + pos: -29.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14198 components: - type: Transform - pos: 14.5,7.5 + rot: -1.5707963267948966 rad + pos: -30.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -77292,35 +85119,40 @@ entities: - uid: 14201 components: - type: Transform - pos: 16.5,3.5 + rot: -1.5707963267948966 rad + pos: -31.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14202 components: - type: Transform - pos: 16.5,4.5 + rot: -1.5707963267948966 rad + pos: -26.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14203 components: - type: Transform - pos: 16.5,5.5 + rot: -1.5707963267948966 rad + pos: -27.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14204 components: - type: Transform - pos: 16.5,6.5 + rot: -1.5707963267948966 rad + pos: -28.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14205 components: - type: Transform - pos: 16.5,7.5 + rot: -1.5707963267948966 rad + pos: -29.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -77338,6 +85170,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14213 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14220 components: - type: Transform @@ -77346,6 +85186,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14241 components: - type: Transform @@ -77378,19 +85226,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14284 + - uid: 14258 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,10.5 + pos: -32.5,-40.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14286 + color: '#0055CCFF' + - uid: 14284 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,10.5 + pos: 3.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -77426,6 +85274,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14324 + components: + - type: Transform + pos: -34.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14342 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14343 components: - type: Transform @@ -77434,6 +85296,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14344 + components: + - type: Transform + pos: -34.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14346 components: - type: Transform @@ -77482,6 +85351,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14354 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14355 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14356 components: - type: Transform @@ -77562,6 +85445,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14387 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14388 components: - type: Transform @@ -77618,6 +85508,48 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14396 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14398 + components: + - type: Transform + pos: -34.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14400 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14405 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14410 + components: + - type: Transform + pos: -34.5,-53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14411 + components: + - type: Transform + pos: -34.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14415 components: - type: Transform @@ -77633,6 +85565,48 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14419 + components: + - type: Transform + pos: -34.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14423 + components: + - type: Transform + pos: -34.5,-57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14424 + components: + - type: Transform + pos: -34.5,-58.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14427 + components: + - type: Transform + pos: -34.5,-59.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14428 + components: + - type: Transform + pos: -34.5,-60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14441 + components: + - type: Transform + pos: -34.5,-61.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14444 components: - type: Transform @@ -77649,6 +85623,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14446 + components: + - type: Transform + pos: -34.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14447 components: - type: Transform @@ -77753,6 +85734,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14472 + components: + - type: Transform + pos: -34.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14474 + components: + - type: Transform + pos: -34.5,-66.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14487 components: - type: Transform @@ -77808,6 +85803,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14505 + components: + - type: Transform + pos: -34.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14506 components: - type: Transform @@ -77824,6 +85826,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14519 + components: + - type: Transform + pos: -34.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14520 + components: + - type: Transform + pos: -34.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14521 + components: + - type: Transform + pos: -34.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14523 components: - type: Transform @@ -77868,6 +85891,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14533 + components: + - type: Transform + pos: -34.5,-73.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14540 components: - type: Transform @@ -77876,6 +85906,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14544 + components: + - type: Transform + pos: -34.5,-74.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14545 + components: + - type: Transform + pos: -34.5,-75.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14548 components: - type: Transform @@ -77897,6 +85941,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14552 + components: + - type: Transform + pos: -34.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14553 components: - type: Transform @@ -77989,6 +86040,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14571 + components: + - type: Transform + pos: -34.5,-77.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14573 + components: + - type: Transform + pos: -34.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14577 components: - type: Transform @@ -78119,6 +86184,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14623 + components: + - type: Transform + pos: -34.5,-78.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14627 components: - type: Transform @@ -78126,13 +86198,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14629 + components: + - type: Transform + pos: -32.5,-76.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14630 components: - type: Transform - pos: -17.5,-15.5 + pos: -32.5,-75.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14631 components: - type: Transform @@ -78185,18 +86264,17 @@ entities: - uid: 14640 components: - type: Transform - pos: -15.5,-16.5 + pos: -32.5,-74.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-28.5 + pos: -32.5,-73.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14642 components: - type: Transform @@ -78243,6 +86321,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14654 + components: + - type: Transform + pos: -32.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14656 components: - type: Transform @@ -78251,6 +86336,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14657 + components: + - type: Transform + pos: -32.5,-71.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14658 components: - type: Transform @@ -78382,6 +86474,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14681 + components: + - type: Transform + pos: -32.5,-69.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14683 components: - type: Transform @@ -78399,7 +86498,14 @@ entities: - uid: 14686 components: - type: Transform - pos: -24.5,-28.5 + pos: -32.5,-68.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14687 + components: + - type: Transform + pos: -32.5,-66.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -78431,6 +86537,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14692 + components: + - type: Transform + pos: -32.5,-65.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14693 components: - type: Transform @@ -78512,3819 +86625,4123 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14713 + components: + - type: Transform + pos: -32.5,-64.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14720 + components: + - type: Transform + pos: -32.5,-67.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14722 + components: + - type: Transform + pos: -32.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-31.5 + pos: -32.5,-60.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-31.5 + pos: -32.5,-59.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#FF1212FF' - uid: 14736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-29.5 + pos: -32.5,-63.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14737 + - uid: 14738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-29.5 + pos: -32.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-34.5 + pos: -32.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-34.5 + pos: -32.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14741 components: - type: Transform - pos: -30.5,-33.5 + pos: -32.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14742 components: - type: Transform - pos: -30.5,-32.5 + pos: -32.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14743 components: - type: Transform - pos: -29.5,-32.5 + pos: -32.5,-58.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14744 + color: '#FF1212FF' + - uid: 14745 components: - type: Transform - pos: -29.5,-33.5 + pos: -32.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14746 + color: '#FF1212FF' + - uid: 14747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-34.5 + pos: -32.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14753 + color: '#FF1212FF' + - uid: 14748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-35.5 + pos: -32.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14754 + color: '#FF1212FF' + - uid: 14749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-35.5 + pos: -32.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14755 + color: '#FF1212FF' + - uid: 14750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-36.5 + pos: -32.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14751 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14752 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14756 + - uid: 14862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-37.5 + pos: -44.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14757 + - uid: 14863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-37.5 + pos: -42.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14758 + - uid: 14865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-36.5 + pos: -42.5,-26.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14759 + - uid: 14871 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-35.5 + pos: -42.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14760 + - uid: 14872 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-36.5 + pos: -42.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14761 + color: '#FF1212FF' + - uid: 14873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-34.5 + rot: 3.141592653589793 rad + pos: -44.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14769 + color: '#0055CCFF' + - uid: 14875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-31.5 + rot: 3.141592653589793 rad + pos: -44.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14770 + - uid: 14880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-31.5 + rot: 3.141592653589793 rad + pos: -44.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14771 + - uid: 14883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-31.5 + rot: 3.141592653589793 rad + pos: -42.5,-21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14776 + color: '#FF1212FF' + - uid: 14896 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,-29.5 + pos: -35.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14777 + - uid: 14897 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-29.5 + pos: -36.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14789 + - uid: 14898 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-30.5 + pos: -37.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14790 + - uid: 14901 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-30.5 + pos: -34.5,-23.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14791 + color: '#0055CCFF' + - uid: 14909 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-30.5 + pos: -35.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14793 + - uid: 14944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-31.5 + rot: 1.5707963267948966 rad + pos: 14.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14794 + - uid: 14956 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-31.5 + pos: 16.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14796 + - uid: 14959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-31.5 + rot: 1.5707963267948966 rad + pos: 9.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14828 + - uid: 14960 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-1.5 + pos: 8.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14829 + color: '#0055CCFF' + - uid: 14961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-19.5 + rot: 1.5707963267948966 rad + pos: 7.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14838 + color: '#0055CCFF' + - uid: 14962 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-0.5 + pos: 6.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14862 + - uid: 14963 components: - type: Transform - pos: -36.5,-32.5 + rot: 1.5707963267948966 rad + pos: 5.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14863 + - uid: 14964 components: - type: Transform - pos: -36.5,-33.5 + rot: 1.5707963267948966 rad + pos: 4.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14866 + - uid: 14967 components: - type: Transform - pos: -36.5,-36.5 + rot: 1.5707963267948966 rad + pos: 0.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14867 + - uid: 14968 components: - type: Transform - pos: -36.5,-37.5 + rot: 1.5707963267948966 rad + pos: 1.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14868 + - uid: 14969 components: - type: Transform - pos: -36.5,-38.5 + rot: 1.5707963267948966 rad + pos: 3.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14869 + - uid: 14973 components: - type: Transform - pos: -36.5,-39.5 + rot: 1.5707963267948966 rad + pos: -0.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14870 + - uid: 14981 components: - type: Transform - pos: -36.5,-40.5 + rot: 3.141592653589793 rad + pos: -9.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 14991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14875 + - uid: 14993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-35.5 + rot: 1.5707963267948966 rad + pos: -3.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14892 + - uid: 14994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-43.5 + rot: 1.5707963267948966 rad + pos: -2.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14893 + - uid: 14995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-43.5 + rot: 1.5707963267948966 rad + pos: -1.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14895 + - uid: 15001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-43.5 + pos: -9.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15002 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15003 + components: + - type: Transform + pos: -7.5,-46.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14896 + - uid: 15004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-43.5 + pos: -7.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14897 + - uid: 15076 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15077 + components: + - type: Transform + pos: -9.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15078 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15081 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-43.5 + pos: -12.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14898 + - uid: 15084 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,-43.5 + pos: -10.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14899 + - uid: 15085 components: - type: Transform rot: -1.5707963267948966 rad - pos: -46.5,-43.5 + pos: -9.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14900 + - uid: 15086 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-43.5 + pos: -8.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14901 + - uid: 15087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15092 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-43.5 + pos: -6.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14902 + - uid: 15093 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-43.5 + pos: -5.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14903 + - uid: 15094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15098 components: - type: Transform rot: -1.5707963267948966 rad - pos: -44.5,-42.5 + pos: -4.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14904 + - uid: 15104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,-42.5 + rot: 1.5707963267948966 rad + pos: -7.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14905 + - uid: 15105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,-42.5 + rot: 1.5707963267948966 rad + pos: -5.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14906 + - uid: 15107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-42.5 + pos: -4.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14907 + - uid: 15108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-42.5 + pos: -4.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14908 + - uid: 15111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,-42.5 + rot: 3.141592653589793 rad + pos: -6.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14910 + - uid: 15114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-40.5 + pos: -10.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14911 + - uid: 15115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-40.5 + rot: 3.141592653589793 rad + pos: -6.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14913 + - uid: 15117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15121 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,-40.5 + pos: -10.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14914 + color: '#0055CCFF' + - uid: 15122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15123 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-43.5 + pos: -6.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14915 + - uid: 15124 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-44.5 + pos: -6.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14916 + - uid: 15125 components: - type: Transform rot: 3.141592653589793 rad - pos: -43.5,-45.5 + pos: -6.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14917 + - uid: 15126 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-44.5 + pos: -8.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14918 + - uid: 15127 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,-45.5 + pos: -11.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14924 + - uid: 15131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15255 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-42.5 + pos: -33.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15256 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15257 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-62.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14925 + - uid: 15260 components: - type: Transform - pos: -51.5,-41.5 + rot: 1.5707963267948966 rad + pos: -30.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14926 + - uid: 15276 components: - type: Transform - pos: -50.5,-41.5 + rot: -1.5707963267948966 rad + pos: -11.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14927 + - uid: 15278 components: - type: Transform - pos: -50.5,-42.5 + rot: -1.5707963267948966 rad + pos: 13.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14928 + - uid: 15280 components: - type: Transform - pos: -51.5,-43.5 + rot: -1.5707963267948966 rad + pos: 14.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14929 + color: '#0055CCFF' + - uid: 15282 components: - type: Transform - pos: -50.5,-44.5 + rot: -1.5707963267948966 rad + pos: 11.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14930 + - uid: 15484 components: - type: Transform - pos: -51.5,-44.5 + rot: -1.5707963267948966 rad + pos: 9.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14931 + color: '#0055CCFF' + - uid: 15566 components: - type: Transform - pos: -50.5,-45.5 + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 15567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,4.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14932 + - uid: 15568 components: - type: Transform - pos: -51.5,-45.5 + rot: 3.141592653589793 rad + pos: -14.5,6.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14941 + - uid: 15770 components: - type: Transform - pos: -35.5,-24.5 + rot: -1.5707963267948966 rad + pos: -12.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14942 + - uid: 15812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-23.5 + rot: -1.5707963267948966 rad + pos: -15.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14943 + - uid: 15824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-23.5 + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14947 + - uid: 15848 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,-25.5 + pos: 8.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14948 + - uid: 15864 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-25.5 + pos: -26.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14959 + - uid: 15881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-47.5 + rot: -1.5707963267948966 rad + pos: 10.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14960 + - uid: 15908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-47.5 + pos: -6.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14961 + - uid: 16194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-47.5 + rot: -1.5707963267948966 rad + pos: -13.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14962 + color: '#FF1212FF' + - uid: 16235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-47.5 + rot: -1.5707963267948966 rad + pos: -22.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14963 + color: '#FF1212FF' + - uid: 16237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-47.5 + rot: -1.5707963267948966 rad + pos: -23.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14964 + color: '#FF1212FF' + - uid: 16238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-47.5 + rot: -1.5707963267948966 rad + pos: -22.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14965 + color: '#FF1212FF' + - uid: 16239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-49.5 + rot: -1.5707963267948966 rad + pos: -23.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14966 + - uid: 16240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-49.5 + rot: -1.5707963267948966 rad + pos: -21.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14967 + - uid: 16241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-47.5 + rot: -1.5707963267948966 rad + pos: -21.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14968 + color: '#FF1212FF' + - uid: 16248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-47.5 + rot: -1.5707963267948966 rad + pos: -21.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14969 + - uid: 16249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-47.5 + rot: -1.5707963267948966 rad + pos: -22.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14970 + - uid: 16250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-49.5 + rot: -1.5707963267948966 rad + pos: -23.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14971 + color: '#0055CCFF' + - uid: 16251 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-49.5 + rot: -1.5707963267948966 rad + pos: -24.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14972 + color: '#0055CCFF' + - uid: 16252 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-49.5 + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14973 + color: '#0055CCFF' + - uid: 16253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-47.5 + rot: -1.5707963267948966 rad + pos: -22.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14974 + - uid: 16254 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-49.5 + pos: -23.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14975 + color: '#0055CCFF' + - uid: 16255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-49.5 + rot: -1.5707963267948966 rad + pos: -24.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14976 + color: '#0055CCFF' + - uid: 16257 components: - type: Transform - pos: -7.5,-48.5 + rot: -1.5707963267948966 rad + pos: -34.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14977 + - uid: 16397 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-47.5 + pos: -39.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14983 + - uid: 16398 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-49.5 + pos: -40.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14984 + color: '#0055CCFF' + - uid: 16399 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-49.5 + pos: -41.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14985 + color: '#0055CCFF' + - uid: 16400 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-49.5 + pos: -42.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14986 + color: '#0055CCFF' + - uid: 16401 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-49.5 + pos: -43.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14987 + color: '#0055CCFF' + - uid: 16402 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-49.5 + pos: -44.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14988 + color: '#0055CCFF' + - uid: 16403 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-49.5 + pos: -45.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14989 + color: '#0055CCFF' + - uid: 16404 components: - type: Transform - pos: -7.5,-49.5 + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14990 + - uid: 16405 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-47.5 + pos: -47.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14991 + - uid: 16406 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-47.5 + pos: -48.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14993 + - uid: 16407 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-47.5 + pos: -49.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14994 + - uid: 16408 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-47.5 + pos: -50.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14995 + - uid: 16410 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-47.5 + pos: -51.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14996 + - uid: 16428 components: - type: Transform - pos: -7.5,-50.5 + rot: -1.5707963267948966 rad + pos: -56.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14997 + color: '#03FCD3FF' + - uid: 16429 components: - type: Transform - pos: -7.5,-51.5 + rot: -1.5707963267948966 rad + pos: -57.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14998 + color: '#03FCD3FF' + - uid: 16432 components: - type: Transform - pos: -8.5,-50.5 + rot: -1.5707963267948966 rad + pos: -59.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14999 + color: '#03FCD3FF' + - uid: 16434 components: - type: Transform - pos: -8.5,-51.5 + rot: -1.5707963267948966 rad + pos: -61.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15001 + color: '#03FCD3FF' + - uid: 16435 components: - type: Transform - pos: -9.5,-46.5 + rot: -1.5707963267948966 rad + pos: -63.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15002 + color: '#03FCD3FF' + - uid: 16436 components: - type: Transform - pos: -9.5,-45.5 + rot: -1.5707963267948966 rad + pos: -64.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15003 + color: '#03FCD3FF' + - uid: 16437 components: - type: Transform - pos: -7.5,-46.5 + rot: 3.141592653589793 rad + pos: -62.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15004 + color: '#03FCD3FF' + - uid: 16438 components: - type: Transform - pos: -7.5,-45.5 + rot: 3.141592653589793 rad + pos: -62.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15012 + color: '#03FCD3FF' + - uid: 16439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-19.5 + rot: 3.141592653589793 rad + pos: -62.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15017 + color: '#03FCD3FF' + - uid: 16440 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-52.5 + pos: -62.5,-14.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15020 + color: '#03FCD3FF' + - uid: 16458 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-52.5 + pos: -52.5,-14.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15021 + - uid: 16642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-53.5 + rot: -1.5707963267948966 rad + pos: -13.5,11.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15027 + - uid: 16643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-55.5 + rot: -1.5707963267948966 rad + pos: -11.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15028 + color: '#FF1212FF' + - uid: 16790 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-56.5 + pos: -38.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15029 + - uid: 16870 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-56.5 + pos: -38.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15038 + color: '#0055CCFF' + - uid: 16877 components: - type: Transform - pos: -7.5,-57.5 + rot: -1.5707963267948966 rad + pos: -31.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15039 + - uid: 16878 components: - type: Transform - pos: -8.5,-57.5 + rot: -1.5707963267948966 rad + pos: -35.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15040 + color: '#0055CCFF' + - uid: 17136 components: - type: Transform - pos: -8.5,-58.5 + rot: 1.5707963267948966 rad + pos: 18.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15041 + - uid: 17195 components: - type: Transform - pos: -7.5,-58.5 + rot: -1.5707963267948966 rad + pos: 17.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15042 + color: '#FF1212FF' + - uid: 17248 components: - type: Transform - pos: 11.5,-65.5 + rot: 3.141592653589793 rad + pos: 19.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15043 + - uid: 17332 components: - type: Transform - pos: 11.5,-66.5 + pos: 5.5,11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15051 + color: '#FF1212FF' + - uid: 17333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-59.5 + pos: 5.5,12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15052 + color: '#FF1212FF' + - uid: 17334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-60.5 + pos: 5.5,13.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15054 + color: '#FF1212FF' + - uid: 17335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-63.5 + pos: 5.5,15.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15055 + color: '#FF1212FF' + - uid: 17337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-64.5 + pos: 5.5,14.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15056 + color: '#FF1212FF' + - uid: 17338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-65.5 + pos: 2.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15057 + - uid: 17339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-66.5 + pos: 2.5,14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15058 + - uid: 17340 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-67.5 + pos: 2.5,15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15059 + - uid: 17341 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-61.5 + pos: 2.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15060 + - uid: 17354 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-66.5 + pos: 5.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15061 + - uid: 17361 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-65.5 + pos: 5.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15062 + - uid: 17363 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-64.5 + pos: 5.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15063 + - uid: 17364 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-63.5 + pos: 5.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15064 + - uid: 17365 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-62.5 + pos: 5.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15065 + - uid: 17369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-60.5 + pos: 4.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15066 + color: '#0055CCFF' + - uid: 17370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-59.5 + pos: 4.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15076 + color: '#0055CCFF' + - uid: 17371 components: - type: Transform - pos: -10.5,-40.5 + pos: 4.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15077 + color: '#0055CCFF' + - uid: 17372 components: - type: Transform - pos: -9.5,-44.5 + pos: 4.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15078 + color: '#0055CCFF' + - uid: 17373 components: - type: Transform - pos: -9.5,-43.5 + pos: 4.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15079 + color: '#0055CCFF' + - uid: 17374 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-42.5 + pos: 3.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15081 + color: '#0055CCFF' + - uid: 17375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-42.5 + pos: 4.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15082 + color: '#0055CCFF' + - uid: 17377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-40.5 + pos: -1.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15084 + - uid: 17378 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-40.5 + pos: -0.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15085 + - uid: 17379 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-40.5 + pos: 0.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15086 + - uid: 17380 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-40.5 + pos: 1.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15087 + - uid: 17381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-41.5 + rot: -1.5707963267948966 rad + pos: 2.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15088 + - uid: 17382 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-42.5 + rot: -1.5707963267948966 rad + pos: 5.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15089 + - uid: 17383 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 + rot: -1.5707963267948966 rad + pos: 6.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15090 + - uid: 17384 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-44.5 + rot: -1.5707963267948966 rad + pos: 7.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15092 + - uid: 17385 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-40.5 + pos: 8.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15093 + - uid: 17386 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-40.5 + pos: 9.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15094 + - uid: 17387 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-43.5 + pos: 10.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15095 + - uid: 17388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-42.5 + rot: 1.5707963267948966 rad + pos: 3.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15096 + - uid: 17389 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-41.5 + rot: 1.5707963267948966 rad + pos: 1.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15098 + - uid: 17390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-40.5 + rot: 1.5707963267948966 rad + pos: 0.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15101 + - uid: 17391 components: - type: Transform - pos: -3.5,-44.5 + rot: 1.5707963267948966 rad + pos: -0.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15103 + - uid: 17394 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-41.5 + pos: 6.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15104 + - uid: 17395 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-41.5 + pos: 7.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15105 + - uid: 17396 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-41.5 + pos: 8.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15107 + - uid: 17397 components: - type: Transform - pos: -4.5,-42.5 + rot: 1.5707963267948966 rad + pos: 9.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15108 + - uid: 17398 components: - type: Transform - pos: -4.5,-43.5 + rot: 1.5707963267948966 rad + pos: 10.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15109 + - uid: 17399 components: - type: Transform - pos: -4.5,-44.5 + rot: 1.5707963267948966 rad + pos: 11.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15111 + - uid: 17400 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-40.5 + pos: 12.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15114 + - uid: 17401 components: - type: Transform - pos: -10.5,-41.5 + pos: 12.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15115 + - uid: 17402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-39.5 + rot: -1.5707963267948966 rad + pos: 13.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15117 + - uid: 17403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-39.5 + rot: -1.5707963267948966 rad + pos: 14.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15121 + color: '#FF1212FF' + - uid: 17411 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-36.5 + pos: 5.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15122 + - uid: 17412 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-36.5 + pos: 6.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15123 + - uid: 17413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-37.5 + rot: -1.5707963267948966 rad + pos: 7.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15124 + color: '#0055CCFF' + - uid: 17414 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-36.5 + rot: -1.5707963267948966 rad + pos: 8.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15125 + color: '#0055CCFF' + - uid: 17415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-35.5 + rot: -1.5707963267948966 rad + pos: 9.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15126 + color: '#0055CCFF' + - uid: 17416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-35.5 + rot: -1.5707963267948966 rad + pos: 10.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15127 + - uid: 17417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-37.5 + rot: -1.5707963267948966 rad + pos: 11.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15131 + - uid: 17425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-34.5 + rot: -1.5707963267948966 rad + pos: 4.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15132 + color: '#FF1212FF' + - uid: 17426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-33.5 + rot: -1.5707963267948966 rad + pos: 3.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15140 + color: '#FF1212FF' + - uid: 17427 components: - type: Transform - pos: 10.5,-50.5 + rot: -1.5707963267948966 rad + pos: 2.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15158 + - uid: 17428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-9.5 + rot: -1.5707963267948966 rad + pos: 1.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15159 + color: '#FF1212FF' + - uid: 17429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-8.5 + rot: -1.5707963267948966 rad + pos: 0.5,16.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15167 + color: '#FF1212FF' + - uid: 17430 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,10.5 + pos: -0.5,16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15244 + - uid: 17433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,36.5 + rot: -1.5707963267948966 rad + pos: -2.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15246 + - uid: 17434 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,37.5 + rot: -1.5707963267948966 rad + pos: -3.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15247 + - uid: 17435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,38.5 + rot: -1.5707963267948966 rad + pos: -4.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15248 + - uid: 17436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,39.5 + rot: -1.5707963267948966 rad + pos: -5.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15251 + - uid: 17438 components: - type: Transform - pos: 33.5,36.5 + rot: -1.5707963267948966 rad + pos: -2.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15252 + - uid: 17439 components: - type: Transform - pos: 33.5,37.5 + rot: -1.5707963267948966 rad + pos: -3.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15276 + - uid: 17440 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,11.5 + pos: -5.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15278 + - uid: 17441 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,12.5 + pos: -6.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15280 + - uid: 17442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,12.5 + pos: -4.5,18.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15282 + - uid: 17557 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,12.5 + pos: 35.5,-25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15484 + - uid: 17558 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-39.5 + pos: 35.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15566 + color: '#FF1212FF' + - uid: 17559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17888 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,0.5 + pos: -7.5,-14.5 parent: 2 - - uid: 15567 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18551 + components: + - type: Transform + pos: 9.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 18580 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,4.5 + pos: 32.5,-10.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15568 + - uid: 18581 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,6.5 + pos: 32.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15770 + color: '#0055CCFF' + - uid: 18584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,11.5 + rot: 3.141592653589793 rad + pos: 32.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15812 + - uid: 18604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,11.5 + rot: 3.141592653589793 rad + pos: -39.5,-1.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 15824 + color: '#FF1212FF' + - uid: 18851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 + rot: 1.5707963267948966 rad + pos: 32.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15847 + - uid: 18892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,12.5 + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 18921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15848 + - uid: 18922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-38.5 + rot: 3.141592653589793 rad + pos: -38.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15864 + color: '#0055CCFF' + - uid: 19290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-9.5 + rot: 3.141592653589793 rad + pos: -39.5,-2.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15881 + - uid: 19291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-39.5 + rot: 3.141592653589793 rad + pos: -39.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16009 + color: '#FF1212FF' + - uid: 19982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-45.5 + pos: -12.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16010 + color: '#FF1212FF' + - uid: 19986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-45.5 + rot: 3.141592653589793 rad + pos: -11.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16194 + - uid: 19987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,10.5 + rot: 3.141592653589793 rad + pos: -11.5,-13.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16235 + color: '#0055CCFF' + - uid: 19988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-7.5 + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16237 + color: '#0055CCFF' + - uid: 19989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-7.5 + rot: 1.5707963267948966 rad + pos: -9.5,-12.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16238 + color: '#0055CCFF' + - uid: 20138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-10.5 + pos: -22.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 16239 + color: '#0055CCFF' + - uid: 21054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-10.5 + rot: 1.5707963267948966 rad + pos: -7.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16240 + - uid: 21055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-10.5 + rot: 1.5707963267948966 rad + pos: -6.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16241 + - uid: 21056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-7.5 + rot: 1.5707963267948966 rad + pos: -5.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16248 + - uid: 21057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-11.5 + rot: 1.5707963267948966 rad + pos: -4.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16249 + color: '#FF1212FF' + - uid: 21058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-11.5 + rot: 1.5707963267948966 rad + pos: -5.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16250 + - uid: 21059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-11.5 + rot: 1.5707963267948966 rad + pos: -4.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16251 + - uid: 21060 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-11.5 + rot: 1.5707963267948966 rad + pos: -3.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16252 + - uid: 21061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-8.5 + rot: 1.5707963267948966 rad + pos: -2.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16253 + - uid: 21062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-8.5 + rot: 1.5707963267948966 rad + pos: -1.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16254 + - uid: 21063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-8.5 + rot: 1.5707963267948966 rad + pos: -0.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16255 + - uid: 21064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-8.5 + rot: 1.5707963267948966 rad + pos: 0.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16256 + - uid: 21070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-3.5 + rot: 1.5707963267948966 rad + pos: 3.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16257 + - uid: 21071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-3.5 + rot: 1.5707963267948966 rad + pos: 4.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16260 + - uid: 21072 components: - type: Transform - pos: -30.5,-51.5 + rot: 1.5707963267948966 rad + pos: 8.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16372 + - uid: 21074 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-14.5 + pos: 1.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16373 + - uid: 21191 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-14.5 + pos: -53.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16374 + - uid: 21192 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-15.5 + pos: -52.5,-22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16375 + color: '#FF1212FF' + - uid: 21412 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-15.5 + pos: 9.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16381 + - uid: 21413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-15.5 + pos: 8.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16382 + - uid: 21414 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-16.5 + pos: 8.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16383 + color: '#FF1212FF' + - uid: 21415 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-16.5 + pos: 10.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16384 + - uid: 21416 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-16.5 + pos: 9.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16385 + - uid: 21417 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-16.5 + pos: 8.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16386 + - uid: 21418 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-16.5 + pos: 8.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16387 + color: '#FF1212FF' + - uid: 21948 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-16.5 + pos: 14.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16388 + color: '#FF1212FF' + - uid: 21949 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-16.5 + pos: 15.5,23.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16389 + color: '#FF1212FF' + - uid: 22056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-16.5 + rot: 3.141592653589793 rad + pos: 33.5,16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16390 + - uid: 22228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-16.5 + rot: 3.141592653589793 rad + pos: 17.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16391 + color: '#FF1212FF' + - uid: 22229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-16.5 + pos: 17.5,-48.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16392 + color: '#FF1212FF' + - uid: 22238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-16.5 + rot: 1.5707963267948966 rad + pos: 20.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16393 + - uid: 22239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-16.5 + rot: 1.5707963267948966 rad + pos: 16.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16394 + - uid: 22240 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-15.5 + rot: 1.5707963267948966 rad + pos: 17.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16395 + - uid: 22241 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-14.5 + rot: 1.5707963267948966 rad + pos: 18.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16396 + - uid: 22243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-13.5 + rot: -1.5707963267948966 rad + pos: 20.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16397 + color: '#FF1212FF' + - uid: 22244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 + rot: -1.5707963267948966 rad + pos: 19.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16398 + color: '#FF1212FF' + - uid: 22245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-12.5 + rot: -1.5707963267948966 rad + pos: 18.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16399 + color: '#FF1212FF' + - uid: 22248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-12.5 + rot: 3.141592653589793 rad + pos: 17.5,-37.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16400 + color: '#FF1212FF' + - uid: 22249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-12.5 + rot: 3.141592653589793 rad + pos: 17.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16401 + color: '#FF1212FF' + - uid: 22250 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-12.5 + rot: 3.141592653589793 rad + pos: 17.5,-39.5 parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16402 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22256 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-12.5 + pos: 20.5,-41.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16403 + color: '#FF1212FF' + - uid: 22257 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-12.5 + pos: 20.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16404 + - uid: 22321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-12.5 + rot: 3.141592653589793 rad + pos: 13.5,24.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16405 + color: '#FF1212FF' + - uid: 22323 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-12.5 + rot: 3.141592653589793 rad + pos: 12.5,24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16406 + - uid: 22324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,-12.5 + rot: 3.141592653589793 rad + pos: 12.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16407 + - uid: 22325 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-12.5 + pos: 13.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16408 + - uid: 22328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-12.5 + rot: 3.141592653589793 rad + pos: 13.5,25.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16410 + color: '#FF1212FF' + - uid: 22330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-12.5 + pos: 12.5,26.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16428 + - uid: 22333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-12.5 + pos: 13.5,26.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16429 + color: '#FF1212FF' + - uid: 22342 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,-12.5 + pos: 20.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16432 + color: '#0055CCFF' + - uid: 22344 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-12.5 + pos: 19.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16434 + color: '#0055CCFF' + - uid: 22346 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,-12.5 + pos: 18.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16435 + color: '#0055CCFF' + - uid: 22348 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,-12.5 + pos: 22.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16436 + color: '#0055CCFF' + - uid: 22349 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,-12.5 + pos: 23.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16437 + color: '#0055CCFF' + - uid: 22350 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-11.5 + rot: -1.5707963267948966 rad + pos: 24.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16438 + color: '#0055CCFF' + - uid: 22351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-10.5 + rot: -1.5707963267948966 rad + pos: 25.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16439 + color: '#0055CCFF' + - uid: 22352 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-13.5 + rot: -1.5707963267948966 rad + pos: 26.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16440 + color: '#0055CCFF' + - uid: 22353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-14.5 + rot: -1.5707963267948966 rad + pos: 18.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 16458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-14.5 - parent: 2 - - uid: 16486 + color: '#FF1212FF' + - uid: 22354 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-11.5 + pos: 19.5,21.5 parent: 2 - - uid: 16642 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22355 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,11.5 + pos: 20.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16643 + color: '#FF1212FF' + - uid: 22356 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,10.5 + pos: 21.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16790 + - uid: 22357 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-2.5 + rot: -1.5707963267948966 rad + pos: 22.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16870 + color: '#FF1212FF' + - uid: 22359 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-1.5 + rot: -1.5707963267948966 rad + pos: 24.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16877 + color: '#FF1212FF' + - uid: 22360 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-3.5 + pos: 25.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 16878 + color: '#FF1212FF' + - uid: 22361 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-3.5 + pos: 26.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17332 + color: '#FF1212FF' + - uid: 22362 components: - type: Transform - pos: 5.5,11.5 + rot: 3.141592653589793 rad + pos: 31.5,18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17333 + - uid: 22364 components: - type: Transform - pos: 5.5,12.5 + rot: 3.141592653589793 rad + pos: 31.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17334 + - uid: 22365 components: - type: Transform - pos: 5.5,13.5 + rot: 1.5707963267948966 rad + pos: 27.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17335 + - uid: 22366 components: - type: Transform - pos: 5.5,15.5 + rot: 1.5707963267948966 rad + pos: 29.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17337 + - uid: 22367 components: - type: Transform - pos: 5.5,14.5 + rot: 1.5707963267948966 rad + pos: 30.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17338 + - uid: 22370 components: - type: Transform - pos: 2.5,13.5 + rot: 1.5707963267948966 rad + pos: 28.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17339 + - uid: 22371 components: - type: Transform - pos: 2.5,14.5 + rot: 1.5707963267948966 rad + pos: 29.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17340 + - uid: 22372 components: - type: Transform - pos: 2.5,15.5 + rot: 1.5707963267948966 rad + pos: 30.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17341 + - uid: 22373 components: - type: Transform - pos: 2.5,16.5 + rot: 1.5707963267948966 rad + pos: 31.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17354 + - uid: 22375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,17.5 + pos: 32.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17361 + color: '#0055CCFF' + - uid: 22376 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,18.5 + pos: 32.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17363 + color: '#0055CCFF' + - uid: 22377 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,20.5 + pos: 32.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17364 + color: '#0055CCFF' + - uid: 22379 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,21.5 + pos: 23.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17365 + - uid: 22384 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,22.5 + pos: 28.5,22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17369 + - uid: 22385 components: - type: Transform - pos: 4.5,18.5 + rot: 3.141592653589793 rad + pos: 27.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17370 + - uid: 22390 components: - type: Transform - pos: 4.5,19.5 + rot: 1.5707963267948966 rad + pos: 38.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17371 + color: '#FF1212FF' + - uid: 22396 components: - type: Transform - pos: 4.5,20.5 + rot: -1.5707963267948966 rad + pos: 32.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17372 + color: '#FF1212FF' + - uid: 22398 components: - type: Transform - pos: 4.5,21.5 + rot: -1.5707963267948966 rad + pos: 34.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17373 + color: '#FF1212FF' + - uid: 22399 components: - type: Transform - pos: 4.5,22.5 + rot: -1.5707963267948966 rad + pos: 35.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17374 + color: '#FF1212FF' + - uid: 22400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,25.5 + rot: -1.5707963267948966 rad + pos: 36.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17375 + color: '#FF1212FF' + - uid: 22401 components: - type: Transform - pos: 4.5,24.5 + rot: 1.5707963267948966 rad + pos: 40.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17377 + color: '#FF1212FF' + - uid: 22402 components: - type: Transform - pos: -1.5,24.5 + rot: -1.5707963267948966 rad + pos: 34.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17378 + - uid: 22403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,25.5 + pos: 35.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17379 + - uid: 22404 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,25.5 + pos: 36.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17380 + - uid: 22405 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,25.5 + pos: 37.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17381 + - uid: 22418 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,25.5 + pos: 45.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17382 + color: '#FF1212FF' + - uid: 22419 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,17.5 + pos: 44.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17383 + color: '#FF1212FF' + - uid: 22420 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,17.5 + pos: 43.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17384 + color: '#FF1212FF' + - uid: 22421 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,17.5 + pos: 41.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17385 + color: '#FF1212FF' + - uid: 22422 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,17.5 + pos: 42.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17386 + color: '#FF1212FF' + - uid: 22425 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,17.5 + pos: 43.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17387 + - uid: 22426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,18.5 + rot: -1.5707963267948966 rad + pos: 44.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17388 + - uid: 22427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,17.5 + rot: -1.5707963267948966 rad + pos: 45.5,20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17389 + - uid: 22428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,17.5 + pos: 32.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17390 + - uid: 22429 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,17.5 + pos: 39.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17391 + color: '#FF1212FF' + - uid: 22433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,17.5 + rot: 3.141592653589793 rad + pos: 37.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17394 + color: '#FF1212FF' + - uid: 22434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,16.5 + rot: 3.141592653589793 rad + pos: 37.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17395 + - uid: 22443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,16.5 + rot: -1.5707963267948966 rad + pos: 42.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17396 + color: '#0055CCFF' + - uid: 22444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,16.5 + rot: -1.5707963267948966 rad + pos: 38.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17397 + color: '#0055CCFF' + - uid: 22445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,16.5 + rot: -1.5707963267948966 rad + pos: 39.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17398 + color: '#0055CCFF' + - uid: 22446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,16.5 + rot: -1.5707963267948966 rad + pos: 40.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17399 + color: '#0055CCFF' + - uid: 22447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,16.5 + rot: 3.141592653589793 rad + pos: 41.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17400 + color: '#0055CCFF' + - uid: 22448 components: - type: Transform - pos: 12.5,17.5 + rot: 3.141592653589793 rad + pos: 41.5,19.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17401 + color: '#0055CCFF' + - uid: 22452 components: - type: Transform - pos: 12.5,18.5 + rot: -1.5707963267948966 rad + pos: 46.5,20.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17402 + color: '#0055CCFF' + - uid: 22563 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,19.5 + pos: -35.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17403 + - uid: 22571 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,19.5 + pos: -34.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17404 + - uid: 22573 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,20.5 + rot: -1.5707963267948966 rad + pos: -35.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17405 + color: '#0055CCFF' + - uid: 22581 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,21.5 + pos: -37.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17406 + - uid: 22582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,22.5 + rot: -1.5707963267948966 rad + pos: -38.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17411 + - uid: 22583 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,25.5 + pos: -39.5,-54.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17412 + color: '#FF1212FF' + - uid: 22584 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,25.5 + pos: -39.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17413 + - uid: 22585 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,25.5 + pos: -37.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17414 + - uid: 22586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,25.5 + rot: 3.141592653589793 rad + pos: -38.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17415 + - uid: 22587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,25.5 + rot: 3.141592653589793 rad + pos: -38.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17416 + - uid: 22588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,25.5 + rot: 3.141592653589793 rad + pos: -38.5,-52.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17417 + - uid: 22592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,25.5 + rot: 1.5707963267948966 rad + pos: -40.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17418 + - uid: 22593 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,25.5 + pos: -41.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17421 + - uid: 22594 components: - type: Transform - pos: 13.5,24.5 + pos: -41.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17425 + - uid: 22595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,16.5 + pos: -40.5,-53.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17426 +- proto: GasPipeTJunction + entities: + - uid: 129 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,16.5 + rot: 3.141592653589793 rad + pos: 29.5,-33.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17427 + color: '#0055CCFF' + - uid: 555 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,16.5 + pos: -14.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17428 + - uid: 1249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,16.5 + rot: 3.141592653589793 rad + pos: -1.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17429 + - uid: 1308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,16.5 + rot: 3.141592653589793 rad + pos: 8.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17430 + - uid: 1445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,16.5 + rot: 1.5707963267948966 rad + pos: 36.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17433 + color: '#0055CCFF' + - uid: 1447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,17.5 + pos: -1.5,-10.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17434 + color: '#03FCD3FF' + - uid: 1605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-1.5 + parent: 2 + - uid: 1715 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,17.5 + pos: -9.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17435 + - uid: 1736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,17.5 + pos: -29.5,-24.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17436 + color: '#0055CCFF' + - uid: 1753 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,17.5 + pos: -27.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17438 + - uid: 1778 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,18.5 + pos: -8.5,-6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17439 + - uid: 1830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,18.5 + pos: -11.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17440 + color: '#FF1212FF' + - uid: 1924 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,18.5 + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17441 + - uid: 2028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,18.5 + rot: 3.141592653589793 rad + pos: -10.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17442 + color: '#FF1212FF' + - uid: 2099 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,18.5 + pos: -7.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17557 + - uid: 2100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-25.5 + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17558 + - uid: 2127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-26.5 + pos: 9.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17559 + - uid: 2137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 34.5,-26.5 + pos: -8.5,-17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17857 + - uid: 2319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-13.5 + pos: 8.5,-18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17876 + color: '#0055CCFF' + - uid: 2371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-14.5 + pos: -19.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17877 + - uid: 2391 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-14.5 + pos: -8.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17879 + - uid: 2425 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-14.5 + rot: -1.5707963267948966 rad + pos: -8.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17882 + color: '#0055CCFF' + - uid: 2531 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-14.5 + pos: -15.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17888 + - uid: 2571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-14.5 + rot: -1.5707963267948966 rad + pos: 11.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18551 + color: '#0055CCFF' + - uid: 2597 components: - type: Transform - pos: 9.5,-43.5 + rot: 1.5707963267948966 rad + pos: 9.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 18580 + - uid: 3042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-10.5 + rot: 1.5707963267948966 rad + pos: 29.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18581 + - uid: 3494 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-12.5 + pos: -5.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18584 + color: '#FF1212FF' + - uid: 4041 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-15.5 + rot: -1.5707963267948966 rad + pos: -6.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 18604 + color: '#FF1212FF' + - uid: 4174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-1.5 + rot: -1.5707963267948966 rad + pos: 33.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 18851 + - uid: 4247 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-37.5 + pos: -28.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 18892 + color: '#0055CCFF' + - uid: 4249 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,0.5 - parent: 2 - - uid: 18921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-0.5 + pos: 35.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 18922 + - uid: 4276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,0.5 + rot: -1.5707963267948966 rad + pos: 11.5,-39.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19290 + - uid: 4285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-2.5 + rot: -1.5707963267948966 rad + pos: 9.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19291 + - uid: 4286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,0.5 + rot: -1.5707963267948966 rad + pos: 9.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19982 + - uid: 4288 components: - type: Transform - pos: -12.5,-12.5 + rot: -1.5707963267948966 rad + pos: 11.5,-34.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 19986 + color: '#0055CCFF' + - uid: 4297 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-14.5 + rot: -1.5707963267948966 rad + pos: 11.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19987 + - uid: 4304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-13.5 + rot: -1.5707963267948966 rad + pos: 9.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19988 + color: '#FF1212FF' + - uid: 4306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 + rot: -1.5707963267948966 rad + pos: 9.5,-30.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 19989 + color: '#FF1212FF' + - uid: 4313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 + pos: 34.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 20138 + - uid: 4314 components: - type: Transform - pos: -22.5,-37.5 + pos: 33.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' -- proto: GasPipeTJunction - entities: - - uid: 36 + color: '#FF1212FF' + - uid: 4432 components: - type: Transform - pos: 30.5,-4.5 + rot: -1.5707963267948966 rad + pos: 33.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 129 + - uid: 4444 components: - type: Transform rot: 3.141592653589793 rad - pos: 29.5,-33.5 + pos: 30.5,-20.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 555 + color: '#FF1212FF' + - uid: 4457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-1.5 + rot: 1.5707963267948966 rad + pos: 34.5,-35.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1265 + - uid: 4566 components: - type: Transform - pos: -41.5,-40.5 + pos: -22.5,-48.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1445 + - uid: 4567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-7.5 + rot: 3.141592653589793 rad + pos: -36.5,-14.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1605 + - uid: 4759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + rot: -1.5707963267948966 rad + pos: -24.5,-45.5 parent: 2 - - uid: 1610 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-1.5 + pos: -11.5,-38.5 parent: 2 - - uid: 1715 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5528 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-3.5 + rot: 3.141592653589793 rad + pos: 12.5,10.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1778 + - uid: 5553 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-6.5 + pos: -9.5,-7.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1830 + color: '#FF1212FF' + - uid: 5760 components: - type: Transform - pos: -11.5,-7.5 + pos: 28.5,-20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1919 + - uid: 5854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -43.5,-30.5 + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1924 + - uid: 6270 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-3.5 + pos: -7.5,-13.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1926 + - uid: 6317 components: - type: Transform - pos: -45.5,-30.5 + rot: -1.5707963267948966 rad + pos: -22.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2028 + color: '#0055CCFF' + - uid: 6395 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-11.5 + pos: 2.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2099 + - uid: 6498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 + pos: 11.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2100 + - uid: 6571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-20.5 + rot: -1.5707963267948966 rad + pos: -26.5,2.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2137 + - uid: 6582 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-17.5 + pos: -15.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2337 + - uid: 6583 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-12.5 + pos: -17.5,-15.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2371 + - uid: 6584 components: - type: Transform - pos: -19.5,-1.5 + rot: -1.5707963267948966 rad + pos: -24.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2391 + - uid: 6686 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-18.5 + pos: 9.5,-21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2425 + - uid: 6797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-8.5 + pos: 29.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2520 + color: '#FF1212FF' + - uid: 6821 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6826 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-30.5 + pos: 28.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2531 + - uid: 6874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-7.5 + pos: -13.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7008 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 7033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-18.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2532 + - uid: 7038 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-27.5 + pos: -24.5,-9.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2533 + color: '#FF1212FF' + - uid: 7153 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,-23.5 + pos: 19.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2534 + - uid: 7347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-25.5 + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2560 + - uid: 7355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-31.5 + pos: 32.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2571 + - uid: 7357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-47.5 + pos: 14.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2597 + - uid: 7478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-36.5 + rot: -1.5707963267948966 rad + pos: -24.5,-4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2605 + - uid: 7479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-49.5 + rot: -1.5707963267948966 rad + pos: -26.5,-3.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 2747 + color: '#0055CCFF' + - uid: 7483 components: - type: Transform - pos: -36.5,-22.5 + rot: 1.5707963267948966 rad + pos: 17.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2919 + - uid: 7488 components: - type: Transform - pos: 16.5,-42.5 + rot: 3.141592653589793 rad + pos: 12.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 3042 + color: '#FF1212FF' + - uid: 7594 components: - type: Transform rot: 1.5707963267948966 rad - pos: 29.5,-27.5 + pos: -26.5,3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3068 + - uid: 7751 components: - type: Transform - pos: -29.5,-31.5 + rot: 3.141592653589793 rad + pos: -29.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3117 + - uid: 7827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-7.5 + rot: 1.5707963267948966 rad + pos: -24.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3561 + - uid: 7930 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-46.5 + pos: -32.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4041 + color: '#FF1212FF' + - uid: 7978 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-38.5 + pos: 30.5,1.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4174 + - uid: 7987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-41.5 + rot: 1.5707963267948966 rad + pos: -8.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4236 + - uid: 8128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-0.5 + rot: 3.141592653589793 rad + pos: 34.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4247 + - uid: 8293 components: - type: Transform - pos: -28.5,-3.5 + pos: -30.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 4249 + color: '#FF1212FF' + - uid: 8413 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-37.5 + rot: -1.5707963267948966 rad + pos: 32.5,-3.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4276 + - uid: 8414 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-39.5 + pos: 33.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4285 + - uid: 8595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-33.5 + rot: 1.5707963267948966 rad + pos: -42.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4286 + - uid: 8603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-38.5 + rot: 1.5707963267948966 rad + pos: 31.5,14.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4288 + - uid: 8604 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-34.5 + pos: 32.5,-9.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4297 + - uid: 8658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-31.5 + pos: 34.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4304 + - uid: 8680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-27.5 + rot: 3.141592653589793 rad + pos: 17.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4306 + - uid: 8694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-30.5 + pos: 19.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4313 + color: '#0055CCFF' + - uid: 8726 components: - type: Transform - pos: 34.5,-22.5 + rot: -1.5707963267948966 rad + pos: 11.5,-45.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4314 + - uid: 8730 components: - type: Transform - pos: 33.5,-20.5 + rot: -1.5707963267948966 rad + pos: -42.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4379 + - uid: 8733 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-14.5 + pos: -48.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4383 + - uid: 8734 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-15.5 + pos: -48.5,-26.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4432 + color: '#0055CCFF' + - uid: 8735 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-44.5 + pos: -47.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4444 + - uid: 8737 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-20.5 + rot: -1.5707963267948966 rad + pos: 30.5,-8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4457 + - uid: 8744 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-35.5 + pos: 14.5,-44.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4472 + - uid: 9418 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-41.5 + pos: 33.5,8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4566 + color: '#0055CCFF' + - uid: 9436 components: - type: Transform - pos: -22.5,-48.5 + pos: 15.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4979 + color: '#0055CCFF' + - uid: 9454 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-21.5 + pos: 30.5,-11.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5182 + color: '#FF1212FF' + - uid: 9466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-42.5 + rot: -1.5707963267948966 rad + pos: 17.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 5318 + color: '#FF1212FF' + - uid: 9548 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-38.5 + pos: -44.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5553 + - uid: 9634 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-7.5 + pos: -16.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5758 + color: '#0055CCFF' + - uid: 10163 components: - type: Transform - pos: -0.5,-9.5 + rot: -1.5707963267948966 rad + pos: -45.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 5760 + - uid: 10167 components: - type: Transform - pos: 28.5,-20.5 + rot: 1.5707963267948966 rad + pos: -34.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 5824 + color: '#0055CCFF' + - uid: 10415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-45.5 + rot: 3.141592653589793 rad + pos: -42.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6195 + color: '#03FCD3FF' + - uid: 10558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-42.5 + pos: 27.5,8.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6206 + - uid: 10595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-7.5 + rot: -1.5707963267948966 rad + pos: 9.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6570 + - uid: 10596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-55.5 + pos: 0.5,-49.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6571 + - uid: 10718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,2.5 + rot: 3.141592653589793 rad + pos: -1.5,10.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 6704 + color: '#FF1212FF' + - uid: 10987 components: - type: Transform - pos: 15.5,-32.5 + pos: 2.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6797 + color: '#0055CCFF' + - uid: 10992 components: - type: Transform - pos: 29.5,-35.5 + pos: 19.5,5.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6821 + - uid: 11041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-28.5 + pos: 21.5,7.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6826 + color: '#0055CCFF' + - uid: 11101 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,-31.5 + pos: -43.5,-38.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6874 + color: '#03FCD3FF' + - uid: 11119 components: - type: Transform - pos: -13.5,-20.5 + rot: 1.5707963267948966 rad + pos: -8.5,-57.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7020 + color: '#FF1212FF' + - uid: 11120 components: - type: Transform - pos: -7.5,-12.5 + pos: -6.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7033 + - uid: 11178 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-18.5 + pos: 33.5,1.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7038 + color: '#0055CCFF' + - uid: 11298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-9.5 + rot: 1.5707963267948966 rad + pos: -6.5,-55.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 7449 + color: '#0055CCFF' + - uid: 11385 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-31.5 + pos: -28.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7474 + - uid: 11425 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-31.5 + pos: -33.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7478 + - uid: 11430 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-4.5 + pos: -32.5,-51.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7479 + - uid: 11468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-3.5 + rot: 3.141592653589793 rad + pos: -28.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 7594 + color: '#FF1212FF' + - uid: 11517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,3.5 + rot: -1.5707963267948966 rad + pos: -34.5,-54.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7827 + - uid: 11590 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,5.5 + pos: 9.5,-61.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7970 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 7995 + - uid: 11619 components: - type: Transform - pos: -38.5,-29.5 + rot: -1.5707963267948966 rad + pos: -24.5,4.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8031 + - uid: 11929 components: - type: Transform - pos: -44.5,-31.5 + pos: -20.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8128 + - uid: 11993 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-30.5 + rot: 1.5707963267948966 rad + pos: -45.5,-36.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 8182 + color: '#03FCD3FF' + - uid: 12196 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-53.5 + pos: -7.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 8293 + color: '#0055CCFF' + - uid: 12395 components: - type: Transform - pos: -30.5,-4.5 + rot: 1.5707963267948966 rad + pos: -34.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8336 + - uid: 12396 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-33.5 + pos: -34.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8658 + - uid: 12399 components: - type: Transform - pos: 34.5,-38.5 + pos: -31.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9268 + color: '#FF1212FF' + - uid: 12454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-52.5 + rot: 1.5707963267948966 rad + pos: -44.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9324 + - uid: 12455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-49.5 + rot: -1.5707963267948966 rad + pos: -42.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9373 + - uid: 12458 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-33.5 + pos: -44.5,-32.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9436 + - uid: 12461 components: - type: Transform - pos: 15.5,-42.5 + rot: -1.5707963267948966 rad + pos: -42.5,-28.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9489 + color: '#FF1212FF' + - uid: 12472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-36.5 + pos: -39.5,-27.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 9509 + color: '#FF1212FF' + - uid: 12473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-36.5 + rot: 3.141592653589793 rad + pos: -39.5,-32.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 9634 + color: '#0055CCFF' + - uid: 12474 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-0.5 + pos: -44.5,-31.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10699 + - uid: 12683 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-29.5 + pos: -47.5,-28.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10718 + - uid: 12684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,10.5 + rot: 1.5707963267948966 rad + pos: -48.5,-31.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11619 + color: '#0055CCFF' + - uid: 12699 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,4.5 + pos: -14.5,-0.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 11929 + - uid: 12904 components: - type: Transform - pos: -20.5,-0.5 + rot: -1.5707963267948966 rad + pos: -48.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12134 + - uid: 12905 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-41.5 + pos: -47.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12442 + - uid: 12952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 + rot: 3.141592653589793 rad + pos: -55.5,-30.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12446 + - uid: 12967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,6.5 + rot: 3.141592653589793 rad + pos: -54.5,-29.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12699 + - uid: 13237 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-0.5 + pos: 30.5,-7.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-31.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-18.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13216 + - uid: 13242 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,-0.5 + pos: -47.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -82344,22 +90761,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13397 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13402 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-62.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13419 components: - type: Transform @@ -82538,113 +90939,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-19.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13677 - components: - - type: Transform - pos: 11.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13678 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13706 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-11.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13726 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13727 - components: - - type: Transform - pos: 32.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13735 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13743 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13773 - components: - - type: Transform - pos: 23.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13774 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13787 - components: - - type: Transform - pos: 20.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13824 components: - type: Transform @@ -82660,50 +90954,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13858 + - uid: 13868 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,-54.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13859 - components: - - type: Transform - pos: -29.5,-46.5 + pos: -47.5,-33.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13865 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13866 + - uid: 13870 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-58.5 + pos: -48.5,-36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13867 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,-57.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13904 + - uid: 13928 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-45.5 + pos: -47.5,-38.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -82723,14 +90994,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13975 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13977 components: - type: Transform @@ -82775,22 +91038,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14061 + - uid: 14088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,1.5 + rot: 3.141592653589793 rad + pos: -49.5,-23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14062 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14092 components: - type: Transform @@ -82799,22 +91054,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14110 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,29.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14125 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,27.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14140 components: - type: Transform @@ -82823,38 +91062,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14150 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14151 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-0.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14192 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,1.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 14216 components: - type: Transform @@ -82886,21 +91093,29 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14365 + - uid: 14374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-13.5 + pos: -3.5,12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14374 + - uid: 14404 components: - type: Transform - pos: -3.5,12.5 + rot: 1.5707963267948966 rad + pos: -34.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 14416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14418 components: - type: Transform @@ -82917,6 +91132,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14450 components: - type: Transform @@ -82925,6 +91148,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-72.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 14547 components: - type: Transform @@ -83012,6 +91243,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-70.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14682 components: - type: Transform @@ -83028,353 +91267,457 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14687 + - uid: 14697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-29.5 + rot: 1.5707963267948966 rad + pos: -24.5,-27.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14692 + - uid: 14732 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-31.5 + rot: 1.5707963267948966 rad + pos: -34.5,-62.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14697 + - uid: 14737 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-27.5 + pos: -34.5,-50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-57.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14738 + - uid: 14843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-34.5 + rot: 1.5707963267948966 rad + pos: 16.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14745 + - uid: 14869 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-35.5 + rot: 1.5707963267948966 rad + pos: -44.5,-24.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14751 + - uid: 14870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-34.5 + rot: -1.5707963267948966 rad + pos: -42.5,-22.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14752 + - uid: 14958 components: - type: Transform - pos: -32.5,-35.5 + pos: 10.5,-47.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14766 + - uid: 15080 components: - type: Transform - pos: -36.5,-31.5 + rot: 3.141592653589793 rad + pos: -10.5,-42.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14768 + color: '#FF1212FF' + - uid: 15083 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,-29.5 + pos: -11.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-42.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14780 + - uid: 15106 components: - type: Transform - pos: -31.5,-29.5 + rot: 3.141592653589793 rad + pos: -6.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14855 + - uid: 15161 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-35.5 + pos: 32.5,-16.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14886 + - uid: 15191 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-42.5 + pos: -14.5,8.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14922 + - uid: 15277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 15320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-43.5 + pos: -16.5,6.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14923 + - uid: 15470 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-42.5 + pos: -26.5,-8.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 14958 + color: '#0055CCFF' + - uid: 15893 components: - type: Transform - pos: 10.5,-47.5 + rot: 3.141592653589793 rad + pos: -38.5,-4.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14982 + color: '#FF1212FF' + - uid: 15935 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-47.5 + pos: -8.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 14992 + color: '#FF1212FF' + - uid: 16127 components: - type: Transform - pos: -4.5,-47.5 + pos: -30.5,-40.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15000 + - uid: 16431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-49.5 + pos: -60.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 16917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15005 + - uid: 17362 components: - type: Transform - pos: -8.5,-48.5 + rot: -1.5707963267948966 rad + pos: 5.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15015 + - uid: 17366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-54.5 + pos: 2.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15053 + - uid: 17367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-61.5 + rot: 3.141592653589793 rad + pos: 4.5,17.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15067 + color: '#0055CCFF' + - uid: 17376 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-62.5 + pos: 4.5,23.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15080 + - uid: 17392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17410 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17795 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-42.5 + pos: -11.5,-11.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15083 + - uid: 17798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17881 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-40.5 + pos: -8.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15102 + - uid: 18591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-42.5 + rot: 1.5707963267948966 rad + pos: 19.5,-39.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15106 + color: '#0055CCFF' + - uid: 21066 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-41.5 + pos: 2.5,-56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 21073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-56.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15161 + - uid: 21077 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,-16.5 + pos: 11.5,-59.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15191 + - uid: 21133 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,8.5 + pos: -6.5,-61.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 15277 + color: '#0055CCFF' + - uid: 21419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,10.5 + rot: -1.5707963267948966 rad + pos: 9.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15320 + - uid: 21950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,6.5 + rot: -1.5707963267948966 rad + pos: 12.5,25.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15470 + - uid: 22235 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-8.5 + pos: 19.5,-37.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15893 + - uid: 22236 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-4.5 + rot: -1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22237 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-41.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16378 + - uid: 22247 components: - type: Transform - pos: -20.5,-14.5 + rot: -1.5707963267948966 rad + pos: 17.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22320 + components: + - type: Transform + pos: 15.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16431 + - uid: 22343 components: - type: Transform - pos: -60.5,-12.5 + rot: 3.141592653589793 rad + pos: 21.5,22.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 17362 + color: '#0055CCFF' + - uid: 22363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,19.5 + rot: 1.5707963267948966 rad + pos: 31.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17366 + - uid: 22368 components: - type: Transform - pos: 2.5,17.5 + rot: 3.141592653589793 rad + pos: 27.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17367 + - uid: 22369 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,17.5 + pos: 28.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17376 + color: '#FF1212FF' + - uid: 22378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,23.5 + rot: 3.141592653589793 rad + pos: 23.5,21.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 17392 + color: '#FF1212FF' + - uid: 22391 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,18.5 + pos: 32.5,22.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17410 + - uid: 22394 components: - type: Transform - pos: 4.5,25.5 + pos: 33.5,17.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17795 + - uid: 22397 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-11.5 + pos: 33.5,19.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17798 + - uid: 22409 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,-11.5 + pos: 32.5,18.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 17834 + color: '#0055CCFF' + - uid: 22423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-14.5 + rot: 1.5707963267948966 rad + pos: 37.5,21.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17880 + - uid: 22424 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-14.5 + pos: 37.5,20.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17881 + - uid: 22442 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22577 + components: + - type: Transform + pos: -37.5,-52.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22580 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-12.5 + pos: -38.5,-55.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -83416,12 +91759,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4105 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-37.5 - parent: 2 - uid: 4495 components: - type: Transform @@ -83458,46 +91795,65 @@ entities: rot: 1.5707963267948966 rad pos: 31.5,-45.5 parent: 2 - - uid: 5025 + - uid: 6197 components: - type: Transform - pos: -30.5,-19.5 + rot: 3.141592653589793 rad + pos: 29.5,-45.5 parent: 2 - - uid: 5252 + - uid: 8761 components: - type: Transform - pos: -29.5,-19.5 + pos: -2.5,-7.5 parent: 2 - - uid: 6041 + - uid: 9267 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-7.5 + pos: -3.5,-10.5 parent: 2 - - uid: 6197 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 10060 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-45.5 + rot: 1.5707963267948966 rad + pos: -3.5,-8.5 parent: 2 - - uid: 10058 + - uid: 10537 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,8.5 + pos: 29.5,-8.5 parent: 2 - - uid: 11429 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 2 + - uid: 13036 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-9.5 + pos: -52.5,-38.5 parent: 2 - - uid: 11431 + - uid: 13037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-8.5 + pos: -52.5,-37.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-7.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 16447 components: - type: Transform @@ -83512,12 +91868,54 @@ entities: parent: 2 - proto: GasPressurePump entities: - - uid: 544 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - 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: 5.5,-2.5 + 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 @@ -83567,12 +91965,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-3.5 - parent: 2 - uid: 4517 components: - type: Transform @@ -83585,47 +91977,6 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-46.5 parent: 2 - - uid: 4558 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 4572 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 4999 - components: - - type: MetaData - name: From Distro - - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-22.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5244 - components: - - type: Transform - pos: -29.5,-20.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 5756 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-7.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 6597 components: - type: Transform @@ -83634,52 +91985,26 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 6711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 6712 + - uid: 9118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-9.5 + pos: 10.5,0.5 parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 6715 + - uid: 10122 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-10.5 + pos: 3.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 7727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-37.5 - parent: 2 - - uid: 11384 - components: - - type: MetaData - name: TEG Supply - - type: Transform - pos: 2.5,-4.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 11904 + - uid: 12512 components: - type: Transform - pos: -30.5,-20.5 + pos: -44.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 15216 components: - type: Transform @@ -83711,19 +92036,13 @@ entities: - type: Transform pos: 32.5,-40.5 parent: 2 - - uid: 4978 + - uid: 14822 components: - type: Transform - pos: -34.5,-20.5 + pos: -45.5,-34.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9639 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,8.5 - parent: 2 - uid: 16001 components: - type: Transform @@ -83751,33 +92070,42 @@ entities: parent: 2 - proto: GasValve entities: - - uid: 1710 + - uid: 5538 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11098 + components: + - type: Transform + rot: 1.5707963267948966 rad pos: 5.5,0.5 parent: 2 - - type: GasValve - open: False - - uid: 16376 +- proto: GasVentPump + entities: + - uid: 592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-15.5 + rot: 1.5707963267948966 rad + pos: -37.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 9278 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasVentPump - entities: - - uid: 13 + - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-45.5 + pos: 31.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 15421 - type: AtmosPipeColor color: '#0055CCFF' - uid: 690 @@ -83835,16 +92163,6 @@ entities: - 5565 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1328 - components: - - type: Transform - pos: -41.5,-42.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14939 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 1585 components: - type: Transform @@ -83856,27 +92174,6 @@ entities: - 13796 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 1695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-45.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15139 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 1909 - components: - - type: Transform - pos: -51.5,-26.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 12728 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 2034 components: - type: Transform @@ -83898,45 +92195,26 @@ entities: - 81 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2394 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2352 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2413 - components: - - type: Transform - pos: -1.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 2528 + - uid: 2173 components: - type: Transform - pos: -43.5,-22.5 + rot: 1.5707963267948966 rad + pos: 5.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 + - 11632 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2746 + - uid: 2394 components: - type: Transform - pos: -39.5,-22.5 + rot: -1.5707963267948966 rad + pos: -25.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14940 + - 11724 - type: AtmosPipeColor color: '#0055CCFF' - uid: 3201 @@ -83950,15 +92228,14 @@ entities: - 18900 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 3932 + - uid: 3378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-42.5 + pos: -28.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 15894 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4410 @@ -83994,15 +92271,15 @@ entities: - 14595 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4653 + - uid: 4689 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,-0.5 + pos: -7.5,-61.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14167 + - 5030 - type: AtmosPipeColor color: '#0055CCFF' - uid: 4794 @@ -84027,6 +92304,17 @@ entities: - 20239 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5473 components: - type: Transform @@ -84037,6 +92325,50 @@ entities: - 15139 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 5609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14004 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2583 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15894 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 6613 components: - type: Transform @@ -84092,179 +92424,188 @@ entities: - 13657 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7490 + - uid: 7862 components: - type: Transform - pos: -27.5,-26.5 + rot: 3.141592653589793 rad + pos: 19.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14783 + - 22071 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8056 + - uid: 8146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-34.5 + rot: -1.5707963267948966 rad + pos: 30.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 + - 8983 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8069 + - uid: 8410 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-31.5 + pos: 10.5,-69.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 + - 9393 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8135 + - uid: 8468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-30.5 + rot: 3.141592653589793 rad + pos: -7.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 + - 3489 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8146 + - uid: 8498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-33.5 + rot: 1.5707963267948966 rad + pos: 28.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 4428 + - 8983 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8168 + - uid: 9161 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-35.5 + pos: 32.5,12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14163 + - 14085 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8214 + - uid: 9373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-54.5 + rot: 1.5707963267948966 rad + pos: 31.5,-3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2080 + - 14085 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8468 + - uid: 9406 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-25.5 + pos: -28.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3489 + - 15937 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8498 + - uid: 9438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 28.5,-33.5 + pos: 14.5,-46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 4428 + - 15205 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9438 + - uid: 9861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-46.5 + rot: -1.5707963267948966 rad + pos: 12.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13662 + - 11632 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9455 + - uid: 10103 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-48.5 + rot: 1.5707963267948966 rad + pos: -29.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15205 + - 11724 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9507 + - uid: 10202 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-39.5 + rot: -1.5707963267948966 rad + pos: -28.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3053 + - 14210 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9508 + - uid: 10520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-36.5 + rot: 1.5707963267948966 rad + pos: -54.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3053 + - 7632 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10415 + - uid: 10573 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-10.5 + pos: 10.5,-59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 9393 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11354 + - uid: 11277 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-37.5 + pos: -10.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13658 + - 15139 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11498 + - uid: 11354 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,4.5 + rot: -1.5707963267948966 rad + pos: 38.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14085 + - 13658 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11988 @@ -84277,81 +92618,83 @@ entities: - 8606 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12508 + - uid: 12170 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,-37.5 + pos: -38.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 + - 14210 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 12654 + - uid: 12184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,3.5 + rot: 3.141592653589793 rad + pos: -7.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2697 + - 2583 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13076 + - uid: 12397 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-18.5 + pos: -34.5,-30.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13683 + - 16062 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13212 + - uid: 12421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-3.5 + pos: -39.5,-31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15422 + - 15862 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13361 + - uid: 12519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-15.5 + rot: -1.5707963267948966 rad + pos: -43.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 7123 + - 16096 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13370 + - uid: 12654 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-52.5 + pos: -39.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15188 + - 2697 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13407 + - uid: 13050 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-43.5 + pos: -55.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,-30.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 13662 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13412 @@ -84362,7 +92705,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7178 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13433 @@ -84373,7 +92716,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 + - 15331 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13446 @@ -84494,15 +92837,14 @@ entities: - 13638 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13681 + - uid: 13680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-18.5 + pos: -49.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13683 + - 7632 - type: AtmosPipeColor color: '#0055CCFF' - uid: 13686 @@ -84515,28 +92857,6 @@ entities: - 29 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-13.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15421 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13781 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-8.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14169 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13822 components: - type: Transform @@ -84557,47 +92877,6 @@ entities: - 13846 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13850 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13851 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-58.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13853 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 13913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13955 components: - type: Transform @@ -84606,17 +92885,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13972 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 13993 components: - type: Transform @@ -84650,69 +92918,70 @@ entities: - 14047 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14057 + - uid: 14055 components: - type: Transform - pos: 28.5,1.5 + rot: 1.5707963267948966 rad + pos: -50.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14059 + - 14915 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14080 + - uid: 14057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,1.5 + rot: 1.5707963267948966 rad + pos: -49.5,-34.5 parent: 2 - type: DeviceNetwork deviceLists: - - 409 + - 14915 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14095 + - uid: 14063 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,13.5 + pos: -49.5,-26.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14085 + - 14915 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14158 + - uid: 14080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,10.5 + rot: -1.5707963267948966 rad + pos: 37.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5138 + - 409 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14162 + - uid: 14144 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,1.5 + pos: -49.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14167 + - 16098 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14184 + - uid: 14158 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,1.5 + pos: 28.5,10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 38 + - 22510 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14325 @@ -84811,7 +93080,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17658 + - 10102 - type: AtmosPipeColor color: '#0055CCFF' - uid: 14671 @@ -84832,429 +93101,568 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15673 + - 10102 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14747 + - uid: 14868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-37.5 + pos: -43.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14765 + - 15862 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14748 + - uid: 14884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15869 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14885 + components: + - type: Transform + pos: -44.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15869 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,-35.5 + pos: -35.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14765 + - 15875 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14750 + - uid: 14984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14795 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15007 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-38.5 + pos: 10.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14765 + - 2583 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14782 + - uid: 15018 components: - type: Transform - pos: -33.5,-30.5 + pos: -26.5,16.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2564 + - 13089 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14871 + - uid: 15136 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-42.5 + pos: -7.5,-32.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14939 + - 17576 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14921 + - uid: 15279 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-46.5 + rot: -1.5707963267948966 rad + pos: -29.5,-62.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14957 + - 15287 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14933 + - uid: 15912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16128 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-46.5 + pos: -30.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14953 + - 7931 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14934 + - uid: 16165 components: - type: Transform - pos: -50.5,-40.5 + rot: -1.5707963267948966 rad + pos: -33.5,-50.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14953 + - 9309 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 14944 + - uid: 16178 components: - type: Transform - pos: -37.5,-26.5 + rot: -1.5707963267948966 rad + pos: -33.5,-55.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14940 + - 9309 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15007 + - uid: 16246 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-48.5 + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14980 + - 11724 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15008 + - uid: 16247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-63.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9309 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-72.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-79.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12518 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16446 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17344 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-48.5 + pos: -3.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14980 + - 17348 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15018 + - uid: 17345 components: - type: Transform - pos: -26.5,16.5 + rot: 3.141592653589793 rad + pos: 10.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13089 + - 17348 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15044 + - uid: 17356 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-67.5 + pos: -1.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15050 + - 17352 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15047 + - uid: 17357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-61.5 + pos: 10.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15050 + - 17351 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15068 + - uid: 17358 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17351 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17360 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-62.5 + pos: 3.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15074 + - 17352 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15069 + - uid: 17443 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-68.5 + pos: -7.5,17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15074 + - 17445 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15116 + - uid: 17560 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-38.5 + pos: 36.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15139 + - 13655 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15136 + - uid: 19969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-32.5 + rot: 3.141592653589793 rad + pos: -28.5,-5.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17576 + - 2697 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15249 + - uid: 19984 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,29.5 + pos: -12.5,-15.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15260 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15250 + - uid: 20727 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,38.5 + pos: -21.5,-4.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15260 + - 2670 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15269 + - uid: 20834 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-3.5 + pos: -7.5,-69.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15422 + - 5030 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 15912 + - uid: 21068 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-39.5 + pos: 1.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 3722 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16246 + - uid: 21069 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-8.5 + pos: 5.5,-56.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 3722 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16247 + - uid: 21422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 + rot: 1.5707963267948966 rad + pos: 7.5,-45.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 7178 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 16421 + - uid: 21423 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-12.5 + pos: 7.5,-42.5 parent: 2 - type: DeviceNetwork deviceLists: - - 16446 + - 7178 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17344 + - uid: 21801 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,11.5 + pos: 21.5,2.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17348 + - 9147 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17345 + - uid: 21816 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,11.5 + pos: 27.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17348 + - 10105 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17356 + - uid: 21848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,23.5 + pos: 12.5,27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17352 + - 21678 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17357 + - uid: 22073 components: - type: Transform - pos: 10.5,19.5 + rot: 3.141592653589793 rad + pos: 32.5,7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17351 + - 14085 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17358 + - uid: 22230 components: - type: Transform - pos: -1.5,19.5 + rot: 1.5707963267948966 rad + pos: 18.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17351 + - 22255 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17360 + - uid: 22231 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,23.5 + pos: 15.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17352 + - 22255 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17393 + - uid: 22234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,23.5 + rot: -1.5707963267948966 rad + pos: 21.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17353 + - 22255 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17443 + - uid: 22258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22255 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22331 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,17.5 + pos: 15.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17445 + - 21678 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17560 + - uid: 22345 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14943 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22388 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-25.5 + pos: 28.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13655 + - 22438 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 17886 + - uid: 22395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-13.5 + rot: 1.5707963267948966 rad + pos: 31.5,18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13798 + - 22438 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19969 + - uid: 22431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-5.5 + rot: -1.5707963267948966 rad + pos: 33.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2697 + - 22432 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 19984 + - uid: 22440 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-15.5 + pos: 40.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13798 + - 22439 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 20727 + - uid: 22450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-4.5 + pos: 47.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2670 + - 22439 - type: AtmosPipeColor color: '#0055CCFF' -- proto: GasVentPumpVox - entities: - - uid: 1134 + - uid: 22579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-12.5 + pos: -38.5,-51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22597 + components: + - type: Transform + pos: -41.5,-52.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasVentScrubber entities: - uid: 131 @@ -85268,15 +93676,26 @@ entities: - 13800 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 312 + - uid: 580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-35.5 + rot: -1.5707963267948966 rad + pos: 32.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-15.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 + - 9278 - type: AtmosPipeColor color: '#FF1212FF' - uid: 678 @@ -85299,6 +93718,25 @@ entities: - 2697 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 1016 components: - type: Transform @@ -85332,17 +93770,6 @@ entities: - 13549 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1327 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-41.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14939 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 1569 components: - type: Transform @@ -85354,16 +93781,6 @@ entities: - 13796 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 1800 - components: - - type: Transform - pos: -3.5,-10.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13793 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 2074 components: - type: Transform @@ -85375,14 +93792,15 @@ entities: - 81 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2542 + - uid: 2176 components: - type: Transform - pos: -44.5,-22.5 + rot: 3.141592653589793 rad + pos: 4.5,-18.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 + - 11632 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2752 @@ -85406,68 +93824,46 @@ entities: - 13089 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 2966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-34.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14765 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3066 + - uid: 3375 components: - type: Transform - pos: -33.5,-33.5 + pos: -27.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14765 + - 15894 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 3639 + - uid: 3376 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,-9.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 2352 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 3667 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,6.5 + pos: -28.5,-24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14085 + - 15894 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4052 + - uid: 3486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 + pos: -5.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14167 + - 2583 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4143 + - uid: 3721 components: - type: Transform - pos: -52.5,-29.5 + rot: 3.141592653589793 rad + pos: 0.5,-52.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 + - 2583 - type: AtmosPipeColor color: '#FF1212FF' - uid: 4246 @@ -85492,16 +93888,6 @@ entities: - 13645 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4360 - components: - - type: Transform - pos: 24.5,1.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 14167 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 4911 components: - type: Transform @@ -85524,14 +93910,37 @@ entities: - 13665 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 5348 + - uid: 5596 components: - type: Transform - pos: 15.5,23.5 + rot: 1.5707963267948966 rad + pos: -28.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14004 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 5823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-59.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17353 + - 5030 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 6545 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11632 - type: AtmosPipeColor color: '#FF1212FF' - uid: 6614 @@ -85577,25 +93986,26 @@ entities: - 13654 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7482 + - uid: 7420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-35.5 + rot: 1.5707963267948966 rad + pos: -29.5,-9.5 parent: 2 - type: DeviceNetwork deviceLists: - - 4428 + - 11724 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 7496 + - uid: 7482 components: - type: Transform - pos: -30.5,-26.5 + rot: -1.5707963267948966 rad + pos: 30.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14783 + - 8983 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7574 @@ -85617,7 +94027,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 4428 + - 8983 - type: AtmosPipeColor color: '#FF1212FF' - uid: 7998 @@ -85631,58 +94041,56 @@ entities: - 2697 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8070 + - uid: 8008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-34.5 + pos: 12.5,-43.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 + - 7178 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8137 + - uid: 8014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,-30.5 + pos: 8.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14851 + - 2583 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8449 + - uid: 8787 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-53.5 + rot: 3.141592653589793 rad + pos: -8.5,-25.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2080 + - 3489 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8505 + - uid: 9131 components: - type: Transform - pos: -50.5,-26.5 + rot: -1.5707963267948966 rad + pos: 31.5,-11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 12728 + - 15421 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8787 + - uid: 9381 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-25.5 + pos: -28.5,-27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3489 + - 15937 - type: AtmosPipeColor color: '#FF1212FF' - uid: 9450 @@ -85691,64 +94099,81 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 9627 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 2 - type: DeviceNetwork deviceLists: - - 13662 + - 13793 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9454 + - uid: 10416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-48.5 + rot: 1.5707963267948966 rad + pos: -25.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15205 + - 11724 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9514 + - uid: 10802 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-36.5 + rot: 1.5707963267948966 rad + pos: 7.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3053 + - 13665 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 9521 + - uid: 11155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3722 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 11243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-38.5 + pos: 10.5,-72.5 parent: 2 - type: DeviceNetwork deviceLists: - - 3053 + - 9393 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10416 + - uid: 11274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-7.5 + rot: -1.5707963267948966 rad + pos: -7.5,-72.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 5030 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10802 + - uid: 11279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-33.5 + pos: -10.5,-39.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13665 + - 15139 - type: AtmosPipeColor color: '#FF1212FF' - uid: 11333 @@ -85773,6 +94198,17 @@ entities: - 29 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-61.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 9393 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12054 components: - type: Transform @@ -85783,6 +94219,17 @@ entities: - 8606 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 12169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14210 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 12378 components: - type: Transform @@ -85794,77 +94241,73 @@ entities: - 13640 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 12388 + - uid: 12398 components: - type: Transform - pos: 29.5,-3.5 + rot: 3.141592653589793 rad + pos: -34.5,-29.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15422 + - 16062 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13077 + - uid: 12415 components: - type: Transform - pos: 15.5,-18.5 + rot: 3.141592653589793 rad + pos: -39.5,-28.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13683 + - 15862 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13213 + - uid: 12430 components: - type: Transform - pos: 22.5,-3.5 + rot: 3.141592653589793 rad + pos: -31.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15422 + - 14210 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13215 + - uid: 12488 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-8.5 + pos: -43.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14169 + - 16096 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13355 + - uid: 13045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-15.5 + pos: -54.5,-28.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 7123 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13371 + - uid: 13049 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-55.5 + pos: -58.5,-29.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 15188 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13408 + - uid: 13243 components: - type: Transform - pos: 14.5,-43.5 + pos: -47.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13662 + - 7632 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13411 @@ -85875,7 +94318,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7178 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13448 @@ -85974,27 +94417,6 @@ entities: - 13657 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13679 - components: - - type: Transform - pos: 8.5,-18.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 13683 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13723 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-11.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15421 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13790 components: - type: Transform @@ -86016,17 +94438,6 @@ entities: - 13846 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13820 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-64.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13833 components: - type: Transform @@ -86038,45 +94449,14 @@ entities: - 13846 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13852 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-57.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13854 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-54.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18978 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13912 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-46.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 13971 + - uid: 13850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-45.5 + pos: 17.5,6.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13972 + - 22071 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14002 @@ -86118,81 +94498,91 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14915 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,3.5 + rot: 1.5707963267948966 rad + pos: -49.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14059 + - 14915 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14078 + - uid: 14059 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,3.5 + rot: 1.5707963267948966 rad + pos: -49.5,-27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 409 + - 14915 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14136 + - uid: 14078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,15.5 + pos: 37.5,3.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14085 + - 409 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14159 + - uid: 14089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,11.5 + pos: -54.5,-21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 5138 + - 7632 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14183 + - uid: 14130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-0.5 + rot: 3.141592653589793 rad + pos: -47.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 38 + - 16098 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14378 + - uid: 14159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-27.5 + rot: 1.5707963267948966 rad + pos: 28.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15331 + - 22510 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14446 + - uid: 14378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-33.5 + rot: -1.5707963267948966 rad + pos: -23.5,-27.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14163 + - 15331 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14468 @@ -86268,7 +94658,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 17658 + - 10102 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14709 @@ -86289,7 +94679,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15673 + - 10102 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14730 @@ -86300,271 +94690,315 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 15332 + - 15331 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14749 + - uid: 14867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-38.5 + rot: 1.5707963267948966 rad + pos: -43.5,-31.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14765 + - 15862 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14781 + - uid: 14878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-30.5 + rot: -1.5707963267948966 rad + pos: -21.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2564 + - 14595 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14878 + - uid: 14886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,11.5 + rot: 1.5707963267948966 rad + pos: -43.5,-22.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14595 + - 15869 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14935 + - uid: 14887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-41.5 + pos: -42.5,-20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14939 + - 15869 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14936 + - uid: 14900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-46.5 + pos: -38.5,-23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14957 + - 15875 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14937 + - uid: 14983 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-46.5 + pos: -4.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14953 + - 14795 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14938 + - uid: 15118 components: - type: Transform - pos: -51.5,-40.5 + rot: 1.5707963267948966 rad + pos: -7.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14953 + - 15139 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14950 + - uid: 15135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-26.5 + rot: 1.5707963267948966 rad + pos: -7.5,-33.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14940 + - 17576 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14951 + - uid: 15180 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-22.5 + pos: -15.5,8.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14940 + - 8606 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14978 + - uid: 15269 components: - type: Transform - pos: 7.5,-48.5 + pos: -29.5,-60.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14980 + - 15287 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14979 + - uid: 15879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-48.5 + rot: 1.5707963267948966 rad + pos: 7.5,-38.5 parent: 2 - type: DeviceNetwork deviceLists: - - 14980 + - 7178 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15045 + - uid: 16129 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-68.5 + pos: -32.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15050 + - 7931 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15046 + - uid: 16164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-62.5 + rot: 1.5707963267948966 rad + pos: -33.5,-48.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15050 + - 9309 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15070 + - uid: 16166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-67.5 + rot: 1.5707963267948966 rad + pos: -33.5,-57.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15074 + - 9309 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15071 + - uid: 16242 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-61.5 + pos: -20.5,-7.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15074 + - 11724 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15075 + - uid: 16243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-45.5 + rot: -1.5707963267948966 rad + pos: -20.5,-10.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15139 + - 11724 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15112 + - uid: 16260 components: - type: Transform - pos: -10.5,-39.5 + rot: 1.5707963267948966 rad + pos: -33.5,-61.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15139 + - 9309 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15118 + - uid: 16302 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-38.5 + pos: -33.5,-70.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15139 + - 12518 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15135 + - uid: 16309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-33.5 + pos: -33.5,-77.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17576 + - 12518 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15180 + - uid: 16456 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 + pos: -52.5,-13.5 parent: 2 - type: DeviceNetwork deviceLists: - - 8606 + - 16446 + - uid: 17117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13549 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15243 + - uid: 17342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,27.5 + pos: -1.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15260 + - 17348 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15245 + - uid: 17343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,40.5 + pos: 12.5,11.5 parent: 2 - type: DeviceNetwork deviceLists: - - 15260 + - 17348 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15860 + - uid: 17355 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-44.5 + pos: 4.5,19.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 17351 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15879 + - uid: 17359 + components: + - type: Transform + pos: 5.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 17352 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 17444 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-38.5 + pos: -6.5,17.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 17445 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15908 + - uid: 17561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13655 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21067 + components: + - type: Transform + pos: -3.5,-56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3722 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21420 components: - type: Transform rot: 1.5707963267948966 rad @@ -86572,150 +95006,217 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 13650 + - 7178 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16242 + - uid: 21421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7178 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 21800 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-7.5 + pos: 21.5,1.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 9147 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16243 + - uid: 22041 + components: + - type: Transform + pos: 13.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 21678 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22072 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14085 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22225 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-10.5 + pos: 19.5,-49.5 parent: 2 - type: DeviceNetwork deviceLists: - - 2352 + - 15205 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 16456 + - uid: 22232 components: - type: Transform - pos: -52.5,-13.5 + rot: 1.5707963267948966 rad + pos: 15.5,-36.5 parent: 2 - type: DeviceNetwork deviceLists: - - 16446 - - uid: 17117 + - 22255 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22233 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-24.5 + pos: 21.5,-35.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13549 + - 22255 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17342 + - uid: 22259 components: - type: Transform - pos: -1.5,11.5 + rot: -1.5707963267948966 rad + pos: 21.5,-41.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17348 + - 22255 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17343 + - uid: 22270 components: - type: Transform - pos: 12.5,11.5 + rot: 3.141592653589793 rad + pos: 18.5,-44.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17348 + - 22255 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17355 + - uid: 22332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,19.5 + pos: 15.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17351 + - 21678 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17359 + - uid: 22358 components: - type: Transform - pos: 5.5,23.5 + pos: 23.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17352 + - 14943 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17444 + - uid: 22387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,17.5 + pos: 28.5,23.5 parent: 2 - type: DeviceNetwork deviceLists: - - 17445 + - 22438 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17561 + - uid: 22392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22438 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22417 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-26.5 + pos: 39.5,20.5 + parent: 2 + - uid: 22436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,24.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13655 + - 22432 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 17885 + - uid: 22441 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-14.5 + pos: 38.5,20.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13798 + - 22439 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 19983 + - uid: 22451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 + rot: -1.5707963267948966 rad + pos: 46.5,21.5 parent: 2 - type: DeviceNetwork deviceLists: - - 13798 + - 22439 - type: AtmosPipeColor color: '#FF1212FF' -- proto: GasVentScrubberVox - entities: - - uid: 1132 + - uid: 22578 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-11.5 + pos: -38.5,-52.5 parent: 2 -- proto: Gauze + - type: DeviceNetwork + deviceLists: + - 22600 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 22596 + components: + - type: Transform + pos: -40.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 22600 + - type: AtmosPipeColor + color: '#FF1212FF' +- proto: GasVolumePump entities: - - uid: 11243 + - uid: 12148 components: - type: Transform - pos: 22.36895,-59.193115 + rot: -1.5707963267948966 rad + pos: -38.5,-35.5 parent: 2 +- proto: Gauze + entities: - uid: 18976 components: - type: Transform @@ -86742,6 +95243,11 @@ entities: - type: Transform pos: 65.5,-45.5 parent: 2 + - uid: 8109 + components: + - type: Transform + pos: -0.5,-88.5 + parent: 2 - uid: 8329 components: - type: Transform @@ -86752,10 +95258,36 @@ entities: - type: Transform pos: 78.5,-43.5 parent: 2 - - uid: 17328 + - uid: 12808 components: - type: Transform - pos: 17.5,6.5 + pos: -2.5,-91.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 2.5,-88.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + pos: 3.5,-88.5 + parent: 2 + - uid: 15064 + components: + - type: Transform + pos: 13.5,-90.5 + parent: 2 + - uid: 15066 + components: + - type: Transform + pos: 12.5,-90.5 + parent: 2 + - uid: 17874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-90.5 parent: 2 - uid: 18163 components: @@ -86772,6 +95304,16 @@ entities: - type: Transform pos: 89.5,-20.5 parent: 2 + - uid: 18514 + components: + - type: Transform + pos: 36.5,25.5 + parent: 2 + - uid: 19263 + components: + - type: Transform + pos: -2.5,-89.5 + parent: 2 - uid: 19587 components: - type: Transform @@ -86804,6 +95346,13 @@ entities: - type: Transform pos: -26.5,-52.5 parent: 2 +- proto: GoldRingDiamond + entities: + - uid: 4808 + components: + - type: Transform + pos: -30.014654,-64.389244 + parent: 2 - proto: GrassBattlemap entities: - uid: 6007 @@ -86813,52 +95362,37 @@ entities: parent: 2 - proto: GravityGenerator entities: - - uid: 6248 + - uid: 7868 components: - type: Transform - pos: 23.5,-11.5 + pos: 25.5,-7.5 parent: 2 - proto: Grille entities: - - uid: 24 + - uid: 22 components: - type: Transform - pos: 30.5,31.5 + pos: -31.5,-76.5 parent: 2 - uid: 50 components: - type: Transform - pos: 47.5,-73.5 - parent: 2 - - uid: 66 - components: - - type: Transform - pos: -34.5,-6.5 - parent: 2 - - uid: 99 - components: - - type: Transform - pos: -9.5,14.5 - parent: 2 - - uid: 118 - components: - - type: Transform - pos: 8.5,-8.5 + pos: 47.5,-73.5 parent: 2 - - uid: 147 + - uid: 65 components: - type: Transform - pos: 30.5,32.5 + pos: -31.5,-75.5 parent: 2 - - uid: 151 + - uid: 72 components: - type: Transform - pos: 30.5,36.5 + pos: -19.5,-62.5 parent: 2 - - uid: 159 + - uid: 99 components: - type: Transform - pos: -47.5,-18.5 + pos: -9.5,14.5 parent: 2 - uid: 160 components: @@ -86870,11 +95404,6 @@ entities: - type: Transform pos: -49.5,-16.5 parent: 2 - - uid: 164 - components: - - type: Transform - pos: 30.5,37.5 - parent: 2 - uid: 171 components: - type: Transform @@ -86885,6 +95414,11 @@ entities: - type: Transform pos: -50.5,-9.5 parent: 2 + - uid: 227 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 - uid: 228 components: - type: Transform @@ -86915,15 +95449,58 @@ entities: - type: Transform pos: -22.5,-10.5 parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,27.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: -33.5,-82.5 + parent: 2 - uid: 302 components: - type: Transform pos: -18.5,3.5 parent: 2 - - uid: 311 + - uid: 309 components: - type: Transform - pos: -39.5,-34.5 + rot: -1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: -11.5,-66.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: -30.5,-79.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -44.5,-33.5 parent: 2 - uid: 331 components: @@ -86945,36 +95522,66 @@ entities: - type: Transform pos: -24.5,8.5 parent: 2 + - uid: 375 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 - uid: 393 components: - type: Transform pos: -37.5,1.5 parent: 2 + - uid: 402 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 - uid: 422 components: - type: Transform pos: -42.5,1.5 parent: 2 - - uid: 472 + - uid: 430 components: - type: Transform - pos: -14.5,-19.5 + pos: -50.5,-62.5 parent: 2 - - uid: 504 + - uid: 472 components: - type: Transform - pos: 35.5,14.5 + pos: -14.5,-19.5 parent: 2 - - uid: 509 + - uid: 501 components: - type: Transform - pos: 35.5,15.5 + pos: 10.5,5.5 parent: 2 - uid: 601 components: - type: Transform pos: -5.5,9.5 parent: 2 + - uid: 651 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: -26.5,-20.5 + parent: 2 - uid: 691 components: - type: Transform @@ -86985,6 +95592,11 @@ entities: - type: Transform pos: 9.5,9.5 parent: 2 + - uid: 701 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 - uid: 718 components: - type: Transform @@ -87000,16 +95612,6 @@ entities: - type: Transform pos: -4.5,9.5 parent: 2 - - uid: 747 - components: - - type: Transform - pos: -57.5,-62.5 - parent: 2 - - uid: 749 - components: - - type: Transform - pos: 12.5,-5.5 - parent: 2 - uid: 754 components: - type: Transform @@ -87025,11 +95627,6 @@ entities: - type: Transform pos: -17.5,40.5 parent: 2 - - uid: 766 - components: - - type: Transform - pos: -54.5,-44.5 - parent: 2 - uid: 782 components: - type: Transform @@ -87050,11 +95647,6 @@ entities: - type: Transform pos: -26.5,38.5 parent: 2 - - uid: 794 - components: - - type: Transform - pos: -53.5,-20.5 - parent: 2 - uid: 797 components: - type: Transform @@ -87075,15 +95667,21 @@ entities: - type: Transform pos: -1.5,9.5 parent: 2 - - uid: 841 + - uid: 871 components: - type: Transform - pos: 28.5,14.5 + pos: 10.5,23.5 parent: 2 - - uid: 871 + - uid: 882 components: - type: Transform - pos: 10.5,23.5 + rot: 3.141592653589793 rad + pos: 20.5,-35.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 46.5,23.5 parent: 2 - uid: 899 components: @@ -87120,11 +95718,6 @@ entities: - type: Transform pos: 41.5,-44.5 parent: 2 - - uid: 1116 - components: - - type: Transform - pos: -55.5,-20.5 - parent: 2 - uid: 1119 components: - type: Transform @@ -87145,6 +95738,11 @@ entities: - type: Transform pos: 51.5,-50.5 parent: 2 + - uid: 1152 + components: + - type: Transform + pos: -59.5,-49.5 + parent: 2 - uid: 1156 components: - type: Transform @@ -87160,6 +95758,12 @@ entities: - type: Transform pos: -29.5,5.5 parent: 2 + - uid: 1164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-48.5 + parent: 2 - uid: 1169 components: - type: Transform @@ -87180,6 +95784,54 @@ entities: - type: Transform pos: 59.5,-37.5 parent: 2 + - uid: 1257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-46.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: -30.5,-67.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: -13.5,-67.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: -2.5,-54.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: -18.5,-62.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,26.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: -12.5,-62.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: -11.5,-62.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,27.5 + parent: 2 - uid: 1357 components: - type: Transform @@ -87200,11 +95852,21 @@ entities: - type: Transform pos: -59.5,19.5 parent: 2 + - uid: 1509 + components: + - type: Transform + pos: -21.5,-62.5 + parent: 2 - uid: 1524 components: - type: Transform pos: -14.5,-8.5 parent: 2 + - uid: 1549 + components: + - type: Transform + pos: -27.5,-65.5 + parent: 2 - uid: 1552 components: - type: Transform @@ -87220,11 +95882,6 @@ entities: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 1631 - components: - - type: Transform - pos: 7.5,-8.5 - parent: 2 - uid: 1632 components: - type: Transform @@ -87235,15 +95892,10 @@ entities: - type: Transform pos: -25.5,37.5 parent: 2 - - uid: 1712 - components: - - type: Transform - pos: 30.5,38.5 - parent: 2 - - uid: 1727 + - uid: 1676 components: - type: Transform - pos: 6.5,-6.5 + pos: -44.5,-26.5 parent: 2 - uid: 1751 components: @@ -87255,6 +95907,11 @@ entities: - type: Transform pos: 3.5,9.5 parent: 2 + - uid: 1763 + components: + - type: Transform + pos: -36.5,-80.5 + parent: 2 - uid: 1767 components: - type: Transform @@ -87270,26 +95927,46 @@ entities: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 1895 + - uid: 1779 components: - type: Transform - pos: 11.5,-4.5 + pos: -30.5,-80.5 parent: 2 - - uid: 2109 + - uid: 1798 components: - type: Transform - pos: 11.5,-5.5 + pos: -36.5,-79.5 parent: 2 - - uid: 2112 + - uid: 1838 components: - type: Transform - pos: -2.5,-11.5 + pos: -36.5,-73.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: -20.5,-68.5 parent: 2 - uid: 2126 components: - type: Transform pos: 60.5,-37.5 parent: 2 + - uid: 2131 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 - uid: 2132 components: - type: Transform @@ -87310,26 +95987,31 @@ entities: - type: Transform pos: 38.5,-66.5 parent: 2 - - uid: 2268 + - uid: 2259 components: - type: Transform - pos: 64.5,-37.5 + pos: -25.5,-62.5 parent: 2 - - uid: 2318 + - uid: 2268 components: - type: Transform - pos: 30.5,33.5 + pos: 64.5,-37.5 parent: 2 - - uid: 2328 + - uid: 2333 components: - type: Transform - pos: 6.5,0.5 + pos: -22.5,-67.5 parent: 2 - uid: 2336 components: - type: Transform pos: 53.5,-36.5 parent: 2 + - uid: 2383 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 - uid: 2392 components: - type: Transform @@ -87340,25 +96022,40 @@ entities: - type: Transform pos: 41.5,-60.5 parent: 2 + - uid: 2434 + components: + - 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 pos: -50.5,-15.5 parent: 2 - - uid: 2517 + - uid: 2527 components: - type: Transform - pos: -46.5,-19.5 + pos: -21.5,-67.5 parent: 2 - - uid: 2587 + - uid: 2537 components: - type: Transform - pos: -6.5,-53.5 + pos: -36.5,-72.5 parent: 2 - - uid: 2620 + - uid: 2542 components: - type: Transform - pos: -33.5,-3.5 + pos: -24.5,-62.5 + parent: 2 + - uid: 2564 + components: + - type: Transform + pos: -13.5,-62.5 parent: 2 - uid: 2659 components: @@ -87370,15 +96067,20 @@ entities: - type: Transform pos: -4.5,17.5 parent: 2 + - uid: 2691 + components: + - type: Transform + pos: -13.5,-61.5 + parent: 2 - uid: 2700 components: - type: Transform pos: -33.5,0.5 parent: 2 - - uid: 2772 + - uid: 2746 components: - type: Transform - pos: -48.5,-27.5 + pos: -13.5,-64.5 parent: 2 - uid: 2793 components: @@ -87400,15 +96102,25 @@ entities: - type: Transform pos: -47.5,-6.5 parent: 2 + - uid: 2858 + components: + - type: Transform + pos: -22.5,-62.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: -15.5,-63.5 + parent: 2 - uid: 2900 components: - type: Transform pos: 24.5,-29.5 parent: 2 - - uid: 2904 + - uid: 2967 components: - type: Transform - pos: 21.5,-5.5 + pos: -36.5,-71.5 parent: 2 - uid: 2986 components: @@ -87425,11 +96137,6 @@ entities: - type: Transform pos: 37.5,-51.5 parent: 2 - - uid: 3030 - components: - - type: Transform - pos: -30.5,-0.5 - parent: 2 - uid: 3043 components: - type: Transform @@ -87450,11 +96157,6 @@ entities: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 3065 - components: - - type: Transform - pos: -54.5,-21.5 - parent: 2 - uid: 3069 components: - type: Transform @@ -87465,51 +96167,67 @@ entities: - type: Transform pos: -14.5,-7.5 parent: 2 - - uid: 3080 + - uid: 3146 components: - type: Transform - pos: 6.5,-7.5 + rot: 3.141592653589793 rad + pos: 28.5,29.5 parent: 2 - - uid: 3123 + - uid: 3187 components: - type: Transform - pos: -51.5,-25.5 + pos: -36.5,-63.5 parent: 2 - - uid: 3151 + - uid: 3192 components: - type: Transform - pos: -31.5,-62.5 + pos: -36.5,-64.5 parent: 2 - - uid: 3155 + - uid: 3196 components: - type: Transform - pos: 6.5,-9.5 + pos: -31.5,-71.5 parent: 2 - - uid: 3161 + - uid: 3199 components: - type: Transform - pos: 20.5,-5.5 + pos: -9.5,-96.5 parent: 2 - - uid: 3185 + - uid: 3217 components: - type: Transform - pos: 11.5,-14.5 + pos: -54.5,-4.5 parent: 2 - - uid: 3217 + - uid: 3249 components: - type: Transform - pos: -54.5,-4.5 + pos: -55.5,-26.5 parent: 2 - - uid: 3221 + - uid: 3312 components: - type: Transform - pos: -54.5,-20.5 + pos: 16.5,-76.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -10.5,-96.5 parent: 2 - uid: 3406 components: - type: Transform pos: -5.5,21.5 parent: 2 + - uid: 3583 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: -35.5,-68.5 + parent: 2 - uid: 3600 components: - type: Transform @@ -87530,11 +96248,6 @@ entities: - type: Transform pos: 49.5,-59.5 parent: 2 - - uid: 3672 - components: - - type: Transform - pos: -30.5,-32.5 - parent: 2 - uid: 3677 components: - type: Transform @@ -87545,10 +96258,10 @@ entities: - type: Transform pos: 30.5,-43.5 parent: 2 - - uid: 3687 + - uid: 3683 components: - type: Transform - pos: -34.5,-36.5 + pos: -36.5,-68.5 parent: 2 - uid: 3766 components: @@ -87575,11 +96288,26 @@ entities: - type: Transform pos: -28.5,4.5 parent: 2 + - uid: 3954 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 - uid: 3996 components: - type: Transform pos: 8.5,-27.5 parent: 2 + - uid: 4003 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 4037 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 - uid: 4039 components: - type: Transform @@ -87595,41 +96323,11 @@ entities: - type: Transform pos: 31.5,-39.5 parent: 2 - - uid: 4054 - components: - - type: Transform - pos: 15.5,-12.5 - parent: 2 - uid: 4058 components: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 4061 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 4065 - components: - - type: Transform - pos: -4.5,-11.5 - parent: 2 - - uid: 4070 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 4071 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 4072 - components: - - type: Transform - pos: 6.5,-0.5 - parent: 2 - uid: 4074 components: - type: Transform @@ -87740,21 +96438,6 @@ entities: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 4096 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - - uid: 4097 - components: - - type: Transform - pos: 2.5,6.5 - parent: 2 - - uid: 4098 - components: - - type: Transform - pos: 3.5,6.5 - parent: 2 - uid: 4099 components: - type: Transform @@ -87780,6 +96463,11 @@ entities: - type: Transform pos: -7.5,7.5 parent: 2 + - uid: 4104 + components: + - type: Transform + pos: -35.5,-76.5 + parent: 2 - uid: 4106 components: - type: Transform @@ -87895,10 +96583,15 @@ entities: - type: Transform pos: 8.5,-33.5 parent: 2 - - uid: 4270 + - uid: 4260 components: - type: Transform - pos: 18.5,21.5 + pos: -23.5,-62.5 + parent: 2 + - uid: 4261 + components: + - type: Transform + pos: -12.5,-66.5 parent: 2 - uid: 4284 components: @@ -87910,35 +96603,30 @@ entities: - type: Transform pos: 33.5,-33.5 parent: 2 - - uid: 4353 - components: - - type: Transform - pos: 8.5,-41.5 - parent: 2 - uid: 4361 components: - type: Transform - pos: 18.5,24.5 + pos: -25.5,-45.5 parent: 2 - uid: 4381 components: - type: Transform pos: 25.5,-26.5 parent: 2 - - uid: 4464 + - uid: 4557 components: - type: Transform - pos: 6.5,-10.5 + pos: -35.5,4.5 parent: 2 - - uid: 4491 + - uid: 4568 components: - type: Transform - pos: 10.5,9.5 + pos: 31.5,-59.5 parent: 2 - - uid: 4568 + - uid: 4570 components: - type: Transform - pos: 31.5,-59.5 + pos: -12.5,-86.5 parent: 2 - uid: 4575 components: @@ -87960,15 +96648,15 @@ entities: - type: Transform pos: 8.5,9.5 parent: 2 - - uid: 4641 + - uid: 4649 components: - type: Transform - pos: 8.5,-45.5 + pos: 8.5,-31.5 parent: 2 - - uid: 4649 + - uid: 4666 components: - type: Transform - pos: 8.5,-31.5 + pos: -30.5,-12.5 parent: 2 - uid: 4678 components: @@ -87980,6 +96668,11 @@ entities: - type: Transform pos: 53.5,-50.5 parent: 2 + - uid: 4685 + components: + - type: Transform + pos: -36.5,-76.5 + parent: 2 - uid: 4725 components: - type: Transform @@ -87993,162 +96686,242 @@ entities: - uid: 4739 components: - type: Transform - pos: -32.5,-63.5 + pos: -20.5,-67.5 parent: 2 - uid: 4742 components: - type: Transform pos: 41.5,-46.5 parent: 2 - - uid: 4749 + - uid: 4746 components: - type: Transform - pos: -32.5,-64.5 + pos: -16.5,-62.5 parent: 2 - - uid: 4821 + - uid: 4747 components: - type: Transform - pos: 4.5,-5.5 + pos: -21.5,-61.5 parent: 2 - - uid: 4822 + - uid: 4750 components: - type: Transform - pos: 3.5,-5.5 + pos: -9.5,-78.5 parent: 2 - - uid: 4825 + - uid: 4755 components: - type: Transform - pos: -32.5,-36.5 + pos: -9.5,-77.5 + parent: 2 + - uid: 4770 + components: + - 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 + pos: -31.5,-77.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: -14.5,-62.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -17.5,-67.5 parent: 2 - uid: 4832 components: - type: Transform pos: -49.5,-8.5 parent: 2 - - uid: 4852 + - uid: 4835 components: - type: Transform - pos: -44.5,-19.5 + pos: -23.5,-67.5 parent: 2 - - uid: 4901 + - uid: 4837 components: - type: Transform - pos: 2.5,-5.5 + pos: -27.5,-39.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: 43.5,23.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: -26.5,-68.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: -30.5,-68.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: -28.5,-68.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -24.5,-68.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + pos: -20.5,-62.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: -26.5,-62.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: -22.5,-68.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: -17.5,-63.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: -15.5,-62.5 parent: 2 - uid: 4920 components: - type: Transform pos: -58.5,7.5 parent: 2 - - uid: 5006 + - uid: 4924 components: - type: Transform - pos: -30.5,-46.5 + pos: -15.5,-67.5 parent: 2 - - uid: 5034 + - uid: 4952 components: - type: Transform - pos: -29.5,-44.5 + pos: -35.5,-25.5 parent: 2 - - uid: 5035 + - uid: 4953 components: - type: Transform - pos: -32.5,-61.5 + pos: -31.5,-73.5 parent: 2 - - uid: 5060 + - uid: 4956 components: - type: Transform - pos: 25.5,-5.5 + pos: -18.5,-67.5 parent: 2 - - uid: 5077 + - uid: 4958 components: - type: Transform - pos: -32.5,-18.5 + pos: -29.5,-43.5 parent: 2 - - uid: 5078 + - uid: 4959 components: - type: Transform - pos: -41.5,-17.5 + pos: -31.5,-48.5 parent: 2 - - uid: 5079 + - uid: 4977 components: - type: Transform - pos: -42.5,-17.5 + pos: -36.5,-62.5 parent: 2 - - uid: 5096 + - uid: 5003 components: - type: Transform - pos: -5.5,22.5 + pos: 9.5,1.5 parent: 2 - - uid: 5098 + - uid: 5016 components: - type: Transform - pos: -4.5,16.5 + pos: -31.5,-47.5 parent: 2 - - uid: 5113 + - uid: 5035 components: - type: Transform - pos: 25.5,-1.5 + pos: -25.5,-63.5 parent: 2 - - uid: 5114 + - uid: 5044 components: - type: Transform - pos: -17.5,-36.5 + pos: -17.5,-62.5 parent: 2 - - uid: 5115 + - uid: 5078 components: - type: Transform - pos: -21.5,-34.5 + pos: -41.5,-17.5 parent: 2 - - uid: 5116 + - uid: 5079 components: - type: Transform - pos: -21.5,-33.5 + pos: -42.5,-17.5 parent: 2 - - uid: 5117 + - uid: 5083 components: - type: Transform - pos: -21.5,-32.5 + pos: -27.5,-66.5 parent: 2 - - uid: 5118 + - uid: 5096 components: - type: Transform - pos: -34.5,-28.5 + pos: -5.5,22.5 parent: 2 - - uid: 5119 + - uid: 5098 components: - type: Transform - pos: -37.5,-28.5 + pos: -4.5,16.5 parent: 2 - - uid: 5123 + - uid: 5115 components: - type: Transform - pos: -39.5,-19.5 + pos: -21.5,-34.5 parent: 2 - - uid: 5124 + - uid: 5116 components: - type: Transform - pos: -38.5,-19.5 + pos: -21.5,-33.5 parent: 2 - - uid: 5125 + - uid: 5117 components: - type: Transform - pos: -37.5,-19.5 + pos: -21.5,-32.5 parent: 2 - - uid: 5126 + - uid: 5119 components: - type: Transform - pos: -35.5,-19.5 + pos: -27.5,-67.5 parent: 2 - - uid: 5127 + - uid: 5125 components: - type: Transform - pos: -34.5,-19.5 + pos: -23.5,-63.5 parent: 2 - - uid: 5128 + - uid: 5126 components: - type: Transform - pos: -33.5,-19.5 + pos: -24.5,-63.5 parent: 2 - uid: 5170 components: @@ -88165,25 +96938,30 @@ entities: - type: Transform pos: 34.5,-47.5 parent: 2 - - uid: 5264 + - uid: 5182 components: - type: Transform - pos: -60.5,-7.5 + pos: -31.5,-72.5 parent: 2 - - uid: 5275 + - uid: 5217 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 5264 components: - type: Transform - pos: -59.5,-44.5 + pos: -60.5,-7.5 parent: 2 - uid: 5313 components: - type: Transform - pos: -63.5,-44.5 + pos: 16.5,-44.5 parent: 2 - uid: 5333 components: - type: Transform - pos: 18.5,22.5 + pos: -35.5,5.5 parent: 2 - uid: 5369 components: @@ -88195,15 +96973,10 @@ entities: - type: Transform pos: -27.5,28.5 parent: 2 - - uid: 5413 - components: - - type: Transform - pos: 28.5,-10.5 - parent: 2 - - uid: 5426 + - uid: 5409 components: - type: Transform - pos: 18.5,25.5 + pos: 50.5,15.5 parent: 2 - uid: 5430 components: @@ -88233,13 +97006,18 @@ entities: - uid: 5459 components: - type: Transform - pos: -34.5,-32.5 + pos: -31.5,-45.5 parent: 2 - uid: 5464 components: - type: Transform pos: 63.5,-43.5 parent: 2 + - uid: 5477 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 - uid: 5497 components: - type: Transform @@ -88260,10 +97038,20 @@ entities: - type: Transform pos: 40.5,-40.5 parent: 2 - - uid: 5538 + - uid: 5511 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 5549 components: - type: Transform - pos: -36.5,-9.5 + pos: 7.5,4.5 parent: 2 - uid: 5558 components: @@ -88300,16 +97088,6 @@ entities: - type: Transform pos: 49.5,-86.5 parent: 2 - - uid: 5617 - components: - - type: Transform - pos: -73.5,-52.5 - parent: 2 - - uid: 5620 - components: - - type: Transform - pos: -73.5,-56.5 - parent: 2 - uid: 5630 components: - type: Transform @@ -88325,65 +97103,70 @@ entities: - type: Transform pos: 47.5,-89.5 parent: 2 - - uid: 5639 + - uid: 5646 components: - type: Transform - pos: -67.5,-63.5 + pos: 32.5,-55.5 parent: 2 - - uid: 5640 + - uid: 5649 components: - type: Transform - pos: -70.5,-63.5 + pos: 64.5,-43.5 parent: 2 - - uid: 5641 + - uid: 5650 components: - type: Transform - pos: -73.5,-63.5 + pos: -21.5,-66.5 parent: 2 - - uid: 5646 + - uid: 5656 components: - type: Transform - pos: 32.5,-55.5 + pos: 32.5,-53.5 parent: 2 - - uid: 5649 + - uid: 5661 components: - type: Transform - pos: 64.5,-43.5 + pos: -18.5,-68.5 parent: 2 - - uid: 5656 + - uid: 5662 components: - type: Transform - pos: 32.5,-53.5 + pos: -14.5,-68.5 parent: 2 - - uid: 5663 + - uid: 5664 components: - type: Transform - pos: -43.5,-19.5 + pos: -21.5,-64.5 parent: 2 - uid: 5673 components: - type: Transform pos: 45.5,-86.5 parent: 2 - - uid: 5687 + - uid: 5705 components: - type: Transform - pos: 26.5,-5.5 + pos: 1.5,-5.5 parent: 2 - - uid: 5688 + - uid: 5707 components: - type: Transform - pos: 27.5,-5.5 + pos: 75.5,-61.5 parent: 2 - - uid: 5705 + - uid: 5708 components: - type: Transform - pos: 1.5,-5.5 + pos: -31.5,-44.5 parent: 2 - - uid: 5707 + - uid: 5744 components: - type: Transform - pos: 75.5,-61.5 + pos: -27.5,-23.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: -27.5,-20.5 parent: 2 - uid: 5772 components: @@ -88395,20 +97178,15 @@ entities: - type: Transform pos: -21.5,-22.5 parent: 2 - - uid: 5929 - components: - - type: Transform - pos: -60.5,-17.5 - parent: 2 - - uid: 5964 + - uid: 5925 components: - type: Transform - pos: -72.5,-63.5 + pos: -59.5,-63.5 parent: 2 - - uid: 6045 + - uid: 5929 components: - type: Transform - pos: -72.5,-62.5 + pos: -60.5,-17.5 parent: 2 - uid: 6050 components: @@ -88420,6 +97198,11 @@ entities: - type: Transform pos: -27.5,30.5 parent: 2 + - uid: 6120 + components: + - type: Transform + pos: -33.5,-81.5 + parent: 2 - uid: 6127 components: - type: Transform @@ -88455,26 +97238,131 @@ entities: - type: Transform pos: 37.5,-45.5 parent: 2 + - uid: 6206 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 - uid: 6219 components: - type: Transform pos: 40.5,-42.5 parent: 2 + - uid: 6222 + components: + - 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 + pos: 3.5,-83.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: 1.5,-82.5 + parent: 2 + - uid: 6453 + components: + - type: Transform + pos: 2.5,-83.5 + parent: 2 + - uid: 6455 + components: + - 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 + pos: -22.5,-14.5 + parent: 2 - uid: 6492 components: - type: Transform pos: -18.5,9.5 parent: 2 - - uid: 6641 + - uid: 6512 components: - type: Transform - pos: 8.5,-20.5 + pos: -0.5,-83.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 2.5,-82.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 + - uid: 6550 + components: + - 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 + pos: -34.5,-38.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + pos: -21.5,-14.5 parent: 2 - uid: 6669 components: - 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 @@ -88485,6 +97373,11 @@ entities: - type: Transform pos: 33.5,-34.5 parent: 2 + - uid: 6852 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 - uid: 6911 components: - type: Transform @@ -88515,140 +97408,140 @@ entities: - type: Transform pos: 60.5,-79.5 parent: 2 - - uid: 6977 + - uid: 6953 components: - type: Transform - pos: -28.5,2.5 + pos: 10.5,1.5 parent: 2 - - uid: 7016 + - uid: 6977 components: - type: Transform - pos: 78.5,-47.5 + pos: -28.5,2.5 parent: 2 - - uid: 7023 + - uid: 6996 components: - type: Transform - pos: -4.5,-50.5 + pos: -42.5,-33.5 parent: 2 - - uid: 7024 + - uid: 7007 components: - type: Transform - pos: -5.5,-50.5 + pos: -31.5,-3.5 parent: 2 - - uid: 7025 + - uid: 7016 components: - type: Transform - pos: -3.5,-50.5 + pos: 78.5,-47.5 parent: 2 - uid: 7051 components: - type: Transform pos: 38.5,-70.5 parent: 2 - - uid: 7078 + - uid: 7065 components: - type: Transform - pos: -13.5,-63.5 + pos: -58.5,-63.5 parent: 2 - uid: 7094 components: - type: Transform pos: -14.5,41.5 parent: 2 - - uid: 7205 + - uid: 7128 components: - type: Transform - pos: -32.5,-60.5 + pos: -62.5,-28.5 parent: 2 - - uid: 7215 + - uid: 7129 components: - type: Transform - pos: 45.5,-1.5 + pos: -62.5,-31.5 parent: 2 - - uid: 7336 + - uid: 7131 components: - type: Transform - pos: 50.5,-66.5 + pos: -62.5,-26.5 parent: 2 - - uid: 7351 + - uid: 7132 components: - type: Transform - pos: -53.5,-28.5 + pos: -62.5,-27.5 parent: 2 - - uid: 7385 + - uid: 7140 components: - type: Transform - pos: 43.5,-70.5 + pos: -59.5,-52.5 parent: 2 - - uid: 7418 + - uid: 7215 components: - type: Transform - pos: -51.5,-60.5 + pos: 45.5,-1.5 parent: 2 - - uid: 7443 + - uid: 7262 components: - type: Transform - pos: -25.5,-27.5 + pos: -57.5,-63.5 parent: 2 - - uid: 7444 + - uid: 7267 components: - type: Transform - pos: -25.5,-26.5 + pos: -51.5,-62.5 parent: 2 - - uid: 7513 + - uid: 7272 components: - type: Transform - pos: -53.5,-27.5 + pos: -55.5,-63.5 parent: 2 - - uid: 7615 + - uid: 7336 components: - type: Transform - pos: 32.5,-33.5 + pos: 50.5,-66.5 parent: 2 - - uid: 7620 + - uid: 7385 components: - type: Transform - pos: -41.5,-21.5 + pos: 43.5,-70.5 parent: 2 - - uid: 7668 + - uid: 7589 components: - type: Transform - pos: -51.5,-35.5 + pos: -5.5,-57.5 parent: 2 - - uid: 7679 + - uid: 7615 components: - type: Transform - pos: -50.5,-58.5 + pos: 32.5,-33.5 parent: 2 - - uid: 7705 + - uid: 7702 components: - type: Transform - pos: -12.5,-64.5 + pos: -34.5,-8.5 parent: 2 - - uid: 7720 + - uid: 7706 components: - type: Transform - pos: 33.5,-35.5 + pos: -28.5,-12.5 parent: 2 - - uid: 7754 + - uid: 7720 components: - type: Transform - pos: -53.5,-32.5 + pos: 33.5,-35.5 parent: 2 - - uid: 7755 + - uid: 7750 components: - type: Transform - pos: -50.5,-25.5 + pos: -35.5,-8.5 parent: 2 - uid: 7784 components: - type: Transform pos: 77.5,-47.5 parent: 2 - - uid: 7791 + - uid: 7787 components: - type: Transform - pos: 28.5,-9.5 + pos: -62.5,-23.5 parent: 2 - uid: 7798 components: @@ -88670,35 +97563,15 @@ entities: - type: Transform pos: 46.5,-63.5 parent: 2 - - uid: 7845 - components: - - type: Transform - pos: -48.5,-28.5 - parent: 2 - - uid: 7848 - components: - - type: Transform - pos: -27.5,-64.5 - parent: 2 - - uid: 7937 - components: - - type: Transform - pos: -28.5,-62.5 - parent: 2 - - uid: 7940 - components: - - type: Transform - pos: -27.5,-61.5 - parent: 2 - - uid: 7941 + - uid: 7881 components: - type: Transform - pos: -27.5,-60.5 + pos: 17.5,-9.5 parent: 2 - - uid: 7945 + - uid: 7890 components: - type: Transform - pos: -27.5,-63.5 + pos: 17.5,-10.5 parent: 2 - uid: 7963 components: @@ -88720,380 +97593,370 @@ entities: - type: Transform pos: 41.5,-59.5 parent: 2 - - uid: 7990 - components: - - type: Transform - pos: -46.5,-23.5 - parent: 2 - - uid: 8049 - components: - - type: Transform - pos: -46.5,-22.5 - parent: 2 - - uid: 8051 + - uid: 8057 components: - type: Transform - pos: -41.5,-23.5 + pos: 16.5,-78.5 parent: 2 - - uid: 8058 + - uid: 8059 components: - type: Transform - pos: -50.5,-35.5 + pos: 16.5,-82.5 parent: 2 - - uid: 8076 + - uid: 8060 components: - type: Transform - pos: -51.5,-44.5 + pos: 16.5,-87.5 parent: 2 - - uid: 8133 + - uid: 8061 components: - type: Transform - pos: -53.5,-45.5 + pos: 16.5,-84.5 parent: 2 - - uid: 8153 + - uid: 8062 components: - type: Transform - pos: -46.5,-21.5 + pos: 16.5,-86.5 parent: 2 - - uid: 8184 + - uid: 8063 components: - type: Transform - pos: -51.5,-38.5 + pos: 16.5,-88.5 parent: 2 - - uid: 8189 + - uid: 8064 components: - type: Transform - pos: -53.5,-40.5 + pos: 17.5,-95.5 parent: 2 - - uid: 8190 + - uid: 8067 components: - type: Transform - pos: -48.5,-46.5 + pos: 17.5,-89.5 parent: 2 - - uid: 8192 + - uid: 8068 components: - type: Transform - pos: -53.5,-41.5 + pos: 17.5,-92.5 parent: 2 - - uid: 8194 + - uid: 8069 components: - type: Transform - pos: -53.5,-46.5 + pos: 17.5,-93.5 parent: 2 - - uid: 8195 + - uid: 8070 components: - type: Transform - pos: -48.5,-45.5 + pos: 17.5,-91.5 parent: 2 - - uid: 8198 + - uid: 8071 components: - type: Transform - pos: -51.5,-48.5 + pos: 16.5,-95.5 parent: 2 - - uid: 8200 + - uid: 8073 components: - type: Transform - pos: -50.5,-38.5 + pos: 4.5,-99.5 parent: 2 - - uid: 8212 + - uid: 8074 components: - type: Transform - pos: -50.5,-48.5 + pos: 5.5,-96.5 parent: 2 - - uid: 8230 + - uid: 8075 components: - type: Transform - pos: 75.5,-41.5 + pos: 5.5,-92.5 parent: 2 - - uid: 8241 + - uid: 8076 components: - type: Transform - pos: -53.5,-33.5 + pos: -3.5,-88.5 parent: 2 - - uid: 8245 + - uid: 8078 components: - type: Transform - pos: -43.5,-17.5 + pos: -4.5,-88.5 parent: 2 - - uid: 8306 + - uid: 8079 components: - type: Transform - pos: -27.5,35.5 + pos: -5.5,-87.5 parent: 2 - - uid: 8327 + - uid: 8080 components: - type: Transform - pos: 74.5,-47.5 + pos: -2.5,-86.5 parent: 2 - - uid: 8354 + - uid: 8081 components: - type: Transform - pos: 44.5,-1.5 + pos: -8.5,-85.5 parent: 2 - - uid: 8372 + - uid: 8082 components: - type: Transform - pos: 42.5,-19.5 + pos: -8.5,-84.5 parent: 2 - - uid: 8407 + - uid: 8083 components: - type: Transform - pos: -4.5,15.5 + pos: -7.5,-86.5 parent: 2 - - uid: 8438 + - uid: 8084 components: - type: Transform - pos: 65.5,11.5 + pos: -7.5,-89.5 parent: 2 - - uid: 8455 + - uid: 8085 components: - type: Transform - pos: -43.5,-9.5 + pos: -10.5,-95.5 parent: 2 - - uid: 8456 + - uid: 8088 components: - type: Transform - pos: -43.5,-8.5 + pos: -8.5,-97.5 parent: 2 - - uid: 8524 + - uid: 8091 components: - type: Transform - pos: -50.5,-60.5 + pos: -2.5,-98.5 parent: 2 - - uid: 8549 + - uid: 8096 components: - type: Transform - pos: 49.5,-5.5 + pos: -1.5,-98.5 parent: 2 - - uid: 8551 + - uid: 8097 components: - type: Transform - pos: 49.5,-4.5 + pos: -1.5,-97.5 parent: 2 - - uid: 8558 + - uid: 8130 components: - type: Transform - pos: -19.5,-57.5 + pos: -12.5,-76.5 parent: 2 - - uid: 8657 + - uid: 8212 components: - type: Transform - pos: -34.5,4.5 + pos: -12.5,-82.5 parent: 2 - - uid: 8670 + - uid: 8215 components: - type: Transform - pos: -36.5,15.5 + pos: -11.5,-88.5 parent: 2 - - uid: 8673 + - uid: 8216 components: - type: Transform - pos: 29.5,14.5 + pos: -12.5,-89.5 parent: 2 - - uid: 8697 + - uid: 8217 components: - type: Transform - pos: 45.5,6.5 + pos: -12.5,-88.5 parent: 2 - - uid: 8698 + - uid: 8218 components: - type: Transform - pos: 46.5,6.5 + pos: -13.5,-80.5 parent: 2 - - uid: 8699 + - uid: 8222 components: - type: Transform - pos: 47.5,6.5 + pos: -13.5,-78.5 parent: 2 - - uid: 8700 + - uid: 8225 components: - type: Transform - pos: 51.5,10.5 + pos: -13.5,-74.5 parent: 2 - - uid: 8701 + - uid: 8226 components: - type: Transform - pos: 51.5,11.5 + pos: -13.5,-72.5 parent: 2 - - uid: 8702 + - uid: 8228 components: - type: Transform - pos: 51.5,12.5 + pos: -13.5,-68.5 parent: 2 - - uid: 8703 + - uid: 8229 components: - type: Transform - pos: 50.5,13.5 + pos: -16.5,-68.5 parent: 2 - - uid: 8704 + - uid: 8230 components: - type: Transform - pos: 49.5,13.5 + pos: 75.5,-41.5 parent: 2 - - uid: 8705 + - uid: 8231 components: - type: Transform - pos: 48.5,13.5 + pos: -12.5,-69.5 parent: 2 - - uid: 8706 + - uid: 8232 components: - type: Transform - pos: 44.5,13.5 + pos: -12.5,-71.5 parent: 2 - - uid: 8707 + - uid: 8233 components: - type: Transform - pos: 43.5,13.5 + pos: -12.5,-72.5 parent: 2 - - uid: 8708 + - uid: 8238 components: - type: Transform - pos: 42.5,13.5 + pos: -12.5,-77.5 parent: 2 - - uid: 8713 + - uid: 8239 components: - type: Transform - pos: 30.5,15.5 + pos: -12.5,-78.5 parent: 2 - - uid: 8714 + - uid: 8241 components: - type: Transform - pos: 30.5,16.5 + pos: -12.5,-80.5 parent: 2 - - uid: 8719 + - uid: 8245 components: - type: Transform - pos: 35.5,23.5 + pos: -43.5,-17.5 parent: 2 - - uid: 8720 + - uid: 8306 components: - type: Transform - pos: 35.5,24.5 + pos: -27.5,35.5 parent: 2 - - uid: 8721 + - uid: 8327 components: - type: Transform - pos: 35.5,25.5 + pos: 74.5,-47.5 parent: 2 - - uid: 8722 + - uid: 8346 components: - type: Transform - pos: 28.5,23.5 + pos: -12.5,-85.5 parent: 2 - - uid: 8723 + - uid: 8354 components: - type: Transform - pos: 28.5,24.5 + pos: 44.5,-1.5 parent: 2 - - uid: 8724 + - uid: 8372 components: - type: Transform - pos: 28.5,25.5 + pos: 42.5,-19.5 parent: 2 - - uid: 8725 + - uid: 8395 components: - type: Transform - pos: 28.5,27.5 + pos: 4.5,-50.5 parent: 2 - - uid: 8726 + - uid: 8396 components: - type: Transform - pos: 28.5,28.5 + pos: 8.5,-50.5 parent: 2 - - uid: 8727 + - uid: 8403 components: - type: Transform - pos: 34.5,28.5 + pos: -1.5,-50.5 parent: 2 - - uid: 8728 + - uid: 8407 components: - type: Transform - pos: 35.5,28.5 + pos: -4.5,15.5 parent: 2 - - uid: 8729 + - uid: 8415 components: - type: Transform - pos: 36.5,28.5 + pos: -5.5,-50.5 parent: 2 - - uid: 8730 + - uid: 8438 components: - type: Transform - pos: 35.5,31.5 + pos: 65.5,11.5 parent: 2 - - uid: 8731 + - uid: 8455 components: - type: Transform - pos: 35.5,32.5 + pos: -43.5,-9.5 parent: 2 - - uid: 8732 + - uid: 8456 components: - type: Transform - pos: 35.5,33.5 + pos: -43.5,-8.5 parent: 2 - - uid: 8733 + - uid: 8485 components: - type: Transform - pos: 36.5,36.5 + pos: 12.5,-67.5 parent: 2 - - uid: 8734 + - uid: 8513 components: - type: Transform - pos: 35.5,36.5 + pos: 33.5,22.5 parent: 2 - - uid: 8735 + - uid: 8549 components: - type: Transform - pos: 34.5,36.5 + pos: 49.5,-5.5 parent: 2 - - uid: 8736 + - uid: 8551 components: - type: Transform - pos: 35.5,38.5 + pos: 49.5,-4.5 parent: 2 - - uid: 8737 + - uid: 8558 components: - type: Transform - pos: 35.5,41.5 + pos: -19.5,-57.5 parent: 2 - - uid: 8738 + - uid: 8657 components: - type: Transform - pos: 35.5,42.5 + pos: -35.5,3.5 parent: 2 - - uid: 8739 + - uid: 8697 components: - type: Transform - pos: 32.5,43.5 + pos: 45.5,6.5 parent: 2 - - uid: 8740 + - uid: 8698 components: - type: Transform - pos: 32.5,44.5 + pos: 46.5,6.5 parent: 2 - - uid: 8741 + - uid: 8699 components: - type: Transform - pos: 32.5,45.5 + pos: 47.5,6.5 parent: 2 - - uid: 8742 + - uid: 8700 components: - type: Transform - pos: 34.5,44.5 + pos: 51.5,10.5 parent: 2 - - uid: 8743 + - uid: 8701 components: - type: Transform - pos: 30.5,44.5 + pos: 51.5,11.5 parent: 2 - - uid: 8744 + - uid: 8704 components: - type: Transform - pos: 29.5,42.5 + pos: 49.5,13.5 parent: 2 - - uid: 8745 + - uid: 8705 components: - type: Transform - pos: 29.5,41.5 + pos: 48.5,13.5 parent: 2 - uid: 8901 components: @@ -89105,6 +97968,11 @@ entities: - type: Transform pos: 16.5,-27.5 parent: 2 + - uid: 8911 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 - uid: 8925 components: - type: Transform @@ -89115,6 +97983,11 @@ entities: - type: Transform pos: -19.5,8.5 parent: 2 + - uid: 9085 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 - uid: 9086 components: - type: Transform @@ -89140,11 +98013,36 @@ entities: - type: Transform pos: -21.5,-9.5 parent: 2 + - uid: 9250 + components: + - type: Transform + pos: -5.5,-55.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 - uid: 9282 components: - type: Transform pos: 18.5,-60.5 parent: 2 + - uid: 9307 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: 12.5,-71.5 + parent: 2 - uid: 9419 components: - type: Transform @@ -89185,6 +98083,21 @@ entities: - type: Transform pos: -52.5,6.5 parent: 2 + - uid: 9587 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 - uid: 9593 components: - type: Transform @@ -89195,6 +98108,11 @@ 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 @@ -89235,35 +98153,20 @@ entities: - type: Transform pos: -50.5,6.5 parent: 2 - - uid: 9644 - components: - - type: Transform - pos: 13.5,3.5 - parent: 2 - uid: 9813 components: - type: Transform pos: 80.5,-48.5 parent: 2 - - uid: 9861 - components: - - type: Transform - pos: -55.5,-44.5 - parent: 2 - - uid: 9862 - components: - - type: Transform - pos: -26.5,-56.5 - parent: 2 - - uid: 9887 + - uid: 9889 components: - type: Transform - pos: -54.5,-62.5 + pos: -49.5,32.5 parent: 2 - - uid: 9889 + - uid: 9928 components: - type: Transform - pos: -49.5,32.5 + pos: -49.5,-40.5 parent: 2 - uid: 9936 components: @@ -89280,31 +98183,6 @@ entities: - type: Transform pos: 57.5,-39.5 parent: 2 - - uid: 10014 - components: - - type: Transform - pos: -16.5,-65.5 - parent: 2 - - uid: 10015 - components: - - type: Transform - pos: -14.5,-65.5 - parent: 2 - - uid: 10016 - components: - - type: Transform - pos: -20.5,-65.5 - parent: 2 - - uid: 10017 - components: - - type: Transform - pos: -18.5,-65.5 - parent: 2 - - uid: 10018 - components: - - type: Transform - pos: -18.5,-66.5 - parent: 2 - uid: 10020 components: - type: Transform @@ -89405,55 +98283,71 @@ entities: - type: Transform pos: 51.5,-27.5 parent: 2 - - uid: 10060 + - uid: 10064 components: - type: Transform - pos: 13.5,2.5 + pos: 16.5,-42.5 parent: 2 - - uid: 10061 + - uid: 10099 components: - type: Transform - pos: 13.5,1.5 + pos: -28.5,-19.5 parent: 2 - - uid: 10075 + - uid: 10194 components: - type: Transform - pos: 13.5,-1.5 + pos: 2.5,-18.5 parent: 2 - - uid: 10076 + - uid: 10199 components: - type: Transform - pos: 13.5,-2.5 + pos: -20.5,-12.5 parent: 2 - - uid: 10221 + - uid: 10225 components: - type: Transform - pos: 20.5,-16.5 + pos: -38.5,-29.5 parent: 2 - - uid: 10382 + - uid: 10237 components: - type: Transform - pos: 13.5,-0.5 + rot: 3.141592653589793 rad + 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 + components: + - type: Transform + pos: 6.5,-9.5 parent: 2 - uid: 10395 components: - type: Transform pos: -24.5,-49.5 parent: 2 - - uid: 10449 + - uid: 10435 components: - type: Transform - pos: 81.5,-48.5 + pos: -35.5,-51.5 parent: 2 - - uid: 10468 + - uid: 10449 components: - type: Transform - pos: -71.5,-62.5 + pos: 81.5,-48.5 parent: 2 - - uid: 10471 + - uid: 10468 components: - type: Transform - pos: -73.5,-54.5 + pos: -65.5,-63.5 parent: 2 - uid: 10474 components: @@ -89515,985 +98409,1010 @@ entities: - type: Transform pos: -10.5,-63.5 parent: 2 - - uid: 10570 + - uid: 10576 components: - type: Transform - pos: -6.5,-64.5 + pos: 7.5,-59.5 parent: 2 - - uid: 10571 + - uid: 10613 components: - type: Transform - pos: -6.5,-65.5 + pos: -12.5,-45.5 parent: 2 - - uid: 10572 + - uid: 10614 components: - type: Transform - pos: -5.5,-67.5 + pos: -14.5,-45.5 parent: 2 - - uid: 10573 + - uid: 10616 components: - type: Transform - pos: -6.5,-71.5 + pos: -16.5,-45.5 parent: 2 - - uid: 10574 + - uid: 10626 components: - type: Transform - pos: -10.5,-71.5 + pos: -29.5,-14.5 parent: 2 - - uid: 10575 + - uid: 10645 components: - type: Transform - pos: -10.5,-69.5 + pos: -63.5,-63.5 parent: 2 - - uid: 10576 + - uid: 10649 components: - type: Transform - pos: -10.5,-68.5 + pos: -61.5,-63.5 parent: 2 - - uid: 10577 + - uid: 10650 components: - type: Transform - pos: -10.5,-67.5 + pos: -79.5,-63.5 parent: 2 - - uid: 10578 + - uid: 10651 components: - type: Transform - pos: -10.5,-66.5 + pos: -64.5,-63.5 parent: 2 - - uid: 10579 + - uid: 10666 components: - type: Transform - pos: 8.5,-67.5 + pos: -59.5,-53.5 parent: 2 - - uid: 10580 + - uid: 10686 components: - type: Transform - pos: 9.5,-71.5 + pos: -38.5,6.5 parent: 2 - - uid: 10581 + - uid: 10696 components: - type: Transform - pos: 13.5,-71.5 + pos: -57.5,-22.5 parent: 2 - - uid: 10582 + - uid: 10717 components: - type: Transform - pos: 13.5,-69.5 + pos: -45.5,32.5 parent: 2 - - uid: 10583 + - uid: 10721 components: - type: Transform - pos: 13.5,-68.5 + pos: -43.5,32.5 parent: 2 - - uid: 10584 + - uid: 10724 components: - type: Transform - pos: 13.5,-67.5 + pos: 71.5,12.5 parent: 2 - - uid: 10585 + - uid: 10733 components: - type: Transform - pos: 13.5,-66.5 + pos: 69.5,12.5 parent: 2 - - uid: 10586 + - uid: 10736 components: - type: Transform - pos: 13.5,-63.5 + pos: -55.5,-55.5 parent: 2 - - uid: 10587 + - uid: 10747 components: - type: Transform - pos: 13.5,-61.5 + pos: 7.5,2.5 parent: 2 - - uid: 10588 + - uid: 10753 components: - type: Transform - pos: 13.5,-60.5 + pos: -54.5,-63.5 parent: 2 - - uid: 10589 + - uid: 10764 components: - type: Transform - pos: 13.5,-62.5 + pos: -45.5,-3.5 parent: 2 - - uid: 10590 + - uid: 10765 components: - type: Transform - pos: 8.5,-62.5 + pos: -48.5,-8.5 parent: 2 - - uid: 10591 + - uid: 10779 components: - type: Transform - pos: 9.5,-64.5 + pos: -49.5,6.5 parent: 2 - - uid: 10592 + - uid: 10786 components: - type: Transform - pos: 9.5,-65.5 + pos: 59.5,-7.5 parent: 2 - - uid: 10593 + - uid: 10806 components: - type: Transform - pos: 6.5,-56.5 + pos: 64.5,-60.5 parent: 2 - - uid: 10594 + - uid: 10811 components: - type: Transform - pos: 6.5,-55.5 + pos: 76.5,-56.5 parent: 2 - - uid: 10595 + - uid: 10815 components: - type: Transform - pos: 6.5,-54.5 + pos: 59.5,-43.5 parent: 2 - - uid: 10596 + - uid: 10818 components: - type: Transform - pos: 8.5,-50.5 + pos: 9.5,5.5 parent: 2 - - uid: 10597 + - uid: 10832 components: - type: Transform - pos: 7.5,-50.5 + pos: 67.5,-84.5 parent: 2 - - uid: 10598 + - uid: 10833 components: - type: Transform - pos: 6.5,-50.5 + pos: 62.5,-82.5 parent: 2 - - uid: 10599 + - uid: 10834 components: - type: Transform - pos: 4.5,-51.5 + pos: 69.5,-59.5 parent: 2 - - uid: 10600 + - uid: 10835 components: - type: Transform - pos: 3.5,-51.5 + pos: 63.5,-82.5 parent: 2 - - uid: 10601 + - uid: 10838 components: - type: Transform - pos: 2.5,-51.5 + pos: 64.5,-70.5 parent: 2 - - uid: 10602 + - uid: 10845 components: - type: Transform - pos: 1.5,-51.5 + pos: 72.5,-74.5 parent: 2 - - uid: 10603 + - uid: 10849 components: - type: Transform - pos: 0.5,-51.5 + pos: 62.5,-81.5 parent: 2 - - uid: 10604 + - uid: 10861 components: - type: Transform - pos: -0.5,-51.5 + pos: 75.5,-77.5 parent: 2 - - uid: 10606 + - uid: 10868 components: - type: Transform - pos: -1.5,-51.5 + pos: 71.5,-74.5 parent: 2 - - uid: 10607 + - uid: 10876 components: - type: Transform - pos: -3.5,-54.5 + pos: 72.5,-73.5 parent: 2 - - uid: 10608 + - uid: 10883 components: - type: Transform - pos: -3.5,-55.5 + pos: 85.5,-40.5 parent: 2 - - uid: 10609 + - uid: 10892 components: - type: Transform - pos: -3.5,-56.5 + pos: 12.5,-25.5 parent: 2 - - uid: 10613 + - uid: 10897 components: - type: Transform - pos: -12.5,-45.5 + pos: 16.5,-23.5 parent: 2 - - uid: 10614 + - uid: 10898 components: - type: Transform - pos: -14.5,-45.5 + pos: 12.5,-24.5 parent: 2 - - uid: 10616 + - uid: 10899 components: - type: Transform - pos: -16.5,-45.5 + pos: 13.5,-23.5 parent: 2 - - uid: 10660 + - uid: 10926 components: - type: Transform - pos: -49.5,-55.5 + pos: 11.5,4.5 parent: 2 - - uid: 10661 + - uid: 10942 components: - type: Transform - pos: -49.5,-53.5 + pos: 11.5,2.5 parent: 2 - - uid: 10662 + - uid: 10958 components: - type: Transform - pos: -46.5,-56.5 + pos: -9.5,-68.5 parent: 2 - - uid: 10663 + - uid: 10975 components: - type: Transform - pos: -45.5,-56.5 + pos: 81.5,-39.5 parent: 2 - - uid: 10664 + - uid: 10994 components: - type: Transform - pos: -44.5,-56.5 + pos: -26.5,-17.5 parent: 2 - - uid: 10686 + - uid: 11006 components: - type: Transform - pos: -38.5,6.5 + rot: -1.5707963267948966 rad + pos: -37.5,13.5 parent: 2 - - uid: 10716 + - uid: 11011 components: - type: Transform - pos: -61.5,-45.5 + pos: 80.5,-39.5 parent: 2 - - uid: 10717 + - uid: 11061 components: - type: Transform - pos: -45.5,32.5 + pos: -27.5,-12.5 parent: 2 - - uid: 10721 + - uid: 11072 components: - type: Transform - pos: -43.5,32.5 + pos: 83.5,-37.5 parent: 2 - - uid: 10724 + - uid: 11110 components: - type: Transform - pos: 71.5,12.5 + pos: -37.5,2.5 parent: 2 - - uid: 10729 + - uid: 11113 components: - type: Transform - pos: -41.5,-31.5 + pos: 84.5,-36.5 parent: 2 - - uid: 10733 + - uid: 11146 components: - type: Transform - pos: 69.5,12.5 + pos: -37.5,3.5 parent: 2 - - uid: 10748 + - uid: 11168 components: - type: Transform - pos: -73.5,-60.5 + pos: 12.5,-74.5 parent: 2 - - uid: 10751 + - uid: 11175 components: - type: Transform - pos: -50.5,-56.5 + pos: -9.5,-69.5 parent: 2 - - uid: 10753 + - uid: 11176 components: - type: Transform - pos: -72.5,-45.5 + pos: 0.5,-82.5 parent: 2 - - uid: 10754 + - uid: 11200 components: - type: Transform - pos: -71.5,-45.5 + pos: 91.5,-37.5 parent: 2 - - uid: 10755 + - uid: 11214 components: - type: Transform - pos: -58.5,-45.5 + pos: -23.5,-12.5 parent: 2 - - uid: 10757 + - uid: 11254 components: - type: Transform - pos: -68.5,-45.5 + pos: 39.5,25.5 parent: 2 - - uid: 10758 + - uid: 11267 components: - type: Transform - pos: -67.5,-45.5 + pos: -28.5,-39.5 parent: 2 - - uid: 10759 + - uid: 11272 components: - type: Transform - pos: -66.5,-45.5 + pos: 71.5,-45.5 parent: 2 - - uid: 10761 + - uid: 11299 components: - type: Transform - pos: -63.5,-45.5 + pos: 70.5,-45.5 parent: 2 - - uid: 10762 + - uid: 11320 components: - type: Transform - pos: -62.5,-45.5 + pos: 88.5,-38.5 parent: 2 - - uid: 10764 + - uid: 11345 components: - type: Transform - pos: -64.5,-45.5 + pos: 26.5,-27.5 parent: 2 - - uid: 10765 + - uid: 11355 components: - type: Transform - pos: -72.5,-64.5 + pos: 28.5,-36.5 parent: 2 - - uid: 10766 + - uid: 11390 components: - type: Transform - pos: -57.5,-44.5 + pos: 25.5,-29.5 parent: 2 - - uid: 10767 + - uid: 11392 components: - type: Transform - pos: -56.5,-44.5 + pos: 26.5,-28.5 parent: 2 - - uid: 10768 + - uid: 11393 components: - type: Transform - pos: -57.5,-45.5 + pos: 32.5,-35.5 parent: 2 - - uid: 10769 + - uid: 11420 components: - type: Transform - pos: -57.5,-46.5 + pos: -20.5,8.5 parent: 2 - - uid: 10770 + - uid: 11525 components: - type: Transform - pos: -57.5,-47.5 + pos: 72.5,-67.5 parent: 2 - - uid: 10771 + - uid: 11543 components: - type: Transform - pos: -56.5,-47.5 + pos: 84.5,-41.5 parent: 2 - - uid: 10772 + - uid: 11552 components: - type: Transform - pos: -73.5,-50.5 + pos: 89.5,-38.5 parent: 2 - - uid: 10773 + - uid: 11587 components: - type: Transform - pos: -73.5,-48.5 + pos: 34.5,3.5 parent: 2 - - uid: 10774 + - uid: 11589 components: - type: Transform - pos: -67.5,-44.5 + pos: 89.5,-37.5 parent: 2 - - uid: 10776 + - uid: 11653 components: - type: Transform - pos: -66.5,-44.5 + pos: -35.5,-1.5 parent: 2 - - uid: 10779 + - uid: 11672 components: - type: Transform - pos: -49.5,6.5 + pos: 27.5,-59.5 parent: 2 - - uid: 10786 + - uid: 11822 components: - type: Transform - pos: 59.5,-7.5 + pos: 81.5,-45.5 parent: 2 - - uid: 10804 + - uid: 11839 components: - type: Transform - pos: -73.5,-47.5 + pos: 77.5,-71.5 parent: 2 - - uid: 10805 + - uid: 11840 components: - type: Transform - pos: -72.5,-46.5 + pos: 65.5,-84.5 parent: 2 - - uid: 10806 + - uid: 11847 components: - type: Transform - pos: 64.5,-60.5 + pos: 90.5,-41.5 parent: 2 - - uid: 10811 + - uid: 11864 components: - type: Transform - pos: 76.5,-56.5 + pos: 71.5,-57.5 parent: 2 - - uid: 10815 + - uid: 11874 components: - type: Transform - pos: 59.5,-43.5 + pos: 81.5,-44.5 parent: 2 - - uid: 10818 + - uid: 11895 components: - type: Transform - pos: -20.5,-66.5 + pos: -20.5,-6.5 parent: 2 - - uid: 10832 + - uid: 11899 components: - type: Transform - pos: 67.5,-84.5 + pos: 76.5,5.5 parent: 2 - - uid: 10833 + - uid: 11900 components: - type: Transform - pos: 62.5,-82.5 + pos: 37.5,-8.5 parent: 2 - - uid: 10834 + - uid: 12006 components: - type: Transform - pos: 69.5,-59.5 + pos: -22.5,-12.5 parent: 2 - - uid: 10835 + - uid: 12014 components: - type: Transform - pos: 63.5,-82.5 + pos: 5.5,-9.5 parent: 2 - - uid: 10838 + - uid: 12015 components: - type: Transform - pos: 64.5,-70.5 + pos: 4.5,-6.5 parent: 2 - - uid: 10845 + - uid: 12019 components: - type: Transform - pos: 72.5,-74.5 + pos: 7.5,-9.5 parent: 2 - - uid: 10849 + - uid: 12044 components: - type: Transform - pos: 62.5,-81.5 + pos: -34.5,-34.5 parent: 2 - - uid: 10861 + - uid: 12047 components: - type: Transform - pos: 75.5,-77.5 + pos: -7.5,-16.5 parent: 2 - - uid: 10868 + - uid: 12048 components: - type: Transform - pos: 71.5,-74.5 + pos: 82.5,-43.5 parent: 2 - - uid: 10876 + - uid: 12108 components: - type: Transform - pos: 72.5,-73.5 + pos: -36.5,-35.5 parent: 2 - - uid: 10883 + - uid: 12109 components: - type: Transform - pos: 85.5,-40.5 + pos: -36.5,-37.5 parent: 2 - - uid: 10892 + - uid: 12150 components: - type: Transform - pos: 12.5,-25.5 + pos: -41.5,-1.5 parent: 2 - - uid: 10897 + - uid: 12224 components: - type: Transform - pos: 16.5,-23.5 + pos: -36.5,-29.5 parent: 2 - - uid: 10898 + - uid: 12225 components: - type: Transform - pos: 12.5,-24.5 + pos: -36.5,-30.5 parent: 2 - - uid: 10899 + - uid: 12228 components: - type: Transform - pos: 13.5,-23.5 + pos: -32.5,-22.5 parent: 2 - - uid: 10975 + - uid: 12300 components: - type: Transform - pos: 81.5,-39.5 + pos: 52.5,11.5 parent: 2 - - uid: 11011 + - uid: 12322 components: - type: Transform - pos: 80.5,-39.5 + pos: -28.5,-23.5 parent: 2 - - uid: 11072 + - uid: 12329 components: - type: Transform - pos: 83.5,-37.5 + pos: 75.5,11.5 parent: 2 - - uid: 11110 + - uid: 12343 components: - type: Transform - pos: -37.5,2.5 + pos: -56.5,-57.5 parent: 2 - - uid: 11113 + - uid: 12357 components: - type: Transform - pos: 84.5,-36.5 + pos: 75.5,-1.5 parent: 2 - - uid: 11121 + - uid: 12382 components: - type: Transform - pos: -48.5,-31.5 + pos: -31.5,13.5 parent: 2 - - uid: 11146 + - uid: 12434 components: - type: Transform - pos: -37.5,3.5 + pos: 6.5,-5.5 parent: 2 - - uid: 11170 + - uid: 12453 components: - type: Transform - pos: -34.5,5.5 + rot: 1.5707963267948966 rad + pos: -49.5,-38.5 parent: 2 - - uid: 11172 + - uid: 12482 components: - type: Transform - pos: -34.5,3.5 + rot: 1.5707963267948966 rad + pos: -49.5,-36.5 parent: 2 - - uid: 11177 + - uid: 12506 components: - type: Transform - pos: 19.5,0.5 + pos: 54.5,-5.5 parent: 2 - - uid: 11179 + - uid: 12530 components: - type: Transform - pos: 19.5,3.5 + pos: -41.5,-40.5 parent: 2 - - uid: 11181 + - uid: 12532 components: - type: Transform - pos: 17.5,0.5 + pos: -42.5,-40.5 parent: 2 - - uid: 11184 + - uid: 12533 components: - type: Transform - pos: 17.5,-0.5 + pos: -43.5,-40.5 parent: 2 - - uid: 11186 + - uid: 12534 components: - type: Transform - pos: 17.5,2.5 + pos: -44.5,-40.5 parent: 2 - - uid: 11190 + - uid: 12535 components: - type: Transform - pos: 19.5,-0.5 + pos: -45.5,-40.5 parent: 2 - - uid: 11192 + - uid: 12544 components: - type: Transform - pos: 17.5,3.5 + pos: 13.5,7.5 parent: 2 - - uid: 11200 + - uid: 12562 components: - type: Transform - pos: 91.5,-37.5 + pos: 13.5,6.5 parent: 2 - - uid: 11204 + - uid: 12588 components: - type: Transform - pos: 19.5,2.5 + pos: -41.5,-19.5 parent: 2 - - uid: 11259 + - uid: 12589 components: - type: Transform - pos: -40.5,-32.5 + pos: -43.5,-19.5 parent: 2 - - uid: 11268 + - uid: 12590 components: - type: Transform - pos: -51.5,-61.5 + pos: -44.5,-19.5 parent: 2 - - uid: 11272 + - uid: 12592 components: - type: Transform - pos: 71.5,-45.5 + pos: -45.5,-19.5 parent: 2 - - uid: 11299 + - uid: 12594 components: - type: Transform - pos: 70.5,-45.5 + pos: -42.5,-19.5 parent: 2 - - uid: 11320 + - uid: 12599 components: - type: Transform - pos: 88.5,-38.5 + pos: -23.5,-5.5 parent: 2 - - uid: 11345 + - uid: 12672 components: - type: Transform - pos: 26.5,-27.5 + pos: 8.5,5.5 parent: 2 - - uid: 11355 + - uid: 12687 components: - type: Transform - pos: 28.5,-36.5 + pos: -46.5,-32.5 parent: 2 - - uid: 11390 + - uid: 12688 components: - type: Transform - pos: 25.5,-29.5 + pos: -46.5,-27.5 parent: 2 - - uid: 11392 + - uid: 12702 components: - type: Transform - pos: 26.5,-28.5 + pos: 83.5,-42.5 parent: 2 - - uid: 11393 + - uid: 12712 components: - type: Transform - pos: 32.5,-35.5 + pos: 12.5,-73.5 parent: 2 - - uid: 11420 + - uid: 12725 components: - type: Transform - pos: -20.5,8.5 + pos: -4.5,-63.5 parent: 2 - - uid: 11504 + - uid: 12729 components: - type: Transform - pos: -73.5,-53.5 + pos: 6.5,-59.5 parent: 2 - - uid: 11507 + - uid: 12750 components: - type: Transform - pos: -73.5,-46.5 + pos: -5.5,-77.5 parent: 2 - - uid: 11525 + - uid: 12776 components: - type: Transform - pos: 72.5,-67.5 + pos: -5.5,-73.5 parent: 2 - - uid: 11543 + - uid: 12778 components: - type: Transform - pos: 84.5,-41.5 + pos: -5.5,-68.5 parent: 2 - - uid: 11552 + - uid: 12851 components: - type: Transform - pos: 89.5,-38.5 + pos: -43.5,7.5 parent: 2 - - uid: 11553 + - uid: 12885 components: - type: Transform - pos: -15.5,-66.5 + pos: -58.5,-27.5 parent: 2 - - uid: 11587 + - uid: 12886 components: - type: Transform - pos: 34.5,3.5 + pos: -59.5,-27.5 parent: 2 - - uid: 11589 + - uid: 12887 components: - type: Transform - pos: 89.5,-37.5 + pos: -60.5,-27.5 parent: 2 - - uid: 11639 + - uid: 12888 components: - type: Transform - pos: -18.5,-63.5 + pos: -60.5,-28.5 parent: 2 - - uid: 11653 + - uid: 12890 components: - type: Transform - pos: -35.5,-1.5 + pos: -60.5,-29.5 parent: 2 - - uid: 11672 + - uid: 12899 components: - type: Transform - pos: 27.5,-59.5 + pos: -60.5,-30.5 parent: 2 - - uid: 11772 + - uid: 12900 components: - type: Transform - pos: -23.5,-62.5 + pos: -60.5,-31.5 parent: 2 - - uid: 11822 + - uid: 12901 components: - type: Transform - pos: 81.5,-45.5 + pos: -34.5,14.5 parent: 2 - - uid: 11839 + - uid: 12917 components: - type: Transform - pos: 77.5,-71.5 + pos: -56.5,-30.5 parent: 2 - - uid: 11840 + - uid: 12925 components: - type: Transform - pos: 65.5,-84.5 + pos: -60.5,-32.5 parent: 2 - - uid: 11847 + - uid: 12926 components: - type: Transform - pos: 90.5,-41.5 + pos: -59.5,-32.5 parent: 2 - - uid: 11864 + - uid: 12927 components: - type: Transform - pos: 71.5,-57.5 + pos: -58.5,-32.5 parent: 2 - - uid: 11874 + - uid: 12973 components: - type: Transform - pos: 81.5,-44.5 + pos: -54.5,-26.5 parent: 2 - - uid: 11891 + - uid: 12974 components: - type: Transform - pos: -27.5,-32.5 + pos: -54.5,-32.5 parent: 2 - - uid: 11895 + - uid: 12975 components: - type: Transform - pos: -20.5,-6.5 + pos: -55.5,-32.5 parent: 2 - - uid: 11899 + - uid: 12988 components: - type: Transform - pos: 76.5,5.5 + pos: 49.5,-53.5 parent: 2 - - uid: 11900 + - uid: 12989 components: - type: Transform - pos: 37.5,-8.5 + pos: -18.5,4.5 parent: 2 - - uid: 12008 + - uid: 13032 components: - type: Transform - pos: -34.5,-1.5 + pos: 58.5,-7.5 parent: 2 - - uid: 12047 + - uid: 13039 components: - type: Transform - pos: -7.5,-16.5 + rot: -1.5707963267948966 rad + pos: 34.5,27.5 parent: 2 - - uid: 12048 + - uid: 13085 components: - type: Transform - pos: 82.5,-43.5 + pos: 75.5,-3.5 parent: 2 - - uid: 12150 + - uid: 13088 components: - type: Transform - pos: -41.5,-1.5 + pos: -20.5,-9.5 parent: 2 - - uid: 12300 + - uid: 13103 components: - type: Transform - pos: 52.5,11.5 + pos: -48.5,-20.5 parent: 2 - - uid: 12329 + - uid: 13117 components: - type: Transform - pos: 75.5,11.5 + pos: -49.5,-20.5 parent: 2 - - uid: 12357 + - uid: 13128 components: - type: Transform - pos: 75.5,-1.5 + pos: -47.5,-25.5 parent: 2 - - uid: 12506 + - uid: 13149 components: - type: Transform - pos: 54.5,-5.5 + pos: 82.5,-8.5 parent: 2 - - uid: 12599 + - uid: 13166 components: - type: Transform - pos: -23.5,-5.5 + pos: 83.5,-9.5 parent: 2 - - uid: 12696 + - uid: 13187 components: - type: Transform - pos: -28.5,-32.5 + pos: -16.5,30.5 parent: 2 - - uid: 12702 + - uid: 13208 components: - type: Transform - pos: 83.5,-42.5 + pos: 76.5,0.5 parent: 2 - - uid: 12710 + - uid: 13214 components: - type: Transform - pos: -41.5,-29.5 + pos: 76.5,2.5 parent: 2 - - uid: 12834 + - uid: 13246 components: - type: Transform - pos: -5.5,-62.5 + pos: 4.5,-8.5 parent: 2 - - uid: 12851 + - uid: 13267 components: - type: Transform - pos: -43.5,7.5 + pos: 8.5,-73.5 parent: 2 - - uid: 12988 + - uid: 13285 components: - type: Transform - pos: 49.5,-53.5 + pos: -9.5,-75.5 parent: 2 - - uid: 12989 + - uid: 13290 components: - type: Transform - pos: -18.5,4.5 + pos: -3.5,-54.5 parent: 2 - - uid: 13020 + - uid: 13300 components: - type: Transform - pos: -27.5,-58.5 + pos: -9.5,-73.5 parent: 2 - - uid: 13021 + - uid: 13310 components: - type: Transform - pos: -27.5,-57.5 + pos: 76.5,-0.5 parent: 2 - - uid: 13032 + - uid: 13311 components: - type: Transform - pos: 58.5,-7.5 + pos: 76.5,4.5 parent: 2 - - uid: 13037 + - uid: 13312 components: - type: Transform - pos: 12.5,-6.5 + pos: 76.5,7.5 parent: 2 - - uid: 13085 + - uid: 13351 components: - type: Transform - pos: 75.5,-3.5 + rot: -1.5707963267948966 rad + pos: 38.5,26.5 parent: 2 - - uid: 13088 + - uid: 13387 components: - type: Transform - pos: -20.5,-9.5 + pos: 12.5,-78.5 parent: 2 - - uid: 13149 + - uid: 13402 components: - type: Transform - pos: 82.5,-8.5 + pos: 8.5,-78.5 parent: 2 - - uid: 13166 + - uid: 13538 components: - type: Transform - pos: 83.5,-9.5 + pos: -50.5,-29.5 parent: 2 - - uid: 13187 + - uid: 13576 components: - type: Transform - pos: -16.5,30.5 + pos: 36.5,-5.5 parent: 2 - - uid: 13208 + - uid: 13577 components: - type: Transform - pos: 76.5,0.5 + pos: 37.5,-5.5 parent: 2 - - uid: 13214 + - uid: 13580 components: - type: Transform - pos: 76.5,2.5 + pos: 41.5,-8.5 parent: 2 - - uid: 13309 + - uid: 13620 components: - type: Transform - pos: -22.5,-66.5 + pos: 29.5,-16.5 parent: 2 - - uid: 13310 + - uid: 13644 components: - type: Transform - pos: 76.5,-0.5 + pos: 23.5,-24.5 parent: 2 - - uid: 13311 + - uid: 13676 components: - type: Transform - pos: 76.5,4.5 + pos: 76.5,10.5 parent: 2 - - uid: 13312 + - uid: 13683 components: - type: Transform - pos: 76.5,7.5 + pos: 5.5,-5.5 parent: 2 - - uid: 13422 + - uid: 13737 components: - type: Transform - pos: -18.5,-15.5 + pos: 8.5,-45.5 parent: 2 - - uid: 13576 + - uid: 13741 components: - type: Transform - pos: 36.5,-5.5 + pos: 8.5,-41.5 parent: 2 - - uid: 13577 + - uid: 13753 components: - type: Transform - pos: 37.5,-5.5 + pos: -72.5,-6.5 parent: 2 - - uid: 13580 + - uid: 13754 + components: + - type: Transform + pos: -72.5,-7.5 + parent: 2 + - uid: 13775 + components: + - type: Transform + pos: 21.5,-60.5 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: 22.5,-60.5 + parent: 2 + - uid: 13777 + components: + - type: Transform + pos: 24.5,-60.5 + parent: 2 + - uid: 13778 components: - type: Transform - pos: 41.5,-8.5 + pos: 25.5,-60.5 parent: 2 - - uid: 13620 + - uid: 13789 components: - type: Transform - pos: 29.5,-16.5 + pos: 12.5,-77.5 parent: 2 - - uid: 13644 + - uid: 13797 components: - type: Transform - pos: 23.5,-24.5 + pos: -52.5,-29.5 parent: 2 - - uid: 13676 + - uid: 13865 components: - type: Transform - pos: 76.5,10.5 + pos: -49.5,-41.5 parent: 2 - - uid: 13704 + - uid: 13876 components: - type: Transform - pos: -22.5,-64.5 + pos: -47.5,-39.5 parent: 2 - - uid: 13753 + - uid: 13885 components: - type: Transform - pos: -72.5,-6.5 + pos: -47.5,-42.5 parent: 2 - - uid: 13754 + - uid: 13923 components: - type: Transform - pos: -72.5,-7.5 + pos: -41.5,-42.5 parent: 2 - - uid: 13775 + - uid: 13924 components: - type: Transform - pos: 21.5,-60.5 + pos: -42.5,-42.5 parent: 2 - - uid: 13776 + - uid: 13991 components: - type: Transform - pos: 22.5,-60.5 + pos: -23.5,-49.5 parent: 2 - - uid: 13777 + - uid: 14109 components: - type: Transform - pos: 24.5,-60.5 + pos: -45.5,-42.5 parent: 2 - - uid: 13778 + - uid: 14112 components: - type: Transform - pos: 25.5,-60.5 + pos: -44.5,-42.5 parent: 2 - - uid: 13991 + - uid: 14180 components: - type: Transform - pos: -23.5,-49.5 + pos: -39.5,-45.5 parent: 2 - uid: 14208 components: @@ -90560,31 +99479,6 @@ entities: - type: Transform pos: -47.5,6.5 parent: 2 - - uid: 14274 - components: - - type: Transform - pos: -49.5,-62.5 - parent: 2 - - uid: 14279 - components: - - type: Transform - pos: -74.5,-63.5 - parent: 2 - - uid: 14281 - components: - - type: Transform - pos: -73.5,-64.5 - parent: 2 - - uid: 14282 - components: - - type: Transform - pos: -73.5,-59.5 - parent: 2 - - uid: 14283 - components: - - type: Transform - pos: -73.5,-58.5 - parent: 2 - uid: 14299 components: - type: Transform @@ -90660,10 +99554,10 @@ entities: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 14342 + - uid: 14333 components: - type: Transform - pos: -22.5,-65.5 + pos: 46.5,25.5 parent: 2 - uid: 14358 components: @@ -90695,11 +99589,6 @@ entities: - type: Transform pos: -26.5,14.5 parent: 2 - - uid: 14396 - components: - - type: Transform - pos: -14.5,-66.5 - parent: 2 - uid: 14402 components: - type: Transform @@ -90740,46 +99629,141 @@ entities: - type: Transform pos: 64.5,-58.5 parent: 2 - - uid: 14720 + - uid: 14753 components: - type: Transform - pos: -21.5,-66.5 + pos: -50.5,-26.5 parent: 2 - - uid: 14847 + - uid: 14754 components: - type: Transform - pos: -6.5,-54.5 + pos: -50.5,-27.5 parent: 2 - - uid: 14858 + - uid: 14755 components: - type: Transform - pos: -6.5,-22.5 + pos: -50.5,-33.5 parent: 2 - - uid: 14888 + - uid: 14756 components: - type: Transform - pos: -48.5,-42.5 + pos: -50.5,-34.5 parent: 2 - - uid: 14889 + - uid: 14858 components: - type: Transform - pos: -45.5,-42.5 + pos: -6.5,-22.5 parent: 2 - - uid: 14890 + - uid: 14910 components: - type: Transform - pos: -42.5,-44.5 + pos: -62.5,-32.5 parent: 2 - - uid: 14891 + - uid: 14911 components: - type: Transform - pos: -43.5,-44.5 + pos: -62.5,-34.5 parent: 2 - uid: 14912 components: - type: Transform pos: -6.5,16.5 parent: 2 + - uid: 14913 + components: + - type: Transform + pos: -62.5,-33.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: -62.5,-41.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + pos: -62.5,-42.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + pos: -63.5,-30.5 + parent: 2 + - uid: 14924 + components: + - type: Transform + pos: -63.5,-29.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: -62.5,-22.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: -63.5,-25.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: -63.5,-27.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + pos: -62.5,-29.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + pos: -63.5,-32.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + pos: -63.5,-34.5 + parent: 2 + - uid: 14933 + components: + - type: Transform + pos: -63.5,-40.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + pos: -63.5,-42.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: 13.5,-70.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: 7.5,-62.5 + parent: 2 + - uid: 14999 + components: + - type: Transform + pos: 7.5,-63.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + pos: 13.5,-68.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: -4.5,-54.5 + parent: 2 - uid: 15025 components: - type: Transform @@ -90790,11 +99774,6 @@ entities: - type: Transform pos: -61.5,24.5 parent: 2 - - uid: 15034 - components: - - type: Transform - pos: -69.5,-45.5 - parent: 2 - uid: 15173 components: - type: Transform @@ -90805,6 +99784,11 @@ entities: - type: Transform pos: 75.5,-62.5 parent: 2 + - uid: 15247 + components: + - type: Transform + pos: -60.5,-63.5 + parent: 2 - uid: 15262 components: - type: Transform @@ -90830,11 +99814,6 @@ entities: - type: Transform pos: -51.5,32.5 parent: 2 - - uid: 15318 - components: - - type: Transform - pos: 51.5,17.5 - parent: 2 - uid: 15334 components: - type: Transform @@ -90845,15 +99824,25 @@ entities: - type: Transform pos: 81.5,-7.5 parent: 2 - - uid: 15367 + - uid: 15408 components: - type: Transform - pos: -39.5,-35.5 + pos: -7.5,-23.5 parent: 2 - - uid: 15408 + - uid: 15452 components: - type: Transform - pos: -7.5,-23.5 + pos: 39.5,24.5 + parent: 2 + - uid: 15453 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: 35.5,20.5 parent: 2 - uid: 15461 components: @@ -90875,10 +99864,15 @@ entities: - type: Transform pos: -34.5,1.5 parent: 2 - - uid: 15616 + - uid: 15614 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - uid: 15619 components: - type: Transform - pos: -34.5,-9.5 + pos: 7.5,-75.5 parent: 2 - uid: 15628 components: @@ -90895,6 +99889,16 @@ entities: - type: Transform pos: 73.5,-5.5 parent: 2 + - uid: 15668 + components: + - type: Transform + pos: -4.5,-75.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: 12.5,-75.5 + parent: 2 - uid: 15710 components: - type: Transform @@ -90915,71 +99919,26 @@ entities: - type: Transform pos: -15.5,-45.5 parent: 2 - - uid: 15768 - components: - - type: Transform - pos: -58.5,-44.5 - parent: 2 - - uid: 15787 + - uid: 15740 components: - type: Transform - pos: -63.5,-63.5 + pos: -51.5,-9.5 parent: 2 - - uid: 15791 + - uid: 15741 components: - type: Transform - pos: -72.5,-61.5 + pos: 51.5,20.5 parent: 2 - - uid: 15792 + - uid: 15787 components: - type: Transform pos: -53.5,-63.5 parent: 2 - - uid: 15793 - components: - - type: Transform - pos: -62.5,-63.5 - parent: 2 - - uid: 15794 - components: - - type: Transform - pos: -58.5,-63.5 - parent: 2 - - uid: 15799 - components: - - type: Transform - pos: -60.5,-63.5 - parent: 2 - - uid: 15800 - components: - - type: Transform - pos: -59.5,-63.5 - parent: 2 - - uid: 15804 - components: - - type: Transform - pos: -65.5,-63.5 - parent: 2 - - uid: 15810 - components: - - type: Transform - pos: -56.5,-63.5 - parent: 2 - - uid: 15811 - components: - - type: Transform - pos: -55.5,-63.5 - parent: 2 - uid: 15861 components: - type: Transform pos: -40.5,32.5 parent: 2 - - uid: 15934 - components: - - type: Transform - pos: 13.5,-14.5 - parent: 2 - uid: 16039 components: - type: Transform @@ -91000,11 +99959,31 @@ entities: - type: Transform pos: 76.5,1.5 parent: 2 + - uid: 16050 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 16077 + components: + - type: Transform + pos: -57.5,-61.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 - uid: 16105 components: - type: Transform pos: 76.5,9.5 parent: 2 + - uid: 16121 + components: + - type: Transform + pos: 3.5,-84.5 + parent: 2 - uid: 16125 components: - type: Transform @@ -91025,6 +100004,11 @@ entities: - type: Transform pos: 77.5,-72.5 parent: 2 + - uid: 16172 + components: + - type: Transform + pos: 8.5,-71.5 + parent: 2 - uid: 16196 components: - type: Transform @@ -91055,10 +100039,10 @@ entities: - type: Transform pos: 75.5,6.5 parent: 2 - - uid: 16333 + - uid: 16328 components: - type: Transform - pos: -26.5,-16.5 + pos: -56.5,-61.5 parent: 2 - uid: 16366 components: @@ -91105,140 +100089,101 @@ entities: - type: Transform pos: 73.5,11.5 parent: 2 - - uid: 16717 - components: - - type: Transform - pos: -20.5,-63.5 - parent: 2 - - uid: 16718 + - uid: 16714 components: - type: Transform - pos: -21.5,-63.5 + pos: -61.5,-60.5 parent: 2 - uid: 16719 components: - type: Transform - pos: -22.5,-63.5 + pos: -61.5,-58.5 parent: 2 - uid: 16721 components: - type: Transform pos: 57.5,-61.5 parent: 2 - - uid: 16777 - components: - - type: Transform - pos: -9.5,15.5 - parent: 2 - - uid: 16780 - components: - - type: Transform - pos: -12.5,-65.5 - parent: 2 - - uid: 16784 - components: - - type: Transform - pos: -14.5,-63.5 - parent: 2 - - uid: 16785 - components: - - type: Transform - pos: -19.5,-63.5 - parent: 2 - - uid: 16787 - components: - - type: Transform - pos: -17.5,-63.5 - parent: 2 - - uid: 16788 - components: - - type: Transform - pos: -16.5,-63.5 - parent: 2 - - uid: 16789 - components: - - type: Transform - pos: -15.5,-63.5 - parent: 2 - - uid: 16795 + - uid: 16734 components: - type: Transform - pos: -22.5,-62.5 + pos: -60.5,-58.5 parent: 2 - - uid: 16796 + - uid: 16740 components: - type: Transform - pos: -24.5,-62.5 + pos: -57.5,-57.5 parent: 2 - - uid: 16797 + - uid: 16777 components: - type: Transform - pos: -25.5,-62.5 + pos: -9.5,15.5 parent: 2 - - uid: 16798 + - uid: 16883 components: - type: Transform - pos: -26.5,-62.5 + pos: -43.5,-5.5 parent: 2 - - uid: 16801 + - uid: 16896 components: - type: Transform - pos: -11.5,-65.5 + pos: -60.5,-60.5 parent: 2 - - uid: 16820 + - uid: 16902 components: - type: Transform - pos: -12.5,-63.5 + pos: -49.5,-9.5 parent: 2 - - uid: 16829 + - uid: 16916 components: - type: Transform - pos: -25.5,-65.5 + pos: -52.5,-63.5 parent: 2 - - uid: 16830 + - uid: 16942 components: - type: Transform - pos: -26.5,-65.5 + pos: -62.5,-62.5 parent: 2 - - uid: 16832 + - uid: 16944 components: - type: Transform - pos: -16.5,-62.5 + pos: -51.5,-63.5 parent: 2 - - uid: 16833 + - uid: 16945 components: - type: Transform - pos: -18.5,-62.5 + pos: -54.5,-62.5 parent: 2 - - uid: 16836 + - uid: 16946 components: - type: Transform - pos: -20.5,-62.5 + pos: -63.5,-62.5 parent: 2 - - uid: 16837 + - uid: 16955 components: - type: Transform - pos: -14.5,-62.5 + pos: -35.5,-54.5 parent: 2 - - uid: 16838 + - uid: 16961 components: - type: Transform - pos: -12.5,-62.5 + pos: 5.5,-59.5 parent: 2 - - uid: 16883 + - uid: 16979 components: - type: Transform - pos: -43.5,-5.5 + pos: 50.5,20.5 parent: 2 - - uid: 16960 + - uid: 16984 components: - type: Transform - pos: -24.5,-66.5 + pos: 63.5,11.5 parent: 2 - - uid: 16984 + - uid: 16987 components: - type: Transform - pos: 63.5,11.5 + rot: -1.5707963267948966 rad + pos: 17.5,-45.5 parent: 2 - uid: 17006 components: @@ -91295,51 +100240,11 @@ entities: - type: Transform pos: -42.5,3.5 parent: 2 - - uid: 17105 - components: - - type: Transform - pos: -47.5,-20.5 - parent: 2 - - uid: 17106 - components: - - type: Transform - pos: -45.5,-18.5 - parent: 2 - - uid: 17107 - components: - - type: Transform - pos: -46.5,-18.5 - parent: 2 - - uid: 17108 - components: - - type: Transform - pos: -47.5,-19.5 - parent: 2 - uid: 17111 components: - type: Transform pos: 66.5,11.5 parent: 2 - - uid: 17141 - components: - - type: Transform - pos: -52.5,-62.5 - parent: 2 - - uid: 17188 - components: - - type: Transform - pos: -59.5,-62.5 - parent: 2 - - uid: 17193 - components: - - type: Transform - pos: -51.5,-62.5 - parent: 2 - - uid: 17194 - components: - - type: Transform - pos: -56.5,-62.5 - parent: 2 - uid: 17196 components: - type: Transform @@ -91400,41 +100305,21 @@ entities: - type: Transform pos: -18.5,2.5 parent: 2 - - uid: 17291 - components: - - type: Transform - pos: 50.5,16.5 - parent: 2 - - uid: 17292 - components: - - type: Transform - pos: 51.5,16.5 - parent: 2 - - uid: 17293 - components: - - type: Transform - pos: 51.5,15.5 - parent: 2 - uid: 17309 components: - type: Transform pos: 57.5,12.5 parent: 2 - - uid: 17683 + - uid: 17420 components: - type: Transform - pos: -56.5,-46.5 + pos: -36.5,15.5 parent: 2 - uid: 17710 components: - type: Transform pos: 60.5,-52.5 parent: 2 - - uid: 17711 - components: - - type: Transform - pos: 60.5,-54.5 - parent: 2 - uid: 17712 components: - type: Transform @@ -91445,26 +100330,11 @@ entities: - type: Transform pos: 62.5,-52.5 parent: 2 - - uid: 17725 - components: - - type: Transform - pos: -49.5,-52.5 - parent: 2 - uid: 17729 components: - type: Transform pos: 81.5,-24.5 parent: 2 - - uid: 17751 - components: - - type: Transform - pos: -49.5,-63.5 - parent: 2 - - uid: 17752 - components: - - type: Transform - pos: -50.5,-63.5 - parent: 2 - uid: 17758 components: - type: Transform @@ -91510,11 +100380,6 @@ entities: - type: Transform pos: -9.5,27.5 parent: 2 - - uid: 17784 - components: - - type: Transform - pos: -64.5,-44.5 - parent: 2 - uid: 17785 components: - type: Transform @@ -91535,11 +100400,6 @@ entities: - type: Transform pos: -61.5,20.5 parent: 2 - - uid: 17794 - components: - - type: Transform - pos: 46.5,17.5 - parent: 2 - uid: 17796 components: - type: Transform @@ -91560,81 +100420,6 @@ entities: - type: Transform pos: -27.5,37.5 parent: 2 - - uid: 17807 - components: - - type: Transform - pos: 45.5,17.5 - parent: 2 - - uid: 17808 - components: - - type: Transform - pos: 44.5,17.5 - parent: 2 - - uid: 17809 - components: - - type: Transform - pos: 43.5,17.5 - parent: 2 - - uid: 17810 - components: - - type: Transform - pos: 42.5,17.5 - parent: 2 - - uid: 17811 - components: - - type: Transform - pos: 41.5,17.5 - parent: 2 - - uid: 17812 - components: - - type: Transform - pos: 41.5,18.5 - parent: 2 - - uid: 17813 - components: - - type: Transform - pos: 44.5,18.5 - parent: 2 - - uid: 17814 - components: - - type: Transform - pos: 48.5,18.5 - parent: 2 - - uid: 17815 - components: - - type: Transform - pos: 48.5,17.5 - parent: 2 - - uid: 17816 - components: - - type: Transform - pos: 47.5,17.5 - parent: 2 - - uid: 17817 - components: - - type: Transform - pos: 49.5,18.5 - parent: 2 - - uid: 17818 - components: - - type: Transform - pos: 38.5,18.5 - parent: 2 - - uid: 17819 - components: - - type: Transform - pos: 36.5,18.5 - parent: 2 - - uid: 17843 - components: - - type: Transform - pos: -74.5,-46.5 - parent: 2 - - uid: 17846 - components: - - type: Transform - pos: -73.5,-45.5 - parent: 2 - uid: 17866 components: - type: Transform @@ -91645,11 +100430,6 @@ entities: - type: Transform pos: -43.5,-3.5 parent: 2 - - uid: 17887 - components: - - type: Transform - pos: -72.5,-44.5 - parent: 2 - uid: 17889 components: - type: Transform @@ -91695,11 +100475,6 @@ entities: - type: Transform pos: -55.5,-3.5 parent: 2 - - uid: 17899 - components: - - type: Transform - pos: -74.5,-45.5 - parent: 2 - uid: 17900 components: - type: Transform @@ -91800,26 +100575,11 @@ entities: - type: Transform pos: -66.5,-21.5 parent: 2 - - uid: 17953 - components: - - type: Transform - pos: -54.5,-24.5 - parent: 2 - uid: 17954 components: - type: Transform pos: -60.5,-0.5 parent: 2 - - uid: 17955 - components: - - type: Transform - pos: -56.5,-22.5 - parent: 2 - - uid: 17957 - components: - - type: Transform - pos: -55.5,-22.5 - parent: 2 - uid: 17958 components: - type: Transform @@ -91940,21 +100700,11 @@ entities: - type: Transform pos: -11.5,27.5 parent: 2 - - uid: 18150 - components: - - type: Transform - pos: -50.5,-62.5 - parent: 2 - uid: 18175 components: - type: Transform pos: -64.5,-20.5 parent: 2 - - uid: 18188 - components: - - type: Transform - pos: -64.5,-62.5 - parent: 2 - uid: 18189 components: - type: Transform @@ -92090,11 +100840,6 @@ entities: - type: Transform pos: 76.5,-1.5 parent: 2 - - uid: 18275 - components: - - type: Transform - pos: -51.5,-64.5 - parent: 2 - uid: 18276 components: - type: Transform @@ -92235,11 +100980,6 @@ entities: - type: Transform pos: 77.5,2.5 parent: 2 - - uid: 18311 - components: - - type: Transform - pos: -50.5,-64.5 - parent: 2 - uid: 18312 components: - type: Transform @@ -92395,6 +101135,11 @@ entities: - type: Transform pos: 90.5,-15.5 parent: 2 + - uid: 18416 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 - uid: 18422 components: - type: Transform @@ -92455,865 +101200,430 @@ entities: - type: Transform pos: 92.5,-33.5 parent: 2 - - uid: 18463 - components: - - type: Transform - pos: 90.5,-14.5 - parent: 2 - - uid: 18468 - components: - - type: Transform - pos: -75.5,-16.5 - parent: 2 - - uid: 18469 - components: - - type: Transform - pos: -59.5,-4.5 - parent: 2 - - uid: 18471 - components: - - type: Transform - pos: 92.5,-17.5 - parent: 2 - - uid: 18472 - components: - - type: Transform - pos: 94.5,-17.5 - parent: 2 - - uid: 18495 - components: - - type: Transform - pos: 95.5,-30.5 - parent: 2 - - uid: 18496 - components: - - type: Transform - pos: 94.5,-30.5 - parent: 2 - - uid: 18497 - components: - - type: Transform - pos: 97.5,-28.5 - parent: 2 - - uid: 18498 - components: - - type: Transform - pos: 97.5,-26.5 - parent: 2 - - uid: 18500 - components: - - type: Transform - pos: 97.5,-24.5 - parent: 2 - - uid: 18501 - components: - - type: Transform - pos: 95.5,-19.5 - parent: 2 - - uid: 18503 - components: - - type: Transform - pos: 97.5,-36.5 - parent: 2 - - uid: 18506 - components: - - type: Transform - pos: -69.5,-21.5 - parent: 2 - - uid: 18511 - components: - - type: Transform - pos: -68.5,-22.5 - parent: 2 - - uid: 18517 - components: - - type: Transform - pos: 84.5,-46.5 - parent: 2 - - uid: 18533 - components: - - type: Transform - pos: 92.5,-39.5 - parent: 2 - - uid: 18534 - components: - - type: Transform - pos: 88.5,-43.5 - parent: 2 - - uid: 18536 - components: - - type: Transform - pos: 94.5,-37.5 - parent: 2 - - uid: 18537 - components: - - type: Transform - pos: 83.5,-47.5 - parent: 2 - - uid: 18600 - components: - - type: Transform - pos: -58.5,-62.5 - parent: 2 - - uid: 18606 - components: - - type: Transform - pos: -24.5,40.5 - parent: 2 - - uid: 18609 - components: - - type: Transform - pos: -63.5,-62.5 - parent: 2 - - uid: 18615 - components: - - type: Transform - pos: 67.5,12.5 - parent: 2 - - uid: 18629 - components: - - type: Transform - pos: 72.5,-6.5 - parent: 2 - - uid: 18632 - components: - - type: Transform - pos: 80.5,-6.5 - parent: 2 - - uid: 18641 - components: - - type: Transform - pos: 78.5,-4.5 - parent: 2 - - uid: 18770 - components: - - type: Transform - pos: 84.5,-13.5 - parent: 2 - - uid: 18771 - components: - - type: Transform - pos: 88.5,-11.5 - parent: 2 - - uid: 18772 - components: - - type: Transform - pos: 86.5,-11.5 - parent: 2 - - uid: 18775 - components: - - type: Transform - pos: 84.5,-12.5 - parent: 2 - - uid: 18781 - components: - - type: Transform - pos: 87.5,-11.5 - parent: 2 - - uid: 18782 - components: - - type: Transform - pos: 95.5,-36.5 - parent: 2 - - uid: 18783 - components: - - type: Transform - pos: 95.5,-37.5 - parent: 2 - - uid: 18784 - components: - - type: Transform - pos: 94.5,-36.5 - parent: 2 - - uid: 18785 - components: - - type: Transform - pos: 78.5,-55.5 - parent: 2 - - uid: 18786 - components: - - type: Transform - pos: 77.5,-56.5 - parent: 2 - - uid: 18787 - components: - - type: Transform - pos: 76.5,-55.5 - parent: 2 - - uid: 18788 - components: - - type: Transform - pos: 77.5,-55.5 - parent: 2 - - uid: 18789 - components: - - type: Transform - pos: 94.5,-38.5 - parent: 2 - - uid: 18790 - components: - - type: Transform - pos: 80.5,-52.5 - parent: 2 - - uid: 18791 - components: - - type: Transform - pos: 80.5,-54.5 - parent: 2 - - uid: 18793 - components: - - type: Transform - pos: 78.5,-54.5 - parent: 2 - - uid: 18801 - components: - - type: Transform - pos: 69.5,-72.5 - parent: 2 - - uid: 18825 - components: - - type: Transform - pos: -58.5,0.5 - parent: 2 - - uid: 18826 - components: - - type: Transform - pos: -77.5,-16.5 - parent: 2 - - uid: 18827 - components: - - type: Transform - pos: -60.5,0.5 - parent: 2 - - uid: 18828 - components: - - type: Transform - pos: -67.5,-3.5 - parent: 2 - - uid: 18830 - components: - - type: Transform - pos: -57.5,-21.5 - parent: 2 - - uid: 18831 - components: - - type: Transform - pos: -58.5,-21.5 - parent: 2 - - uid: 18841 - components: - - type: Transform - pos: -59.5,0.5 - parent: 2 - - uid: 18849 - components: - - type: Transform - pos: 54.5,-45.5 - parent: 2 - - uid: 18870 - components: - - type: Transform - pos: -40.5,-25.5 - parent: 2 - - uid: 18871 - components: - - type: Transform - pos: -42.5,-27.5 - parent: 2 - - uid: 18899 - components: - - type: Transform - pos: -28.5,6.5 - parent: 2 - - uid: 18923 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 2 - - uid: 18965 - components: - - type: Transform - pos: -30.5,-11.5 - parent: 2 - - uid: 19031 - components: - - type: Transform - pos: -76.5,-17.5 - parent: 2 - - uid: 19033 - components: - - type: Transform - pos: -66.5,-3.5 - parent: 2 - - uid: 19034 - components: - - type: Transform - pos: -65.5,-3.5 - parent: 2 - - uid: 19035 - components: - - type: Transform - pos: -64.5,-3.5 - parent: 2 - - uid: 19036 - components: - - type: Transform - pos: -75.5,-4.5 - parent: 2 - - uid: 19037 - components: - - type: Transform - pos: -59.5,2.5 - parent: 2 - - uid: 19038 - components: - - type: Transform - pos: 93.5,-38.5 - parent: 2 - - uid: 19039 - components: - - type: Transform - pos: 87.5,-44.5 - parent: 2 - - uid: 19040 - components: - - type: Transform - pos: 86.5,-15.5 - parent: 2 - - uid: 19043 - components: - - type: Transform - pos: -75.5,-12.5 - parent: 2 - - uid: 19044 - components: - - type: Transform - pos: -76.5,-18.5 - parent: 2 - - uid: 19045 - components: - - type: Transform - pos: -55.5,-21.5 - parent: 2 - - uid: 19046 - components: - - type: Transform - pos: -56.5,-21.5 - parent: 2 - - uid: 19047 - components: - - type: Transform - pos: -60.5,-1.5 - parent: 2 - - uid: 19048 - components: - - type: Transform - pos: 86.5,-34.5 - parent: 2 - - uid: 19049 - components: - - type: Transform - pos: 86.5,-35.5 - parent: 2 - - uid: 19050 - components: - - type: Transform - pos: 85.5,-36.5 - parent: 2 - - uid: 19051 - components: - - type: Transform - pos: 89.5,-42.5 - parent: 2 - - uid: 19056 - components: - - type: Transform - pos: 86.5,-38.5 - parent: 2 - - uid: 19057 - components: - - type: Transform - pos: 62.5,-49.5 - parent: 2 - - uid: 19058 - components: - - type: Transform - pos: 59.5,-74.5 - parent: 2 - - uid: 19059 - components: - - type: Transform - pos: 61.5,-50.5 - parent: 2 - - uid: 19060 - components: - - type: Transform - pos: 55.5,-57.5 - parent: 2 - - uid: 19061 - components: - - type: Transform - pos: 54.5,-60.5 - parent: 2 - - uid: 19062 - components: - - type: Transform - pos: 56.5,-64.5 - parent: 2 - - uid: 19063 - components: - - type: Transform - pos: 58.5,-63.5 - parent: 2 - - uid: 19064 - components: - - type: Transform - pos: 58.5,-69.5 - parent: 2 - - uid: 19065 - components: - - type: Transform - pos: 56.5,-72.5 - parent: 2 - - uid: 19066 - components: - - type: Transform - pos: 59.5,-75.5 - parent: 2 - - uid: 19067 - components: - - type: Transform - pos: 58.5,-75.5 - parent: 2 - - uid: 19068 - components: - - type: Transform - pos: 58.5,-76.5 - parent: 2 - - uid: 19184 + - uid: 18463 components: - type: Transform - pos: -16.5,-84.5 + pos: 90.5,-14.5 parent: 2 - - uid: 19188 + - uid: 18468 components: - type: Transform - pos: -15.5,-84.5 + pos: -75.5,-16.5 parent: 2 - - uid: 19189 + - uid: 18469 components: - type: Transform - pos: -14.5,-84.5 + pos: -59.5,-4.5 parent: 2 - - uid: 19190 + - uid: 18471 components: - type: Transform - pos: -14.5,-82.5 + pos: 92.5,-17.5 parent: 2 - - uid: 19191 + - uid: 18472 components: - type: Transform - pos: -15.5,-82.5 + pos: 94.5,-17.5 parent: 2 - - uid: 19192 + - uid: 18495 components: - type: Transform - pos: -16.5,-82.5 + pos: 95.5,-30.5 parent: 2 - - uid: 19193 + - uid: 18496 components: - type: Transform - pos: -13.5,-82.5 + pos: 94.5,-30.5 parent: 2 - - uid: 19194 + - uid: 18497 components: - type: Transform - pos: -13.5,-83.5 + pos: 97.5,-28.5 parent: 2 - - uid: 19195 + - uid: 18498 components: - type: Transform - pos: -12.5,-83.5 + pos: 97.5,-26.5 parent: 2 - - uid: 19196 + - uid: 18500 components: - type: Transform - pos: -11.5,-83.5 + pos: 97.5,-24.5 parent: 2 - - uid: 19197 + - uid: 18501 components: - type: Transform - pos: -11.5,-82.5 + pos: 95.5,-19.5 parent: 2 - - uid: 19198 + - uid: 18503 components: - type: Transform - pos: -11.5,-81.5 + pos: 97.5,-36.5 parent: 2 - - uid: 19199 + - uid: 18506 components: - type: Transform - pos: -11.5,-80.5 + pos: -69.5,-21.5 parent: 2 - - uid: 19200 + - uid: 18511 components: - type: Transform - pos: -9.5,-80.5 + pos: -68.5,-22.5 parent: 2 - - uid: 19201 + - uid: 18517 components: - type: Transform - pos: -9.5,-82.5 + pos: 84.5,-46.5 parent: 2 - - uid: 19202 + - uid: 18533 components: - type: Transform - pos: -10.5,-82.5 + pos: 92.5,-39.5 parent: 2 - - uid: 19203 + - uid: 18534 components: - type: Transform - pos: -9.5,-81.5 + pos: 88.5,-43.5 parent: 2 - - uid: 19204 + - uid: 18536 components: - type: Transform - pos: 3.5,-82.5 + pos: 94.5,-37.5 parent: 2 - - uid: 19205 + - uid: 18537 components: - type: Transform - pos: -8.5,-81.5 + pos: 83.5,-47.5 parent: 2 - - uid: 19206 + - uid: 18606 components: - type: Transform - pos: -7.5,-81.5 + pos: -24.5,40.5 parent: 2 - - uid: 19207 + - uid: 18615 components: - type: Transform - pos: -7.5,-80.5 + pos: 67.5,12.5 parent: 2 - - uid: 19208 + - uid: 18629 components: - type: Transform - pos: -5.5,-80.5 + pos: 72.5,-6.5 parent: 2 - - uid: 19209 + - uid: 18632 components: - type: Transform - pos: -5.5,-81.5 + pos: 80.5,-6.5 parent: 2 - - uid: 19210 + - uid: 18641 components: - type: Transform - pos: -5.5,-82.5 + pos: 78.5,-4.5 parent: 2 - - uid: 19211 + - uid: 18770 components: - type: Transform - pos: -5.5,-83.5 + pos: 84.5,-13.5 parent: 2 - - uid: 19212 + - uid: 18771 components: - type: Transform - pos: -4.5,-81.5 + pos: 88.5,-11.5 parent: 2 - - uid: 19213 + - uid: 18772 components: - type: Transform - pos: -3.5,-81.5 + pos: 86.5,-11.5 parent: 2 - - uid: 19214 + - uid: 18775 components: - type: Transform - pos: -6.5,-82.5 + pos: 84.5,-12.5 parent: 2 - - uid: 19215 + - uid: 18781 components: - type: Transform - pos: -3.5,-82.5 + pos: 87.5,-11.5 parent: 2 - - uid: 19216 + - uid: 18782 components: - type: Transform - pos: -2.5,-82.5 + pos: 95.5,-36.5 parent: 2 - - uid: 19217 + - uid: 18783 components: - type: Transform - pos: -1.5,-82.5 + pos: 95.5,-37.5 parent: 2 - - uid: 19218 + - uid: 18784 components: - type: Transform - pos: -0.5,-82.5 + pos: 94.5,-36.5 parent: 2 - - uid: 19219 + - uid: 18785 components: - type: Transform - pos: -0.5,-84.5 + pos: 78.5,-55.5 parent: 2 - - uid: 19220 + - uid: 18786 components: - type: Transform - pos: -1.5,-84.5 + pos: 77.5,-56.5 parent: 2 - - uid: 19221 + - uid: 18787 components: - type: Transform - pos: -2.5,-84.5 + pos: 76.5,-55.5 parent: 2 - - uid: 19222 + - uid: 18788 components: - type: Transform - pos: -3.5,-84.5 + pos: 77.5,-55.5 parent: 2 - - uid: 19223 + - uid: 18789 components: - type: Transform - pos: -0.5,-83.5 + pos: 94.5,-38.5 parent: 2 - - uid: 19224 + - uid: 18790 components: - type: Transform - pos: 0.5,-83.5 + pos: 80.5,-52.5 parent: 2 - - uid: 19225 + - uid: 18791 components: - type: Transform - pos: 1.5,-83.5 + pos: 80.5,-54.5 parent: 2 - - uid: 19226 + - uid: 18793 components: - type: Transform - pos: 3.5,-83.5 + pos: 78.5,-54.5 parent: 2 - - uid: 19227 + - uid: 18801 components: - type: Transform - pos: 2.5,-83.5 + pos: 69.5,-72.5 parent: 2 - - uid: 19228 + - uid: 18825 components: - type: Transform - pos: 3.5,-85.5 + pos: -58.5,0.5 parent: 2 - - uid: 19229 + - uid: 18826 components: - type: Transform - pos: 2.5,-85.5 + pos: -77.5,-16.5 parent: 2 - - uid: 19230 + - uid: 18827 components: - type: Transform - pos: 1.5,-85.5 + pos: -60.5,0.5 parent: 2 - - uid: 19231 + - uid: 18828 components: - type: Transform - pos: 0.5,-85.5 + pos: -67.5,-3.5 parent: 2 - - uid: 19232 + - uid: 18830 components: - type: Transform - pos: -0.5,-85.5 + pos: -57.5,-21.5 parent: 2 - - uid: 19233 + - uid: 18831 components: - type: Transform - pos: 4.5,-82.5 + pos: -58.5,-21.5 parent: 2 - - uid: 19234 + - uid: 18841 components: - type: Transform - pos: 5.5,-82.5 + pos: -59.5,0.5 parent: 2 - - uid: 19235 + - uid: 18849 components: - type: Transform - pos: 6.5,-82.5 + pos: 54.5,-45.5 parent: 2 - - uid: 19236 + - uid: 18899 components: - type: Transform - pos: 6.5,-84.5 + pos: -28.5,6.5 parent: 2 - - uid: 19237 + - uid: 18964 components: - type: Transform - pos: 4.5,-84.5 + pos: -59.5,-50.5 parent: 2 - - uid: 19238 + - uid: 19031 components: - type: Transform - pos: 5.5,-84.5 + pos: -76.5,-17.5 parent: 2 - - uid: 19239 + - uid: 19033 components: - type: Transform - pos: 6.5,-83.5 + pos: -66.5,-3.5 parent: 2 - - uid: 19240 + - uid: 19034 components: - type: Transform - pos: 8.5,-80.5 + pos: -65.5,-3.5 parent: 2 - - uid: 19241 + - uid: 19035 components: - type: Transform - pos: 8.5,-81.5 + pos: -64.5,-3.5 parent: 2 - - uid: 19242 + - uid: 19036 components: - type: Transform - pos: 8.5,-82.5 + pos: -75.5,-4.5 parent: 2 - - uid: 19243 + - uid: 19037 components: - type: Transform - pos: 8.5,-83.5 + pos: -59.5,2.5 parent: 2 - - uid: 19244 + - uid: 19038 components: - type: Transform - pos: 10.5,-82.5 + pos: 93.5,-38.5 parent: 2 - - uid: 19245 + - uid: 19039 components: - type: Transform - pos: 10.5,-81.5 + pos: 87.5,-44.5 parent: 2 - - uid: 19246 + - uid: 19040 components: - type: Transform - pos: 9.5,-80.5 + pos: 86.5,-15.5 parent: 2 - - uid: 19247 + - uid: 19043 components: - type: Transform - pos: 9.5,-82.5 + pos: -75.5,-12.5 parent: 2 - - uid: 19248 + - uid: 19044 components: - type: Transform - pos: 11.5,-81.5 + pos: -76.5,-18.5 parent: 2 - - uid: 19249 + - uid: 19047 components: - type: Transform - pos: 12.5,-81.5 + pos: -60.5,-1.5 parent: 2 - - uid: 19250 + - uid: 19048 components: - type: Transform - pos: 12.5,-82.5 + pos: 86.5,-34.5 parent: 2 - - uid: 19251 + - uid: 19049 components: - type: Transform - pos: 13.5,-82.5 + pos: 86.5,-35.5 parent: 2 - - uid: 19252 + - uid: 19050 components: - type: Transform - pos: 14.5,-82.5 + pos: 85.5,-36.5 parent: 2 - - uid: 19253 + - uid: 19051 components: - type: Transform - pos: 14.5,-83.5 + pos: 89.5,-42.5 parent: 2 - - uid: 19254 + - uid: 19056 components: - type: Transform - pos: 15.5,-83.5 + pos: 86.5,-38.5 parent: 2 - - uid: 19255 + - uid: 19057 components: - type: Transform - pos: 16.5,-83.5 + pos: 62.5,-49.5 parent: 2 - - uid: 19256 + - uid: 19058 components: - type: Transform - pos: 16.5,-82.5 + pos: 59.5,-74.5 parent: 2 - - uid: 19257 + - uid: 19059 components: - type: Transform - pos: 17.5,-82.5 + pos: 61.5,-50.5 parent: 2 - - uid: 19258 + - uid: 19060 components: - type: Transform - pos: 18.5,-82.5 + pos: 55.5,-57.5 parent: 2 - - uid: 19259 + - uid: 19061 components: - type: Transform - pos: 19.5,-82.5 + pos: 54.5,-60.5 parent: 2 - - uid: 19260 + - uid: 19062 components: - type: Transform - pos: 16.5,-81.5 + pos: 56.5,-64.5 parent: 2 - - uid: 19261 + - uid: 19063 components: - type: Transform - pos: 15.5,-81.5 + pos: 58.5,-63.5 parent: 2 - - uid: 19262 + - uid: 19064 components: - type: Transform - pos: 13.5,-80.5 + pos: 58.5,-69.5 parent: 2 - - uid: 19263 + - uid: 19065 components: - type: Transform - pos: 13.5,-80.5 + pos: 56.5,-72.5 parent: 2 - - uid: 19264 + - uid: 19066 components: - type: Transform - pos: 11.5,-79.5 + pos: 59.5,-75.5 parent: 2 - - uid: 19265 + - uid: 19067 components: - type: Transform - pos: 10.5,-79.5 + pos: 58.5,-75.5 parent: 2 - - uid: 19266 + - uid: 19068 components: - type: Transform - pos: 16.5,-84.5 + pos: 58.5,-76.5 parent: 2 - - uid: 19267 + - uid: 19097 components: - type: Transform - pos: 17.5,-84.5 + pos: 6.5,-54.5 parent: 2 - - uid: 19268 + - uid: 19142 components: - type: Transform - pos: 18.5,-84.5 + pos: 7.5,-54.5 parent: 2 - - uid: 19269 + - uid: 19186 components: - type: Transform - pos: -9.5,-79.5 + pos: -1.5,-96.5 parent: 2 - - uid: 19270 + - uid: 19213 components: - type: Transform - pos: -7.5,-79.5 + pos: -0.5,-96.5 parent: 2 - - uid: 19271 + - uid: 19248 components: - type: Transform - pos: 10.5,-78.5 + pos: -5.5,-78.5 parent: 2 - uid: 19544 components: @@ -93375,11 +101685,6 @@ entities: - type: Transform pos: -18.5,6.5 parent: 2 - - uid: 19627 - components: - - type: Transform - pos: -53.5,-25.5 - parent: 2 - uid: 19629 components: - type: Transform @@ -93430,11 +101735,6 @@ entities: - type: Transform pos: -59.5,-20.5 parent: 2 - - uid: 19759 - components: - - type: Transform - pos: -52.5,-20.5 - parent: 2 - uid: 19760 components: - type: Transform @@ -93465,11 +101765,6 @@ entities: - type: Transform pos: -60.5,-2.5 parent: 2 - - uid: 19773 - components: - - type: Transform - pos: -55.5,-23.5 - parent: 2 - uid: 19774 components: - type: Transform @@ -93670,6 +101965,11 @@ entities: - type: Transform pos: 93.5,-39.5 parent: 2 + - uid: 19975 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 - uid: 20005 components: - type: Transform @@ -93785,11 +102085,86 @@ entities: - type: Transform pos: -65.5,-18.5 parent: 2 + - uid: 20132 + components: + - type: Transform + pos: -5.5,-71.5 + parent: 2 - uid: 20144 components: - type: Transform pos: -7.5,13.5 parent: 2 + - uid: 20180 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 + - uid: 20182 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 + - uid: 20190 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 + - uid: 20196 + components: + - type: Transform + pos: 2.5,-58.5 + parent: 2 + - uid: 20197 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 20199 + components: + - type: Transform + pos: 3.5,-58.5 + parent: 2 + - uid: 20203 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 20207 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 + - uid: 20208 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 20209 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 20210 + components: + - type: Transform + pos: -4.5,-59.5 + parent: 2 + - uid: 20211 + components: + - type: Transform + pos: 1.5,-54.5 + parent: 2 + - uid: 20214 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 + - uid: 20215 + components: + - type: Transform + pos: -3.5,-59.5 + parent: 2 - uid: 20390 components: - type: Transform @@ -93875,16 +102250,6 @@ entities: - type: Transform pos: -46.5,0.5 parent: 2 - - uid: 20523 - components: - - type: Transform - pos: -33.5,-12.5 - parent: 2 - - uid: 20524 - components: - - type: Transform - pos: -33.5,-13.5 - parent: 2 - uid: 20526 components: - type: Transform @@ -93910,164 +102275,710 @@ entities: - type: Transform pos: -37.5,-8.5 parent: 2 - - uid: 20531 + - uid: 20553 components: - type: Transform - pos: -35.5,-8.5 + pos: -44.5,-7.5 parent: 2 - - uid: 20532 + - uid: 20589 components: - type: Transform - pos: -34.5,-8.5 + pos: -44.5,-8.5 parent: 2 - - uid: 20533 + - uid: 20591 components: - type: Transform - pos: -33.5,-8.5 + pos: -45.5,-7.5 parent: 2 - - uid: 20535 + - uid: 20592 components: - type: Transform - pos: -32.5,-8.5 + pos: -46.5,1.5 parent: 2 - - uid: 20536 + - uid: 20593 components: - type: Transform - pos: -31.5,-8.5 + pos: -46.5,2.5 parent: 2 - - uid: 20553 + - uid: 20664 components: - type: Transform - pos: -44.5,-7.5 + pos: -35.5,17.5 parent: 2 - - uid: 20555 + - uid: 20667 components: - type: Transform - pos: -36.5,-10.5 + pos: -32.5,15.5 parent: 2 - - uid: 20556 + - uid: 20677 components: - type: Transform - pos: -35.5,-10.5 + pos: -31.5,16.5 parent: 2 - - uid: 20588 + - uid: 20678 components: - type: Transform - pos: -37.5,-10.5 + pos: -31.5,17.5 parent: 2 - - uid: 20589 + - uid: 20679 components: - type: Transform - pos: -44.5,-8.5 + pos: -31.5,18.5 parent: 2 - - uid: 20590 + - uid: 21369 components: - type: Transform - pos: -31.5,-12.5 + pos: -56.5,-55.5 parent: 2 - - uid: 20591 + - uid: 21433 components: - type: Transform - pos: -45.5,-7.5 + pos: 27.5,9.5 parent: 2 - - uid: 20592 + - uid: 21488 components: - type: Transform - pos: -46.5,1.5 + pos: -64.5,-58.5 parent: 2 - - uid: 20593 + - uid: 21489 components: - type: Transform - pos: -46.5,2.5 + pos: -63.5,-60.5 parent: 2 - - uid: 20663 + - uid: 21495 components: - type: Transform - pos: -33.5,19.5 + pos: -78.5,-63.5 parent: 2 - - uid: 20664 + - uid: 21496 components: - type: Transform - pos: -35.5,17.5 + pos: -79.5,-46.5 parent: 2 - - uid: 20667 + - uid: 21497 components: - type: Transform - pos: -32.5,15.5 + pos: -76.5,-63.5 parent: 2 - - uid: 20677 + - uid: 21498 components: - type: Transform - pos: -31.5,16.5 + pos: -75.5,-63.5 parent: 2 - - uid: 20678 + - uid: 21499 components: - type: Transform - pos: -31.5,17.5 + pos: -80.5,-54.5 parent: 2 - - uid: 20679 + - uid: 21500 components: - type: Transform - pos: -31.5,18.5 + pos: -80.5,-47.5 parent: 2 - - uid: 20817 + - uid: 21501 components: - type: Transform - pos: -25.5,-56.5 + pos: -72.5,-63.5 + parent: 2 + - uid: 21502 + components: + - type: Transform + pos: -71.5,-63.5 + parent: 2 + - uid: 21503 + components: + - type: Transform + pos: -71.5,-46.5 + parent: 2 + - uid: 21504 + components: + - type: Transform + pos: -69.5,-63.5 + parent: 2 + - uid: 21505 + components: + - type: Transform + pos: -67.5,-63.5 + parent: 2 + - uid: 21506 + components: + - type: Transform + pos: -66.5,-63.5 + parent: 2 + - uid: 21507 + components: + - type: Transform + pos: -68.5,-63.5 + parent: 2 + - uid: 21508 + components: + - type: Transform + pos: -81.5,-61.5 + parent: 2 + - uid: 21510 + components: + - type: Transform + pos: -81.5,-59.5 + parent: 2 + - uid: 21512 + components: + - type: Transform + pos: -81.5,-57.5 + parent: 2 + - uid: 21513 + components: + - type: Transform + pos: -81.5,-55.5 + parent: 2 + - uid: 21514 + components: + - type: Transform + pos: -81.5,-54.5 + parent: 2 + - uid: 21516 + components: + - type: Transform + pos: -81.5,-52.5 + parent: 2 + - uid: 21517 + components: + - type: Transform + pos: -81.5,-51.5 + parent: 2 + - uid: 21518 + components: + - type: Transform + pos: -81.5,-50.5 + parent: 2 + - uid: 21519 + components: + - type: Transform + pos: -81.5,-49.5 + parent: 2 + - uid: 21520 + components: + - type: Transform + pos: -81.5,-48.5 + parent: 2 + - uid: 21522 + components: + - type: Transform + pos: -81.5,-64.5 + parent: 2 + - uid: 21523 + components: + - type: Transform + pos: -79.5,-45.5 + parent: 2 + - uid: 21525 + components: + - type: Transform + pos: -77.5,-45.5 + parent: 2 + - uid: 21526 + components: + - type: Transform + pos: -76.5,-45.5 + parent: 2 + - uid: 21529 + components: + - type: Transform + pos: -73.5,-45.5 + parent: 2 + - uid: 21531 + components: + - type: Transform + pos: -70.5,-45.5 + parent: 2 + - uid: 21532 + components: + - type: Transform + pos: -69.5,-45.5 + parent: 2 + - uid: 21534 + components: + - type: Transform + pos: -67.5,-45.5 + parent: 2 + - uid: 21535 + components: + - type: Transform + pos: -66.5,-45.5 + parent: 2 + - uid: 21536 + components: + - type: Transform + pos: -65.5,-45.5 + parent: 2 + - uid: 21538 + components: + - type: Transform + pos: -63.5,-45.5 + parent: 2 + - uid: 21539 + components: + - type: Transform + pos: -62.5,-45.5 + parent: 2 + - uid: 21541 + components: + - type: Transform + pos: -72.5,-45.5 + parent: 2 + - uid: 21542 + components: + - type: Transform + pos: -60.5,-45.5 + parent: 2 + - uid: 21543 + components: + - type: Transform + pos: -59.5,-45.5 + parent: 2 + - uid: 21544 + components: + - type: Transform + pos: -58.5,-45.5 + parent: 2 + - uid: 21545 + components: + - type: Transform + pos: -57.5,-45.5 + parent: 2 + - uid: 21547 + components: + - type: Transform + pos: -55.5,-45.5 + parent: 2 + - uid: 21549 + components: + - type: Transform + pos: -53.5,-45.5 + parent: 2 + - uid: 21550 + components: + - type: Transform + pos: -52.5,-45.5 + parent: 2 + - uid: 21551 + components: + - type: Transform + pos: -55.5,-46.5 + parent: 2 + - uid: 21552 + components: + - type: Transform + pos: -54.5,-46.5 + parent: 2 + - uid: 21553 + components: + - type: Transform + pos: -62.5,-44.5 + parent: 2 + - uid: 21554 + components: + - type: Transform + pos: -62.5,-43.5 + parent: 2 + - uid: 21555 + components: + - type: Transform + pos: -63.5,-44.5 + parent: 2 + - uid: 21557 + components: + - type: Transform + pos: -66.5,-44.5 + parent: 2 + - uid: 21558 + components: + - type: Transform + pos: -68.5,-44.5 + parent: 2 + - uid: 21559 + components: + - type: Transform + pos: -71.5,-44.5 + parent: 2 + - uid: 21560 + components: + - type: Transform + pos: -72.5,-44.5 + parent: 2 + - uid: 21561 + components: + - type: Transform + pos: -74.5,-44.5 + parent: 2 + - uid: 21563 + components: + - type: Transform + pos: -76.5,-44.5 + parent: 2 + - uid: 21564 + components: + - type: Transform + pos: -82.5,-44.5 + parent: 2 + - uid: 21566 + components: + - type: Transform + pos: -82.5,-46.5 + parent: 2 + - uid: 21568 + components: + - type: Transform + pos: -81.5,-45.5 + parent: 2 + - uid: 21570 + components: + - type: Transform + pos: -80.5,-44.5 + parent: 2 + - uid: 21571 + components: + - type: Transform + pos: -80.5,-45.5 + parent: 2 + - uid: 21572 + components: + - type: Transform + pos: -80.5,-46.5 + parent: 2 + - uid: 21573 + components: + - type: Transform + pos: -80.5,-62.5 + parent: 2 + - uid: 21574 + components: + - type: Transform + pos: -80.5,-63.5 + parent: 2 + - uid: 21575 + components: + - type: Transform + pos: -80.5,-64.5 + parent: 2 + - uid: 21576 + components: + - type: Transform + pos: -81.5,-62.5 + parent: 2 + - uid: 21579 + components: + - type: Transform + pos: -82.5,-62.5 + parent: 2 + - uid: 21582 + components: + - type: Transform + pos: -75.5,-64.5 + parent: 2 + - uid: 21583 + components: + - type: Transform + pos: -72.5,-64.5 + parent: 2 + - uid: 21584 + components: + - type: Transform + pos: -66.5,-64.5 + parent: 2 + - uid: 21585 + components: + - type: Transform + pos: -80.5,-55.5 + parent: 2 + - uid: 21586 + components: + - type: Transform + pos: -68.5,-64.5 + parent: 2 + - uid: 21587 + components: + - type: Transform + pos: -64.5,-64.5 + parent: 2 + - uid: 21588 + components: + - type: Transform + pos: -80.5,-58.5 + parent: 2 + - uid: 21589 + components: + - type: Transform + pos: -76.5,-64.5 + parent: 2 + - uid: 21590 + components: + - type: Transform + pos: -71.5,-64.5 + parent: 2 + - uid: 21591 + components: + - type: Transform + pos: -65.5,-62.5 + parent: 2 + - uid: 21592 + components: + - type: Transform + pos: -69.5,-62.5 + parent: 2 + - uid: 21593 + components: + - type: Transform + pos: -80.5,-59.5 + parent: 2 + - uid: 21610 + components: + - type: Transform + pos: -55.5,-56.5 + parent: 2 + - uid: 21621 + components: + - type: Transform + pos: -41.5,-58.5 + parent: 2 + - uid: 21625 + components: + - type: Transform + pos: -42.5,-58.5 + parent: 2 + - uid: 21626 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 21627 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 + - uid: 21730 + components: + - type: Transform + pos: -47.5,-19.5 + parent: 2 + - uid: 21731 + components: + - type: Transform + pos: -48.5,-18.5 + parent: 2 + - uid: 21732 + components: + - type: Transform + pos: -46.5,-18.5 + parent: 2 + - uid: 21733 + components: + - type: Transform + pos: -47.5,-17.5 + parent: 2 + - uid: 21734 + components: + - type: Transform + pos: -49.5,-15.5 + parent: 2 + - uid: 21811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,11.5 + parent: 2 + - uid: 21882 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 21883 + components: + - type: Transform + pos: 36.5,21.5 + parent: 2 + - uid: 21895 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 21902 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 21905 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 21913 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 21922 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 21923 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 21924 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 21937 + components: + - type: Transform + pos: -55.5,-51.5 + parent: 2 + - uid: 21938 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 21966 + components: + - type: Transform + pos: -57.5,-55.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 21989 + components: + - type: Transform + pos: 60.5,-54.5 + parent: 2 + - uid: 22019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,28.5 + parent: 2 + - uid: 22030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,13.5 + parent: 2 + - uid: 22095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,11.5 + parent: 2 + - uid: 22126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,29.5 + parent: 2 + - uid: 22136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 parent: 2 - proto: GrilleBroken entities: - - uid: 656 + - uid: 1127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-46.5 + rot: 3.141592653589793 rad + pos: -58.5,-46.5 parent: 2 - uid: 1221 components: - type: Transform pos: -13.5,27.5 parent: 2 + - uid: 1271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-47.5 + parent: 2 - uid: 1279 components: - type: Transform rot: -1.5707963267948966 rad pos: -36.5,-8.5 parent: 2 - - uid: 2054 + - uid: 1508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-5.5 + pos: -29.5,-67.5 parent: 2 - - uid: 3606 + - uid: 1750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-63.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-67.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-95.5 + parent: 2 + - uid: 3439 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-47.5 + pos: -9.5,-97.5 parent: 2 - - uid: 5457 + - uid: 4814 + components: + - type: Transform + pos: -13.5,-63.5 + parent: 2 + - uid: 4863 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,29.5 + pos: -13.5,-65.5 parent: 2 - - uid: 5482 + - uid: 4940 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,1.5 + pos: -26.5,-63.5 parent: 2 - - uid: 5762 + - uid: 4943 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,-63.5 + pos: -26.5,-67.5 parent: 2 - - uid: 6060 + - uid: 5457 components: - type: Transform - pos: 18.5,5.5 + rot: 3.141592653589793 rad + pos: -60.5,29.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + pos: 50.5,14.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,17.5 parent: 2 - uid: 6143 components: @@ -94075,6 +102986,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,36.5 parent: 2 + - uid: 6204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-88.5 + parent: 2 - uid: 6750 components: - type: Transform @@ -94086,200 +103003,210 @@ entities: - type: Transform pos: -8.5,27.5 parent: 2 - - uid: 8301 + - uid: 8055 components: - type: Transform - pos: -60.5,24.5 + rot: 1.5707963267948966 rad + pos: 16.5,-72.5 parent: 2 - - uid: 8361 + - uid: 8072 components: - type: Transform - pos: -16.5,41.5 + rot: 3.141592653589793 rad + pos: -12.5,-93.5 parent: 2 - - uid: 8398 + - uid: 8100 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,33.5 + pos: 15.5,-81.5 parent: 2 - - uid: 9632 + - uid: 8101 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-62.5 + rot: 1.5707963267948966 rad + pos: 16.5,-85.5 parent: 2 - - uid: 10475 + - uid: 8103 components: - type: Transform - pos: -55.5,-62.5 + pos: 17.5,-90.5 parent: 2 - - uid: 10485 + - uid: 8104 components: - type: Transform - pos: -67.5,-62.5 + pos: 10.5,-89.5 parent: 2 - - uid: 10781 + - uid: 8106 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-6.5 + pos: 15.5,-91.5 parent: 2 - - uid: 10798 + - uid: 8107 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-57.5 + pos: 6.5,-93.5 parent: 2 - - uid: 11440 + - uid: 8110 components: - type: Transform - pos: 19.5,12.5 + rot: 1.5707963267948966 rad + pos: -5.5,-88.5 parent: 2 - - uid: 11618 + - uid: 8112 components: - type: Transform - pos: -21.5,-62.5 + pos: -6.5,-90.5 parent: 2 - - uid: 11768 + - uid: 8115 components: - type: Transform - pos: -24.5,-65.5 + pos: -3.5,-97.5 parent: 2 - - uid: 11835 + - uid: 8117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-64.5 + rot: 3.141592653589793 rad + pos: -1.5,-99.5 parent: 2 - - uid: 12330 + - uid: 8118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-101.5 + parent: 2 + - uid: 8120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 60.5,-6.5 + pos: 4.5,-98.5 parent: 2 - - uid: 12397 + - uid: 8208 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,7.5 + pos: -12.5,-87.5 parent: 2 - - uid: 13308 + - uid: 8301 + components: + - type: Transform + pos: -60.5,24.5 + parent: 2 + - uid: 8336 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-64.5 + pos: -11.5,-95.5 parent: 2 - - uid: 13799 + - uid: 8361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,7.5 + pos: -16.5,41.5 parent: 2 - - uid: 14269 + - uid: 8398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-62.5 + rot: 1.5707963267948966 rad + pos: -11.5,33.5 parent: 2 - - uid: 14277 + - uid: 10781 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,-57.5 + pos: 55.5,-6.5 parent: 2 - - uid: 14280 + - uid: 11440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-44.5 + pos: 19.5,12.5 parent: 2 - - uid: 14416 + - uid: 12330 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-66.5 + rot: 1.5707963267948966 rad + pos: 60.5,-6.5 parent: 2 - - uid: 15709 + - uid: 13799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-4.5 + rot: -1.5707963267948966 rad + pos: -42.5,7.5 parent: 2 - - uid: 15925 + - uid: 14935 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-63.5 + pos: -62.5,-30.5 parent: 2 - - uid: 16226 + - uid: 14937 components: - type: Transform rot: -1.5707963267948966 rad - pos: 69.5,11.5 + pos: -62.5,-25.5 parent: 2 - - uid: 17130 + - uid: 15235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,10.5 + rot: 1.5707963267948966 rad + pos: -62.5,-63.5 parent: 2 - - uid: 17183 + - uid: 15709 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,39.5 + pos: 50.5,-4.5 parent: 2 - - uid: 17278 + - uid: 16226 components: - type: Transform - pos: -28.5,29.5 + rot: -1.5707963267948966 rad + pos: 69.5,11.5 parent: 2 - - uid: 17302 + - uid: 16900 components: - type: Transform - pos: 51.5,14.5 + pos: -49.5,-7.5 parent: 2 - - uid: 17763 + - uid: 16941 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,31.5 + rot: 3.141592653589793 rad + pos: -56.5,-63.5 parent: 2 - - uid: 17780 + - uid: 17130 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-46.5 + pos: -59.5,10.5 parent: 2 - - uid: 17783 + - uid: 17183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-44.5 + rot: 1.5707963267948966 rad + pos: -19.5,39.5 parent: 2 - - uid: 17823 + - uid: 17278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,16.5 + pos: -28.5,29.5 parent: 2 - - uid: 17824 + - uid: 17683 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,18.5 + pos: -50.5,-8.5 parent: 2 - - uid: 17826 + - uid: 17685 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,18.5 + pos: -46.5,-4.5 parent: 2 - - uid: 17827 + - uid: 17763 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,18.5 + pos: -27.5,31.5 parent: 2 - uid: 17907 components: @@ -94362,12 +103289,6 @@ entities: - type: Transform pos: -61.5,33.5 parent: 2 - - uid: 18266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-51.5 - parent: 2 - uid: 18278 components: - type: Transform @@ -94450,30 +103371,6 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-48.5 parent: 2 - - uid: 19272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-84.5 - parent: 2 - - uid: 19273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-83.5 - parent: 2 - - uid: 19274 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-81.5 - parent: 2 - - uid: 19276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-84.5 - parent: 2 - uid: 19608 components: - type: Transform @@ -94621,21 +103518,90 @@ entities: rot: 3.141592653589793 rad pos: -43.5,-7.5 parent: 2 - - uid: 20599 + - uid: 20601 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 21494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-64.5 + parent: 2 + - uid: 21509 + components: + - type: Transform + pos: -81.5,-44.5 + parent: 2 + - uid: 21511 + components: + - type: Transform + pos: -70.5,-44.5 + parent: 2 + - uid: 21515 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,-9.5 + pos: -75.5,-44.5 parent: 2 - - uid: 20600 + - uid: 21521 components: - type: Transform - pos: -32.5,-12.5 + rot: 1.5707963267948966 rad + pos: -64.5,-44.5 parent: 2 - - uid: 20601 + - uid: 21569 components: - type: Transform - pos: -40.5,-17.5 + pos: -64.5,-45.5 + parent: 2 + - uid: 21577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-63.5 + parent: 2 + - uid: 21578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,-64.5 + parent: 2 + - uid: 21580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-53.5 + parent: 2 + - uid: 21581 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-45.5 + parent: 2 + - uid: 21612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,-46.5 + parent: 2 + - uid: 21735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-16.5 + parent: 2 + - uid: 21736 + components: + - type: Transform + pos: -48.5,-16.5 + parent: 2 + - uid: 21995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,12.5 parent: 2 - proto: GrilleSpawner entities: @@ -94650,11 +103616,30 @@ entities: rot: -1.5707963267948966 rad pos: -58.5,6.5 parent: 2 - - uid: 3599 + - uid: 2868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-45.5 + pos: -22.5,-63.5 + parent: 2 + - uid: 3581 + components: + - type: Transform + pos: -19.5,-63.5 + parent: 2 + - uid: 3615 + components: + - type: Transform + pos: -18.5,-63.5 + parent: 2 + - uid: 3672 + components: + - type: Transform + pos: -16.5,-63.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: -25.5,-67.5 parent: 2 - uid: 3870 components: @@ -94666,50 +103651,80 @@ entities: - type: Transform pos: -11.5,31.5 parent: 2 - - uid: 5721 + - uid: 4802 components: - type: Transform - pos: -61.5,-63.5 + pos: 40.5,24.5 parent: 2 - - uid: 5945 + - uid: 4921 components: - type: Transform - pos: -64.5,-63.5 + pos: -13.5,-66.5 parent: 2 - - uid: 10743 + - uid: 5665 components: - type: Transform - pos: -73.5,-49.5 + pos: -21.5,-65.5 parent: 2 - - uid: 10750 + - uid: 7130 components: - type: Transform - pos: -59.5,-45.5 + pos: -67.5,-22.5 parent: 2 - - uid: 10760 + - uid: 8056 components: - type: Transform - pos: -65.5,-45.5 + pos: 16.5,-74.5 parent: 2 - - uid: 10763 + - uid: 8058 components: - type: Transform - pos: -60.5,-45.5 + pos: 16.5,-80.5 parent: 2 - - uid: 15788 + - uid: 8223 components: - type: Transform - pos: -50.5,-59.5 + pos: -13.5,-76.5 parent: 2 - - uid: 15805 + - uid: 8227 components: - type: Transform - pos: -52.5,-63.5 + pos: -13.5,-82.5 parent: 2 - - uid: 15926 + - uid: 8242 components: - type: Transform - pos: -71.5,-63.5 + pos: -13.5,-70.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: 49.5,23.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + pos: -62.5,-40.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + pos: -61.5,-29.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: -77.5,-11.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + pos: -63.5,-22.5 + parent: 2 + - uid: 14936 + components: + - type: Transform + pos: -61.5,-2.5 parent: 2 - uid: 17157 components: @@ -94722,11 +103737,6 @@ entities: rot: -1.5707963267948966 rad pos: -60.5,6.5 parent: 2 - - uid: 17195 - components: - - type: Transform - pos: 51.5,18.5 - parent: 2 - uid: 17305 components: - type: Transform @@ -94767,21 +103777,6 @@ entities: - type: Transform pos: -60.5,33.5 parent: 2 - - uid: 17820 - components: - - type: Transform - pos: 42.5,18.5 - parent: 2 - - uid: 17821 - components: - - type: Transform - pos: 46.5,18.5 - parent: 2 - - uid: 17822 - components: - - type: Transform - pos: 39.5,18.5 - parent: 2 - uid: 18133 components: - type: Transform @@ -94852,6 +103847,81 @@ entities: - type: Transform pos: -54.5,32.5 parent: 2 + - uid: 21485 + components: + - type: Transform + pos: -81.5,-56.5 + parent: 2 + - uid: 21524 + components: + - type: Transform + pos: -71.5,-45.5 + parent: 2 + - uid: 21527 + components: + - type: Transform + pos: -68.5,-45.5 + parent: 2 + - uid: 21528 + components: + - type: Transform + pos: -74.5,-45.5 + parent: 2 + - uid: 21530 + components: + - type: Transform + pos: -78.5,-45.5 + parent: 2 + - uid: 21533 + components: + - type: Transform + pos: -81.5,-46.5 + parent: 2 + - uid: 21537 + components: + - type: Transform + pos: -81.5,-60.5 + parent: 2 + - uid: 21540 + components: + - type: Transform + pos: -73.5,-63.5 + parent: 2 + - uid: 21546 + components: + - type: Transform + pos: -70.5,-63.5 + parent: 2 + - uid: 21548 + components: + - type: Transform + pos: -74.5,-63.5 + parent: 2 + - uid: 21556 + components: + - type: Transform + pos: -77.5,-63.5 + parent: 2 + - uid: 21562 + components: + - type: Transform + pos: -75.5,-45.5 + parent: 2 + - uid: 21565 + components: + - type: Transform + pos: -56.5,-45.5 + parent: 2 + - uid: 21567 + components: + - type: Transform + pos: -61.5,-45.5 + parent: 2 + - uid: 21961 + components: + - type: Transform + pos: 42.5,23.5 + parent: 2 - proto: GunSafeDisabler entities: - uid: 2207 @@ -94880,26 +103950,19 @@ entities: - type: Transform pos: -20.5,2.5 parent: 2 -- proto: GyroscopeMachineCircuitboard - entities: - - uid: 4720 - components: - - type: Transform - pos: -35.346245,-53.448708 - parent: 2 - proto: GyroscopeUnanchored entities: - - uid: 15754 + - uid: 21926 components: - type: Transform - pos: -31.5,-63.5 + pos: 23.5,23.5 parent: 2 - proto: Handcuffs entities: - uid: 9845 components: - type: Transform - pos: -18.136644,-50.38884 + pos: -18.202019,-50.432945 parent: 2 - uid: 14807 components: @@ -94925,33 +103988,28 @@ entities: parent: 2 - proto: HandheldHealthAnalyzerUnpowered entities: - - uid: 8216 + - uid: 8500 components: - type: Transform - pos: -44.33753,-45.396572 + pos: 18.62692,3.6997924 parent: 2 - - uid: 11825 + - uid: 13069 components: - type: Transform - pos: -52.515003,-32.555782 + pos: -45.732758,-22.403263 parent: 2 -- proto: HandLabeler - entities: - - uid: 6115 + - uid: 14113 components: - type: Transform - pos: -30.619154,-33.32016 + pos: -50.55387,-43.958057 parent: 2 +- proto: HandLabeler + entities: - uid: 6243 components: - type: Transform pos: 35.64464,-3.2836232 parent: 2 - - uid: 9707 - components: - - type: Transform - pos: -16.511583,-48.43057 - parent: 2 - uid: 14001 components: - type: Transform @@ -94962,6 +104020,16 @@ entities: - type: Transform pos: 22.51385,-59.475163 parent: 2 + - uid: 14805 + components: + - type: Transform + pos: -28.443506,-46.023293 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: -33.002285,-37.53686 + parent: 2 - uid: 18074 components: - type: Transform @@ -94977,6 +104045,11 @@ entities: - type: Transform pos: 17.714645,15.530955 parent: 2 + - uid: 22602 + components: + - type: Transform + pos: 2.607089,-45.44564 + parent: 2 - proto: HarmonicaInstrument entities: - uid: 11574 @@ -94986,11 +104059,19 @@ entities: parent: 2 - proto: HeatExchanger entities: - - uid: 2550 + - uid: 6877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-10.5 + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 7035 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' @@ -95008,32 +104089,32 @@ entities: parent: 2 - proto: HighSecCommandLocked entities: - - uid: 325 - components: - - type: Transform - pos: 12.5,5.5 - parent: 2 - - uid: 5536 + - uid: 4965 components: - type: Transform - pos: 23.5,-5.5 + pos: -30.5,-61.5 parent: 2 - uid: 6253 components: - type: Transform pos: -56.5,-12.5 parent: 2 - - uid: 6992 + - uid: 8573 components: - type: Transform pos: -59.5,-12.5 parent: 2 + - uid: 9590 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 - proto: HolofanProjector entities: - uid: 13003 components: - type: Transform - pos: -5.451778,-10.512986 + pos: -5.511777,-10.439039 parent: 2 - uid: 13182 components: @@ -95117,10 +104198,10 @@ entities: parent: 2 - proto: HolopadCommandCmo entities: - - uid: 9968 + - uid: 7912 components: - type: Transform - pos: -42.5,-34.5 + pos: -48.5,-23.5 parent: 2 - proto: HolopadCommandHop entities: @@ -95136,6 +104217,13 @@ entities: - type: Transform pos: -22.5,11.5 parent: 2 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 7911 + components: + - type: Transform + pos: -28.5,-47.5 + parent: 2 - proto: HolopadCommandQm entities: - uid: 20726 @@ -95150,6 +104238,13 @@ entities: - type: Transform pos: 30.5,-34.5 parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 1289 + components: + - type: Transform + pos: -29.5,-61.5 + parent: 2 - proto: HolopadEngineeringAME entities: - uid: 20760 @@ -95159,17 +104254,17 @@ entities: parent: 2 - proto: HolopadEngineeringAtmosMain entities: - - uid: 20725 + - uid: 12662 components: - type: Transform - pos: -2.5,-2.5 + pos: 0.5,-2.5 parent: 2 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 20831 + - uid: 11980 components: - type: Transform - pos: 2.5,-8.5 + pos: 1.5,-9.5 parent: 2 - proto: HolopadEngineeringFront entities: @@ -95187,24 +104282,17 @@ entities: parent: 2 - proto: HolopadEngineeringTechVault entities: - - uid: 17150 - components: - - type: Transform - pos: 10.5,-18.5 - parent: 2 -- proto: HolopadEngineeringTelecoms - entities: - - uid: 17423 + - uid: 7910 components: - type: Transform - pos: 24.5,0.5 + pos: 9.5,-17.5 parent: 2 - proto: HolopadGeneralArrivals entities: - - uid: 20804 + - uid: 7942 components: - type: Transform - pos: 1.5,-47.5 + pos: 1.5,-51.5 parent: 2 - proto: HolopadGeneralEvac entities: @@ -95213,13 +104301,6 @@ entities: - type: Transform pos: 49.5,-21.5 parent: 2 -- proto: HolopadGeneralEVAStorage - entities: - - uid: 526 - components: - - type: Transform - pos: -4.5,-52.5 - parent: 2 - proto: HolopadGeneralTools entities: - uid: 20801 @@ -95229,62 +104310,71 @@ entities: parent: 2 - proto: HolopadMachineCircuitboard entities: - - uid: 20729 + - uid: 9539 components: - type: Transform - pos: 6.764127,-27.571396 + pos: 3.4666295,-16.4342 parent: 2 - - uid: 20730 + - uid: 20729 components: - type: Transform - pos: 12.400941,-17.507607 + pos: 6.764127,-27.571396 parent: 2 - - uid: 20731 +- proto: HolopadMedicalBreakroom + entities: + - uid: 21747 components: - type: Transform - pos: 12.863626,-12.920663 + pos: -37.5,-23.5 parent: 2 - proto: HolopadMedicalChemistry entities: - - uid: 7977 + - uid: 15306 components: - type: Transform pos: -29.5,-34.5 parent: 2 -- proto: HolopadMedicalFront +- proto: HolopadMedicalClinic entities: - - uid: 7992 + - uid: 21810 components: - type: Transform - pos: -28.5,-27.5 + pos: 20.5,2.5 parent: 2 -- proto: HolopadMedicalMedbay +- proto: HolopadMedicalCryopods entities: - - uid: 6807 + - uid: 6963 components: - type: Transform - pos: -36.5,-22.5 + pos: -43.5,-38.5 + parent: 2 +- proto: HolopadMedicalFront + entities: + - uid: 21748 + components: + - type: Transform + pos: -29.5,-25.5 parent: 2 - proto: HolopadMedicalMorgue entities: - - uid: 8054 + - uid: 10710 components: - type: Transform - pos: -42.5,-46.5 + pos: -48.5,-44.5 parent: 2 - proto: HolopadMedicalSurgery entities: - - uid: 7966 + - uid: 21742 components: - type: Transform - pos: -51.5,-30.5 + pos: -44.5,-23.5 parent: 2 - proto: HolopadMedicalVirology entities: - - uid: 6819 + - uid: 21740 components: - type: Transform - pos: -50.5,-41.5 + pos: -54.5,-29.5 parent: 2 - proto: HolopadScienceAnomaly entities: @@ -95302,10 +104392,10 @@ entities: parent: 2 - proto: HolopadScienceBreakroom entities: - - uid: 20715 + - uid: 22139 components: - type: Transform - pos: 29.5,-28.5 + pos: 28.5,-26.5 parent: 2 - proto: HolopadScienceFront entities: @@ -95386,10 +104476,10 @@ entities: parent: 2 - proto: HolopadServiceBar entities: - - uid: 20814 + - uid: 11612 components: - type: Transform - pos: -5.5,-43.5 + pos: -3.5,-43.5 parent: 2 - proto: HolopadServiceBotany entities: @@ -95414,10 +104504,10 @@ entities: parent: 2 - proto: HolopadServiceJanitor entities: - - uid: 20441 + - uid: 21357 components: - type: Transform - pos: 28.5,2.5 + pos: 28.5,4.5 parent: 2 - proto: HolopadServiceKitchen entities: @@ -95428,10 +104518,10 @@ entities: parent: 2 - proto: HolopadServiceLibrary entities: - - uid: 17248 + - uid: 10458 components: - type: Transform - pos: 14.5,-37.5 + pos: 19.5,-40.5 parent: 2 - proto: HolopadServiceNewsroom entities: @@ -95449,48 +104539,50 @@ entities: parent: 2 - proto: HospitalCurtainsOpen entities: - - uid: 196 + - uid: 8786 components: - type: Transform - pos: -47.5,-31.5 + rot: 3.141592653589793 rad + pos: -41.5,-5.5 parent: 2 - - uid: 7812 + - uid: 11015 components: - type: Transform - pos: -50.5,-44.5 + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 parent: 2 - - uid: 8139 + - uid: 12844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-45.5 + rot: -1.5707963267948966 rad + pos: -57.5,-28.5 parent: 2 - - uid: 8159 + - uid: 12869 components: - type: Transform - pos: -51.5,-44.5 + rot: -1.5707963267948966 rad + pos: -56.5,-30.5 parent: 2 - - uid: 8161 + - uid: 12928 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-45.5 + rot: -1.5707963267948966 rad + pos: -57.5,-31.5 parent: 2 - - uid: 8786 + - uid: 13020 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-5.5 + pos: -39.5,-22.5 parent: 2 - - uid: 17569 + - uid: 14779 components: - type: Transform - pos: 6.5,-31.5 + pos: -45.5,-39.5 parent: 2 - - uid: 18559 + - uid: 17569 components: - type: Transform - pos: -29.5,-8.5 + pos: 6.5,-31.5 parent: 2 - uid: 18835 components: @@ -95505,10 +104597,45 @@ entities: parent: 2 - proto: hydroponicsSoil entities: - - uid: 4848 + - uid: 237 components: - type: Transform - pos: 6.5,-44.5 + pos: -4.5,-52.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 7.5,-52.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 7876 + components: + - type: Transform + pos: 6.5,-45.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: 5.5,-52.5 + parent: 2 + - uid: 12727 + components: + - type: Transform + pos: -2.5,-52.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + pos: 17.5,-2.5 parent: 2 - proto: HydroponicsToolClippers entities: @@ -95517,10 +104644,10 @@ entities: - type: Transform pos: -17.829746,-39.424503 parent: 2 - - uid: 3799 + - uid: 10577 components: - type: Transform - pos: 6.515537,-45.467487 + pos: 7.500762,-57.955555 parent: 2 - uid: 17266 components: @@ -95542,7 +104669,7 @@ entities: - uid: 17264 components: - type: Transform - pos: 48.36268,-61.37067 + pos: 48.46756,-61.37267 parent: 2 - proto: HydroponicsToolMiniHoe entities: @@ -95556,6 +104683,11 @@ entities: - type: Transform pos: -19.461483,-39.341442 parent: 2 + - uid: 11710 + components: + - type: Transform + pos: 7.455774,-57.62218 + parent: 2 - uid: 17265 components: - type: Transform @@ -95585,10 +104717,10 @@ entities: - type: Transform pos: -19.357265,-39.39356 parent: 2 - - uid: 3801 + - uid: 15746 components: - type: Transform - pos: 6.5780673,-45.36325 + pos: 7.606819,-58.266537 parent: 2 - uid: 17308 components: @@ -95602,6 +104734,18 @@ entities: - type: Transform pos: -38.5,5.5 parent: 2 + - uid: 715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-37.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-37.5 + parent: 2 - uid: 2804 components: - type: Transform @@ -95668,11 +104812,6 @@ entities: - type: Transform pos: -16.5,-32.5 parent: 2 - - uid: 3429 - components: - - type: Transform - pos: -17.5,-37.5 - parent: 2 - uid: 11450 components: - type: Transform @@ -95721,17 +104860,17 @@ entities: parent: 2 - proto: IDComputerCircuitboard entities: - - uid: 15936 + - uid: 9345 components: - type: Transform - pos: 10.528986,-19.36206 + pos: 10.56266,-14.37939 parent: 2 - proto: IngotGold entities: - - uid: 97 + - uid: 8246 components: - type: Transform - pos: 8.432307,6.658129 + pos: -30.466127,-58.522392 parent: 2 - proto: IngotGold1 entities: @@ -95747,10 +104886,10 @@ entities: parent: 2 - proto: IngotSilver entities: - - uid: 315 + - uid: 5045 components: - type: Transform - pos: 9.565312,3.687316 + pos: -30.445284,-63.50502 parent: 2 - proto: IntercomAll entities: @@ -95800,19 +104939,12 @@ entities: rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 2 - - uid: 16267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 2 - proto: IntercomMedical entities: - - uid: 13205 + - uid: 21749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-32.5 + pos: -30.5,-26.5 parent: 2 - proto: IntercomScience entities: @@ -95830,14 +104962,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,-2.5 parent: 2 -- proto: IntercomService - entities: - - uid: 17556 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,1.5 - parent: 2 - proto: IntercomSupply entities: - uid: 13201 @@ -95846,19 +104970,13 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,13.5 parent: 2 - - uid: 17555 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,26.5 - parent: 2 - proto: JanitorialTrolley entities: - - uid: 9418 + - uid: 8743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-0.5 + rot: 1.5707963267948966 rad + pos: 28.5,1.5 parent: 2 - proto: JanitorServiceLight entities: @@ -95874,12 +104992,6 @@ entities: rot: -1.5707963267948966 rad pos: -15.5,-13.5 parent: 2 - - uid: 16113 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-28.5 - parent: 2 - uid: 16118 components: - type: Transform @@ -95891,51 +105003,41 @@ entities: - type: Transform pos: 7.5,12.5 parent: 2 + - uid: 21751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-26.5 + parent: 2 + - uid: 21752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 - proto: JetpackMiniFilled entities: - - uid: 11111 + - uid: 12739 components: - type: Transform - pos: -3.7147171,-52.21066 + pos: -1.5297892,-55.24403 parent: 2 - - type: GasTank - toggleActionEntity: 11282 - - type: Jetpack - toggleActionEntity: 11276 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 11276 - - 11282 - - uid: 11126 + - uid: 12740 components: - type: Transform - pos: -3.495859,-52.32532 + pos: -1.404727,-55.421238 parent: 2 - - type: GasTank - toggleActionEntity: 11300 - - type: Jetpack - toggleActionEntity: 11298 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 11298 - - 11300 - proto: Jug entities: - - uid: 4363 + - uid: 12111 components: - type: Transform - pos: -29.40592,-22.374575 + pos: -30.646975,-34.204906 parent: 2 - - uid: 4965 + - uid: 12119 components: - type: Transform - pos: -29.645622,-22.197369 + pos: -30.39685,-34.35074 parent: 2 - proto: KalimbaInstrument entities: @@ -95953,11 +105055,6 @@ entities: parent: 2 - proto: KitchenMicrowave entities: - - uid: 3184 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 2 - uid: 3252 components: - type: Transform @@ -95990,11 +105087,16 @@ entities: - type: Transform pos: -13.5,-34.5 parent: 2 - - uid: 4756 + - uid: 5523 components: - type: Transform pos: -29.5,-36.5 parent: 2 + - uid: 7200 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 - uid: 13366 components: - type: Transform @@ -96009,20 +105111,41 @@ entities: parent: 2 - proto: KnifePlastic entities: - - uid: 20219 + - uid: 5739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.4618225,-40.19822 + pos: -26.93114,-48.32984 + parent: 2 +- proto: KoboldCubeWrapped + entities: + - uid: 9414 + components: + - type: Transform + pos: -59.664112,-29.204977 parent: 2 - proto: Lamp entities: - uid: 15782 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.647448,-58.91686 + pos: 19.631758,-58.97455 parent: 2 + - type: HandheldLight + toggleActionEntity: 13295 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 13295 + - type: Physics + canCollide: True + - type: ActionsContainer - proto: LampBanana entities: - uid: 5214 @@ -96053,19 +105176,34 @@ entities: - type: Physics canCollide: True - type: ActionsContainer - - uid: 9684 + - uid: 4105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.523584,-45.52353 + pos: 21.482328,-44.174335 parent: 2 - - uid: 10091 + - type: HandheldLight + toggleActionEntity: 4147 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 4147 + - type: Physics + canCollide: True + - type: ActionsContainer + - uid: 6098 components: - type: Transform - pos: 28.579645,11.62192 + pos: -36.465275,-53.173172 parent: 2 - type: HandheldLight - toggleActionEntity: 10092 + toggleActionEntity: 6113 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -96076,17 +105214,17 @@ entities: showEnts: False occludes: True ents: - - 10092 + - 6113 - type: Physics canCollide: True - type: ActionsContainer - - uid: 18616 + - uid: 10091 components: - type: Transform - pos: -0.55744004,-50.242683 + pos: 28.579645,11.62192 parent: 2 - type: HandheldLight - toggleActionEntity: 6747 + toggleActionEntity: 10092 - type: ContainerContainer containers: cell_slot: !type:ContainerSlot @@ -96097,7 +105235,7 @@ entities: showEnts: False occludes: True ents: - - 6747 + - 10092 - type: Physics canCollide: True - type: ActionsContainer @@ -96129,6 +105267,11 @@ entities: ents: - 7271 - type: ActionsContainer + - uid: 3105 + components: + - type: Transform + pos: 12.487499,-11.286444 + parent: 2 - uid: 5765 components: - type: Transform @@ -96151,7 +105294,7 @@ entities: - uid: 5977 components: - type: Transform - pos: 20.602448,-37.864635 + pos: 22.019642,-41.38716 parent: 2 - type: HandheldLight toggleActionEntity: 5978 @@ -96174,6 +105317,28 @@ entities: - type: Transform pos: -11.532342,19.777779 parent: 2 +- proto: LeavesTeaDried + entities: + - uid: 982 + components: + - type: Transform + pos: 19.739239,-6.3760834 + parent: 2 + - uid: 20629 + components: + - type: Transform + pos: 19.754864,-6.1260834 + parent: 2 + - uid: 22026 + components: + - type: Transform + pos: 19.739239,-6.2979584 + parent: 2 + - uid: 22138 + components: + - type: Transform + pos: 19.770489,-6.2042084 + parent: 2 - proto: LGBTQHandyFlag entities: - uid: 19888 @@ -96227,31 +105392,16 @@ entities: - Pressed: Toggle - proto: LockableButtonAtmospherics entities: - - uid: 15410 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 1653: - - Pressed: Toggle - 1663: - - Pressed: Toggle - 18816: - - Pressed: Toggle - - uid: 15414 + - uid: 9424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-5.5 + pos: 7.5,1.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1653: + 1268: - Pressed: Toggle - 1663: + 1324: - Pressed: Toggle - proto: LockableButtonBar entities: @@ -96270,8 +105420,44 @@ entities: - Pressed: Toggle 11459: - Pressed: Toggle + 6345: + - Pressed: Toggle + 2759: + - Pressed: Toggle + 12193: + - Pressed: Toggle + 16090: + - Pressed: Toggle + 3717: + - Pressed: Toggle - proto: LockableButtonCaptain entities: + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-49.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4701: + - Pressed: Toggle + 4782: + - Pressed: Toggle + 4796: + - Pressed: Toggle + 4698: + - Pressed: Toggle + 4699: + - Pressed: Toggle + 4700: + - Pressed: Toggle + 4721: + - Pressed: Toggle + 186: + - Pressed: Toggle + 21880: + - Pressed: Toggle - uid: 15649 components: - type: Transform @@ -96284,10 +105470,6 @@ entities: - Pressed: Toggle 15647: - Pressed: Toggle - 9963: - - Pressed: Toggle - 20824: - - Pressed: Toggle - proto: LockableButtonCargo entities: - uid: 17447 @@ -96324,29 +105506,37 @@ entities: - Pressed: Toggle - proto: LockableButtonChemistry entities: - - uid: 11331 + - uid: 21250 components: - - type: MetaData - name: Shutters - type: Transform rot: -1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 6220: + 11937: + - Pressed: DoorBolt + 144: - Pressed: DoorBolt - 10464: + 12508: + - Pressed: DoorBolt + 21258: - Pressed: Toggle - 16041: + 21257: - Pressed: Toggle - 16042: + 21256: - Pressed: Toggle - 1312: - - Pressed: DoorBolt - 1322: + 21254: + - Pressed: Toggle + 21255: + - Pressed: Toggle + 21251: - Pressed: Toggle - 12874: + 21253: + - Pressed: Toggle + 21252: + - Pressed: Toggle + 10414: - Pressed: DoorBolt - proto: LockableButtonChiefEngineer entities: @@ -96366,19 +105556,19 @@ entities: - Pressed: Toggle - proto: LockableButtonChiefMedicalOfficer entities: - - uid: 1615 + - uid: 21233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-35.5 + rot: -1.5707963267948966 rad + pos: -46.5,-23.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 13043: + 21229: - Pressed: Toggle - 7497: + 21230: - Pressed: Toggle - 1917: + 21231: - Pressed: Toggle - proto: LockableButtonCommand entities: @@ -96406,56 +105596,63 @@ entities: - Pressed: Toggle - proto: LockableButtonEngineering entities: - - uid: 1485 + - uid: 1651 components: - type: Transform - pos: 5.5,-5.5 + rot: 3.141592653589793 rad + pos: 8.5,-5.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1959: + 2989: - Pressed: Toggle - 5799: + 2954: - Pressed: Toggle - - uid: 10658 + 6106: + - Pressed: Toggle + - uid: 2401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-56.5 + rot: -1.5707963267948966 rad + pos: 4.5,-9.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 7967: + 2954: - Pressed: Toggle - 7974: + 6106: - Pressed: Toggle - - uid: 11423 + 2989: + - Pressed: Toggle + - uid: 3811 components: - - type: MetaData - name: Shutters - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-17.5 + pos: 8.5,-9.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 11421: + 2954: - Pressed: Toggle - 11419: + 6106: - Pressed: Toggle - 4048: + 2989: - Pressed: Toggle - - uid: 15413 + - uid: 11423 components: + - type: MetaData + name: Shutters - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-8.5 + pos: -14.5,-17.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 1959: + 11421: + - Pressed: Toggle + 11419: - Pressed: Toggle - 5799: + 4048: - Pressed: Toggle - proto: LockableButtonHeadOfPersonnel entities: @@ -96533,18 +105730,6 @@ entities: linkedPorts: 9113: - Pressed: Toggle - - uid: 9538 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 9369: - - Pressed: Toggle - 9370: - - Pressed: Toggle - proto: LockableButtonKitchen entities: - uid: 16023 @@ -96563,45 +105748,143 @@ entities: - Pressed: Toggle - proto: LockableButtonMedical entities: - - uid: 15653 + - uid: 1550 components: - type: Transform - pos: -29.5,-28.5 + pos: -38.5,-31.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 7268: + 2273: - Pressed: Open - 11202: + 2287: + - Pressed: Open + - uid: 2322 + components: + - type: MetaData + name: Eastern Doors + - type: Transform + rot: 3.141592653589793 rad + pos: -30.31269,-26.495672 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1781: - Pressed: Open - 11203: + 2509: - Pressed: Open - - uid: 16052 + - uid: 3097 components: - type: MetaData - name: Lockdown + name: Western Doors - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-27.5 + pos: -30.7203,-26.495672 parent: 2 - type: DeviceLinkSource linkedPorts: - 16050: - - Pressed: Toggle - 16051: - - Pressed: Toggle - - uid: 16115 + 506: + - Pressed: Open + 2244: + - Pressed: Open + - uid: 5377 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 506: + - Pressed: Open + 2244: + - Pressed: Open + - uid: 5465 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,-27.5 + pos: -32.5,-33.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 574: + 1095: - Pressed: Open - 15141: + 967: - Pressed: Open + - uid: 6574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1781: + - Pressed: Open + 2509: + - Pressed: Open + - uid: 21239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21234: + - Pressed: Toggle + 21235: + - Pressed: Toggle + 21236: + - Pressed: Toggle + 21237: + - Pressed: Toggle + 21238: + - Pressed: Toggle + 10771: + - Pressed: Toggle + 10807: + - Pressed: Toggle + - uid: 21240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21242: + - Pressed: Toggle + 21243: + - Pressed: Toggle + 21244: + - Pressed: Toggle + 21245: + - Pressed: Toggle + 21246: + - Pressed: Toggle + 21247: + - Pressed: Toggle + 21248: + - Pressed: Toggle + - uid: 22775 + components: + - type: MetaData + name: Shutters + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22773: + - Pressed: Toggle + 22772: + - Pressed: Toggle + 22771: + - Pressed: Toggle + 22769: + - Pressed: Toggle + 22770: + - Pressed: Toggle - proto: LockableButtonQuartermaster entities: - uid: 12052 @@ -96667,6 +105950,96 @@ entities: - Pressed: Toggle 17616: - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 345 + components: + - type: MetaData + name: Shutters + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21876: + - Pressed: Toggle + 22133: + - Pressed: Toggle + 710: + - Pressed: Toggle + - uid: 6146 + components: + - type: MetaData + name: Aft Shutters + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22618: + - Pressed: Toggle + 22619: + - Pressed: Toggle + 22620: + - Pressed: Toggle + 22617: + - Pressed: Toggle + 22616: + - Pressed: Toggle + 22614: + - Pressed: Toggle + - uid: 22713 + components: + - type: MetaData + name: Shutters + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 10652: + - Pressed: Toggle + 2582: + - Pressed: Toggle + - uid: 22723 + components: + - type: MetaData + name: Shutters + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,1.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 813: + - Pressed: Toggle + 304: + - Pressed: Toggle + 22721: + - Pressed: Toggle + 22720: + - Pressed: Toggle + 22719: + - Pressed: Toggle + - uid: 22728 + components: + - type: MetaData + name: Shutters + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2500: + - Pressed: Toggle + 22725: + - Pressed: Toggle + 22724: + - Pressed: Toggle - proto: LockableButtonTheatre entities: - uid: 5329 @@ -96686,7 +106059,7 @@ entities: - Pressed: Toggle 13795: - Pressed: Toggle - 12282: + 7944: - Pressed: Toggle 17722: - Pressed: Toggle @@ -96711,10 +106084,10 @@ entities: parent: 2 - proto: LockerBoozeFilled entities: - - uid: 18919 + - uid: 13803 components: - type: Transform - pos: 1.5,-45.5 + pos: 1.5,-43.5 parent: 2 - proto: LockerBotanistFilled entities: @@ -96732,10 +106105,10 @@ entities: parent: 2 - proto: LockerChemistryFilled entities: - - uid: 11436 + - uid: 13213 components: - type: Transform - pos: -28.5,-38.5 + pos: -34.5,-35.5 parent: 2 - proto: LockerChiefEngineerFilled entities: @@ -96744,12 +106117,12 @@ entities: - type: Transform pos: -6.5,-25.5 parent: 2 -- proto: LockerChiefMedicalOfficerFilledHardsuit +- proto: LockerChiefMedicalOfficerFilled entities: - - uid: 14629 + - uid: 13083 components: - type: Transform - pos: -42.5,-36.5 + pos: -50.5,-21.5 parent: 2 - proto: LockerClown entities: @@ -96772,10 +106145,10 @@ entities: - type: Transform pos: -10.5,25.5 parent: 2 - - uid: 7590 + - uid: 1695 components: - type: Transform - pos: -6.5,-69.5 + pos: -6.5,-75.5 parent: 2 - uid: 8802 components: @@ -96784,25 +106157,30 @@ entities: parent: 2 - proto: LockerEngineerFilled entities: - - uid: 137 + - uid: 1177 components: - type: Transform - pos: -2.5,-14.5 + pos: -7.5,-15.5 parent: 2 - - uid: 8463 + - uid: 1631 components: - type: Transform - pos: -2.5,-15.5 + pos: 1.5,-20.5 parent: 2 - - uid: 13994 + - uid: 1644 components: - type: Transform - pos: -5.5,-12.5 + pos: 1.5,-19.5 parent: 2 - - uid: 20707 + - uid: 8589 components: - type: Transform - pos: -6.5,-12.5 + pos: -1.5,-15.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + pos: -0.5,-15.5 parent: 2 - uid: 20829 components: @@ -96821,35 +106199,55 @@ entities: - type: Transform pos: -27.5,11.5 parent: 2 - - uid: 1029 + - uid: 9103 components: - type: Transform - pos: -31.5,-3.5 + pos: -23.5,-10.5 parent: 2 - - uid: 9103 + - uid: 10025 components: - type: Transform - pos: -23.5,-10.5 + pos: -26.5,-11.5 parent: 2 - - uid: 9655 + - uid: 10144 components: - type: Transform - pos: -25.5,-11.5 + pos: -29.5,-3.5 parent: 2 - - uid: 10025 + - 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: Pullable + prevFixedRotation: True + - uid: 10145 components: - type: Transform - pos: -26.5,-11.5 + pos: -28.5,-3.5 parent: 2 - - uid: 11591 + - uid: 10219 components: - type: Transform - pos: -23.5,-8.5 + pos: -27.5,-11.5 parent: 2 - - uid: 20721 + - uid: 11591 components: - type: Transform - pos: -30.5,-3.5 + pos: -23.5,-8.5 parent: 2 - proto: LockerFreezer entities: @@ -96867,10 +106265,10 @@ entities: parent: 2 - proto: LockerFreezerVaultFilled entities: - - uid: 13140 + - uid: 2772 components: - type: Transform - pos: 10.5,6.5 + pos: -29.5,-58.5 parent: 2 - proto: LockerHeadOfPersonnelFilled entities: @@ -96888,42 +106286,42 @@ entities: parent: 2 - proto: LockerMedicalFilled entities: - - uid: 4842 + - uid: 12639 components: - type: Transform - pos: -45.5,-34.5 + pos: -37.5,-22.5 parent: 2 - - uid: 18053 + - uid: 13186 components: - type: Transform - pos: -45.5,-33.5 + pos: -49.5,-33.5 parent: 2 -- proto: LockerMedicineFilled - entities: - - uid: 4701 + - uid: 14757 components: - type: Transform - pos: -39.5,-27.5 + pos: -49.5,-26.5 parent: 2 - - uid: 4753 +- proto: LockerMedicineFilled + entities: + - uid: 12636 components: - type: Transform - pos: -34.5,-23.5 + pos: -45.5,-32.5 parent: 2 - - uid: 13462 + - uid: 12643 components: - type: Transform - pos: -45.5,-32.5 + pos: -39.5,-26.5 parent: 2 - - uid: 18633 + - uid: 12644 components: - type: Transform - pos: -39.5,-23.5 + pos: -40.5,-33.5 parent: 2 - - uid: 20756 + - uid: 14758 components: - type: Transform - pos: -39.5,-20.5 + pos: -49.5,-27.5 parent: 2 - proto: LockerMime entities: @@ -96934,15 +106332,15 @@ entities: parent: 2 - proto: LockerParamedicFilled entities: - - uid: 4801 + - uid: 69 components: - type: Transform - pos: -32.5,-25.5 + pos: -30.5,-21.5 parent: 2 - - uid: 4907 + - uid: 10553 components: - type: Transform - pos: -31.5,-25.5 + pos: -31.5,-22.5 parent: 2 - proto: LockerQuarterMasterFilled entities: @@ -96960,20 +106358,20 @@ entities: parent: 2 - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 4767 + - uid: 112 components: - type: Transform - pos: 15.5,25.5 + pos: 12.5,28.5 parent: 2 - - uid: 4855 + - uid: 22049 components: - type: Transform - pos: 16.5,25.5 + pos: 13.5,28.5 parent: 2 - - uid: 5408 + - uid: 22471 components: - type: Transform - pos: 14.5,25.5 + pos: 11.5,28.5 parent: 2 - proto: LockerScienceFilled entities: @@ -97019,6 +106417,14 @@ entities: - type: Transform pos: -26.5,17.5 parent: 2 +- proto: LockerWallMedicalFilled + entities: + - uid: 21456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 - proto: LockerWardenFilled entities: - uid: 14645 @@ -97028,203 +106434,195 @@ entities: parent: 2 - proto: LockerWeldingSuppliesFilled entities: - - uid: 7589 + - uid: 951 components: - type: Transform - pos: 9.5,-69.5 + pos: 35.5,19.5 parent: 2 - - uid: 15373 + - uid: 6047 components: - type: Transform - pos: -25.5,19.5 + pos: 12.5,-65.5 parent: 2 - - uid: 20259 + - uid: 15373 components: - type: Transform - pos: 25.5,10.5 + pos: -25.5,19.5 parent: 2 - proto: LogicGateOr entities: - - uid: 7561 + - uid: 5002 components: - type: Transform anchored: True rot: 3.141592653589793 rad - pos: 14.5,27.5 + pos: 17.5,28.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 7343: + 1722: - Output: DoorBolt - 3146: + 21849: - Output: DoorBolt - - type: Physics - canCollide: False - bodyType: Static - - uid: 15761 - components: - - type: Transform - anchored: True - pos: 15.5,28.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 4 - - type: DeviceLinkSource - linkedPorts: - 8487: + 1756: - Output: DoorBolt - 10666: + 20665: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 18575 + - uid: 22393 components: - type: Transform anchored: True rot: 1.5707963267948966 rad - pos: -30.5,-67.5 + pos: 16.5,27.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 8096: + 21849: - Output: DoorBolt - 3520: + 1722: - Output: DoorBolt - 10047: + 5486: + - Output: DoorBolt + 22009: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 18578 + - uid: 22491 components: - type: Transform anchored: True - rot: 3.141592653589793 rad - pos: -32.5,-68.5 + rot: -1.5707963267948966 rad + pos: 16.5,29.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 3 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 18576: + 20665: - Output: DoorBolt - 3498: + 1756: - Output: DoorBolt - 6228: + 22009: + - Output: DoorBolt + 5486: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - proto: LogicGateXor entities: - - uid: 233 + - uid: 509 components: - type: Transform anchored: True - pos: 35.5,29.5 + rot: 3.141592653589793 rad + pos: 50.5,21.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5888: + 21863: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 246 + - uid: 3802 components: - type: Transform anchored: True - rot: 1.5707963267948966 rad - pos: 33.5,44.5 + pos: -36.5,-69.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7155: + 4729: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 618 + - uid: 5120 components: - type: Transform anchored: True - pos: 35.5,35.5 + pos: -36.5,-67.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5887: + 4772: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 620 + - uid: 5121 components: - type: Transform anchored: True - pos: 35.5,37.5 + pos: -36.5,-77.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 6148: + 4773: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 624 + - uid: 5123 components: - type: Transform anchored: True rot: 1.5707963267948966 rad - pos: 31.5,44.5 + pos: -32.5,-82.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 7147: + 5764: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 12389 + - uid: 5127 components: - type: Transform anchored: True - pos: 35.5,27.5 + rot: 1.5707963267948966 rad + pos: -34.5,-82.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 5891: + 5184: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 20221 + - uid: 5252 components: - type: Transform anchored: True - pos: 7.5,-61.5 + pos: -36.5,-75.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 61: + 3999: - Output: DoorBolt - type: Physics canCollide: False @@ -97233,7 +106631,7 @@ entities: components: - type: Transform anchored: True - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 5.5,28.5 parent: 2 - type: DeviceLinkSink @@ -97249,7 +106647,7 @@ entities: components: - type: Transform anchored: True - rot: 1.5707963267948966 rad + rot: -1.5707963267948966 rad pos: 3.5,28.5 parent: 2 - type: DeviceLinkSink @@ -97261,49 +106659,50 @@ entities: - type: Physics canCollide: False bodyType: Static - - uid: 20277 + - uid: 22300 components: - type: Transform anchored: True - pos: 7.5,-68.5 + rot: 3.141592653589793 rad + pos: 50.5,19.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 63: + 21912: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 20278 + - uid: 22301 components: - type: Transform anchored: True - rot: 3.141592653589793 rad - pos: -4.5,-61.5 + rot: -1.5707963267948966 rad + pos: 47.5,24.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 31: + 8740: - Output: DoorBolt - type: Physics canCollide: False bodyType: Static - - uid: 20279 + - uid: 22302 components: - type: Transform anchored: True - rot: 3.141592653589793 rad - pos: -4.5,-68.5 + rot: -1.5707963267948966 rad + pos: 45.5,24.5 parent: 2 - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource linkedPorts: - 30: + 8579: - Output: DoorBolt - type: Physics canCollide: False @@ -97315,15 +106714,20 @@ entities: - type: Transform pos: 33.5,-53.5 parent: 2 - - uid: 11255 + - uid: 20682 components: - type: Transform - pos: -40.5,-50.5 + pos: -33.5,18.5 parent: 2 - - uid: 20682 + - uid: 20897 components: - type: Transform - pos: -33.5,18.5 + pos: 15.5,-63.5 + parent: 2 + - uid: 21185 + components: + - type: Transform + pos: -50.5,-47.5 parent: 2 - proto: LootSpawnerIndustrial entities: @@ -97332,81 +106736,173 @@ entities: - type: Transform pos: 42.5,0.5 parent: 2 - - uid: 11974 + - uid: 20150 components: - type: Transform - pos: 24.5,14.5 + pos: 57.5,-60.5 parent: 2 - - uid: 16195 +- proto: LootSpawnerIndustrialFluff + entities: + - uid: 394 components: - type: Transform - pos: 19.5,7.5 + pos: 0.5,-84.5 parent: 2 - - uid: 20150 + - uid: 8131 components: - type: Transform - pos: 57.5,-60.5 + pos: 15.5,-77.5 parent: 2 -- proto: LootSpawnerIndustrialFluff - entities: - uid: 8256 components: - type: Transform pos: 11.5,-25.5 parent: 2 - - uid: 11316 + - uid: 8314 components: - type: Transform - pos: -43.5,-51.5 + pos: -19.5,-16.5 parent: 2 - - uid: 11975 + - uid: 8324 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + pos: 43.5,21.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 11114 + components: + - type: Transform + pos: -6.5,-78.5 + parent: 2 + - uid: 11127 + components: + - type: Transform + pos: 9.5,-78.5 + parent: 2 + - uid: 12520 components: - type: Transform - pos: 24.5,14.5 + pos: 32.5,17.5 parent: 2 - uid: 13575 components: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 18963 + - uid: 14978 components: - type: Transform - pos: -33.5,3.5 + pos: -6.5,-61.5 parent: 2 - - uid: 19877 + - uid: 19249 components: - type: Transform - pos: 52.5,-61.5 + pos: -3.5,-92.5 + parent: 2 + - uid: 19250 + components: + - type: Transform + pos: -4.5,-95.5 + parent: 2 + - uid: 19253 + components: + - type: Transform + pos: -11.5,-91.5 parent: 2 - uid: 20152 components: - 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 + pos: 40.5,19.5 + parent: 2 - proto: LootSpawnerMaterials entities: - - uid: 4155 + - uid: 10803 components: - type: Transform - pos: 1.5,-14.5 + pos: 10.5,-19.5 parent: 2 - - uid: 12610 + - uid: 15017 components: - type: Transform - pos: -28.5,-59.5 + pos: 11.5,-91.5 parent: 2 - uid: 20151 components: - type: Transform pos: 57.5,-59.5 parent: 2 + - uid: 20759 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 20766 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 +- proto: LootSpawnerMaterialsHighValue + entities: + - uid: 7599 + components: + - type: Transform + pos: 84.5,-17.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: -9.5,-87.5 + parent: 2 - proto: LootSpawnerMedicalClassy entities: - - uid: 5003 + - uid: 9326 components: - type: Transform - pos: -37.5,-27.5 + pos: -42.5,-45.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + pos: 22.5,-59.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + pos: -44.5,-27.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: -47.5,-38.5 parent: 2 - uid: 18768 components: @@ -97425,16 +106921,6 @@ entities: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 4845 - components: - - type: Transform - pos: -40.5,-21.5 - parent: 2 - - uid: 8602 - components: - - type: Transform - pos: -40.5,-23.5 - parent: 2 - uid: 10501 components: - type: Transform @@ -97445,22 +106931,128 @@ entities: - type: Transform pos: 74.5,-41.5 parent: 2 - - uid: 12376 + - uid: 12198 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 14191 components: - type: Transform - pos: -42.5,-50.5 + pos: -42.5,-44.5 parent: 2 - uid: 18170 components: - type: Transform pos: 71.5,-64.5 parent: 2 -- proto: LootSpawnerSecurity +- proto: LootSpawnerRandomCrateEngineering entities: - - uid: 9409 + - uid: 16908 components: - type: Transform - pos: -31.5,-7.5 + pos: 8.5,-19.5 + parent: 2 +- proto: LootSpawnerRoboticsBorgModule + entities: + - uid: 6743 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 22763 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 +- proto: LootSpawnerScienceMajor + entities: + - uid: 4751 + components: + - type: Transform + pos: 30.5,-35.5 + parent: 2 + - uid: 11849 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 11850 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + pos: 52.5,-61.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: 52.5,-33.5 + parent: 2 + - uid: 19550 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 22708 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 22768 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 +- proto: LootSpawnerScienceMinor + entities: + - uid: 122 + components: + - type: Transform + pos: 28.5,-48.5 + parent: 2 + - uid: 11845 + components: + - type: Transform + pos: 59.5,-56.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + pos: 53.5,-49.5 + parent: 2 + - uid: 13780 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 16760 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 22759 + components: + - type: Transform + pos: 34.5,-53.5 + parent: 2 + - uid: 22760 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 22761 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - uid: 22764 + components: + - type: Transform + pos: 20.5,-23.5 parent: 2 - proto: LootSpawnerSecurityBasic entities: @@ -97474,12 +107066,10 @@ entities: - type: Transform pos: 63.5,-81.5 parent: 2 -- proto: LuxuryPen - entities: - - uid: 20255 + - uid: 22717 components: - type: Transform - pos: -16.162369,-48.395626 + pos: -19.5,18.5 parent: 2 - proto: MachineAnomalyGenerator entities: @@ -97528,17 +107118,17 @@ entities: parent: 2 - proto: MachineCentrifuge entities: - - uid: 11806 + - uid: 12041 components: - type: Transform - pos: -34.5,-34.5 + pos: -32.5,-37.5 parent: 2 - proto: MachineElectrolysisUnit entities: - - uid: 12697 + - uid: 12039 components: - type: Transform - pos: -34.5,-35.5 + pos: -33.5,-37.5 parent: 2 - proto: MachineFrame entities: @@ -97552,6 +107142,11 @@ entities: - type: Transform pos: 21.5,-29.5 parent: 2 + - uid: 5011 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 - uid: 6168 components: - type: Transform @@ -97562,6 +107157,16 @@ entities: - type: Transform pos: 43.5,11.5 parent: 2 + - uid: 7590 + components: + - type: Transform + pos: 0.5,-95.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: -41.5,-43.5 + parent: 2 - uid: 20662 components: - type: Transform @@ -97569,20 +107174,20 @@ entities: parent: 2 - proto: MachineFrameDestroyed entities: - - uid: 652 + - uid: 456 components: - type: Transform - pos: 44.5,-44.5 + pos: -3.5,-86.5 parent: 2 - - uid: 2067 + - uid: 652 components: - type: Transform - pos: 14.5,-11.5 + pos: 44.5,-44.5 parent: 2 - - uid: 4354 + - uid: 3214 components: - type: Transform - pos: 13.5,-13.5 + pos: -19.5,-13.5 parent: 2 - uid: 8672 components: @@ -97599,10 +107204,10 @@ entities: - type: Transform pos: 21.5,15.5 parent: 2 - - uid: 13192 + - uid: 14184 components: - type: Transform - pos: 16.5,2.5 + pos: -40.5,-46.5 parent: 2 - uid: 14605 components: @@ -97694,16 +107299,6 @@ entities: - type: Configuration config: tag: Engineering - - uid: 11500 - components: - - type: Transform - pos: -43.5,-20.5 - parent: 2 - - type: MailingUnit - tag: Medical - - type: Configuration - config: - tag: Medical - uid: 12581 components: - type: Transform @@ -97725,24 +107320,23 @@ entities: - type: Configuration config: tag: Security - - uid: 17870 + - uid: 14844 components: - type: Transform - pos: 1.5,-32.5 + pos: -35.5,-24.5 parent: 2 - type: MailingUnit - tag: Kitchen - - uid: 18638 + tag: Medical + - type: Configuration + config: + tag: Medical + - uid: 17870 components: - type: Transform - pos: -26.5,-36.5 + pos: 1.5,-32.5 parent: 2 - type: MailingUnit - tag: Chemistry - target: Chemistry - - type: Configuration - config: - tag: Chemistry + tag: Kitchen - uid: 18639 components: - type: Transform @@ -97765,13 +107359,68 @@ entities: - type: Configuration config: tag: Cargo + - uid: 20232 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - type: MailingUnit + tag: Chemistry + - type: Configuration + config: + tag: Chemistry - proto: MaintenanceFluffSpawner entities: + - uid: 1111 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: -35.5,-79.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: -35.5,-64.5 + parent: 2 - uid: 3336 components: - type: Transform pos: -16.5,9.5 parent: 2 + - uid: 4428 + components: + - type: Transform + pos: -53.5,-49.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + pos: -53.5,-55.5 + parent: 2 + - uid: 4722 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 4827 + components: + - type: Transform + pos: -29.5,-54.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: -31.5,-53.5 + parent: 2 - uid: 5719 components: - type: Transform @@ -97782,70 +107431,125 @@ entities: - type: Transform pos: 56.5,-39.5 parent: 2 - - uid: 6717 + - uid: 6644 components: - type: Transform - pos: 18.5,12.5 + pos: -33.5,-2.5 parent: 2 - - uid: 7202 + - uid: 6717 components: - type: Transform - pos: 29.5,23.5 + pos: 18.5,12.5 parent: 2 - uid: 7296 components: - type: Transform pos: 7.5,-22.5 parent: 2 - - uid: 7612 + - uid: 8765 components: - type: Transform - pos: -9.5,-61.5 + pos: 11.5,-67.5 parent: 2 - - uid: 8217 + - uid: 9359 components: - type: Transform - pos: -51.5,-47.5 + pos: 48.5,-24.5 parent: 2 - - uid: 8636 + - uid: 9506 components: - type: Transform - pos: 7.5,-55.5 + pos: 37.5,11.5 parent: 2 - - uid: 8695 + - uid: 9650 components: - type: Transform - pos: 30.5,41.5 + pos: 42.5,-0.5 parent: 2 - - uid: 9359 + - uid: 10482 components: - type: Transform - pos: 48.5,-24.5 + pos: -52.5,-51.5 parent: 2 - - uid: 9650 + - uid: 10516 components: - type: Transform - pos: 42.5,-0.5 + pos: -56.5,-54.5 parent: 2 - - uid: 10693 + - uid: 10524 components: - type: Transform - pos: -33.5,-49.5 + pos: -61.5,31.5 parent: 2 - - uid: 12350 + - uid: 10527 components: - type: Transform - pos: -42.5,-51.5 + pos: -76.5,-5.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + pos: 9.5,-70.5 + parent: 2 + - uid: 10949 + components: + - type: Transform + pos: -9.5,-65.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: -9.5,-58.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + pos: -45.5,-54.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + pos: -7.5,-92.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + pos: -5.5,-88.5 parent: 2 - uid: 13094 components: - type: Transform pos: 52.5,-60.5 parent: 2 - - uid: 13813 + - uid: 14061 + components: + - type: Transform + pos: -52.5,-55.5 + parent: 2 + - uid: 15056 + components: + - type: Transform + pos: 3.5,-86.5 + parent: 2 + - uid: 15140 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 2 + - uid: 16866 + components: + - type: Transform + pos: 9.5,-95.5 + parent: 2 + - uid: 16897 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 17875 components: - type: Transform - pos: 3.5,-18.5 + pos: 2.5,-93.5 parent: 2 - uid: 18116 components: @@ -97882,32 +107586,77 @@ entities: - type: Transform pos: -24.5,-51.5 parent: 2 + - uid: 21122 + components: + - type: Transform + pos: 3.5,-52.5 + parent: 2 + - uid: 21441 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 22460 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 22489 + components: + - type: Transform + pos: 23.5,13.5 + parent: 2 - proto: MaintenancePlantSpawner entities: + - uid: 510 + components: + - type: Transform + pos: -36.5,-17.5 + parent: 2 - uid: 631 components: - type: Transform pos: 38.5,-57.5 parent: 2 + - uid: 848 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 - uid: 2860 components: - type: Transform pos: 56.5,-55.5 parent: 2 - - uid: 6054 + - uid: 3839 components: - type: Transform - pos: 6.5,-44.5 + pos: 17.5,-1.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: -48.5,-54.5 parent: 2 - uid: 7401 components: - type: Transform pos: 48.5,12.5 parent: 2 - - uid: 13367 + - uid: 16907 components: - type: Transform - pos: -33.5,6.5 + pos: -27.5,-16.5 parent: 2 - uid: 20149 components: @@ -97926,35 +107675,65 @@ entities: parent: 2 - proto: MaintenanceToolSpawner entities: + - uid: 1529 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 - uid: 3267 components: - type: Transform pos: -15.5,-25.5 parent: 2 - - uid: 6582 + - uid: 4620 components: - type: Transform - pos: 25.5,-0.5 + pos: -53.5,-51.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: 12.5,-64.5 parent: 2 - uid: 6783 components: - type: Transform pos: 20.5,15.5 parent: 2 - - uid: 8856 + - uid: 8158 components: - type: Transform - pos: 37.5,9.5 + pos: -14.5,-96.5 parent: 2 - - uid: 9347 + - uid: 8161 components: - type: Transform - pos: 8.5,-51.5 + pos: -12.5,-95.5 parent: 2 - - uid: 14348 + - uid: 8568 components: - type: Transform - pos: 13.5,-56.5 + pos: -48.5,-49.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + pos: 13.5,-54.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + pos: -41.5,-44.5 parent: 2 - uid: 16223 components: @@ -97966,22 +107745,32 @@ entities: - type: Transform pos: -34.5,16.5 parent: 2 -- proto: MaintenanceWeaponSpawner - entities: - - uid: 1135 + - uid: 21597 components: - type: Transform - pos: 13.5,-12.5 + pos: -40.5,-50.5 + parent: 2 + - uid: 21869 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 22646 + components: + - type: Transform + pos: 42.5,15.5 parent: 2 +- proto: MaintenanceWeaponSpawner + entities: - uid: 2241 components: - type: Transform pos: 53.5,-41.5 parent: 2 - - uid: 13364 + - uid: 12262 components: - type: Transform - pos: -32.5,-6.5 + pos: -39.5,-17.5 parent: 2 - uid: 18171 components: @@ -97993,6 +107782,11 @@ entities: - type: Transform pos: 59.5,-77.5 parent: 2 + - uid: 21117 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 - proto: Matchbox entities: - uid: 18987 @@ -98007,8 +107801,37 @@ entities: - type: Transform pos: 27.31061,-28.853947 parent: 2 +- proto: MaterialCardboard1 + entities: + - uid: 8296 + components: + - type: Transform + pos: -52.721657,-48.491867 + parent: 2 + - uid: 8297 + components: + - type: Transform + pos: -52.44027,-49.315353 + parent: 2 + - uid: 8487 + components: + - type: Transform + pos: 30.533962,24.520311 + parent: 2 +- proto: MaterialCardboard10 + entities: + - uid: 22315 + components: + - type: Transform + pos: 19.48091,19.410229 + parent: 2 - proto: MaterialCloth entities: + - uid: 1925 + components: + - type: Transform + pos: -53.531147,-50.56324 + parent: 2 - uid: 4458 components: - type: Transform @@ -98019,11 +107842,6 @@ entities: - type: Transform pos: -11.630145,-48.309666 parent: 2 - - uid: 10709 - components: - - type: Transform - pos: -40.572792,-52.39697 - parent: 2 - proto: MaterialCloth1 entities: - uid: 18836 @@ -98048,6 +107866,13 @@ entities: - type: Transform pos: -23.528334,19.663761 parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 1919 + components: + - type: Transform + pos: -30.653856,-58.997635 + parent: 2 - proto: MaterialDurathread entities: - uid: 7551 @@ -98060,8 +107885,7 @@ entities: - uid: 11828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.48484,11.445508 + pos: 40.559696,9.455563 parent: 2 - proto: MaterialWoodPlank1 entities: @@ -98092,11 +107916,6 @@ entities: parent: 2 - proto: MaterialWoodPlank10 entities: - - uid: 4650 - components: - - type: Transform - pos: 11.530903,-11.53406 - parent: 2 - uid: 10824 components: - type: Transform @@ -98109,6 +107928,18 @@ entities: - type: Transform pos: 23.528748,-30.371534 parent: 2 +- proto: Mattress + entities: + - uid: 20496 + components: + - type: Transform + pos: 38.5,25.5 + parent: 2 + - uid: 21982 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 - proto: MechEquipmentGrabberSmall entities: - uid: 5686 @@ -98123,34 +107954,44 @@ entities: - type: Transform pos: -30.5,11.5 parent: 2 - - uid: 8109 + - uid: 10655 components: - type: Transform - pos: -38.5,-20.5 + pos: -45.5,-30.5 parent: 2 - - uid: 20711 + - uid: 12383 components: - type: Transform - pos: -33.5,-23.5 + pos: -41.5,-27.5 parent: 2 - - uid: 20759 + - uid: 12635 components: - type: Transform - pos: -39.5,-24.5 + pos: -45.5,-27.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: -45.5,-39.5 + parent: 2 + - uid: 22018 + components: + - type: Transform + pos: 18.5,0.5 parent: 2 - proto: MedicalTechFab entities: - - uid: 11829 + - uid: 14835 components: - type: Transform - pos: -44.5,-20.5 + pos: -36.5,-24.5 parent: 2 - proto: MedkitAdvancedFilled entities: - - uid: 4812 + - uid: 12345 components: - type: Transform - pos: -28.939676,-25.44473 + pos: -27.611101,-21.373356 parent: 2 - proto: MedkitBruteFilled entities: @@ -98159,29 +108000,29 @@ entities: - type: Transform pos: -28.597748,11.966526 parent: 2 - - uid: 4813 + - uid: 12346 components: - type: Transform - pos: -28.688416,-25.301798 + pos: -27.058744,-21.373356 parent: 2 - - uid: 4953 + - uid: 14890 components: - type: Transform - pos: -34.599285,-25.395685 + pos: -39.21216,-24.463324 parent: 2 - proto: MedkitBurnFilled entities: - - uid: 4787 + - uid: 14891 components: - type: Transform - pos: -34.58557,-25.79635 + pos: -38.95161,-24.327812 parent: 2 - proto: MedkitCombatFilled entities: - - uid: 4020 + - uid: 14106 components: - type: Transform - pos: -41.173077,-34.23781 + pos: -47.612183,-22.366476 parent: 2 - proto: MedkitFilled entities: @@ -98195,76 +108036,66 @@ entities: - type: Transform pos: 15.536427,-47.35837 parent: 2 - - uid: 5009 + - uid: 9844 components: - type: Transform - pos: -34.35629,-26.421785 + pos: -18.531181,-50.325314 parent: 2 - - uid: 8525 + - uid: 12347 components: - type: Transform - pos: 20.53991,-13.383279 + pos: -27.31929,-21.498356 parent: 2 - - uid: 9844 + - uid: 14769 components: - type: Transform - pos: -18.531181,-50.325314 + pos: -35.562977,-30.081774 parent: 2 -- proto: MedkitO2 - entities: - - uid: 1962 + - uid: 14770 components: - type: Transform - pos: -12.464999,-8.361995 + pos: -28.465706,-30.352795 parent: 2 - - uid: 4699 + - uid: 14907 components: - type: Transform - pos: -28.38732,-25.434307 + pos: -42.43738,-27.405184 parent: 2 -- proto: MedkitOxygenFilled - entities: - - uid: 5008 + - uid: 21611 components: - type: Transform - pos: -34.554306,-26.202883 + pos: 22.677423,2.570633 parent: 2 - - uid: 5155 +- proto: MedkitO2 + entities: + - uid: 1962 components: - type: Transform - pos: -31.570898,-60.697475 + pos: -12.464999,-8.361995 parent: 2 - - uid: 11615 +- proto: MedkitOxygenFilled + entities: + - uid: 14893 components: - type: Transform - pos: -6.4743137,-60.38087 + pos: -38.40397,-24.327812 parent: 2 - proto: MedkitRadiationFilled entities: - - uid: 4785 + - uid: 14892 components: - type: Transform - pos: -34.377132,-25.598297 + pos: -39.534172,-24.327812 parent: 2 - proto: MedkitToxinFilled entities: - - uid: 12994 + - uid: 14895 components: - type: Transform - pos: -34.35926,-25.975962 + pos: -38.668125,-24.4529 parent: 2 - proto: MicroManipulatorStockPart entities: - - uid: 4773 - components: - - type: Transform - pos: -28.36625,-60.265133 - parent: 2 - - uid: 5668 - components: - - type: Transform - pos: -28.658062,-60.3381 - parent: 2 - uid: 9605 components: - type: Transform @@ -98284,10 +108115,10 @@ entities: parent: 2 - proto: MiniGravityGeneratorCircuitboard entities: - - uid: 8006 + - uid: 21977 components: - type: Transform - pos: -35.515686,-53.284847 + pos: 21.394836,23.732847 parent: 2 - proto: MinimoogInstrument entities: @@ -98305,13 +108136,6 @@ entities: rot: -1.5707963267948966 rad pos: 42.5,-39.5 parent: 2 -- proto: MonkeyCubeWrapped - entities: - - uid: 6952 - components: - - type: Transform - pos: -50.94765,-47.44612 - parent: 2 - proto: MoonBattlemap entities: - uid: 6009 @@ -98326,34 +108150,39 @@ entities: - type: Transform pos: -2.5,-26.5 parent: 2 + - uid: 15747 + components: + - type: Transform + pos: -47.5,-52.5 + parent: 2 - proto: MopBucketFull entities: - - uid: 9407 + - uid: 21818 components: - type: Transform - pos: 28.5,-0.5 + pos: 28.5,2.5 parent: 2 - proto: MopItem entities: - - uid: 2437 + - uid: 3889 components: - type: Transform - pos: 23.483007,5.5348063 + pos: -2.5393615,-26.524923 parent: 2 - - uid: 3889 + - uid: 16934 components: - type: Transform - pos: -2.5393615,-26.524923 + pos: -47.522087,-52.53586 parent: 2 - - uid: 9529 + - uid: 20336 components: - type: Transform - pos: 28.482061,-0.5141529 + pos: 44.345024,17.50864 parent: 2 - - uid: 18982 + - uid: 21371 components: - type: Transform - pos: 35.46167,18.529366 + pos: 28.489487,2.5330553 parent: 2 - proto: Morgue entities: @@ -98362,61 +108191,56 @@ entities: - type: Transform pos: -29.5,12.5 parent: 2 - - uid: 3312 + - uid: 4377 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-47.5 + pos: 40.5,-29.5 parent: 2 - - uid: 4377 + - uid: 14119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-29.5 + rot: 1.5707963267948966 rad + pos: -46.5,-43.5 parent: 2 - - uid: 4888 + - uid: 14120 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,-46.5 + pos: -46.5,-44.5 parent: 2 - - uid: 4894 + - uid: 14121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,-48.5 + rot: 1.5707963267948966 rad + pos: -46.5,-46.5 parent: 2 - - uid: 4895 + - uid: 14122 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-45.5 + pos: -44.5,-43.5 parent: 2 - - uid: 4898 + - uid: 14123 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,-46.5 + pos: -44.5,-44.5 parent: 2 - - uid: 7961 + - uid: 14124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-45.5 + rot: -1.5707963267948966 rad + pos: -44.5,-45.5 parent: 2 - - uid: 8265 + - uid: 14125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-48.5 + rot: -1.5707963267948966 rad + pos: -44.5,-46.5 parent: 2 - proto: MothroachCube entities: - - uid: 3154 - components: - - type: Transform - pos: 10.628341,3.8540983 - parent: 2 - uid: 4455 components: - type: Transform @@ -98434,6 +108258,11 @@ entities: - type: Transform pos: 46.5,10.5 parent: 2 + - uid: 5862 + components: + - type: Transform + pos: -46.5,-50.5 + parent: 2 - uid: 7092 components: - type: Transform @@ -98444,69 +108273,60 @@ entities: - type: Transform pos: 24.5,-53.5 parent: 2 - - uid: 11284 + - uid: 12128 components: - type: Transform - pos: 24.5,5.5 + pos: 24.5,-2.5 parent: 2 - - uid: 20634 + - uid: 16089 components: - type: Transform - pos: -22.5,19.5 + pos: 7.5,-52.5 parent: 2 -- proto: Multitool - entities: - - uid: 130 + - uid: 20634 components: - type: Transform - pos: -6.710307,-15.357808 + pos: -22.5,19.5 parent: 2 - - uid: 3370 + - uid: 22636 components: - type: Transform - pos: -14.68253,-24.415592 + pos: 32.5,25.5 parent: 2 - - uid: 4616 + - uid: 22645 components: - type: Transform - pos: 26.30102,-37.382942 + pos: -37.5,-17.5 parent: 2 - - uid: 13074 + - uid: 22786 components: - type: Transform - pos: 13.493722,-19.422201 + pos: -16.5,-24.5 parent: 2 - - uid: 16645 +- proto: Multitool + entities: + - uid: 3370 components: - type: Transform - pos: 38.63871,-42.337013 + pos: -14.68253,-24.415592 parent: 2 -- proto: MysteryFigureBox - entities: - - uid: 20232 + - uid: 4616 components: - type: Transform - pos: -31.540592,-45.965317 + pos: 26.30102,-37.382942 parent: 2 -- proto: MysteryFigureBoxTrash - entities: - - uid: 559 + - uid: 11162 components: - type: Transform - pos: -42.69603,-50.214554 + pos: 7.350439,-16.342197 parent: 2 - - uid: 11319 + - uid: 16645 components: - type: Transform - pos: -42.352108,-50.537697 + pos: 38.63871,-42.337013 parent: 2 - proto: NitrogenCanister entities: - - uid: 275 - components: - - type: Transform - pos: 12.5,-8.5 - parent: 2 - uid: 399 components: - type: Transform @@ -98527,16 +108347,21 @@ entities: - type: Transform pos: -11.5,-2.5 parent: 2 - - uid: 3108 + - uid: 3530 components: - type: Transform - pos: 3.5,-14.5 + pos: 11.5,-78.5 parent: 2 - uid: 4265 components: - type: Transform pos: -13.5,23.5 parent: 2 + - uid: 4379 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 - uid: 4469 components: - type: Transform @@ -98547,25 +108372,30 @@ entities: - type: Transform pos: 14.5,17.5 parent: 2 - - uid: 5022 + - uid: 5974 components: - type: Transform - pos: -29.5,-19.5 + pos: 49.5,-33.5 parent: 2 - - uid: 7576 + - uid: 11050 components: - type: Transform - pos: 12.5,-71.5 + pos: 28.5,-4.5 parent: 2 - - uid: 7583 + - uid: 12682 components: - type: Transform - pos: -9.5,-71.5 + pos: -52.5,-38.5 parent: 2 - - uid: 10703 + - uid: 12711 components: - type: Transform - pos: -39.5,-55.5 + pos: -8.5,-78.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: -34.5,-18.5 parent: 2 - uid: 14307 components: @@ -98577,16 +108407,21 @@ entities: - type: Transform pos: -53.5,-13.5 parent: 2 - - uid: 18591 + - uid: 19197 components: - type: Transform - pos: 49.5,-33.5 + pos: -4.5,-58.5 parent: 2 - uid: 19875 components: - type: Transform pos: 47.5,-54.5 parent: 2 + - uid: 21118 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 - proto: NitrogenTankFilled entities: - uid: 5347 @@ -98608,23 +108443,18 @@ entities: - type: Transform pos: 38.479885,-27.422543 parent: 2 - - uid: 5245 + - uid: 12368 components: - type: Transform - pos: -52.508484,-33.27032 + pos: -26.485409,-21.477522 parent: 2 - - uid: 16363 + - uid: 14846 components: - type: Transform - pos: -26.490044,-25.493969 + pos: -45.517696,-22.665138 parent: 2 - proto: NoticeBoard entities: - - uid: 4933 - components: - - type: Transform - pos: -14.5,-39.5 - parent: 2 - uid: 4942 components: - type: Transform @@ -98640,6 +108470,12 @@ entities: - type: Transform pos: 30.5,9.5 parent: 2 + - uid: 22765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-43.5 + parent: 2 - proto: NTDefaultCircuitBoard entities: - uid: 16466 @@ -98656,11 +108492,10 @@ entities: parent: 2 - proto: NuclearBombUnanchored entities: - - uid: 13189 + - uid: 1904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 + pos: -28.5,-61.5 parent: 2 - proto: NukeDiskFake entities: @@ -98680,32 +108515,27 @@ entities: parent: 2 - proto: OperatingTable entities: - - uid: 1892 - components: - - type: Transform - pos: -51.5,-33.5 - parent: 2 - - uid: 2846 + - uid: 4365 components: - type: Transform - pos: -51.5,-27.5 + pos: 38.5,-29.5 parent: 2 - - uid: 3879 + - uid: 12993 components: - type: Transform - pos: -43.5,-47.5 + pos: -43.5,-23.5 parent: 2 - - uid: 4365 + - uid: 14146 components: - type: Transform - pos: 38.5,-29.5 + pos: -48.5,-45.5 parent: 2 - proto: OreBag entities: - uid: 175 components: - type: Transform - pos: 11.532255,23.533916 + pos: 10.530537,28.604168 parent: 2 - proto: OreBox entities: @@ -98714,6 +108544,11 @@ entities: - type: Transform pos: 14.5,21.5 parent: 2 + - uid: 22474 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 - proto: OreProcessor entities: - uid: 1360 @@ -98748,20 +108583,20 @@ entities: - type: Transform pos: -11.5,-3.5 parent: 2 - - uid: 2327 + - uid: 3891 components: - type: Transform - pos: -5.5,-8.5 + pos: -8.5,-77.5 parent: 2 - - uid: 2877 + - uid: 3932 components: - type: Transform - pos: 19.5,-9.5 + pos: 11.5,-77.5 parent: 2 - - uid: 4303 + - uid: 4215 components: - type: Transform - pos: 4.5,-14.5 + pos: 29.5,15.5 parent: 2 - uid: 4468 components: @@ -98773,35 +108608,30 @@ entities: - type: Transform pos: 14.5,18.5 parent: 2 - - uid: 4668 - components: - - type: Transform - pos: -30.5,-19.5 - parent: 2 - - uid: 6276 + - uid: 6975 components: - type: Transform - pos: 18.5,8.5 + pos: 35.5,8.5 parent: 2 - - uid: 6975 + - uid: 7436 components: - type: Transform - pos: 35.5,8.5 + pos: -5.5,-8.5 parent: 2 - - uid: 7580 + - uid: 11068 components: - type: Transform - pos: -7.5,-71.5 + pos: 27.5,-4.5 parent: 2 - - uid: 7596 + - uid: 13131 components: - type: Transform - pos: 10.5,-71.5 + pos: -52.5,-37.5 parent: 2 - - uid: 10701 + - uid: 13752 components: - type: Transform - pos: -40.5,-55.5 + pos: -34.5,-17.5 parent: 2 - uid: 14270 components: @@ -98813,11 +108643,21 @@ entities: - type: Transform pos: -54.5,-13.5 parent: 2 + - uid: 19209 + components: + - type: Transform + pos: -3.5,-58.5 + parent: 2 - uid: 19876 components: - type: Transform pos: 46.5,-54.5 parent: 2 + - uid: 21156 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 - proto: OxygenTankFilled entities: - uid: 5326 @@ -98832,6 +108672,13 @@ entities: - type: Transform pos: -41.57583,-5.567674 parent: 2 +- proto: PaintingSkeletonCigarette + entities: + - uid: 21208 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 - proto: PaladinCircuitBoard entities: - uid: 16468 @@ -98853,6 +108700,11 @@ entities: - type: Transform pos: -12.605077,14.639001 parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -28.57779,-45.411148 + parent: 2 - uid: 1912 components: - type: Transform @@ -98869,10 +108721,20 @@ entities: rot: -1.5707963267948966 rad pos: 19.868683,14.68054 parent: 2 - - uid: 4510 + - uid: 3740 components: - type: Transform - pos: 10.756002,-13.212388 + pos: 22.102634,-44.28669 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: 22.269384,-44.463894 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -29.640818,-45.609203 parent: 2 - uid: 7073 components: @@ -98966,31 +108828,10 @@ entities: - type: Transform pos: 13.602551,-51.490356 parent: 2 - - uid: 12348 - components: - - type: Transform - pos: -40.606613,-51.410885 - parent: 2 - - uid: 12349 - components: - - type: Transform - pos: -40.419018,-50.94181 - parent: 2 - - uid: 15483 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.9965925,-12.161332 - parent: 2 - - uid: 15830 - components: - - type: Transform - pos: 11.042132,-11.941029 - parent: 2 - - uid: 17874 + - uid: 22784 components: - type: Transform - pos: 6.352662,-51.439014 + pos: -15.608757,-40.42956 parent: 2 - proto: PaperBin10 entities: @@ -99004,15 +108845,16 @@ entities: - type: Transform pos: 35.5,-41.5 parent: 2 - - uid: 8260 + - uid: 8445 components: - type: Transform - pos: -52.5,-42.5 + pos: -24.5,-18.5 parent: 2 - - uid: 8445 + - uid: 13750 components: - type: Transform - pos: -24.5,-18.5 + rot: -1.5707963267948966 rad + pos: -29.5,-24.5 parent: 2 - proto: PaperBin20 entities: @@ -99021,11 +108863,6 @@ entities: - type: Transform pos: 0.5,16.5 parent: 2 - - uid: 5954 - components: - - type: Transform - pos: 20.5,-37.5 - parent: 2 - uid: 5995 components: - type: Transform @@ -99036,6 +108873,17 @@ entities: - type: Transform pos: -11.5,-47.5 parent: 2 + - uid: 9391 + components: + - type: Transform + pos: -41.5,-53.5 + parent: 2 + - uid: 10922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 - uid: 15838 components: - type: Transform @@ -99053,11 +108901,6 @@ entities: - type: Transform pos: -11.5,-14.5 parent: 2 - - uid: 18637 - components: - - type: Transform - pos: -45.5,-22.5 - parent: 2 - proto: PaperCNCSheet entities: - uid: 5996 @@ -99111,6 +108954,11 @@ entities: - type: Transform pos: -18.265701,-44.49553 parent: 2 + - uid: 19069 + components: + - type: Transform + pos: -15.32967,-40.3367 + parent: 2 - proto: PaperScrap entities: - uid: 6446 @@ -99149,26 +108997,30 @@ entities: - type: Transform pos: -10.496071,-13.459224 parent: 2 - - uid: 4775 + - uid: 15051 components: - type: Transform - pos: -31.512741,-59.428432 + pos: 6.545867,-89.35689 parent: 2 - - uid: 10652 + - uid: 15185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.464424,-55.467007 + pos: 0.5215175,-57.367905 parent: 2 - uid: 19939 components: - type: Transform - pos: 11.662693,26.53137 + pos: 15.414982,25.616112 parent: 2 - uid: 20133 components: - type: Transform - pos: 11.443943,26.520947 + pos: 15.560888,25.595263 + parent: 2 + - uid: 21618 + components: + - type: Transform + pos: -57.479538,-58.35758 parent: 2 - proto: PartRodMetal1 entities: @@ -99206,10 +109058,15 @@ entities: - type: Transform pos: -12.335869,14.626761 parent: 2 - - uid: 4112 + - uid: 1381 components: - type: Transform - pos: -6.6149387,-59.69337 + pos: -28.18176,-45.359028 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: 21.831667,-44.265842 parent: 2 - uid: 6003 components: @@ -99227,11 +109084,6 @@ entities: rot: -1.5707963267948966 rad pos: 18.373459,-49.153915 parent: 2 - - uid: 6006 - components: - - type: Transform - pos: 18.613163,-36.060383 - parent: 2 - uid: 6271 components: - type: Transform @@ -99240,7 +109092,7 @@ entities: - uid: 7515 components: - type: Transform - pos: -21.319298,-44.49553 + pos: -21.278234,-44.442764 parent: 2 - uid: 7519 components: @@ -99248,45 +109100,25 @@ entities: rot: -1.5707963267948966 rad pos: -18.651308,-44.464256 parent: 2 - - uid: 8203 - components: - - type: Transform - pos: -51.8782,-42.349243 - parent: 2 - - uid: 8247 - components: - - type: Transform - pos: -44.468704,-45.82548 - parent: 2 - uid: 8510 components: - type: Transform pos: 48.20175,-7.408041 parent: 2 - - uid: 10191 - components: - - type: Transform - pos: -34.36954,-45.00922 - parent: 2 - uid: 11930 components: - type: Transform pos: 32.108105,-75.43631 parent: 2 - - uid: 13083 - components: - - type: Transform - pos: -33.33428,-32.462944 - parent: 2 - uid: 13493 components: - type: Transform pos: -24.065586,-18.367483 parent: 2 - - uid: 15867 + - uid: 14162 components: - type: Transform - pos: 12.290273,-12.883439 + pos: -49.959827,-43.384743 parent: 2 - uid: 16885 components: @@ -99298,6 +109130,11 @@ entities: - type: Transform pos: 17.558317,12.469315 parent: 2 + - uid: 21435 + components: + - type: Transform + pos: 20.623661,-40.959423 + parent: 2 - proto: PersonalAI entities: - uid: 3727 @@ -99318,13 +109155,23 @@ entities: - uid: 16191 components: - type: Transform - pos: -10.464066,-37.359142 + pos: -10.523058,-39.276688 parent: 2 - uid: 16192 components: - type: Transform pos: -23.127619,-18.398756 parent: 2 + - uid: 22272 + components: + - type: Transform + pos: -9.504319,-64.42072 + parent: 2 + - uid: 22273 + components: + - type: Transform + pos: -53.009056,-51.51435 + parent: 2 - proto: PhoneInstrument entities: - uid: 13539 @@ -99342,17 +109189,29 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 5409 + - uid: 21915 components: - type: Transform - pos: 18.529888,28.510042 + pos: 17.511118,31.580132 parent: 2 - proto: PillCanisterBicaridine entities: - - uid: 3156 + - uid: 21979 + components: + - type: Transform + pos: 22.274645,2.5428553 + parent: 2 +- proto: PillCanisterDermaline + entities: + - uid: 1442 components: - type: Transform - pos: -25.62975,-33.982788 + pos: -27.533257,-45.233967 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: 22.302423,2.7234106 parent: 2 - proto: PillCanisterDexalin entities: @@ -99363,32 +109222,25 @@ entities: parent: 2 - proto: PillCanisterRandom entities: - - uid: 4824 - components: - - type: Transform - pos: -28.032207,-28.350983 - parent: 2 - - uid: 4940 + - uid: 14060 components: - type: Transform - pos: -29.676888,-22.437117 + pos: 22.25982,-58.332798 parent: 2 - - uid: 7811 + - uid: 14771 components: - type: Transform - pos: -52.253387,-41.817623 + pos: -35.30047,-30.352795 parent: 2 - - uid: 14060 + - uid: 14776 components: - type: Transform - pos: 22.25982,-58.332798 + pos: -29.495483,-33.442432 parent: 2 -- proto: PillCanisterTricordrazine - entities: - - uid: 4858 + - uid: 14777 components: - type: Transform - pos: -25.358917,-33.79516 + pos: -29.182829,-33.412388 parent: 2 - proto: PirateFlag entities: @@ -99445,7 +109297,7 @@ entities: - type: Transform pos: -11.5,-4.5 parent: 2 - - uid: 1967 + - uid: 7752 components: - type: Transform pos: -5.5,-9.5 @@ -99458,6 +109310,18 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,-32.5 parent: 2 + - uid: 4758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,29.5 + parent: 2 - uid: 6839 components: - type: Transform @@ -99479,6 +109343,14 @@ entities: - type: Transform pos: 6.5,15.5 parent: 2 +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 12134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-36.5 + parent: 2 - proto: PlayerStationAi entities: - uid: 16136 @@ -99486,15 +109358,39 @@ entities: - type: Transform pos: -67.5,-12.5 parent: 2 +- proto: PlushieArachind + entities: + - uid: 21888 + components: + - type: Transform + pos: 19.521072,-8.539616 + parent: 2 +- proto: PlushieAtmosian + entities: + - uid: 719 + components: + - type: Transform + pos: 13.541924,-10.43575 + parent: 2 - proto: PlushieDiona entities: - - uid: 8981 + - uid: 8572 components: - type: Transform - pos: 5.570408,-44.542873 + pos: 6.540762,-45.45022 parent: 2 - proto: PlushieLizard entities: + - uid: 6264 + components: + - type: Transform + pos: -38.669014,-51.243996 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: 61.5,-78.5 + parent: 2 - uid: 19554 components: - type: Transform @@ -99520,40 +109416,38 @@ entities: - type: Transform pos: 62.5,-79.5 parent: 2 -- proto: PlushieMoth +- proto: PlushieLizardMirrored entities: - - uid: 17566 + - uid: 1797 components: - type: Transform - pos: 30.5,-79.5 + pos: 12.514555,-9.457302 parent: 2 -- proto: PlushieSharkBlue +- proto: PlushieMoth entities: - - uid: 7986 + - uid: 6278 components: - type: Transform - pos: -32.542946,-46.481663 + pos: -38.262566,-51.25442 parent: 2 -- proto: PlushieSharkPink - entities: - - uid: 10956 + - uid: 17566 components: - type: Transform - pos: 13.497391,-55.429188 + pos: 30.5,-79.5 parent: 2 -- proto: PlushieSpaceLizard +- proto: PlushieSharkBlue entities: - - uid: 7563 + - uid: 6303 components: - type: Transform - pos: -31.529049,-68.521324 + pos: -38.450157,-51.567135 parent: 2 -- proto: PlushieVox +- proto: PlushieSharkPink entities: - - uid: 3183 + - uid: 10956 components: - type: Transform - pos: 16.4438,-5.3298454 + pos: 13.538204,-53.419353 parent: 2 - proto: PonderingOrb entities: @@ -99571,61 +109465,76 @@ entities: parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 2926 + - uid: 5702 components: - type: Transform - pos: 19.5,6.5 + pos: 45.5,-36.5 parent: 2 - - uid: 3176 + - uid: 7506 components: - type: Transform - pos: 18.5,-16.5 + pos: 0.5,-23.5 parent: 2 - - uid: 4157 + - uid: 8294 components: - type: Transform - pos: 0.5,-41.5 + pos: -21.5,-16.5 parent: 2 - - uid: 5702 + - uid: 8362 components: - type: Transform - pos: 45.5,-36.5 + pos: -50.5,-59.5 parent: 2 - uid: 8696 components: - type: Transform pos: 40.5,-1.5 parent: 2 - - uid: 11468 + - uid: 9501 components: - type: Transform - pos: 14.5,-17.5 + pos: 37.5,12.5 parent: 2 - - uid: 18582 + - uid: 14172 components: - type: Transform - pos: -32.5,-41.5 + pos: -39.5,-41.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + pos: 28.5,25.5 parent: 2 - uid: 18810 components: - type: Transform pos: 81.5,-15.5 parent: 2 - - uid: 20635 + - uid: 19191 components: - type: Transform - pos: 53.5,-56.5 + pos: 9.5,-90.5 parent: 2 - - uid: 20636 + - uid: 20635 components: - type: Transform - pos: 21.5,-42.5 + pos: 53.5,-56.5 parent: 2 - uid: 20685 components: - type: Transform pos: -33.5,20.5 parent: 2 + - uid: 21442 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 21843 + components: + - type: Transform + pos: 23.5,14.5 + parent: 2 - proto: PortableGeneratorPacman entities: - uid: 5501 @@ -99662,15 +109571,15 @@ entities: - type: Transform pos: 31.5,-45.5 parent: 2 - - uid: 18115 + - uid: 3359 components: - type: Transform - pos: 29.5,-10.5 + pos: 29.5,-7.5 parent: 2 - - uid: 18373 + - uid: 4909 components: - type: Transform - pos: 29.5,-9.5 + pos: 29.5,-8.5 parent: 2 - proto: PosterContrabandGreyTide entities: @@ -99686,6 +109595,13 @@ entities: - type: Transform pos: -14.5,-22.5 parent: 2 +- proto: PosterContrabandLamarr + entities: + - uid: 12254 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 - proto: PosterContrabandMoth entities: - uid: 4205 @@ -99694,12 +109610,12 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-6.5 parent: 2 -- proto: PosterContrabandRevolt +- proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 2147 + - uid: 4823 components: - type: Transform - pos: 14.5,-10.5 + pos: -30.5,-62.5 parent: 2 - proto: PosterContrabandTools entities: @@ -99717,6 +109633,21 @@ entities: parent: 2 - proto: PosterContrabandWehWatches entities: + - uid: 17180 + components: + - type: Transform + pos: 63.5,-79.5 + parent: 2 + - uid: 17217 + components: + - type: Transform + pos: 63.5,-78.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + pos: 62.5,-76.5 + parent: 2 - uid: 19978 components: - type: Transform @@ -99736,12 +109667,12 @@ entities: - type: Transform pos: 47.5,-2.5 parent: 2 -- proto: PosterLegitHighClassMartini +- proto: PosterLegitFruitBowl entities: - - uid: 2765 + - uid: 22076 components: - type: Transform - pos: 4.5,-41.5 + pos: 19.5,-5.5 parent: 2 - proto: PosterLegitMime entities: @@ -99750,12 +109681,26 @@ entities: - type: Transform pos: 6.5,-29.5 parent: 2 -- proto: PosterLegitSafetyMothSSD +- proto: PosterLegitNanotrasenLogo entities: - - uid: 9537 + - uid: 7865 components: - type: Transform - pos: -40.5,-28.5 + rot: 3.141592653589793 rad + pos: 18.5,-16.5 + parent: 2 +- proto: PosterLegitNTTGC + entities: + - uid: 584 + components: + - type: Transform + pos: 22.5,17.5 + parent: 2 + - uid: 22347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,17.5 parent: 2 - proto: PottedPlant3 entities: @@ -99786,40 +109731,25 @@ entities: - type: Transform pos: -2.5,25.5 parent: 2 - - uid: 1908 - components: - - type: Transform - pos: -52.5,-30.5 - parent: 2 - uid: 2658 components: - type: Transform pos: 9.5,26.5 parent: 2 - - uid: 3412 - components: - - type: Transform - pos: -21.5,-40.5 - parent: 2 - - uid: 3494 - components: - - type: Transform - pos: 5.5,-45.5 - parent: 2 - uid: 3788 components: - type: Transform pos: 12.5,-34.5 parent: 2 - - uid: 4223 + - uid: 4774 components: - type: Transform - pos: 4.5,-50.5 + pos: -31.5,-56.5 parent: 2 - - uid: 5300 + - uid: 5209 components: - type: Transform - pos: -40.5,-29.5 + pos: -29.5,-50.5 parent: 2 - uid: 5676 components: @@ -99836,25 +109766,30 @@ entities: - type: Transform pos: 35.5,-4.5 parent: 2 - - uid: 6757 + - uid: 6140 components: - type: Transform - pos: 24.5,-24.5 + pos: -36.5,-51.5 parent: 2 - - uid: 7136 + - uid: 6396 components: - type: Transform - pos: 30.5,23.5 + pos: -9.5,-61.5 parent: 2 - - uid: 7161 + - uid: 6424 components: - type: Transform - pos: 34.5,31.5 + pos: 17.5,-42.5 parent: 2 - - uid: 7162 + - uid: 6757 components: - type: Transform - pos: 34.5,33.5 + pos: 24.5,-24.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: 33.5,1.5 parent: 2 - uid: 7402 components: @@ -99866,20 +109801,20 @@ entities: - type: Transform pos: -10.5,-43.5 parent: 2 - - uid: 7585 + - uid: 7607 components: - type: Transform - pos: 9.5,-67.5 + pos: -18.5,-43.5 parent: 2 - - uid: 7607 + - uid: 7858 components: - type: Transform - pos: -18.5,-43.5 + pos: -45.5,-20.5 parent: 2 - - uid: 7942 + - uid: 7979 components: - type: Transform - pos: -6.5,-62.5 + pos: 11.5,-61.5 parent: 2 - uid: 8379 components: @@ -99911,35 +109846,50 @@ entities: - type: Transform pos: 54.5,-22.5 parent: 2 - - uid: 10155 + - uid: 10672 components: - type: Transform - pos: -30.5,-44.5 + pos: -23.5,-48.5 parent: 2 - - uid: 10617 + - uid: 11466 components: - type: Transform - pos: -21.5,-48.5 + pos: 35.5,-38.5 parent: 2 - - uid: 11439 + - uid: 11470 components: - type: Transform - pos: 30.5,-33.5 + pos: 27.5,-31.5 parent: 2 - - uid: 11457 + - uid: 12698 components: - type: Transform - pos: -13.5,-40.5 + pos: 24.5,-12.5 parent: 2 - - uid: 11466 + - uid: 12850 components: - type: Transform - pos: 35.5,-38.5 + pos: 9.5,-75.5 parent: 2 - - uid: 11470 + - uid: 13136 components: - type: Transform - pos: 27.5,-31.5 + pos: 22.5,-0.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + pos: -8.5,-69.5 + parent: 2 + - uid: 14782 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 15608 + components: + - type: Transform + pos: 3.5,-50.5 parent: 2 - uid: 16589 components: @@ -99966,6 +109916,26 @@ entities: - type: Transform pos: -23.5,-9.5 parent: 2 + - uid: 21078 + components: + - type: Transform + pos: 11.5,-66.5 + parent: 2 + - uid: 21277 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 22777 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 22778 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 - proto: PottedPlantRandomPlastic entities: - uid: 743 @@ -99978,36 +109948,46 @@ entities: - type: Transform pos: 7.5,22.5 parent: 2 - - uid: 7587 + - uid: 2528 components: - type: Transform - pos: -6.5,-67.5 + pos: -31.5,-80.5 parent: 2 - - uid: 7592 + - uid: 2534 components: - type: Transform - pos: 9.5,-62.5 + pos: -35.5,-71.5 parent: 2 - - uid: 8693 + - uid: 12709 components: - type: Transform - pos: 34.5,42.5 + pos: 14.5,5.5 parent: 2 - - uid: 11627 + - uid: 13062 components: - type: Transform - pos: 29.5,-11.5 + pos: -47.5,-46.5 parent: 2 - - uid: 16987 + - uid: 14781 components: - type: Transform - pos: 19.5,-42.5 + pos: -39.5,-31.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: -44.5,-22.5 parent: 2 - uid: 16988 components: - type: Transform pos: -9.5,-48.5 parent: 2 + - uid: 21217 + components: + - type: Transform + pos: -47.5,-26.5 + parent: 2 - proto: PottedPlantRD entities: - uid: 4397 @@ -100041,6 +110021,11 @@ entities: - type: Transform pos: 7.5,18.5 parent: 2 + - uid: 2305 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 - uid: 2619 components: - type: Transform @@ -100058,64 +110043,61 @@ entities: rot: 3.141592653589793 rad pos: -23.5,0.5 parent: 2 - - uid: 4948 + - uid: 4143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-25.5 + pos: 24.5,-0.5 parent: 2 - uid: 5818 components: - type: Transform pos: 25.5,-17.5 parent: 2 - - uid: 6166 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 2 - - uid: 6308 + - uid: 6631 components: - type: Transform - pos: 20.5,-17.5 + pos: 20.5,-18.5 parent: 2 - uid: 8405 components: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 9406 + - uid: 9607 components: - type: Transform - pos: 29.5,4.5 + pos: 19.5,-23.5 parent: 2 - - uid: 9607 + - uid: 11116 components: - type: Transform - pos: 19.5,-23.5 + pos: 10.5,-18.5 parent: 2 - uid: 12507 components: - type: Transform pos: -15.5,-25.5 parent: 2 + - uid: 12746 + components: + - type: Transform + pos: -1.5,-57.5 + parent: 2 - uid: 12856 components: - type: Transform rot: -1.5707963267948966 rad pos: -21.5,-46.5 parent: 2 - - uid: 13100 + - uid: 14768 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-27.5 + pos: -35.5,-29.5 parent: 2 - - uid: 13103 + - uid: 16868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-29.5 + pos: 6.5,-88.5 parent: 2 - uid: 19878 components: @@ -100128,6 +110110,12 @@ entities: rot: 3.141592653589793 rad pos: -7.5,-6.5 parent: 2 + - uid: 22007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 - proto: PowerDrill entities: - uid: 4425 @@ -100149,12 +110137,30 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,13.5 parent: 2 + - uid: 1088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-14.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,20.5 + parent: 2 - uid: 1765 components: - type: Transform rot: -1.5707963267948966 rad pos: -29.5,16.5 parent: 2 + - uid: 2205 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-19.5 + parent: 2 - uid: 6121 components: - type: Transform @@ -100167,16 +110173,16 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,23.5 parent: 2 - - uid: 6665 + - uid: 6541 components: - type: Transform - pos: 0.5,-36.5 + rot: 3.141592653589793 rad + pos: 37.5,-56.5 parent: 2 - - uid: 6998 + - uid: 6665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-72.5 + pos: 0.5,-36.5 parent: 2 - uid: 7058 components: @@ -100189,46 +110195,40 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-53.5 parent: 2 - - uid: 7134 + - uid: 8285 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,-49.5 - parent: 2 - - uid: 7633 - components: - - type: Transform - pos: 23.5,-14.5 + pos: 45.5,-9.5 parent: 2 - - uid: 7997 + - uid: 9135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,13.5 + rot: -1.5707963267948966 rad + pos: 42.5,1.5 parent: 2 - - uid: 8285 + - uid: 9993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-9.5 + pos: -12.5,-55.5 parent: 2 - - uid: 8950 + - uid: 10108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-40.5 + pos: -49.5,-48.5 parent: 2 - - uid: 9135 + - uid: 10421 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,1.5 + pos: -32.5,2.5 parent: 2 - - uid: 9993 + - uid: 10609 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-55.5 + pos: 23.5,-54.5 parent: 2 - uid: 11123 components: @@ -100236,12 +110236,6 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-42.5 parent: 2 - - uid: 11288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,-55.5 - parent: 2 - uid: 11513 components: - type: Transform @@ -100254,41 +110248,17 @@ entities: rot: -1.5707963267948966 rad pos: 3.5,-26.5 parent: 2 - - uid: 11633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-54.5 - parent: 2 - uid: 11644 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-52.5 parent: 2 - - uid: 11724 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-6.5 - parent: 2 - - uid: 11941 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-14.5 - parent: 2 - - uid: 12108 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,5.5 - parent: 2 - - uid: 12282 + - uid: 12194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-42.5 + rot: -1.5707963267948966 rad + pos: -7.5,-42.5 parent: 2 - uid: 12386 components: @@ -100307,17 +110277,6 @@ entities: rot: 1.5707963267948966 rad pos: 10.5,13.5 parent: 2 - - uid: 12901 - components: - - type: Transform - pos: 14.5,28.5 - parent: 2 - - uid: 13000 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-45.5 - parent: 2 - uid: 13005 components: - type: Transform @@ -100329,6 +110288,11 @@ entities: - type: Transform pos: 28.5,19.5 parent: 2 + - uid: 13255 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 - uid: 13795 components: - type: Transform @@ -100368,40 +110332,6 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-41.5 parent: 2 - - uid: 17122 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-18.5 - parent: 2 - - uid: 17123 - components: - - type: Transform - pos: 9.5,-15.5 - parent: 2 - - uid: 17147 - components: - - type: Transform - pos: -32.5,-40.5 - parent: 2 - - uid: 17148 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-57.5 - parent: 2 - - uid: 17155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-68.5 - parent: 2 - - uid: 17156 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-69.5 - parent: 2 - uid: 17159 components: - type: Transform @@ -100437,46 +110367,6 @@ entities: - type: Transform pos: 23.5,-33.5 parent: 2 - - uid: 17177 - components: - - type: Transform - pos: 7.5,-67.5 - parent: 2 - - uid: 17178 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-62.5 - parent: 2 - - uid: 17179 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-62.5 - parent: 2 - - uid: 17180 - components: - - type: Transform - pos: -4.5,-67.5 - parent: 2 - - uid: 17181 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-72.5 - parent: 2 - - uid: 17184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-36.5 - parent: 2 - - uid: 18095 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,8.5 - parent: 2 - uid: 18174 components: - type: Transform @@ -100512,12 +110402,6 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-37.5 parent: 2 - - uid: 20737 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,12.5 - parent: 2 - uid: 20763 components: - type: Transform @@ -100526,19 +110410,22 @@ entities: parent: 2 - type: PoweredLight on: False -- proto: PoweredLEDSmallLight - entities: - - uid: 12977 + - uid: 21443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-47.5 + pos: 1.5,-39.5 parent: 2 - - uid: 13188 + - uid: 21786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 + - uid: 21925 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,6.5 + pos: 20.5,13.5 parent: 2 - proto: Poweredlight entities: @@ -100547,17 +110434,11 @@ entities: - type: Transform pos: -21.5,6.5 parent: 2 - - uid: 430 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-51.5 - parent: 2 - - uid: 589 + - uid: 292 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-59.5 + pos: -23.5,-45.5 parent: 2 - uid: 714 components: @@ -100565,23 +110446,16 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,4.5 parent: 2 - - uid: 719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-4.5 - parent: 2 - uid: 1026 components: - type: Transform rot: -1.5707963267948966 rad pos: -7.5,-7.5 parent: 2 - - uid: 1730 + - uid: 1043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-41.5 + pos: -22.5,17.5 parent: 2 - uid: 1804 components: @@ -100589,17 +110463,29 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-5.5 parent: 2 + - uid: 1808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,18.5 + parent: 2 - uid: 2057 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,-47.5 parent: 2 - - uid: 2061 + - uid: 2113 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-56.5 + pos: -1.5,-23.5 + parent: 2 + - uid: 2588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-59.5 parent: 2 - uid: 2595 components: @@ -100607,63 +110493,143 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 - - uid: 2840 + - uid: 3058 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-26.5 + pos: 21.5,-7.5 parent: 2 - - uid: 3361 + - uid: 3604 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-19.5 + pos: -1.5,-55.5 parent: 2 - - uid: 3389 + - uid: 3665 components: - type: Transform - pos: 8.5,-17.5 + rot: -1.5707963267948966 rad + pos: 38.5,-11.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-11.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-57.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-17.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: -11.5,-6.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-63.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-69.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-72.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-64.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-64.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-61.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-69.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-72.5 parent: 2 - - uid: 3665 + - uid: 4633 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-11.5 + pos: -6.5,-61.5 parent: 2 - - uid: 3708 + - uid: 4670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-11.5 + pos: 21.5,-39.5 parent: 2 - - uid: 3842 + - uid: 4982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-17.5 + pos: -0.5,-47.5 parent: 2 - - uid: 3875 + - uid: 4983 components: - type: Transform - pos: -11.5,-6.5 + pos: 3.5,-47.5 parent: 2 - - uid: 4257 + - uid: 4987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-22.5 + pos: 3.5,-13.5 parent: 2 - - uid: 4570 + - uid: 5034 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-36.5 + pos: -30.5,-46.5 parent: 2 - - uid: 4843 + - uid: 5240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-35.5 + pos: 4.5,-16.5 parent: 2 - uid: 5277 components: @@ -100671,16 +110637,11 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-52.5 parent: 2 - - uid: 5579 - components: - - type: Transform - pos: -47.5,-30.5 - parent: 2 - - uid: 6272 + - uid: 5747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-53.5 + rot: 3.141592653589793 rad + pos: -27.5,-48.5 parent: 2 - uid: 6367 components: @@ -100688,16 +110649,16 @@ entities: rot: 3.141592653589793 rad pos: -20.5,-34.5 parent: 2 - - uid: 6424 + - uid: 6452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-44.5 + pos: -20.5,-36.5 parent: 2 - - uid: 6452 + - uid: 6576 components: - type: Transform - pos: -20.5,-36.5 + rot: 1.5707963267948966 rad + pos: -5.5,-10.5 parent: 2 - uid: 6661 components: @@ -100723,45 +110684,16 @@ entities: pos: -21.5,2.5 parent: 2 - uid: 7944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-66.5 - parent: 2 - - uid: 8009 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-63.5 - parent: 2 - - uid: 8011 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-66.5 - parent: 2 - - uid: 8012 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-63.5 - parent: 2 - - uid: 8014 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-69.5 - parent: 2 - - uid: 8015 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-69.5 + pos: -6.5,-41.5 parent: 2 - - uid: 8017 + - uid: 8420 components: - type: Transform - pos: 12.5,-60.5 + rot: -1.5707963267948966 rad + pos: 17.5,23.5 parent: 2 - uid: 8478 components: @@ -100792,29 +110724,77 @@ 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: 8863 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,13.5 parent: 2 + - uid: 9123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 2 - uid: 9138 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-5.5 parent: 2 + - uid: 10073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-41.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-44.5 + parent: 2 - uid: 10749 components: - type: Transform rot: 3.141592653589793 rad pos: -51.5,-13.5 parent: 2 - - uid: 11074 + - uid: 10769 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-35.5 + rot: -1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 + - uid: 11053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-55.5 + parent: 2 + - uid: 11111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-58.5 parent: 2 - uid: 11443 components: @@ -100827,6 +110807,12 @@ entities: rot: 3.141592653589793 rad pos: -23.5,-1.5 parent: 2 + - uid: 11499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-35.5 + parent: 2 - uid: 11540 components: - type: Transform @@ -100855,11 +110841,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,-25.5 parent: 2 - - uid: 11551 - components: - - type: Transform - pos: 9.5,-21.5 - parent: 2 - uid: 11558 components: - type: Transform @@ -100899,30 +110880,6 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,-17.5 parent: 2 - - uid: 11609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-56.5 - parent: 2 - - uid: 11610 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-52.5 - parent: 2 - - uid: 11611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-49.5 - parent: 2 - - uid: 11612 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-49.5 - parent: 2 - uid: 11613 components: - type: Transform @@ -100941,23 +110898,6 @@ entities: rot: 3.141592653589793 rad pos: 14.5,-48.5 parent: 2 - - uid: 11620 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-37.5 - parent: 2 - - uid: 11621 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,-39.5 - parent: 2 - - uid: 11622 - components: - - type: Transform - pos: 18.5,-35.5 - parent: 2 - uid: 11624 components: - type: Transform @@ -100970,12 +110910,6 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-32.5 parent: 2 - - uid: 11628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-25.5 - parent: 2 - uid: 11630 components: - type: Transform @@ -101063,11 +110997,6 @@ entities: - type: Transform pos: -14.5,-37.5 parent: 2 - - uid: 11933 - components: - - type: Transform - pos: 0.5,-6.5 - parent: 2 - uid: 11944 components: - type: Transform @@ -101091,47 +111020,18 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-4.5 parent: 2 - - uid: 11951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 2 - uid: 11954 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 2 - - uid: 11963 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,17.5 - parent: 2 - uid: 11964 components: - type: Transform rot: -1.5707963267948966 rad pos: 33.5,10.5 parent: 2 - - uid: 11965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,4.5 - parent: 2 - - uid: 11967 - components: - - type: Transform - pos: 22.5,-2.5 - parent: 2 - - uid: 11968 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-4.5 - parent: 2 - uid: 12078 components: - type: Transform @@ -101144,126 +111044,62 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-24.5 parent: 2 - - uid: 12107 - components: - - type: Transform - pos: -21.5,-18.5 - parent: 2 - - uid: 12109 - components: - - type: Transform - pos: -28.5,-25.5 - parent: 2 - - uid: 12110 - components: - - type: Transform - pos: -31.5,-25.5 - parent: 2 - - uid: 12385 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,1.5 - parent: 2 - - uid: 12541 - components: - - type: Transform - pos: -25.5,17.5 - parent: 2 - - uid: 12574 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-52.5 - parent: 2 - - uid: 12873 + - uid: 12106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-34.5 + pos: 15.5,-17.5 parent: 2 - - uid: 12875 + - uid: 12107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-38.5 + pos: -21.5,-18.5 parent: 2 - - uid: 12876 + - uid: 12803 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,-31.5 + pos: 1.5,-87.5 parent: 2 - - uid: 12885 + - uid: 13008 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-65.5 - parent: 2 - - type: PointLight - energy: 0.5 - - uid: 12967 - components: - - type: Transform - pos: -27.5,-40.5 + pos: -22.5,-29.5 parent: 2 - - uid: 12968 + - uid: 13138 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-48.5 + pos: 24.5,-10.5 parent: 2 - - uid: 12970 + - uid: 13159 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-58.5 - parent: 2 - - uid: 12971 - components: - - type: Transform - pos: -33.5,-53.5 + pos: -1.5,-15.5 parent: 2 - - uid: 12973 + - uid: 13362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-59.5 + rot: 3.141592653589793 rad + pos: 20.5,-11.5 parent: 2 - - type: PointLight - energy: 0.5 - - uid: 12978 + - uid: 13743 components: - type: Transform - pos: -39.5,-45.5 + pos: 0.5,-17.5 parent: 2 - - uid: 12984 + - uid: 13745 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,-43.5 + pos: 7.5,-19.5 parent: 2 - - uid: 12986 + - uid: 13858 components: - type: Transform rot: 3.141592653589793 rad - pos: -38.5,-43.5 - parent: 2 - - uid: 12996 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 2 - - uid: 13007 - components: - - type: Transform - pos: -26.5,-33.5 - parent: 2 - - uid: 13008 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-29.5 + pos: 12.5,-19.5 parent: 2 - uid: 14166 components: @@ -101289,17 +111125,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-28.5 parent: 2 - - uid: 14404 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 2 - - uid: 14405 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-19.5 - parent: 2 - uid: 14434 components: - type: Transform @@ -101317,23 +111142,23 @@ entities: rot: -1.5707963267948966 rad pos: 35.5,-30.5 parent: 2 - - uid: 15411 + - uid: 15037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-8.5 + rot: 3.141592653589793 rad + pos: -5.5,-45.5 parent: 2 - - uid: 15416 + - uid: 15230 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-8.5 + pos: 30.5,-1.5 parent: 2 - - uid: 15666 + - uid: 15249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-45.5 + rot: -1.5707963267948966 rad + pos: 33.5,-6.5 parent: 2 - uid: 15667 components: @@ -101341,35 +111166,17 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,-48.5 parent: 2 - - uid: 15674 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 2 - - uid: 15683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 2 - uid: 15684 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-22.5 parent: 2 - - uid: 15685 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,30.5 - parent: 2 - - uid: 16008 + - uid: 16061 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,38.5 + pos: 10.5,-2.5 parent: 2 - uid: 16478 components: @@ -101411,6 +111218,12 @@ entities: - type: Transform pos: -54.5,-11.5 parent: 2 + - uid: 16956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-38.5 + parent: 2 - uid: 17324 components: - type: Transform @@ -101422,12 +111235,6 @@ entities: - type: Transform pos: 15.5,25.5 parent: 2 - - uid: 17488 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 2 - uid: 17489 components: - type: Transform @@ -101483,6 +111290,24 @@ entities: - type: Transform pos: 0.5,26.5 parent: 2 + - uid: 17807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,24.5 + parent: 2 + - uid: 17815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,21.5 + parent: 2 + - uid: 18403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,19.5 + parent: 2 - uid: 18883 components: - type: Transform @@ -101494,125 +111319,335 @@ entities: - type: Transform pos: -10.5,-17.5 parent: 2 - - uid: 18885 + - uid: 18886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 2 + - uid: 18903 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-19.5 + pos: -24.5,6.5 parent: 2 - - uid: 18886 + - uid: 18963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,21.5 + parent: 2 + - uid: 19005 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-19.5 + pos: -17.5,-4.5 parent: 2 - - uid: 18887 + - uid: 19154 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-23.5 + pos: 0.5,-84.5 parent: 2 - - uid: 18888 + - uid: 19234 + components: + - type: Transform + pos: 8.5,-87.5 + parent: 2 + - uid: 20501 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-15.5 + pos: 19.5,-0.5 parent: 2 - - uid: 18890 + - uid: 21137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-52.5 + parent: 2 + - uid: 21141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-52.5 + parent: 2 + - uid: 21259 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 21262 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-15.5 + pos: -26.5,-32.5 parent: 2 - - uid: 18903 + - uid: 21263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 2 + - uid: 21264 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 21265 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,6.5 + pos: -26.5,-24.5 parent: 2 - - uid: 19002 + - uid: 21266 + components: + - type: Transform + pos: -36.5,-26.5 + parent: 2 + - uid: 21267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-33.5 + parent: 2 + - uid: 21268 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-16.5 + pos: -30.5,-21.5 parent: 2 - - uid: 19005 + - uid: 21269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-24.5 + parent: 2 + - uid: 21270 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 21278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-28.5 + parent: 2 + - uid: 21279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-31.5 + parent: 2 + - uid: 21280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-4.5 + pos: -45.5,-35.5 parent: 2 -- proto: PoweredlightLED - entities: - - uid: 1906 + - uid: 21281 components: - type: Transform - pos: -52.5,-27.5 + rot: 1.5707963267948966 rad + pos: -50.5,-44.5 parent: 2 - - uid: 8036 + - uid: 21283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-32.5 + parent: 2 + - uid: 21284 + components: + - type: Transform + pos: -45.5,-27.5 + parent: 2 + - uid: 21285 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-33.5 + pos: -44.5,-45.5 parent: 2 - - uid: 8479 + - uid: 21288 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 21289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-38.5 + parent: 2 + - uid: 21290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -45.5,-23.5 + parent: 2 + - uid: 21291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-35.5 + parent: 2 + - uid: 21292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-35.5 + parent: 2 + - uid: 21293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 2 + - uid: 21294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-28.5 + parent: 2 + - uid: 21295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-28.5 + parent: 2 + - uid: 21302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-38.5 + parent: 2 + - uid: 21305 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,10.5 + pos: -32.5,-37.5 parent: 2 - - uid: 11555 + - uid: 21306 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-28.5 + pos: -42.5,-24.5 parent: 2 - - uid: 12900 + - uid: 21319 components: - type: Transform - pos: -39.5,-29.5 + pos: -0.5,-6.5 parent: 2 - - uid: 12975 + - uid: 21964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,22.5 + parent: 2 + - uid: 22006 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-41.5 + pos: 22.5,2.5 parent: 2 - - uid: 12982 + - uid: 22123 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-42.5 + pos: -24.5,-23.5 parent: 2 - - uid: 12991 + - uid: 22380 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 22525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-44.5 + parent: 2 + - uid: 22560 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,-33.5 + pos: -32.5,-68.5 parent: 2 - - uid: 12992 + - uid: 22564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-59.5 + parent: 2 + - uid: 22612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 2 + - uid: 22643 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 22649 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,-20.5 + pos: -15.5,-10.5 parent: 2 - - uid: 12993 + - uid: 22650 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-20.5 + pos: -17.5,-14.5 parent: 2 - - uid: 15706 + - uid: 22706 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-26.5 + pos: -13.5,-33.5 parent: 2 - - uid: 15707 + - uid: 22712 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-26.5 + pos: -27.5,16.5 + parent: 2 + - uid: 22732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,5.5 + parent: 2 +- proto: PoweredlightEmpty + entities: + - uid: 21609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - uid: 22733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,17.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 8479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,10.5 + parent: 2 + - uid: 11555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-28.5 parent: 2 - proto: PoweredLightPostSmall entities: @@ -101658,6 +111693,12 @@ entities: parent: 2 - proto: PoweredlightSodium entities: + - uid: 1665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 2 - uid: 5587 components: - type: Transform @@ -101675,17 +111716,11 @@ entities: - type: Transform pos: -64.5,-19.5 parent: 2 - - uid: 10722 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-55.5 - parent: 2 - - uid: 12974 + - uid: 12821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-62.5 + rot: 1.5707963267948966 rad + pos: -4.5,-95.5 parent: 2 - uid: 13660 components: @@ -101710,11 +111745,23 @@ entities: rot: 3.141592653589793 rad pos: -71.5,-6.5 parent: 2 - - uid: 17487 + - uid: 17302 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,27.5 + pos: 50.5,23.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,24.5 + parent: 2 + - uid: 17630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-95.5 parent: 2 - uid: 20115 components: @@ -101722,61 +111769,108 @@ entities: rot: 3.141592653589793 rad pos: -64.5,-5.5 parent: 2 + - uid: 21274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 2 + - uid: 21275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 2 + - uid: 21594 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-59.5 + parent: 2 + - uid: 21620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,-56.5 + parent: 2 + - uid: 21896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,31.5 + parent: 2 - proto: PoweredSmallLight entities: + - uid: 233 + components: + - type: Transform + 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: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 2 - uid: 391 components: - type: Transform rot: 3.141592653589793 rad pos: -42.5,-3.5 parent: 2 - - uid: 1106 + - uid: 481 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,4.5 + pos: -43.5,-53.5 parent: 2 - - uid: 1321 + - uid: 527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-58.5 + rot: -1.5707963267948966 rad + pos: -0.5,-43.5 parent: 2 - - uid: 2319 + - uid: 1053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-18.5 + rot: -1.5707963267948966 rad + pos: 34.5,14.5 parent: 2 - - uid: 2944 + - uid: 2310 components: - type: Transform - pos: -3.5,-34.5 + rot: 1.5707963267948966 rad + pos: 8.5,-15.5 parent: 2 - - uid: 3287 + - uid: 2826 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,-9.5 + pos: -32.5,-2.5 parent: 2 - - type: PointLight - color: '#FFA54FFF' - - uid: 3362 + - uid: 2944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,1.5 + pos: -3.5,-34.5 parent: 2 - - uid: 3702 + - uid: 3010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-0.5 + rot: 3.141592653589793 rad + pos: -40.5,-57.5 parent: 2 - - uid: 3717 + - uid: 3362 components: - type: Transform - pos: 6.5,-44.5 + rot: 1.5707963267948966 rad + pos: 44.5,1.5 parent: 2 - uid: 3718 components: @@ -101792,20 +111886,23 @@ entities: - type: PointLight softness: 1.5 energy: 0.5 - - uid: 3954 + - uid: 4010 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-42.5 + pos: -37.5,-55.5 parent: 2 - - uid: 3984 + - uid: 4508 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-9.5 + pos: 5.5,-57.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + pos: 18.5,8.5 parent: 2 - - type: PointLight - color: '#FFA54FFF' - uid: 4643 components: - type: Transform @@ -101823,37 +111920,51 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,-33.5 parent: 2 - - uid: 4722 + - uid: 4693 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-45.5 + pos: 22.5,-43.5 parent: 2 - - type: PointLight - color: '#FFA54FFF' - - uid: 4769 + - uid: 4816 components: - type: Transform - pos: -32.5,-43.5 + rot: 3.141592653589793 rad + pos: -31.5,-61.5 parent: 2 - - type: PointLight - color: '#FFA54FFF' - uid: 4819 components: - type: Transform rot: 3.141592653589793 rad pos: -18.5,29.5 parent: 2 + - uid: 4825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-52.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-55.5 + parent: 2 - uid: 4975 components: - type: Transform pos: 6.5,-30.5 parent: 2 - - uid: 5142 + - uid: 5060 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,5.5 + pos: 11.5,27.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: 7.5,-73.5 parent: 2 - uid: 5330 components: @@ -101873,20 +111984,29 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-44.5 parent: 2 + - uid: 6394 + components: + - type: Transform + pos: 16.5,-56.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-59.5 + parent: 2 - uid: 6483 components: - type: Transform rot: 1.5707963267948966 rad pos: -26.5,-51.5 parent: 2 - - uid: 6877 + - uid: 6537 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,2.5 + pos: 14.5,-63.5 parent: 2 - - type: PointLight - energy: 0.5 - uid: 6943 components: - type: Transform @@ -101898,22 +112018,17 @@ entities: rot: -1.5707963267948966 rad pos: -20.5,11.5 parent: 2 - - uid: 7630 - components: - - type: Transform - pos: 11.5,28.5 - parent: 2 - uid: 7794 components: - type: Transform rot: 3.141592653589793 rad pos: 29.5,-14.5 parent: 2 - - uid: 7802 + - uid: 7923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-6.5 + rot: 3.141592653589793 rad + pos: -54.5,-23.5 parent: 2 - uid: 7939 components: @@ -101943,17 +112058,23 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,-32.5 parent: 2 - - uid: 8427 + - uid: 8417 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-36.5 + pos: -1.5,-53.5 parent: 2 - - uid: 8851 + - uid: 8422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,10.5 + rot: 3.141592653589793 rad + pos: 4.5,-53.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-36.5 parent: 2 - uid: 8859 components: @@ -101973,39 +112094,34 @@ entities: rot: 3.141592653589793 rad pos: 43.5,8.5 parent: 2 - - uid: 9270 + - uid: 9137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-51.5 + pos: 10.5,-15.5 parent: 2 - - uid: 9533 + - uid: 9270 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,0.5 - parent: 2 - - uid: 9534 - components: - - type: Transform - pos: 28.5,4.5 + pos: 15.5,-51.5 parent: 2 - - uid: 9594 + - uid: 9510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-7.5 + rot: 3.141592653589793 rad + pos: 52.5,-31.5 parent: 2 - uid: 9648 components: - type: Transform pos: 53.5,-16.5 parent: 2 - - uid: 9735 + - uid: 9672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,11.5 + rot: 1.5707963267948966 rad + pos: 23.5,14.5 parent: 2 - uid: 9954 components: @@ -102024,11 +112140,63 @@ entities: rot: 1.5707963267948966 rad pos: -26.5,-54.5 parent: 2 + - uid: 10171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,10.5 + parent: 2 - uid: 10383 components: - type: Transform pos: -23.5,-55.5 parent: 2 + - uid: 10606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-78.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + 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 + pos: -4.5,-73.5 + parent: 2 + - uid: 11222 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 11234 + components: + - type: Transform + 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 + rot: 3.141592653589793 rad + pos: -46.5,-57.5 + parent: 2 - uid: 11442 components: - type: Transform @@ -102040,11 +112208,11 @@ entities: rot: 3.141592653589793 rad pos: 27.5,-35.5 parent: 2 - - uid: 11460 + - uid: 11473 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-45.5 + pos: -30.5,-7.5 parent: 2 - uid: 11545 components: @@ -102058,17 +112226,6 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-46.5 parent: 2 - - uid: 11572 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 - parent: 2 - - uid: 11575 - components: - - type: Transform - pos: 29.5,-9.5 - parent: 2 - uid: 11583 components: - type: Transform @@ -102121,12 +112278,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-32.5 parent: 2 - - uid: 11788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 - parent: 2 - uid: 11790 components: - type: Transform @@ -102165,16 +112316,6 @@ entities: - type: Transform pos: -8.5,2.5 parent: 2 - - uid: 11935 - components: - - type: Transform - pos: 4.5,-12.5 - parent: 2 - - uid: 11937 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - uid: 11955 components: - type: Transform @@ -102190,40 +112331,33 @@ entities: - type: Transform pos: 5.5,2.5 parent: 2 - - uid: 12371 + - uid: 12282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-52.5 + pos: -13.5,-40.5 parent: 2 - - uid: 12390 + - uid: 12310 components: - type: Transform - pos: 30.5,28.5 + rot: 1.5707963267948966 rad + pos: 7.5,-24.5 parent: 2 - - uid: 12767 + - uid: 12631 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-38.5 + pos: -41.5,-53.5 parent: 2 - - uid: 12870 + - uid: 12716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-37.5 + pos: 12.5,-1.5 parent: 2 - uid: 12881 components: - type: Transform pos: -42.5,-5.5 parent: 2 - - uid: 12979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-46.5 - parent: 2 - uid: 13001 components: - type: Transform @@ -102248,17 +112382,50 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-49.5 parent: 2 - - uid: 13414 + - 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 rot: 3.141592653589793 rad - pos: -25.5,19.5 + pos: 7.5,-68.5 parent: 2 - - uid: 13695 + - uid: 13301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-78.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + pos: -53.5,-21.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 13399 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-19.5 + pos: 3.5,-33.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,19.5 parent: 2 - uid: 13860 components: @@ -102272,10 +112439,11 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-27.5 parent: 2 - - uid: 13892 + - uid: 13863 components: - type: Transform - pos: 16.5,-55.5 + rot: 3.141592653589793 rad + pos: 24.5,-14.5 parent: 2 - uid: 13896 components: @@ -102304,19 +112472,7 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,-22.5 - parent: 2 - - uid: 14494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-45.5 - parent: 2 - - uid: 14844 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-4.5 + pos: 18.5,-22.5 parent: 2 - uid: 15099 components: @@ -102336,23 +112492,6 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,-58.5 parent: 2 - - uid: 15217 - components: - - type: Transform - pos: -45.5,-53.5 - parent: 2 - - uid: 15218 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-16.5 - parent: 2 - - uid: 15680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,12.5 - parent: 2 - uid: 15682 components: - type: Transform @@ -102376,11 +112515,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-39.5 parent: 2 - - uid: 15702 - components: - - type: Transform - pos: -41.5,-33.5 - parent: 2 - uid: 15703 components: - type: Transform @@ -102389,28 +112523,23 @@ entities: parent: 2 - type: PointLight energy: 0.5 - - uid: 15745 - components: - - type: Transform - pos: 30.5,42.5 - parent: 2 - - uid: 15935 + - uid: 15755 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-43.5 + pos: -46.5,-51.5 parent: 2 - - uid: 16331 + - uid: 16322 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,-14.5 + pos: -37.5,-43.5 parent: 2 - - uid: 16334 + - uid: 16327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,10.5 + rot: 1.5707963267948966 rad + pos: -58.5,-58.5 parent: 2 - uid: 16480 components: @@ -102445,23 +112574,6 @@ entities: rot: 3.141592653589793 rad pos: 53.5,-26.5 parent: 2 - - uid: 16876 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-9.5 - parent: 2 - - uid: 17146 - components: - - type: Transform - pos: -20.5,-13.5 - parent: 2 - - uid: 17174 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-40.5 - parent: 2 - uid: 17200 components: - type: Transform @@ -102510,17 +112622,6 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,17.5 parent: 2 - - uid: 17543 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-4.5 - parent: 2 - - uid: 17649 - components: - - type: Transform - pos: 34.5,33.5 - parent: 2 - uid: 17722 components: - type: Transform @@ -102532,17 +112633,11 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-30.5 parent: 2 - - uid: 18007 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-53.5 - parent: 2 - - uid: 18514 + - uid: 17949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,11.5 + rot: -1.5707963267948966 rad + pos: -0.5,-45.5 parent: 2 - uid: 18906 components: @@ -102550,11 +112645,6 @@ entities: rot: -1.5707963267948966 rad pos: 16.5,11.5 parent: 2 - - uid: 18997 - components: - - type: Transform - pos: 34.5,42.5 - parent: 2 - uid: 19284 components: - type: Transform @@ -102567,6 +112657,12 @@ entities: rot: -1.5707963267948966 rad pos: 48.5,-61.5 parent: 2 + - uid: 20220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-68.5 + parent: 2 - uid: 20602 components: - type: Transform @@ -102578,238 +112674,188 @@ entities: - type: Transform pos: 50.5,-51.5 parent: 2 - - uid: 20705 + - uid: 21209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,4.5 + pos: -41.5,-48.5 parent: 2 -- proto: PoweredSmallLightEmpty - entities: - - uid: 8858 + - uid: 21272 components: - type: Transform - pos: 38.5,3.5 + rot: 1.5707963267948966 rad + pos: -34.5,-13.5 parent: 2 - - uid: 11452 + - uid: 21273 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,8.5 - parent: 2 -- proto: PrefilledSyringe - entities: - - uid: 6049 - components: - - type: Transform - pos: 41.507294,-9.45423 - parent: 2 - - uid: 6327 - components: - - type: Transform - pos: -52.445953,-28.358221 - parent: 2 -- proto: PresentRandom - entities: - - uid: 2702 - components: - - type: Transform - pos: 1.0353602,-44.483185 - parent: 2 - - uid: 16066 - components: - - type: Transform - pos: -8.365779,-40.747547 - parent: 2 - - uid: 20160 - components: - - type: Transform - pos: 8.48614,-55.324482 - parent: 2 - - uid: 20173 - components: - - type: Transform - pos: -9.701384,-40.795204 - parent: 2 - - uid: 20180 - components: - - type: Transform - pos: -19.50937,-36.460606 - parent: 2 - - uid: 20181 - components: - - type: Transform - pos: -30.503675,-37.485226 - parent: 2 - - uid: 20182 - components: - - type: Transform - pos: -32.48774,-26.466976 - parent: 2 - - uid: 20183 - components: - - type: Transform - pos: -44.50385,-24.55849 - parent: 2 - - uid: 20184 - components: - - type: Transform - pos: -41.48093,-35.35964 - parent: 2 - - uid: 20185 - components: - - type: Transform - pos: -36.525757,-58.49134 - parent: 2 - - uid: 20186 - components: - - type: Transform - pos: -17.745596,-53.073235 - parent: 2 - - uid: 20188 - components: - - type: Transform - pos: 5.539477,-34.470036 + pos: -38.5,-15.5 parent: 2 - - uid: 20189 + - uid: 21282 components: - type: Transform - pos: 5.539477,-30.540796 + rot: 3.141592653589793 rad + pos: -51.5,-38.5 parent: 2 - - uid: 20190 + - uid: 21286 components: - type: Transform - pos: 5.5156274,-28.503466 + rot: -1.5707963267948966 rad + pos: -47.5,-41.5 parent: 2 - - uid: 20191 + - uid: 21298 components: - type: Transform - pos: 0.47468758,-33.572815 + pos: -51.5,-29.5 parent: 2 - - uid: 20192 + - uid: 21299 components: - type: Transform - pos: -5.5752964,-26.526909 + rot: -1.5707963267948966 rad + pos: -47.5,-22.5 parent: 2 - - uid: 20193 + - uid: 21301 components: - type: Transform - pos: -6.5054507,-13.47634 + rot: 1.5707963267948966 rad + pos: -50.5,-23.5 parent: 2 - - uid: 20194 + - uid: 21307 components: - type: Transform - pos: -20.505522,-5.508332 + pos: -38.5,-19.5 parent: 2 - - uid: 20195 + - uid: 21359 components: - type: Transform - pos: -26.040714,11.067827 + rot: 3.141592653589793 rad + pos: -54.5,-53.5 parent: 2 - - uid: 20196 + - uid: 21410 components: - type: Transform - pos: -8.497291,18.500269 + pos: 6.5,-44.5 parent: 2 - - uid: 20197 + - uid: 21411 components: - type: Transform - pos: 1.3926457,19.470612 + rot: 3.141592653589793 rad + pos: 6.5,-42.5 parent: 2 - - uid: 20198 + - uid: 21633 components: - type: Transform - pos: 7.5340443,23.521446 + rot: -1.5707963267948966 rad + pos: -49.5,-58.5 parent: 2 - - uid: 20199 + - uid: 21680 components: - type: Transform - pos: 27.550629,3.583963 + rot: 1.5707963267948966 rad + pos: 16.5,29.5 parent: 2 - - uid: 20200 + - uid: 21763 components: - type: Transform - pos: 9.5775585,4.5612216 + rot: 1.5707963267948966 rad + pos: 27.5,4.5 parent: 2 - - uid: 20201 + - uid: 21821 components: - type: Transform - pos: 10.460012,4.573136 + rot: 1.5707963267948966 rad + pos: 27.5,12.5 parent: 2 - - uid: 20202 + - uid: 21836 components: - type: Transform - pos: 10.460012,5.454788 + rot: 1.5707963267948966 rad + pos: 16.5,-3.5 parent: 2 - - uid: 20203 + - uid: 22020 components: - type: Transform - pos: 19.496592,12.52666 + rot: 3.141592653589793 rad + pos: 24.5,-4.5 parent: 2 - - uid: 20204 + - uid: 22374 components: - type: Transform - pos: 32.562187,42.49896 + rot: -1.5707963267948966 rad + pos: 21.5,17.5 parent: 2 - - uid: 20205 + - uid: 22462 components: - type: Transform - pos: 47.519917,9.484293 + rot: 1.5707963267948966 rad + pos: 25.5,18.5 parent: 2 - - uid: 20206 + - uid: 22538 components: - type: Transform - pos: 49.450848,-21.526688 + pos: -25.5,-40.5 parent: 2 - - uid: 20207 + - uid: 22545 components: - type: Transform - pos: 45.498848,-39.60184 + rot: 1.5707963267948966 rad + pos: 7.5,-22.5 parent: 2 - - uid: 20208 + - uid: 22561 components: - type: Transform - pos: 54.473816,-38.607082 + rot: 3.141592653589793 rad + pos: -35.5,-80.5 parent: 2 - - uid: 20209 + - uid: 22562 components: - type: Transform - pos: 45.457485,-58.459232 + rot: 3.141592653589793 rad + pos: -31.5,-80.5 parent: 2 - - uid: 20210 + - uid: 22611 components: - type: Transform - pos: 59.46425,-56.47981 + rot: 3.141592653589793 rad + pos: -29.5,-11.5 parent: 2 - - uid: 20211 + - uid: 22730 components: - type: Transform - pos: 18.49242,-58.580788 + rot: -1.5707963267948966 rad + pos: 39.5,0.5 parent: 2 - - uid: 20212 +- proto: PoweredSmallLightEmpty + entities: + - uid: 8858 components: - type: Transform - pos: -13.50799,-45.47591 + pos: 38.5,3.5 parent: 2 - - uid: 20213 + - uid: 9504 components: - type: Transform - pos: 34.499878,-42.452095 + rot: -1.5707963267948966 rad + pos: 14.5,-5.5 parent: 2 - - uid: 20214 + - uid: 11452 components: - type: Transform - pos: 29.443993,-34.51149 + rot: 3.141592653589793 rad + pos: 48.5,8.5 parent: 2 - - uid: 20215 + - uid: 17421 components: - type: Transform - pos: 38.52804,-28.484364 + rot: -1.5707963267948966 rad + pos: 50.5,12.5 parent: 2 - - uid: 20216 +- proto: PrefilledSyringe + entities: + - uid: 6049 components: - type: Transform - pos: 37.504032,-4.4606795 + pos: 41.507294,-9.45423 parent: 2 - proto: Protolathe entities: @@ -102820,54 +112866,17 @@ entities: parent: 2 - proto: ProtolatheMachineCircuitboard entities: - - uid: 15937 + - uid: 8045 components: - type: Transform - pos: 12.518505,-17.379326 + pos: 9.530897,-14.358557 parent: 2 - proto: PsychBed entities: - - uid: 3939 - components: - - type: Transform - pos: -32.5,-46.5 - parent: 2 -- proto: PuddleTomato - entities: - - uid: 1113 - components: - - type: Transform - pos: 3.5,-18.5 - parent: 2 - - uid: 2682 - components: - - type: Transform - pos: 2.5,-17.5 - parent: 2 - - uid: 2757 - components: - - type: Transform - pos: 2.5,-19.5 - parent: 2 - - uid: 2763 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 2 - - uid: 18077 - components: - - type: Transform - pos: 2.5,-18.5 - parent: 2 - - uid: 18269 - components: - - type: Transform - pos: 3.5,-19.5 - parent: 2 - - uid: 18303 + - uid: 15246 components: - type: Transform - pos: 3.5,-16.5 + pos: -36.5,-55.5 parent: 2 - proto: PuddleWatermelon entities: @@ -102878,11 +112887,6 @@ entities: parent: 2 - proto: Rack entities: - - uid: 73 - components: - - type: Transform - pos: 10.5,-17.5 - parent: 2 - uid: 124 components: - type: Transform @@ -102894,36 +112898,35 @@ entities: - type: Transform pos: 46.5,-36.5 parent: 2 - - uid: 294 + - uid: 295 components: - type: Transform - pos: 37.5,9.5 + pos: -19.5,17.5 parent: 2 - uid: 469 components: - type: Transform pos: -24.5,13.5 parent: 2 - - uid: 824 + - uid: 610 components: - type: Transform - pos: 0.5,-4.5 + pos: -19.5,18.5 parent: 2 - - uid: 1049 + - uid: 770 components: - type: Transform - pos: 12.5,17.5 + pos: -37.5,-17.5 parent: 2 - - uid: 1223 + - uid: 824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 + pos: 0.5,-4.5 parent: 2 - - uid: 1655 + - uid: 1049 components: - type: Transform - pos: 12.5,-17.5 + pos: 12.5,17.5 parent: 2 - uid: 1799 components: @@ -102948,10 +112951,11 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-10.5 parent: 2 - - uid: 2056 + - uid: 2033 components: - type: Transform - pos: -5.5,-10.5 + rot: 3.141592653589793 rad + pos: -53.5,-50.5 parent: 2 - uid: 2066 components: @@ -102959,27 +112963,6 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-46.5 parent: 2 - - uid: 2084 - components: - - type: Transform - pos: 13.5,-19.5 - parent: 2 - - uid: 2085 - components: - - type: Transform - pos: 15.5,-19.5 - parent: 2 - - uid: 2249 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 - parent: 2 - - uid: 2300 - components: - - type: Transform - pos: 23.5,5.5 - parent: 2 - uid: 2312 components: - type: Transform @@ -102991,29 +112974,34 @@ entities: - type: Transform pos: -23.5,15.5 parent: 2 + - uid: 2504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-45.5 + parent: 2 - uid: 2681 components: - type: Transform rot: 3.141592653589793 rad pos: 51.5,-41.5 parent: 2 - - uid: 2790 + - uid: 2862 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-17.5 + pos: 39.5,12.5 parent: 2 - - uid: 2862 + - uid: 2920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,12.5 + pos: 6.5,-16.5 parent: 2 - - uid: 2912 + - uid: 3190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-16.5 + rot: -1.5707963267948966 rad + pos: 14.5,25.5 parent: 2 - uid: 3242 components: @@ -103050,27 +113038,29 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-35.5 parent: 2 - - uid: 3785 + - uid: 3720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-37.5 + rot: 3.141592653589793 rad + pos: 9.5,-78.5 parent: 2 - - uid: 3790 + - uid: 3751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-53.5 + rot: 3.141592653589793 rad + pos: 26.5,15.5 parent: 2 - - uid: 3794 + - uid: 3785 components: - type: Transform - pos: 6.5,-45.5 + rot: 1.5707963267948966 rad + pos: 13.5,-37.5 parent: 2 - - uid: 3805 + - uid: 3790 components: - type: Transform - pos: 6.5,-39.5 + rot: -1.5707963267948966 rad + pos: 27.5,-53.5 parent: 2 - uid: 3859 components: @@ -103087,15 +113077,15 @@ entities: - type: Transform pos: 1.5,-28.5 parent: 2 - - uid: 4149 + - uid: 4069 components: - type: Transform - pos: -26.5,-18.5 + pos: -5.5,-10.5 parent: 2 - - uid: 4156 + - uid: 4183 components: - type: Transform - pos: 1.5,-14.5 + pos: 0.5,-57.5 parent: 2 - uid: 4188 components: @@ -103114,39 +113104,30 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,-42.5 parent: 2 - - uid: 4579 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-32.5 - parent: 2 - - uid: 4673 + - uid: 4604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-22.5 + pos: -53.5,-55.5 parent: 2 - - uid: 4684 + - uid: 4766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-22.5 + pos: -1.5,-55.5 parent: 2 - - uid: 4971 + - uid: 4864 components: - type: Transform - pos: -32.5,-20.5 + pos: 0.5,-55.5 parent: 2 - - uid: 5017 + - uid: 5134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-25.5 + pos: -6.5,-61.5 parent: 2 - - uid: 5081 + - uid: 5202 components: - type: Transform - pos: 1.5,-11.5 + pos: 12.5,-64.5 parent: 2 - uid: 5340 components: @@ -103158,11 +113139,11 @@ entities: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 5578 + - uid: 5586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-45.5 + rot: 1.5707963267948966 rad + pos: -47.5,-38.5 parent: 2 - uid: 5651 components: @@ -103185,12 +113166,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-53.5 parent: 2 - - uid: 5745 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-16.5 - parent: 2 - uid: 5783 components: - type: Transform @@ -103202,23 +113177,12 @@ entities: - type: Transform pos: 21.5,-50.5 parent: 2 - - uid: 6174 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - uid: 6200 components: - type: Transform rot: 1.5707963267948966 rad pos: 29.5,-46.5 parent: 2 - - uid: 6208 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 2 - uid: 6211 components: - type: Transform @@ -103230,12 +113194,6 @@ entities: rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 2 - - uid: 6408 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-21.5 - parent: 2 - uid: 6700 components: - type: Transform @@ -103251,10 +113209,15 @@ entities: - type: Transform pos: 41.5,-36.5 parent: 2 - - uid: 6879 + - uid: 6868 components: - type: Transform - pos: 5.5,-14.5 + pos: 13.5,-54.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: -48.5,-49.5 parent: 2 - uid: 7306 components: @@ -103282,25 +113245,30 @@ entities: - type: Transform pos: -11.5,-26.5 parent: 2 - - uid: 7670 + - uid: 8159 components: - type: Transform - pos: 29.5,19.5 + pos: -13.5,-96.5 parent: 2 - - uid: 8193 + - uid: 8160 + components: + - type: Transform + pos: -14.5,-96.5 + parent: 2 + - uid: 8298 components: - type: Transform - pos: -52.5,-43.5 + pos: -19.5,-16.5 parent: 2 - uid: 8331 components: - type: Transform pos: 42.5,-29.5 parent: 2 - - uid: 8380 + - uid: 8453 components: - type: Transform - pos: -38.5,-55.5 + pos: -20.5,-16.5 parent: 2 - uid: 8514 components: @@ -103314,10 +113282,11 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-4.5 parent: 2 - - uid: 8677 + - uid: 8574 components: - type: Transform - pos: -22.5,17.5 + rot: 1.5707963267948966 rad + pos: 26.5,-0.5 parent: 2 - uid: 8803 components: @@ -103335,64 +113304,180 @@ entities: - type: Transform pos: 34.5,-53.5 parent: 2 - - uid: 9417 + - uid: 9255 components: - type: Transform - pos: 29.5,-0.5 + rot: 1.5707963267948966 rad + pos: -33.5,-2.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + pos: 10.5,-14.5 parent: 2 - uid: 10022 components: - type: Transform pos: 33.5,-53.5 parent: 2 - - uid: 10432 + - uid: 10088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-55.5 + rot: -1.5707963267948966 rad + pos: 35.5,-6.5 parent: 2 - - uid: 10710 + - uid: 10115 components: - type: Transform - pos: -43.5,-51.5 + pos: 3.5,-16.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 10496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-49.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + pos: -52.5,-55.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + pos: 37.5,10.5 + parent: 2 + - uid: 10621 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + pos: -39.5,-19.5 parent: 2 - uid: 11066 components: - type: Transform pos: -23.5,19.5 parent: 2 - - uid: 11254 + - uid: 11079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-51.5 + rot: -1.5707963267948966 rad + pos: 23.5,13.5 parent: 2 - - uid: 11973 + - uid: 11224 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,14.5 + pos: -33.5,-3.5 + parent: 2 + - uid: 11493 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 2 + - uid: 11835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-32.5 + parent: 2 + - uid: 12012 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 12033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-34.5 + parent: 2 + - uid: 12034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-38.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 12305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-18.5 + parent: 2 + - uid: 12358 + components: + - type: Transform + pos: -29.5,-21.5 parent: 2 - uid: 12372 components: - type: Transform pos: 19.5,-58.5 parent: 2 - - uid: 12597 + - uid: 12545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-52.5 + pos: 19.5,-6.5 parent: 2 - - uid: 12605 + - uid: 12675 components: - type: Transform - pos: -28.5,-59.5 + pos: -41.5,-39.5 parent: 2 - - uid: 12721 + - uid: 12743 components: - type: Transform - pos: 13.5,-55.5 + pos: 2.5,-93.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: -55.5,-31.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + pos: -54.5,-31.5 parent: 2 - uid: 12995 components: @@ -103404,16 +113489,20 @@ entities: - type: Transform pos: -5.5,-21.5 parent: 2 - - uid: 13207 + - uid: 13288 components: - type: Transform - pos: 8.5,4.5 + pos: 0.5,-93.5 parent: 2 - - uid: 13341 + - uid: 13291 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,26.5 + pos: 6.5,-58.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + pos: -32.5,-18.5 parent: 2 - uid: 13816 components: @@ -103425,10 +113514,10 @@ entities: - type: Transform pos: 25.5,-58.5 parent: 2 - - uid: 14083 + - uid: 14188 components: - type: Transform - pos: -34.5,-41.5 + pos: -40.5,-43.5 parent: 2 - uid: 14222 components: @@ -103436,45 +113525,57 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-27.5 parent: 2 - - uid: 14344 + - uid: 14436 components: - type: Transform - pos: 6.5,-14.5 + pos: -13.5,-21.5 parent: 2 - - uid: 14347 + - uid: 14760 components: - type: Transform - pos: 13.5,-56.5 + pos: -50.5,-36.5 parent: 2 - - uid: 14436 + - uid: 15187 components: - type: Transform - pos: -13.5,-21.5 + pos: 13.5,-53.5 parent: 2 - - uid: 14880 + - uid: 15215 components: - type: Transform - pos: 10.5,-19.5 + pos: -4.5,-30.5 parent: 2 - - uid: 15215 + - uid: 15242 components: - type: Transform - pos: -4.5,-30.5 + pos: -48.5,-50.5 parent: 2 - - uid: 15835 + - uid: 15243 components: - type: Transform - pos: 19.5,-13.5 + pos: -50.5,-47.5 parent: 2 - - uid: 15852 + - uid: 15288 components: - type: Transform - pos: 20.5,-13.5 + pos: -45.5,-50.5 parent: 2 - - uid: 15910 + - uid: 15293 components: - type: Transform - pos: 12.5,-19.5 + rot: 1.5707963267948966 rad + pos: -36.5,-46.5 + parent: 2 + - uid: 15701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-78.5 + parent: 2 + - uid: 15713 + components: + - type: Transform + pos: -40.5,-50.5 parent: 2 - uid: 15917 components: @@ -103482,48 +113583,58 @@ entities: rot: 3.141592653589793 rad pos: -60.5,-8.5 parent: 2 - - uid: 16007 + - uid: 15925 components: - type: Transform - pos: 6.5,-41.5 + rot: 3.141592653589793 rad + pos: -58.5,-58.5 parent: 2 - uid: 16012 components: - type: Transform pos: 28.5,-48.5 parent: 2 + - uid: 16095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-58.5 + parent: 2 - uid: 16450 components: - type: Transform rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 + - uid: 16708 + components: + - type: Transform + pos: 9.5,-95.5 + parent: 2 - uid: 16759 components: - type: Transform pos: -52.5,-13.5 parent: 2 - - uid: 17310 + - uid: 16931 components: - type: Transform - pos: 42.5,-61.5 + pos: -45.5,-54.5 parent: 2 - - uid: 17547 + - uid: 17310 components: - type: Transform - pos: 48.5,-61.5 + pos: 42.5,-61.5 parent: 2 - - uid: 17863 + - uid: 17487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,3.5 + pos: -34.5,5.5 parent: 2 - - uid: 17864 + - uid: 17547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,4.5 + pos: 48.5,-61.5 parent: 2 - uid: 18076 components: @@ -103567,10 +113678,10 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,15.5 parent: 2 - - uid: 18862 + - uid: 19227 components: - type: Transform - pos: -31.5,-57.5 + pos: 11.5,-91.5 parent: 2 - uid: 19278 components: @@ -103603,26 +113714,94 @@ entities: - type: Transform pos: 44.5,-50.5 parent: 2 - - uid: 20513 + - uid: 20688 components: - type: Transform - pos: 13.5,25.5 + pos: -34.5,16.5 parent: 2 - - uid: 20674 + - uid: 20712 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 20756 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 20757 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 20775 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,11.5 + pos: -37.5,-40.5 parent: 2 - - uid: 20688 + - uid: 20784 components: - type: Transform - pos: -34.5,16.5 + rot: 3.141592653589793 rad + pos: 27.5,29.5 parent: 2 - - uid: 20712 + - uid: 20794 components: - type: Transform - pos: -10.5,-13.5 + rot: -1.5707963267948966 rad + pos: -39.5,-40.5 + parent: 2 + - uid: 20896 + components: + - type: Transform + pos: 15.5,-63.5 + parent: 2 + - uid: 21624 + components: + - 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 + pos: 59.5,-56.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - uid: 22001 + components: + - type: Transform + pos: 10.5,28.5 + parent: 2 + - uid: 22091 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,25.5 + parent: 2 + - uid: 22458 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 22459 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 + - uid: 22648 + components: + - type: Transform + pos: 40.5,15.5 parent: 2 - proto: RadioHandheld entities: @@ -103631,20 +113810,20 @@ entities: - type: Transform pos: -22.659456,-18.314274 parent: 2 - - uid: 4926 + - uid: 13294 components: - type: Transform - pos: -28.642363,-60.916378 + pos: -22.357222,-18.376818 parent: 2 - - uid: 4946 + - uid: 22045 components: - type: Transform - pos: -28.308863,-60.801716 + pos: 28.35513,23.62658 parent: 2 - - uid: 13294 + - uid: 22046 components: - type: Transform - pos: -22.357222,-18.376818 + pos: 28.58441,23.772514 parent: 2 - proto: RadioHandheldSecurity entities: @@ -103660,10 +113839,15 @@ entities: parent: 2 - proto: RagItem entities: - - uid: 3725 + - uid: 15855 + components: + - type: Transform + pos: -0.66263175,-45.283024 + parent: 2 + - uid: 20693 components: - type: Transform - pos: -1.3852944,-45.32798 + pos: 20.529516,-6.291148 parent: 2 - proto: Railing entities: @@ -103741,11 +113925,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,-39.5 parent: 2 - - uid: 3549 - components: - - type: Transform - pos: 14.5,-4.5 - parent: 2 - uid: 3593 components: - type: Transform @@ -103757,6 +113936,24 @@ entities: - type: Transform pos: -2.5,-39.5 parent: 2 + - uid: 3794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-53.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-50.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 2 - uid: 5074 components: - type: Transform @@ -103769,123 +113966,377 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,16.5 parent: 2 - - uid: 5789 + - uid: 5789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-12.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-12.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-12.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + pos: -19.5,-52.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-50.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 2 + - uid: 6633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-42.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,12.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,10.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-50.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-50.5 + parent: 2 + - uid: 8136 + components: + - type: Transform + pos: -13.5,-96.5 + parent: 2 + - uid: 8137 + components: + - type: Transform + pos: -12.5,-96.5 + parent: 2 + - uid: 8138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-95.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-94.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-95.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-95.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-94.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-93.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-92.5 + parent: 2 + - uid: 8180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-91.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-99.5 + parent: 2 + - uid: 8186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-100.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-101.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-102.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-90.5 + parent: 2 + - uid: 8193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-90.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-90.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-90.5 + parent: 2 + - uid: 8762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,13.5 + parent: 2 + - uid: 8778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: -14.5,-51.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-52.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-53.5 + parent: 2 + - uid: 9308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 2 + - uid: 9505 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 9619 + components: + - type: Transform + pos: -20.5,-52.5 + parent: 2 + - uid: 9629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + pos: -15.5,-51.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-52.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-1.5 + parent: 2 + - uid: 10210 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-12.5 + rot: 1.5707963267948966 rad + pos: 11.5,-41.5 parent: 2 - - uid: 5790 + - uid: 10525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-12.5 + rot: 1.5707963267948966 rad + pos: 21.5,-16.5 parent: 2 - - uid: 5800 + - uid: 10688 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-12.5 + pos: 18.5,-2.5 parent: 2 - - uid: 6114 + - uid: 10719 components: - type: Transform - pos: -19.5,-52.5 + rot: 1.5707963267948966 rad + pos: 11.5,-40.5 parent: 2 - - uid: 6686 + - uid: 10725 components: - type: Transform - pos: 15.5,-4.5 + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 parent: 2 - - uid: 7056 + - uid: 10772 components: - type: Transform - pos: 16.5,-4.5 + pos: -35.5,-39.5 parent: 2 - - uid: 7377 + - uid: 10776 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,12.5 + pos: 33.5,-3.5 parent: 2 - - uid: 7379 + - uid: 10798 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,10.5 + pos: 33.5,-1.5 parent: 2 - - uid: 7437 + - uid: 10804 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-48.5 + pos: 33.5,-0.5 parent: 2 - - uid: 8103 + - uid: 10805 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.5,-46.5 + pos: 33.5,-2.5 parent: 2 - - uid: 8104 + - uid: 11020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-45.5 + rot: 3.141592653589793 rad + pos: 12.5,-42.5 parent: 2 - - uid: 8762 + - uid: 11229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,13.5 + pos: -34.5,-39.5 parent: 2 - - uid: 8828 + - uid: 11458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,14.5 + pos: -33.5,-39.5 parent: 2 - - uid: 9081 + - uid: 11717 components: - type: Transform - pos: -14.5,-51.5 + pos: -3.5,-39.5 parent: 2 - - uid: 9619 + - uid: 11896 components: - type: Transform - pos: -20.5,-52.5 + rot: 1.5707963267948966 rad + pos: 8.5,-51.5 parent: 2 - - uid: 9787 + - uid: 12264 components: - type: Transform - pos: -15.5,-51.5 + rot: 1.5707963267948966 rad + pos: 21.5,-15.5 parent: 2 - - uid: 9788 + - uid: 13193 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-52.5 + pos: -17.5,30.5 parent: 2 - - uid: 9948 + - uid: 13400 components: - type: Transform - pos: 13.5,-41.5 + rot: 1.5707963267948966 rad + pos: 8.5,-52.5 parent: 2 - - uid: 9949 + - uid: 14127 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-40.5 + pos: -46.5,-46.5 parent: 2 - - uid: 11717 + - uid: 14128 components: - type: Transform - pos: -3.5,-39.5 + rot: -1.5707963267948966 rad + pos: -46.5,-44.5 parent: 2 - - uid: 13193 + - uid: 14129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,30.5 + rot: -1.5707963267948966 rad + pos: -46.5,-43.5 parent: 2 - uid: 14225 components: @@ -103916,6 +114367,12 @@ entities: rot: 1.5707963267948966 rad pos: -15.5,17.5 parent: 2 + - uid: 15029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-50.5 + parent: 2 - uid: 15655 components: - type: Transform @@ -103928,6 +114385,18 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 + - uid: 16015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-51.5 + parent: 2 + - uid: 16042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 2 - uid: 18054 components: - type: Transform @@ -103958,11 +114427,23 @@ entities: rot: -1.5707963267948966 rad pos: 49.5,11.5 parent: 2 - - uid: 9884 + - uid: 8135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-96.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,0.5 + parent: 2 + - uid: 10687 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-41.5 + pos: 17.5,-2.5 parent: 2 - uid: 14168 components: @@ -103977,6 +114458,12 @@ entities: parent: 2 - proto: RailingCornerSmall entities: + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-39.5 + parent: 2 - uid: 3290 components: - type: Transform @@ -103989,6 +114476,12 @@ entities: rot: 1.5707963267948966 rad pos: 55.5,-39.5 parent: 2 + - uid: 5817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-42.5 + parent: 2 - uid: 7089 components: - type: Transform @@ -104000,6 +114493,23 @@ entities: rot: 1.5707963267948966 rad pos: 50.5,11.5 parent: 2 + - uid: 8181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-95.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-90.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + pos: 6.5,-95.5 + parent: 2 - uid: 9585 components: - type: Transform @@ -104012,6 +114522,11 @@ entities: rot: 3.141592653589793 rad pos: -16.5,-51.5 parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 - uid: 13196 components: - type: Transform @@ -104024,12 +114539,6 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,29.5 parent: 2 - - uid: 15875 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 2 - uid: 20714 components: - type: Transform @@ -104044,13 +114553,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-38.5 parent: 2 -- proto: RandomArcade - entities: - - uid: 7613 - components: - - type: Transform - pos: 12.5,-60.5 - parent: 2 - proto: RandomArtifactSpawner entities: - uid: 4547 @@ -104065,11 +114567,6 @@ entities: - type: Transform pos: 38.5,-46.5 parent: 2 - - uid: 9123 - components: - - type: Transform - pos: 24.5,16.5 - parent: 2 - uid: 17456 components: - type: Transform @@ -104082,60 +114579,75 @@ entities: parent: 2 - proto: RandomBoard entities: - - uid: 1593 + - uid: 1106 components: - type: Transform - pos: 12.5,-17.5 + pos: 4.5,-19.5 parent: 2 - - uid: 2168 + - uid: 1108 components: - type: Transform - pos: 12.5,-19.5 + pos: 3.5,-16.5 parent: 2 - - uid: 2592 + - uid: 1113 components: - type: Transform - pos: -3.5,-23.5 + pos: 4.5,-16.5 parent: 2 - - uid: 3395 + - uid: 1330 components: - type: Transform - pos: 12.5,-19.5 + pos: -28.5,-46.5 parent: 2 - - uid: 7429 + - uid: 2123 components: - type: Transform - pos: 27.5,-50.5 + pos: -53.5,-49.5 parent: 2 - - uid: 10251 + - uid: 2283 components: - type: Transform - pos: 11.5,-19.5 + pos: 3.5,-19.5 parent: 2 - - uid: 11124 + - uid: 2550 components: - type: Transform - pos: 15.5,-19.5 + pos: 5.5,-16.5 parent: 2 - - uid: 12781 + - uid: 2556 components: - type: Transform - pos: 11.5,-17.5 + pos: 7.5,-19.5 parent: 2 - - uid: 12846 + - uid: 2592 components: - type: Transform - pos: 13.5,-19.5 + pos: -3.5,-23.5 parent: 2 - - uid: 12847 + - uid: 3113 components: - type: Transform - pos: 13.5,-17.5 + pos: 3.5,-16.5 parent: 2 - - uid: 12892 + - uid: 3117 components: - type: Transform - pos: -43.5,-51.5 + pos: 6.5,-16.5 + parent: 2 + - uid: 3182 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: 27.5,-50.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + pos: 5.5,-16.5 parent: 2 - uid: 20125 components: @@ -104149,16 +114661,26 @@ entities: - type: Transform pos: 54.5,-39.5 parent: 2 - - uid: 3862 + - uid: 4234 components: - type: Transform - pos: 0.5,-45.5 + pos: 0.5,24.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: -28.5,-59.5 parent: 2 - uid: 8866 components: - type: Transform pos: 49.5,11.5 parent: 2 + - uid: 13721 + components: + - type: Transform + pos: 2.5,-45.5 + parent: 2 - uid: 18820 components: - type: Transform @@ -104169,22 +114691,27 @@ entities: - type: Transform pos: 46.5,-74.5 parent: 2 -- proto: RandomDrinkGlass - entities: - - uid: 3863 + - uid: 21404 components: - type: Transform - pos: -5.5,-42.5 + pos: -33.5,-20.5 parent: 2 +- proto: RandomDrinkGlass + entities: - uid: 3864 components: - type: Transform pos: -4.5,-42.5 parent: 2 - - uid: 3865 + - uid: 14990 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 15038 components: - type: Transform - pos: -4.5,-45.5 + pos: -1.5,-46.5 parent: 2 - proto: RandomDrinkSoda entities: @@ -104213,12 +114740,32 @@ entities: - type: Transform pos: 8.5,-23.5 parent: 2 + - uid: 22783 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 22785 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 - proto: RandomFoodBakedSingle entities: - - uid: 20220 + - uid: 7905 components: - type: Transform - pos: -6.5,-39.5 + pos: 20.5,-16.5 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 18919 + components: + - type: Transform + pos: -10.5,-38.5 parent: 2 - proto: RandomFoodMeal entities: @@ -104227,6 +114774,13 @@ entities: - type: Transform pos: -7.5,-35.5 parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 20137 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 - proto: RandomIngredient entities: - uid: 3295 @@ -104256,6 +114810,11 @@ entities: - type: Transform pos: -29.5,16.5 parent: 2 + - uid: 21623 + components: + - type: Transform + pos: -53.5,-57.5 + parent: 2 - proto: RandomPainting entities: - uid: 3268 @@ -104268,6 +114827,11 @@ entities: - type: Transform pos: 15.5,-49.5 parent: 2 + - uid: 3710 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 - uid: 3922 components: - type: Transform @@ -104278,16 +114842,31 @@ entities: - type: Transform pos: 16.5,-41.5 parent: 2 - - uid: 6633 + - uid: 5877 + components: + - type: Transform + pos: 20.5,-42.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: -39.5,-53.5 + parent: 2 + - uid: 9146 components: - type: Transform - pos: 9.5,7.5 + pos: -37.5,-50.5 parent: 2 - uid: 9263 components: - type: Transform pos: 12.5,-51.5 parent: 2 + - uid: 9284 + components: + - type: Transform + pos: -37.5,-56.5 + parent: 2 - uid: 9293 components: - type: Transform @@ -104298,6 +114877,11 @@ entities: - type: Transform pos: 13.5,-49.5 parent: 2 + - uid: 22226 + components: + - type: Transform + pos: 21.5,-45.5 + parent: 2 - proto: RandomPosterAny entities: - uid: 593 @@ -104305,6 +114889,16 @@ entities: - type: Transform pos: 41.5,10.5 parent: 2 + - uid: 2149 + components: + - type: Transform + pos: -52.5,-56.5 + parent: 2 + - uid: 2164 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 - uid: 6015 components: - type: Transform @@ -104320,36 +114914,45 @@ entities: - type: Transform pos: 16.5,-46.5 parent: 2 - - uid: 6473 + - uid: 6603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-45.5 + pos: 24.5,9.5 parent: 2 - uid: 7975 components: - type: Transform pos: 34.5,-56.5 parent: 2 - - uid: 8527 + - uid: 10481 components: - type: Transform - pos: 17.5,-8.5 + pos: -32.5,-34.5 parent: 2 - - uid: 8538 + - uid: 10493 components: - type: Transform - pos: 4.5,-16.5 + pos: -50.5,-53.5 parent: 2 - - uid: 9568 + - uid: 10503 components: - type: Transform - pos: 15.5,-13.5 + pos: -26.5,-14.5 parent: 2 - - uid: 10737 + - uid: 10512 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 10514 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 10608 components: - type: Transform - pos: 18.5,-14.5 + pos: 15.5,-55.5 parent: 2 - uid: 15849 components: @@ -104436,21 +115039,6 @@ entities: - type: Transform pos: 50.5,8.5 parent: 2 - - uid: 16163 - components: - - type: Transform - pos: 26.5,7.5 - parent: 2 - - uid: 16164 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 16166 - components: - - type: Transform - pos: 23.5,3.5 - parent: 2 - uid: 17020 components: - type: Transform @@ -104486,16 +115074,6 @@ entities: - type: Transform pos: 8.5,27.5 parent: 2 - - uid: 17590 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - - uid: 17591 - components: - - type: Transform - pos: 16.5,18.5 - parent: 2 - uid: 17592 components: - type: Transform @@ -104511,12 +115089,6 @@ entities: - type: Transform pos: -8.5,23.5 parent: 2 - - uid: 18918 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-43.5 - parent: 2 - uid: 19870 components: - type: Transform @@ -104537,18 +115109,128 @@ entities: - type: Transform pos: 41.5,-54.5 parent: 2 + - uid: 21672 + components: + - type: Transform + pos: -54.5,-54.5 + parent: 2 + - uid: 22655 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 22656 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 22658 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 22665 + components: + - type: Transform + pos: 17.5,-12.5 + parent: 2 + - uid: 22666 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 22667 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 22668 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 22669 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 22670 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 22675 + components: + - type: Transform + pos: -48.5,-57.5 + parent: 2 + - uid: 22688 + components: + - type: Transform + pos: 0.5,-45.5 + parent: 2 + - uid: 22689 + components: + - type: Transform + pos: 2.5,-42.5 + parent: 2 + - uid: 22690 + components: + - type: Transform + pos: 6.5,-40.5 + parent: 2 + - uid: 22691 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 22692 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - uid: 22693 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - uid: 22694 + components: + - type: Transform + pos: -14.5,-28.5 + parent: 2 + - uid: 22695 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 - proto: RandomPosterContraband entities: - - uid: 2992 + - uid: 5583 components: - type: Transform - pos: 9.5,-13.5 + pos: -51.5,-49.5 parent: 2 - uid: 6017 components: - type: Transform pos: 19.5,-51.5 parent: 2 + - uid: 10490 + components: + - type: Transform + pos: -33.5,-10.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 - uid: 16147 components: - type: Transform @@ -104583,19 +115265,73 @@ entities: rot: 3.141592653589793 rad pos: -40.5,5.5 parent: 2 -- proto: RandomPosterLegit - entities: - - uid: 1295 + - uid: 22651 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,13.5 + pos: 37.5,16.5 + parent: 2 + - uid: 22652 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 22653 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 22674 + components: + - type: Transform + pos: -44.5,-56.5 parent: 2 +- proto: RandomPosterLegit + entities: - uid: 2859 components: - type: Transform pos: -28.5,5.5 parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -49.5,-42.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 3599 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 - uid: 5677 components: - type: Transform @@ -104611,90 +115347,97 @@ entities: - type: Transform pos: 24.5,-17.5 parent: 2 - - uid: 8523 + - uid: 9563 components: - type: Transform - pos: 11.5,-16.5 + pos: 34.5,9.5 parent: 2 - - uid: 9563 + - uid: 9614 components: - type: Transform - pos: 34.5,9.5 + pos: -31.5,11.5 parent: 2 - - uid: 11961 + - uid: 10479 components: - type: Transform - pos: 46.5,-15.5 + pos: -35.5,-56.5 parent: 2 - - uid: 12862 + - uid: 10485 components: - type: Transform - pos: -21.5,-45.5 + pos: -47.5,-55.5 parent: 2 - - uid: 12865 + - uid: 10502 components: - type: Transform - pos: -18.5,-49.5 + pos: -46.5,-35.5 parent: 2 - - uid: 12867 + - uid: 10506 components: - type: Transform - pos: -25.5,-44.5 + pos: -31.5,-9.5 parent: 2 - - uid: 14507 + - uid: 10508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,13.5 + pos: -38.5,-21.5 parent: 2 - - uid: 15878 + - uid: 10510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-2.5 + pos: -54.5,-20.5 parent: 2 - - uid: 16119 + - uid: 10643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-36.5 + pos: -32.5,-23.5 parent: 2 - - uid: 16120 + - uid: 11961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-46.5 + pos: 46.5,-15.5 parent: 2 - - uid: 16121 + - uid: 12862 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-46.5 + pos: -21.5,-45.5 parent: 2 - - uid: 16123 + - uid: 12865 components: - type: Transform - pos: 18.5,-19.5 + pos: -18.5,-49.5 parent: 2 - - uid: 16124 + - uid: 14173 components: - type: Transform - pos: 28.5,-19.5 + pos: -30.5,-43.5 parent: 2 - - uid: 16127 + - uid: 14187 components: - type: Transform - pos: 34.5,21.5 + pos: -28.5,-52.5 parent: 2 - - uid: 16128 + - uid: 14507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,13.5 + parent: 2 + - uid: 16119 components: - type: Transform - pos: 30.5,35.5 + rot: 3.141592653589793 rad + pos: -13.5,-36.5 parent: 2 - - uid: 16129 + - uid: 16123 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 16124 components: - type: Transform - pos: 34.5,43.5 + pos: 28.5,-19.5 parent: 2 - uid: 16130 components: @@ -104731,11 +115474,6 @@ entities: - type: Transform pos: 40.5,2.5 parent: 2 - - uid: 16165 - components: - - type: Transform - pos: 22.5,12.5 - parent: 2 - uid: 16974 components: - type: Transform @@ -104762,11 +115500,6 @@ entities: - type: Transform pos: 7.5,21.5 parent: 2 - - uid: 20226 - components: - - type: Transform - pos: 30.5,5.5 - parent: 2 - uid: 20227 components: - type: Transform @@ -104800,218 +115533,361 @@ entities: rot: 3.141592653589793 rad pos: -27.5,18.5 parent: 2 - - uid: 20584 + - uid: 20586 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-12.5 + pos: -22.5,18.5 parent: 2 - - uid: 20586 + - uid: 20607 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,18.5 + pos: -37.5,-1.5 parent: 2 - - uid: 20604 + - uid: 21260 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-12.5 + rot: -1.5707963267948966 rad + pos: 15.5,-5.5 parent: 2 - - uid: 20607 + - uid: 22654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-1.5 + pos: 47.5,18.5 parent: 2 - - uid: 20626 + - uid: 22657 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 22659 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 22660 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 22661 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 22662 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 22663 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 22664 components: - type: Transform pos: 28.5,-12.5 parent: 2 -- proto: RandomSnacks - entities: - - uid: 20616 + - uid: 22671 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 22672 + components: + - type: Transform + pos: 20.5,23.5 + parent: 2 + - uid: 22673 + components: + - type: Transform + pos: -17.5,9.5 + parent: 2 + - uid: 22676 + components: + - type: Transform + pos: -31.5,-64.5 + parent: 2 + - uid: 22677 + components: + - type: Transform + pos: -31.5,-78.5 + parent: 2 + - uid: 22678 + components: + - type: Transform + pos: -36.5,-60.5 + parent: 2 + - uid: 22679 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 + - uid: 22680 + components: + - type: Transform + pos: -5.5,-64.5 + parent: 2 + - uid: 22681 + components: + - type: Transform + pos: -9.5,-70.5 + parent: 2 + - uid: 22682 + components: + - type: Transform + pos: -5.5,-75.5 + parent: 2 + - uid: 22683 + components: + - type: Transform + pos: 12.5,-72.5 + parent: 2 + - uid: 22684 + components: + - type: Transform + pos: 12.5,-66.5 + parent: 2 + - uid: 22685 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 22686 + components: + - type: Transform + pos: 12.5,-48.5 + parent: 2 + - uid: 22687 + components: + - type: Transform + pos: -1.5,-54.5 + parent: 2 + - uid: 22696 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 22697 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 22699 + components: + - type: Transform + pos: -31.5,0.5 + parent: 2 + - uid: 22726 components: - type: Transform rot: 3.141592653589793 rad - pos: -34.5,-2.5 + pos: -29.5,-2.5 parent: 2 -- proto: RandomSoap + - uid: 22727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,6.5 + parent: 2 +- proto: RandomSmokables entities: - - uid: 9865 + - uid: 717 components: - type: Transform - pos: -22.5,-55.5 + pos: 27.675076,-28.617666 parent: 2 - - uid: 14422 + - uid: 3412 components: - type: Transform - pos: 46.5,-41.5 + pos: -25.293602,22.601685 parent: 2 - - uid: 17051 + - uid: 14971 components: - type: Transform - pos: -49.5,-45.5 + pos: -27.887064,-45.89555 parent: 2 -- proto: RandomSpawner - entities: - - uid: 208 + - uid: 18968 components: - type: Transform - pos: 17.5,-28.5 + pos: -0.31731188,-52.32215 parent: 2 - - uid: 1092 + - uid: 18986 components: - type: Transform - pos: -50.5,-42.5 + pos: 37.686077,2.362224 parent: 2 - - uid: 4350 + - uid: 19551 components: - type: Transform - pos: 12.5,-13.5 + pos: -19.602623,-40.284576 parent: 2 - - uid: 5315 + - uid: 22516 components: - type: Transform - pos: 31.5,-58.5 + pos: -30.295214,3.7242641 parent: 2 - - uid: 5694 + - uid: 22751 components: - type: Transform - pos: -18.5,-23.5 + pos: -14.351573,15.661057 parent: 2 - - uid: 7049 + - uid: 22752 components: - type: Transform - pos: 21.5,-35.5 + pos: -29.606667,-46.020638 parent: 2 - - uid: 7053 + - uid: 22753 components: - type: Transform - pos: 15.5,-38.5 + pos: -31.352697,-54.26417 parent: 2 - - uid: 7054 + - uid: 22754 components: - type: Transform - pos: 17.5,-36.5 + pos: -53.675484,-50.3226 parent: 2 - - uid: 8325 + - uid: 22755 components: - type: Transform - pos: 7.5,-38.5 + pos: -3.8056746,-42.44955 parent: 2 - - uid: 8338 + - uid: 22756 components: - type: Transform - pos: 25.5,-8.5 + pos: -12.260887,16.963942 parent: 2 - - uid: 8341 + - uid: 22757 components: - type: Transform - pos: -8.5,-31.5 + pos: -37.774708,-5.23902 parent: 2 - - uid: 8420 + - uid: 22758 components: - type: Transform - pos: 9.5,-0.5 + pos: 48.336163,-60.439056 parent: 2 - - uid: 8442 +- proto: RandomSnacks + entities: + - uid: 12935 components: - type: Transform - pos: 17.5,-50.5 + pos: -59.5,-29.5 parent: 2 - - uid: 9116 + - uid: 12936 components: - type: Transform - pos: 29.5,-58.5 + rot: 3.141592653589793 rad + pos: -37.5,-5.5 parent: 2 - - uid: 9117 +- proto: RandomSoap + entities: + - uid: 9865 components: - type: Transform - pos: 28.5,-58.5 + pos: -22.5,-55.5 parent: 2 - - uid: 10052 + - uid: 14422 components: - type: Transform - pos: 43.5,9.5 + pos: 46.5,-41.5 parent: 2 - - uid: 10461 +- proto: RandomSpawner + entities: + - uid: 208 components: - type: Transform - pos: 21.5,-47.5 + pos: 17.5,-28.5 parent: 2 - - uid: 10972 + - uid: 3221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-9.5 + pos: -29.5,-10.5 parent: 2 - - uid: 11052 + - uid: 5315 components: - type: Transform - pos: -32.5,-34.5 + pos: 31.5,-58.5 parent: 2 - - uid: 11068 + - uid: 5694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-46.5 + pos: -18.5,-23.5 parent: 2 - - uid: 11191 + - uid: 7001 components: - type: Transform - pos: 30.5,-56.5 + pos: -40.5,-4.5 parent: 2 - - uid: 11310 + - uid: 7049 components: - type: Transform - pos: -34.5,-49.5 + pos: 21.5,-35.5 parent: 2 - - uid: 11986 + - uid: 7053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,6.5 + pos: 15.5,-38.5 parent: 2 - - uid: 13167 + - uid: 7697 components: - type: Transform - pos: -11.5,-38.5 + pos: -40.5,3.5 parent: 2 - - uid: 14399 + - uid: 8341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-43.5 + pos: -8.5,-31.5 parent: 2 - - uid: 15485 + - uid: 8442 components: - type: Transform - pos: 10.5,-12.5 + pos: 17.5,-50.5 parent: 2 - - uid: 15870 + - uid: 9116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-45.5 + pos: 29.5,-58.5 parent: 2 - - uid: 15871 + - uid: 9117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-47.5 + pos: 28.5,-58.5 parent: 2 - - uid: 15885 + - uid: 9645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-51.5 + pos: -36.5,-3.5 parent: 2 - - uid: 15907 + - uid: 10052 components: - type: Transform - pos: -23.5,-36.5 + pos: 43.5,9.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + pos: 21.5,-47.5 + parent: 2 + - uid: 10972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,-9.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + pos: 30.5,-56.5 + parent: 2 + - uid: 15871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-47.5 parent: 2 - uid: 15919 components: @@ -105043,6 +115919,11 @@ entities: - type: Transform pos: 33.5,-57.5 parent: 2 + - uid: 16935 + components: + - type: Transform + pos: -46.5,-51.5 + parent: 2 - uid: 17261 components: - type: Transform @@ -105273,6 +116154,51 @@ entities: - type: Transform pos: -21.5,-7.5 parent: 2 + - uid: 22475 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 22479 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 22481 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 22482 + components: + - type: Transform + pos: 42.5,21.5 + parent: 2 + - uid: 22483 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 22484 + components: + - type: Transform + pos: 48.5,21.5 + parent: 2 + - uid: 22485 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 22486 + components: + - type: Transform + pos: 37.5,24.5 + parent: 2 + - uid: 22487 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 - proto: RandomVending entities: - uid: 3388 @@ -105280,15 +116206,15 @@ entities: - type: Transform pos: -17.5,-25.5 parent: 2 - - uid: 6295 + - uid: 8065 components: - type: Transform - pos: 19.5,-20.5 + pos: 18.5,-20.5 parent: 2 - - uid: 11143 + - uid: 22515 components: - type: Transform - pos: 12.5,-58.5 + pos: -29.5,18.5 parent: 2 - proto: RandomVendingDrinks entities: @@ -105299,10 +116225,10 @@ entities: parent: 2 - proto: RandomVendingSnacks entities: - - uid: 1293 + - uid: 1739 components: - type: Transform - pos: 34.5,24.5 + pos: -35.5,-62.5 parent: 2 - uid: 2604 components: @@ -105312,103 +116238,190 @@ entities: - uid: 12607 components: - type: Transform - pos: 44.5,-25.5 + pos: 44.5,-25.5 + parent: 2 +- proto: RCD + entities: + - uid: 2579 + components: + - type: Transform + pos: -9.061894,-25.325577 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 2897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.520736,-25.325577 + parent: 2 + - uid: 2898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.239346,-25.513208 + parent: 2 +- proto: ReagentContainerCornmeal + entities: + - uid: 3258 + components: + - type: Transform + pos: -4.4029903,-30.299797 + parent: 2 +- proto: ReagentContainerFlour + entities: + - uid: 3256 + components: + - type: Transform + pos: -4.4759436,-30.393612 + parent: 2 + - uid: 20229 + components: + - type: Transform + pos: -36.578762,-2.2497342 + parent: 2 +- proto: ReagentContainerSugar + entities: + - uid: 3257 + components: + - type: Transform + pos: -4.6426926,-30.331068 + parent: 2 +- proto: Recycler + entities: + - uid: 18132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-58.5 + parent: 2 + - uid: 21974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 +- proto: ReinforcedGirder + entities: + - uid: 290 + components: + - type: Transform + pos: -5.5,-86.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: -1.5,-86.5 + parent: 2 + - uid: 2158 + components: + - type: Transform + pos: 75.5,-43.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: -62.5,-37.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-48.5 + parent: 2 + - uid: 12732 + components: + - type: Transform + pos: 9.5,-86.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 11.5,-86.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + pos: -54.5,-35.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: -61.5,-39.5 parent: 2 -- proto: RCD - entities: - - uid: 2579 + - uid: 15054 components: - type: Transform - pos: -9.061894,-25.325577 + pos: 7.5,-96.5 parent: 2 -- proto: RCDAmmo - entities: - - uid: 2897 + - uid: 17179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.520736,-25.325577 + pos: 5.5,-97.5 parent: 2 - - uid: 2898 + - uid: 19155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.239346,-25.513208 + rot: -1.5707963267948966 rad + pos: -8.5,-96.5 parent: 2 -- proto: ReagentContainerCornmeal - entities: - - uid: 3258 + - uid: 19219 components: - type: Transform - pos: -4.4029903,-30.299797 + pos: 10.5,-100.5 parent: 2 -- proto: ReagentContainerFlour - entities: - - uid: 3256 + - uid: 20676 components: - type: Transform - pos: -4.4759436,-30.393612 + pos: -37.5,15.5 parent: 2 - - uid: 20229 + - uid: 22085 components: - type: Transform - pos: -38.29994,-2.4838533 + pos: -39.5,14.5 parent: 2 -- proto: ReagentContainerSugar +- proto: ReinforcedPlasmaWindow entities: - - uid: 3257 + - uid: 461 components: - type: Transform - pos: -4.6426926,-30.331068 + pos: 9.5,1.5 parent: 2 -- proto: Recycler - entities: - - uid: 5365 + - uid: 531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,21.5 + pos: 3.5,7.5 parent: 2 - - uid: 18132 + - uid: 539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-58.5 + pos: 11.5,4.5 parent: 2 -- proto: ReinforcedGirder - entities: - - uid: 2158 + - uid: 544 components: - type: Transform - pos: 75.5,-43.5 + pos: 2.5,7.5 parent: 2 - - uid: 20676 + - uid: 576 components: - type: Transform - pos: -37.5,15.5 + pos: 11.5,2.5 parent: 2 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 114 + - uid: 612 components: - type: Transform - pos: 7.5,-8.5 + pos: 4.5,7.5 parent: 2 - - uid: 116 + - uid: 1325 components: - type: Transform - pos: 8.5,-8.5 + pos: 10.5,1.5 parent: 2 - uid: 1411 components: - type: Transform pos: -7.5,7.5 parent: 2 - - uid: 1412 - components: - - type: Transform - pos: 2.5,6.5 - parent: 2 - uid: 1415 components: - type: Transform @@ -105429,16 +116442,6 @@ entities: - type: Transform pos: -1.5,7.5 parent: 2 - - uid: 1447 - components: - - type: Transform - pos: 3.5,6.5 - parent: 2 - - uid: 1448 - components: - - type: Transform - pos: 4.5,6.5 - parent: 2 - uid: 1463 components: - type: Transform @@ -105479,25 +116482,10 @@ entities: - type: Transform pos: 4.5,3.5 parent: 2 - - uid: 1650 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 2 - - uid: 1652 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 2 - - uid: 1669 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 2 - - uid: 1893 + - uid: 2484 components: - type: Transform - pos: 6.5,-6.5 + pos: 10.5,5.5 parent: 2 - uid: 4475 components: @@ -105524,6 +116512,76 @@ entities: - type: Transform pos: 41.5,-46.5 parent: 2 + - uid: 6351 + components: + - type: Transform + pos: 8.5,1.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: 6.5,-9.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: 12018 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 12517 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + pos: 9.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 @@ -105546,10 +116604,10 @@ entities: parent: 2 - proto: ReinforcedWindow entities: - - uid: 16 + - uid: 21 components: - type: Transform - pos: -48.5,-31.5 + pos: -31.5,-71.5 parent: 2 - uid: 28 components: @@ -105581,15 +116639,21 @@ entities: - type: Transform pos: -5.5,9.5 parent: 2 - - uid: 136 + - uid: 150 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 2 + - uid: 181 components: - type: Transform - pos: 30.5,31.5 + pos: -35.5,-68.5 parent: 2 - - uid: 150 + - uid: 196 components: - type: Transform - pos: -22.5,-10.5 + rot: -1.5707963267948966 rad + pos: 38.5,26.5 parent: 2 - uid: 211 components: @@ -105606,6 +116670,11 @@ entities: - type: Transform pos: -42.5,3.5 parent: 2 + - uid: 244 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 - uid: 247 components: - type: Transform @@ -105616,20 +116685,10 @@ entities: - type: Transform pos: -19.5,-7.5 parent: 2 - - uid: 260 - components: - - type: Transform - pos: -4.5,-50.5 - parent: 2 - - uid: 263 - components: - - type: Transform - pos: -3.5,-50.5 - parent: 2 - - uid: 279 + - uid: 280 components: - type: Transform - pos: 12.5,-6.5 + pos: -27.5,-20.5 parent: 2 - uid: 291 components: @@ -105641,21 +116700,16 @@ entities: - type: Transform pos: -24.5,8.5 parent: 2 - - uid: 299 + - uid: 296 components: - type: Transform - pos: -30.5,-0.5 + pos: -31.5,-76.5 parent: 2 - uid: 332 components: - type: Transform pos: -27.5,-3.5 parent: 2 - - uid: 333 - components: - - type: Transform - pos: -34.5,4.5 - parent: 2 - uid: 367 components: - type: Transform @@ -105671,25 +116725,35 @@ entities: - type: Transform pos: -37.5,1.5 parent: 2 + - uid: 515 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 - uid: 522 components: - type: Transform pos: 33.5,-33.5 parent: 2 + - uid: 574 + components: + - type: Transform + pos: -31.5,-75.5 + parent: 2 - uid: 597 components: - type: Transform - pos: 28.5,14.5 + pos: -50.5,-29.5 parent: 2 - uid: 604 components: - type: Transform pos: 10.5,24.5 parent: 2 - - uid: 616 + - uid: 619 components: - type: Transform - pos: 12.5,-5.5 + pos: 3.5,-84.5 parent: 2 - uid: 640 components: @@ -105721,6 +116785,16 @@ entities: - type: Transform pos: -4.5,19.5 parent: 2 + - uid: 712 + components: + - type: Transform + pos: -31.5,-77.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -36.5,-72.5 + parent: 2 - uid: 742 components: - type: Transform @@ -105751,16 +116825,6 @@ entities: - type: Transform pos: 1.5,14.5 parent: 2 - - uid: 907 - components: - - type: Transform - pos: -31.5,-62.5 - parent: 2 - - uid: 946 - components: - - type: Transform - pos: -34.5,-1.5 - parent: 2 - uid: 960 components: - type: Transform @@ -105776,11 +116840,6 @@ entities: - type: Transform pos: -3.5,20.5 parent: 2 - - uid: 982 - components: - - type: Transform - pos: 18.5,21.5 - parent: 2 - uid: 1036 components: - type: Transform @@ -105811,26 +116870,16 @@ entities: - type: Transform pos: -4.5,23.5 parent: 2 - - uid: 1124 - components: - - type: Transform - pos: 10.5,9.5 - parent: 2 - uid: 1141 components: - type: Transform - pos: -26.5,-16.5 + pos: -55.5,-55.5 parent: 2 - uid: 1142 components: - type: Transform pos: 60.5,-37.5 parent: 2 - - uid: 1152 - components: - - type: Transform - pos: 18.5,22.5 - parent: 2 - uid: 1160 components: - type: Transform @@ -105841,11 +116890,6 @@ entities: - type: Transform pos: -31.5,7.5 parent: 2 - - uid: 1164 - components: - - type: Transform - pos: 18.5,25.5 - parent: 2 - uid: 1189 components: - type: Transform @@ -105861,6 +116905,11 @@ entities: - type: Transform pos: 2.5,1.5 parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 5.5,-54.5 + parent: 2 - uid: 1375 components: - type: Transform @@ -105886,6 +116935,11 @@ entities: - type: Transform pos: -7.5,1.5 parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 - uid: 1495 components: - type: Transform @@ -105926,15 +116980,20 @@ entities: - type: Transform pos: 3.5,9.5 parent: 2 + - uid: 1518 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 - uid: 1519 components: - type: Transform pos: 41.5,-23.5 parent: 2 - - uid: 1532 + - uid: 1527 components: - type: Transform - pos: -6.5,-64.5 + pos: -20.5,-12.5 parent: 2 - uid: 1547 components: @@ -105986,21 +117045,33 @@ entities: - type: Transform pos: 34.5,-47.5 parent: 2 - - uid: 1676 + - uid: 1654 components: - type: Transform - pos: 6.5,-0.5 + pos: -29.5,-43.5 parent: 2 - - uid: 1725 + - uid: 1664 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 1712 components: - type: Transform - pos: 30.5,37.5 + rot: 3.141592653589793 rad + pos: 15.5,28.5 parent: 2 - uid: 1747 components: - type: Transform pos: 0.5,9.5 parent: 2 + - uid: 1800 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,27.5 + parent: 2 - uid: 1832 components: - type: Transform @@ -106011,15 +117082,11 @@ entities: - type: Transform pos: -21.5,-32.5 parent: 2 - - uid: 1886 - components: - - type: Transform - pos: -0.5,-11.5 - parent: 2 - - uid: 1890 + - uid: 1891 components: - type: Transform - pos: -4.5,-11.5 + rot: -1.5707963267948966 rad + pos: -35.5,13.5 parent: 2 - uid: 1900 components: @@ -106031,61 +117098,58 @@ entities: - type: Transform pos: -10.5,-9.5 parent: 2 - - uid: 1958 + - uid: 1916 components: - type: Transform - pos: -21.5,-33.5 + rot: -1.5707963267948966 rad + pos: 35.5,27.5 parent: 2 - - uid: 2081 + - uid: 1958 components: - type: Transform - pos: -6.5,-53.5 + pos: -21.5,-33.5 parent: 2 - - uid: 2178 + - uid: 2041 components: - type: Transform - pos: -6.5,-22.5 + pos: -23.5,-12.5 parent: 2 - - uid: 2294 + - uid: 2065 components: - type: Transform - pos: 30.5,32.5 + pos: -3.5,-59.5 parent: 2 - - uid: 2304 + - uid: 2178 components: - type: Transform - pos: 30.5,36.5 + pos: -6.5,-22.5 parent: 2 - - uid: 2306 + - uid: 2329 components: - type: Transform - pos: 30.5,33.5 + rot: -1.5707963267948966 rad + pos: 34.5,27.5 parent: 2 - - uid: 2310 + - uid: 2352 components: - type: Transform - pos: 30.5,38.5 + pos: 3.5,-5.5 parent: 2 - - uid: 2333 + - uid: 2397 components: - type: Transform - pos: -53.5,-32.5 + pos: -5.5,-57.5 parent: 2 - - uid: 2410 + - uid: 2548 components: - type: Transform - pos: -2.5,-11.5 + pos: -36.5,-79.5 parent: 2 - uid: 2552 components: - type: Transform pos: -9.5,-23.5 parent: 2 - - uid: 2583 - components: - - type: Transform - pos: -6.5,-54.5 - parent: 2 - uid: 2600 components: - type: Transform @@ -106101,20 +117165,20 @@ entities: - type: Transform pos: -22.5,30.5 parent: 2 - - uid: 2698 + - uid: 2701 components: - type: Transform - pos: -33.5,-3.5 + pos: -33.5,1.5 parent: 2 - - uid: 2701 + - uid: 2747 components: - type: Transform - pos: -33.5,1.5 + pos: -36.5,-68.5 parent: 2 - - uid: 2773 + - uid: 2766 components: - type: Transform - pos: -51.5,-35.5 + pos: -36.5,-73.5 parent: 2 - uid: 2869 components: @@ -106136,10 +117200,15 @@ entities: - type: Transform pos: 38.5,-51.5 parent: 2 - - uid: 2967 + - uid: 2966 components: - type: Transform - pos: -39.5,-35.5 + pos: -30.5,-79.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 9.5,-5.5 parent: 2 - uid: 3051 components: @@ -106156,30 +117225,25 @@ entities: - type: Transform pos: 40.5,-41.5 parent: 2 - - uid: 3097 - components: - - type: Transform - pos: 6.5,-10.5 - parent: 2 - uid: 3102 components: - type: Transform pos: 72.5,-67.5 parent: 2 - - uid: 3147 + - uid: 3121 components: - type: Transform - pos: -21.5,31.5 + pos: -9.5,-69.5 parent: 2 - - uid: 3187 + - uid: 3147 components: - type: Transform - pos: -32.5,-64.5 + pos: -21.5,31.5 parent: 2 - - uid: 3188 + - uid: 3148 components: - type: Transform - pos: -48.5,-27.5 + pos: -42.5,-33.5 parent: 2 - uid: 3202 components: @@ -106191,21 +117255,51 @@ entities: - type: Transform pos: -17.5,31.5 parent: 2 + - uid: 3262 + components: + - type: Transform + pos: -36.5,-62.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: -36.5,-63.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: -44.5,-33.5 + parent: 2 - uid: 3387 components: - type: Transform pos: 65.5,-84.5 parent: 2 - - uid: 3518 + - uid: 3451 components: - type: Transform - pos: -43.5,-19.5 + pos: -36.5,-64.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 3549 + components: + - type: Transform + pos: -38.5,-30.5 parent: 2 - uid: 3562 components: - type: Transform pos: 60.5,-75.5 parent: 2 + - uid: 3590 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 - uid: 3605 components: - type: Transform @@ -106216,11 +117310,41 @@ entities: - type: Transform pos: 40.5,-66.5 parent: 2 + - uid: 3725 + components: + - type: Transform + pos: -9.5,-74.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: -9.5,-67.5 + parent: 2 + - uid: 3791 + components: + - type: Transform + pos: -9.5,-68.5 + parent: 2 + - uid: 3799 + components: + - 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 pos: -21.5,29.5 parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 12.5,-75.5 + parent: 2 - uid: 3929 components: - type: Transform @@ -106236,15 +117360,20 @@ entities: - type: Transform pos: 75.5,-63.5 parent: 2 + - uid: 4108 + components: + - type: Transform + pos: -30.5,-80.5 + parent: 2 - uid: 4120 components: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 4171 + - uid: 4154 components: - type: Transform - pos: 2.5,-5.5 + pos: 2.5,-58.5 parent: 2 - uid: 4206 components: @@ -106306,25 +117435,41 @@ entities: - type: Transform pos: 30.5,-41.5 parent: 2 + - uid: 4494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,11.5 + parent: 2 - uid: 4513 components: - type: Transform pos: 75.5,-61.5 parent: 2 - - uid: 4670 + - uid: 4577 components: - type: Transform - pos: -37.5,-19.5 + pos: -26.5,-17.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: -36.5,-76.5 parent: 2 - uid: 4680 components: - type: Transform pos: 47.5,-55.5 parent: 2 - - uid: 4719 + - uid: 4683 components: - type: Transform - pos: -27.5,-64.5 + pos: -37.5,-76.5 + parent: 2 + - uid: 4686 + components: + - type: Transform + pos: -35.5,-76.5 parent: 2 - uid: 4724 components: @@ -106341,30 +117486,26 @@ entities: - type: Transform pos: 49.5,-86.5 parent: 2 - - uid: 4764 - components: - - type: Transform - pos: -34.5,-28.5 - parent: 2 - - uid: 4781 + - uid: 4741 components: - type: Transform - pos: -41.5,-21.5 + pos: -26.5,-56.5 parent: 2 - - uid: 4788 + - uid: 4745 components: - type: Transform - pos: -41.5,-23.5 + rot: 3.141592653589793 rad + pos: 51.5,20.5 parent: 2 - - uid: 4798 + - uid: 4754 components: - type: Transform - pos: -25.5,-27.5 + pos: -35.5,4.5 parent: 2 - - uid: 4799 + - uid: 4809 components: - type: Transform - pos: -25.5,-26.5 + pos: -31.5,-47.5 parent: 2 - uid: 4829 components: @@ -106376,25 +117517,25 @@ entities: - type: Transform pos: -60.5,-17.5 parent: 2 - - uid: 4853 + - uid: 4847 components: - type: Transform - pos: -30.5,-32.5 + pos: -33.5,-38.5 parent: 2 - - uid: 4860 + - uid: 4894 components: - type: Transform - pos: -46.5,-22.5 + pos: -31.5,-44.5 parent: 2 - - uid: 4906 + - uid: 4901 components: - type: Transform - pos: -37.5,-28.5 + pos: -26.5,-20.5 parent: 2 - - uid: 4912 + - uid: 4903 components: - type: Transform - pos: 6.5,0.5 + pos: -31.5,-45.5 parent: 2 - uid: 4919 components: @@ -106411,35 +117552,20 @@ entities: - type: Transform pos: -16.5,31.5 parent: 2 - - uid: 4964 - components: - - type: Transform - pos: -39.5,-19.5 - parent: 2 - - uid: 4987 - components: - - type: Transform - pos: 35.5,31.5 - parent: 2 - - uid: 5011 - components: - - type: Transform - pos: -38.5,-19.5 - parent: 2 - - uid: 5012 + - uid: 4993 components: - type: Transform - pos: -35.5,-19.5 + pos: -36.5,-71.5 parent: 2 - - uid: 5013 + - uid: 4995 components: - type: Transform - pos: -34.5,-19.5 + pos: -28.5,-43.5 parent: 2 - - uid: 5014 + - uid: 5036 components: - type: Transform - pos: -33.5,-19.5 + pos: -31.5,-48.5 parent: 2 - uid: 5037 components: @@ -106476,11 +117602,6 @@ entities: - type: Transform pos: -7.5,16.5 parent: 2 - - uid: 5129 - components: - - type: Transform - pos: -25.5,-56.5 - parent: 2 - uid: 5132 components: - type: Transform @@ -106506,6 +117627,31 @@ entities: - type: Transform pos: -63.5,-7.5 parent: 2 + - uid: 5208 + components: + - type: Transform + pos: -38.5,-58.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 5233 + components: + - type: Transform + pos: -37.5,-68.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + pos: -31.5,-73.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: -31.5,-72.5 + parent: 2 - uid: 5355 components: - type: Transform @@ -106541,30 +117687,22 @@ entities: - type: Transform pos: -31.5,25.5 parent: 2 - - uid: 5525 - components: - - type: Transform - pos: 25.5,-5.5 - parent: 2 - - uid: 5527 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 5528 + - uid: 5490 components: - type: Transform - pos: 26.5,-5.5 + rot: 3.141592653589793 rad + pos: 46.5,24.5 parent: 2 - - uid: 5537 + - uid: 5508 components: - type: Transform - pos: 21.5,-5.5 + rot: 3.141592653589793 rad + pos: 46.5,23.5 parent: 2 - - uid: 5543 + - uid: 5527 components: - type: Transform - pos: 27.5,-5.5 + pos: -34.5,-3.5 parent: 2 - uid: 5554 components: @@ -106591,6 +117729,11 @@ entities: - type: Transform pos: 28.5,-36.5 parent: 2 + - uid: 5575 + components: + - type: Transform + pos: -39.5,-58.5 + parent: 2 - uid: 5599 components: - type: Transform @@ -106616,21 +117759,6 @@ entities: - type: Transform pos: 26.5,-56.5 parent: 2 - - uid: 5660 - components: - - type: Transform - pos: -5.5,-50.5 - parent: 2 - - uid: 5665 - components: - - type: Transform - pos: -44.5,-19.5 - parent: 2 - - uid: 5667 - components: - - type: Transform - pos: -46.5,-21.5 - parent: 2 - uid: 5684 components: - type: Transform @@ -106651,150 +117779,107 @@ entities: - type: Transform pos: 45.5,-63.5 parent: 2 - - uid: 5739 - components: - - type: Transform - pos: -28.5,-32.5 - parent: 2 - - uid: 5791 - components: - - type: Transform - pos: 3.5,-5.5 - parent: 2 - - uid: 5817 - components: - - type: Transform - pos: 4.5,-5.5 - parent: 2 - - uid: 5826 + - uid: 5749 components: - type: Transform - pos: 28.5,28.5 + pos: -25.5,-46.5 parent: 2 - uid: 5837 components: - type: Transform pos: 35.5,-47.5 parent: 2 - - uid: 5842 - components: - - type: Transform - pos: 6.5,-9.5 - parent: 2 - - uid: 5850 - components: - - type: Transform - pos: 35.5,36.5 - parent: 2 - - uid: 5851 - components: - - type: Transform - pos: 35.5,32.5 - parent: 2 - - uid: 5853 + - uid: 5844 components: - type: Transform - pos: 35.5,33.5 + pos: -33.5,-83.5 parent: 2 - - uid: 5856 + - uid: 5863 components: - type: Transform - pos: 35.5,41.5 + pos: 20.5,-17.5 parent: 2 - - uid: 5858 + - uid: 5867 components: - type: Transform - pos: 28.5,25.5 + rot: 3.141592653589793 rad + pos: 50.5,20.5 parent: 2 - - uid: 5880 + - uid: 5871 components: - type: Transform - pos: 34.5,36.5 + rot: 3.141592653589793 rad + pos: 49.5,20.5 parent: 2 - uid: 5889 components: - type: Transform pos: -14.5,-18.5 parent: 2 - - uid: 5899 - components: - - type: Transform - pos: 34.5,28.5 - parent: 2 - - uid: 6083 - components: - - type: Transform - pos: 44.5,-63.5 - parent: 2 - - uid: 6119 - components: - - type: Transform - pos: 32.5,43.5 - parent: 2 - - uid: 6141 + - uid: 5902 components: - type: Transform - pos: 36.5,36.5 + pos: -1.5,-50.5 parent: 2 - - uid: 6142 + - uid: 5950 components: - type: Transform - pos: 36.5,28.5 + pos: 23.5,24.5 parent: 2 - - uid: 6144 + - uid: 6031 components: - type: Transform - pos: 35.5,38.5 + pos: 27.5,9.5 parent: 2 - - uid: 6146 + - uid: 6083 components: - type: Transform - pos: 35.5,28.5 + pos: 44.5,-63.5 parent: 2 - - uid: 6265 + - uid: 6117 components: - type: Transform - pos: 41.5,-60.5 + pos: 8.5,-50.5 parent: 2 - - uid: 6316 + - uid: 6167 components: - type: Transform - pos: -6.5,-65.5 + pos: -33.5,-82.5 parent: 2 - - uid: 6319 + - uid: 6202 components: - type: Transform - pos: -3.5,-55.5 + pos: -5.5,-50.5 parent: 2 - - uid: 6324 + - uid: 6220 components: - type: Transform - pos: 8.5,-67.5 + pos: 4.5,-50.5 parent: 2 - - uid: 6328 + - uid: 6221 components: - type: Transform - pos: 13.5,-71.5 + pos: -33.5,-81.5 parent: 2 - - uid: 6330 + - uid: 6255 components: - type: Transform - pos: 9.5,-71.5 + pos: 10.5,-5.5 parent: 2 - - uid: 6332 + - uid: 6265 components: - type: Transform - pos: -6.5,-71.5 + pos: 41.5,-60.5 parent: 2 - - uid: 6344 + - uid: 6347 components: - type: Transform - pos: -5.5,-67.5 + pos: 4.5,-10.5 parent: 2 - - uid: 6352 + - uid: 6348 components: - type: Transform - pos: -5.5,-62.5 + pos: 7.5,-54.5 parent: 2 - uid: 6381 components: @@ -106806,695 +117891,360 @@ entities: - type: Transform pos: 45.5,0.5 parent: 2 - - uid: 6383 - components: - - type: Transform - pos: 6.5,-50.5 - parent: 2 - uid: 6385 components: - type: Transform - pos: 7.5,-50.5 - parent: 2 - - uid: 6390 - components: - - type: Transform - pos: 8.5,-50.5 - parent: 2 - - uid: 6394 - components: - - type: Transform - pos: -3.5,-54.5 - parent: 2 - - uid: 6399 - components: - - type: Transform - pos: 8.5,-62.5 - parent: 2 - - uid: 6418 - components: - - type: Transform - pos: -3.5,-56.5 - parent: 2 - - uid: 6420 - components: - - type: Transform - pos: -19.5,-57.5 - parent: 2 - - uid: 6430 - components: - - type: Transform - pos: 6.5,-54.5 - parent: 2 - - uid: 6431 - components: - - type: Transform - pos: 1.5,-51.5 - parent: 2 - - uid: 6433 - components: - - type: Transform - pos: 2.5,-51.5 - parent: 2 - - uid: 6439 - components: - - type: Transform - pos: 6.5,-55.5 - parent: 2 - - uid: 6443 - components: - - type: Transform - pos: 3.5,-51.5 - parent: 2 - - uid: 6448 - components: - - type: Transform - pos: 6.5,-56.5 - parent: 2 - - uid: 6453 - components: - - type: Transform - pos: -0.5,-51.5 - parent: 2 - - uid: 6455 - components: - - type: Transform - pos: 0.5,-51.5 - parent: 2 - - uid: 6456 - components: - - type: Transform - pos: -1.5,-51.5 - parent: 2 - - uid: 6459 - components: - - type: Transform - pos: -10.5,-71.5 - parent: 2 - - uid: 6460 - components: - - type: Transform - pos: 4.5,-51.5 - parent: 2 - - uid: 6485 - components: - - type: Transform - pos: -18.5,-58.5 - parent: 2 - - uid: 6486 - components: - - type: Transform - pos: -15.5,-58.5 - parent: 2 - - uid: 6487 - components: - - type: Transform - pos: -17.5,-58.5 - parent: 2 - - uid: 6489 - components: - - type: Transform - pos: -19.5,-58.5 - parent: 2 - - uid: 6490 - components: - - type: Transform - pos: -16.5,-58.5 - parent: 2 - - uid: 6491 - components: - - type: Transform - pos: -15.5,-57.5 - parent: 2 - - uid: 6508 - components: - - type: Transform - pos: 13.5,-69.5 - parent: 2 - - uid: 6510 - components: - - type: Transform - pos: 9.5,-64.5 - parent: 2 - - uid: 6511 - components: - - type: Transform - pos: 9.5,-65.5 - parent: 2 - - uid: 6515 - components: - - type: Transform - pos: -10.5,-66.5 - parent: 2 - - uid: 6516 - components: - - type: Transform - pos: -10.5,-67.5 - parent: 2 - - uid: 6517 - components: - - type: Transform - pos: -10.5,-68.5 - parent: 2 - - uid: 6518 - components: - - type: Transform - pos: -10.5,-69.5 - parent: 2 - - uid: 6519 - components: - - type: Transform - pos: -10.5,-63.5 - parent: 2 - - uid: 6520 - components: - - type: Transform - pos: -10.5,-62.5 - parent: 2 - - uid: 6521 - components: - - type: Transform - pos: -10.5,-61.5 - parent: 2 - - uid: 6522 - components: - - type: Transform - pos: -10.5,-60.5 - parent: 2 - - uid: 6523 - components: - - type: Transform - pos: 13.5,-67.5 - parent: 2 - - uid: 6525 - components: - - type: Transform - pos: 13.5,-68.5 - parent: 2 - - uid: 6528 - components: - - type: Transform - pos: 13.5,-63.5 - parent: 2 - - uid: 6529 - components: - - type: Transform - pos: 13.5,-62.5 - parent: 2 - - uid: 6530 - components: - - type: Transform - pos: 13.5,-61.5 - parent: 2 - - uid: 6531 - components: - - type: Transform - pos: 13.5,-60.5 - parent: 2 - - uid: 6621 - components: - - type: Transform - pos: 34.5,-52.5 - parent: 2 - - uid: 6622 - components: - - type: Transform - pos: 35.5,-52.5 - parent: 2 - - uid: 6625 - components: - - type: Transform - pos: 30.5,-51.5 - parent: 2 - - uid: 6626 - components: - - type: Transform - pos: 31.5,-51.5 - parent: 2 - - uid: 6635 - components: - - type: Transform - pos: 41.5,-59.5 - parent: 2 - - uid: 6658 - components: - - type: Transform - pos: 42.5,-19.5 - parent: 2 - - uid: 6735 - components: - - type: Transform - pos: 32.5,-35.5 - parent: 2 - - uid: 6736 - components: - - type: Transform - pos: 32.5,-33.5 - parent: 2 - - uid: 6825 - components: - - type: Transform - pos: 24.5,-29.5 - parent: 2 - - uid: 6871 - components: - - type: Transform - pos: -24.5,1.5 - parent: 2 - - uid: 6880 - components: - - type: Transform - pos: -45.5,-56.5 - parent: 2 - - uid: 6881 - components: - - type: Transform - pos: -7.5,-23.5 - parent: 2 - - uid: 6926 - components: - - type: Transform - pos: 46.5,-84.5 - parent: 2 - - uid: 6945 - components: - - type: Transform - pos: 45.5,-78.5 - parent: 2 - - uid: 6967 - components: - - type: Transform - pos: 45.5,-1.5 - parent: 2 - - uid: 6976 - components: - - type: Transform - pos: 63.5,-43.5 - parent: 2 - - uid: 6983 - components: - - type: Transform - pos: -26.5,1.5 - parent: 2 - - uid: 7039 - components: - - type: Transform - pos: -14.5,-20.5 - parent: 2 - - uid: 7062 - components: - - type: Transform - pos: 49.5,-59.5 - parent: 2 - - uid: 7067 - components: - - type: Transform - pos: 20.5,-16.5 - parent: 2 - - uid: 7080 - components: - - type: Transform - pos: -46.5,-56.5 - parent: 2 - - uid: 7125 - components: - - type: Transform - pos: 35.5,25.5 - parent: 2 - - uid: 7130 - components: - - type: Transform - pos: 28.5,27.5 - parent: 2 - - uid: 7132 - components: - - type: Transform - pos: 28.5,24.5 - parent: 2 - - uid: 7137 - components: - - type: Transform - pos: 28.5,23.5 - parent: 2 - - uid: 7138 - components: - - type: Transform - pos: 35.5,24.5 - parent: 2 - - uid: 7139 - components: - - type: Transform - pos: 35.5,23.5 + pos: 1.5,-82.5 parent: 2 - - uid: 7140 + - uid: 6401 components: - type: Transform - pos: 35.5,42.5 + pos: -0.5,-83.5 parent: 2 - - uid: 7143 + - uid: 6420 components: - type: Transform - pos: 34.5,44.5 + pos: -19.5,-57.5 parent: 2 - - uid: 7145 + - uid: 6426 components: - type: Transform - pos: 30.5,44.5 + pos: -9.5,-75.5 parent: 2 - - uid: 7148 + - uid: 6431 components: - type: Transform - pos: 29.5,42.5 + pos: 1.5,-54.5 parent: 2 - - uid: 7149 + - uid: 6456 components: - type: Transform - pos: 29.5,41.5 + pos: 2.5,-82.5 parent: 2 - - uid: 7153 + - uid: 6457 components: - type: Transform - pos: 32.5,44.5 + pos: 0.5,-83.5 parent: 2 - - uid: 7156 + - uid: 6485 components: - type: Transform - pos: 32.5,45.5 + pos: -18.5,-58.5 parent: 2 - - uid: 7157 + - uid: 6486 components: - type: Transform - pos: -27.5,-63.5 + pos: -15.5,-58.5 parent: 2 - - uid: 7171 + - uid: 6487 components: - type: Transform - pos: -27.5,-60.5 + pos: -17.5,-58.5 parent: 2 - - uid: 7172 + - uid: 6489 components: - type: Transform - pos: -40.5,-32.5 + pos: -19.5,-58.5 parent: 2 - - uid: 7186 + - uid: 6490 components: - type: Transform - pos: -27.5,-61.5 + pos: -16.5,-58.5 parent: 2 - - uid: 7188 + - uid: 6491 components: - type: Transform - pos: -51.5,-25.5 + pos: -15.5,-57.5 parent: 2 - - uid: 7197 + - uid: 6519 components: - type: Transform - pos: -32.5,-60.5 + pos: -10.5,-63.5 parent: 2 - - uid: 7212 + - uid: 6520 components: - type: Transform - pos: 30.5,11.5 + pos: -10.5,-62.5 parent: 2 - - uid: 7267 + - uid: 6521 components: - type: Transform - pos: -44.5,-56.5 + pos: -10.5,-61.5 parent: 2 - - uid: 7275 + - uid: 6522 components: - type: Transform - pos: 34.5,1.5 + pos: -10.5,-60.5 parent: 2 - - uid: 7292 + - uid: 6557 components: - type: Transform - pos: 51.5,10.5 + pos: 4.5,-12.5 parent: 2 - - uid: 7328 + - uid: 6595 components: - type: Transform - pos: 44.5,13.5 + pos: -31.5,-3.5 parent: 2 - - uid: 7330 + - uid: 6621 components: - type: Transform - pos: 42.5,13.5 + pos: 34.5,-52.5 parent: 2 - - uid: 7332 + - uid: 6622 components: - type: Transform - pos: 43.5,13.5 + pos: 35.5,-52.5 parent: 2 - - uid: 7350 + - uid: 6625 components: - type: Transform - pos: -50.5,-25.5 + pos: 30.5,-51.5 parent: 2 - - uid: 7353 + - uid: 6626 components: - type: Transform - pos: 49.5,-87.5 + pos: 31.5,-51.5 parent: 2 - - uid: 7360 + - uid: 6635 components: - type: Transform - pos: 48.5,13.5 + pos: 41.5,-59.5 parent: 2 - - uid: 7361 + - uid: 6637 components: - type: Transform - pos: 49.5,13.5 + pos: -39.5,-13.5 parent: 2 - - uid: 7362 + - uid: 6638 components: - type: Transform - pos: 50.5,13.5 + pos: -40.5,-14.5 parent: 2 - - uid: 7364 + - uid: 6643 components: - type: Transform - pos: 51.5,12.5 + pos: -40.5,-15.5 parent: 2 - - uid: 7365 + - uid: 6658 components: - type: Transform - pos: 51.5,11.5 + pos: 42.5,-19.5 parent: 2 - - uid: 7400 + - uid: 6735 components: - type: Transform - pos: 38.5,-66.5 + pos: 32.5,-35.5 parent: 2 - - uid: 7405 + - uid: 6736 components: - type: Transform - pos: 47.5,6.5 + pos: 32.5,-33.5 parent: 2 - - uid: 7406 + - uid: 6825 components: - type: Transform - pos: 46.5,6.5 + pos: 24.5,-29.5 parent: 2 - - uid: 7407 + - uid: 6853 components: - type: Transform - pos: 45.5,6.5 + pos: 33.5,22.5 parent: 2 - - uid: 7480 + - uid: 6871 components: - type: Transform - pos: 74.5,-47.5 + pos: -24.5,1.5 parent: 2 - - uid: 7511 + - uid: 6881 components: - type: Transform - pos: 13.5,-66.5 + pos: -7.5,-23.5 parent: 2 - - uid: 7539 + - uid: 6922 components: - type: Transform - pos: -14.5,-45.5 + pos: -38.5,-29.5 parent: 2 - - uid: 7541 + - uid: 6926 components: - type: Transform - pos: -12.5,-45.5 + pos: 46.5,-84.5 parent: 2 - - uid: 7548 + - uid: 6945 components: - type: Transform - pos: -16.5,-45.5 + pos: 45.5,-78.5 parent: 2 - - uid: 7626 + - uid: 6967 components: - type: Transform - pos: 30.5,15.5 + pos: 45.5,-1.5 parent: 2 - - uid: 7627 + - uid: 6976 components: - type: Transform - pos: 30.5,16.5 + pos: 63.5,-43.5 parent: 2 - - uid: 7646 + - uid: 6983 components: - type: Transform - pos: -36.5,19.5 + pos: -26.5,1.5 parent: 2 - - uid: 7678 + - uid: 7039 components: - type: Transform - pos: -26.5,14.5 + pos: -14.5,-20.5 parent: 2 - - uid: 7729 + - uid: 7062 components: - type: Transform - pos: -14.5,-7.5 + pos: 49.5,-59.5 parent: 2 - - uid: 7730 + - uid: 7212 components: - type: Transform - pos: -14.5,-8.5 + pos: 30.5,11.5 parent: 2 - - uid: 7765 + - uid: 7275 components: - type: Transform - pos: -53.5,-28.5 + pos: 34.5,1.5 parent: 2 - - uid: 7817 + - uid: 7292 components: - type: Transform - pos: -48.5,-28.5 + pos: 51.5,10.5 parent: 2 - - uid: 7818 + - uid: 7353 components: - type: Transform - pos: -53.5,-33.5 + pos: 49.5,-87.5 parent: 2 - - uid: 7828 + - uid: 7360 components: - type: Transform - pos: -9.5,14.5 + pos: 48.5,13.5 parent: 2 - - uid: 7829 + - uid: 7361 components: - type: Transform - pos: -31.5,17.5 + pos: 49.5,13.5 parent: 2 - - uid: 7833 + - uid: 7365 components: - type: Transform - pos: -50.5,-48.5 + pos: 51.5,11.5 parent: 2 - - uid: 7837 + - uid: 7400 components: - type: Transform - pos: -53.5,-46.5 + pos: 38.5,-66.5 parent: 2 - - uid: 7946 + - uid: 7405 components: - type: Transform - pos: -53.5,-27.5 + pos: 47.5,6.5 parent: 2 - - uid: 7951 + - uid: 7406 components: - type: Transform - pos: -23.5,11.5 + pos: 46.5,6.5 parent: 2 - - uid: 7952 + - uid: 7407 components: - type: Transform - pos: -48.5,-45.5 + pos: 45.5,6.5 parent: 2 - - uid: 7954 + - uid: 7480 components: - type: Transform - pos: -50.5,-35.5 + pos: 74.5,-47.5 parent: 2 - - uid: 7973 + - uid: 7539 components: - type: Transform - pos: -32.5,-63.5 + pos: -14.5,-45.5 parent: 2 - - uid: 8040 + - uid: 7541 components: - type: Transform - pos: -32.5,-61.5 + pos: -12.5,-45.5 parent: 2 - - uid: 8060 + - uid: 7543 components: - type: Transform - pos: -48.5,-46.5 + pos: 3.5,-58.5 parent: 2 - - uid: 8068 + - uid: 7548 components: - type: Transform - pos: -27.5,-58.5 + pos: -16.5,-45.5 parent: 2 - - uid: 8074 + - uid: 7559 components: - type: Transform - pos: -27.5,-57.5 + pos: 7.5,-59.5 parent: 2 - - uid: 8091 + - uid: 7561 components: - type: Transform - pos: -28.5,-62.5 + pos: -59.5,-52.5 parent: 2 - - uid: 8117 + - uid: 7580 components: - type: Transform - pos: -53.5,-40.5 + pos: 6.5,-59.5 parent: 2 - - uid: 8125 + - uid: 7646 components: - type: Transform - pos: -51.5,-38.5 + pos: -36.5,19.5 parent: 2 - - uid: 8126 + - uid: 7678 components: - type: Transform - pos: -50.5,-38.5 + pos: -26.5,14.5 parent: 2 - - uid: 8129 + - uid: 7694 components: - type: Transform - pos: -53.5,-41.5 + pos: -29.5,-14.5 parent: 2 - - uid: 8165 + - uid: 7729 components: - type: Transform - pos: -51.5,-48.5 + pos: -14.5,-7.5 parent: 2 - - uid: 8170 + - uid: 7730 components: - type: Transform - pos: -53.5,-45.5 + pos: -14.5,-8.5 parent: 2 - - uid: 8178 + - uid: 7828 components: - type: Transform - pos: -41.5,-29.5 + pos: -9.5,14.5 parent: 2 - - uid: 8183 + - uid: 7829 components: - type: Transform - pos: -51.5,-44.5 + pos: -31.5,17.5 parent: 2 - - uid: 8228 + - uid: 7951 components: - type: Transform - pos: -46.5,-23.5 + pos: -23.5,11.5 parent: 2 - - uid: 8242 + - uid: 8243 components: - type: Transform - pos: -30.5,-46.5 + pos: -36.5,-80.5 parent: 2 - - uid: 8243 + - uid: 8244 components: - type: Transform - pos: -29.5,-44.5 + pos: -25.5,-56.5 parent: 2 - uid: 8279 components: @@ -107541,6 +118291,11 @@ entities: - type: Transform pos: 32.5,-28.5 parent: 2 + - uid: 8449 + components: + - type: Transform + pos: 3.5,-83.5 + parent: 2 - uid: 8545 components: - type: Transform @@ -107551,6 +118306,17 @@ entities: - type: Transform pos: 49.5,-5.5 parent: 2 + - uid: 8571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,25.5 + parent: 2 + - uid: 8583 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 - uid: 8618 components: - type: Transform @@ -107586,6 +118352,11 @@ 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 @@ -107661,26 +118432,11 @@ entities: - type: Transform pos: 31.5,-59.5 parent: 2 - - uid: 8905 - components: - - type: Transform - pos: 13.5,-2.5 - parent: 2 - uid: 9019 components: - type: Transform pos: -29.5,25.5 parent: 2 - - uid: 9084 - components: - - type: Transform - pos: 13.5,1.5 - parent: 2 - - uid: 9085 - components: - - type: Transform - pos: 13.5,-1.5 - parent: 2 - uid: 9108 components: - type: Transform @@ -107696,51 +118452,36 @@ entities: - type: Transform pos: 2.5,9.5 parent: 2 - - uid: 9267 - components: - - type: Transform - pos: 13.5,2.5 - parent: 2 - - uid: 9273 - components: - - type: Transform - pos: 43.5,-72.5 - parent: 2 - - uid: 9274 + - uid: 9258 components: - type: Transform - pos: 43.5,-71.5 + pos: -4.5,-59.5 parent: 2 - - uid: 9283 + - uid: 9264 components: - type: Transform - pos: 13.5,-0.5 + pos: -33.5,-25.5 parent: 2 - - uid: 9285 + - uid: 9268 components: - type: Transform - pos: 19.5,3.5 + pos: 8.5,-78.5 parent: 2 - - uid: 9286 + - uid: 9273 components: - type: Transform - pos: 19.5,2.5 + pos: 43.5,-72.5 parent: 2 - - uid: 9290 + - uid: 9274 components: - type: Transform - pos: 19.5,-0.5 + pos: 43.5,-71.5 parent: 2 - uid: 9296 components: - type: Transform pos: 43.5,-70.5 parent: 2 - - uid: 9310 - components: - - type: Transform - pos: -49.5,-53.5 - parent: 2 - uid: 9383 components: - type: Transform @@ -107761,6 +118502,26 @@ entities: - type: Transform pos: 46.5,-89.5 parent: 2 + - uid: 9553 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 - uid: 9583 components: - type: Transform @@ -107771,30 +118532,30 @@ entities: - type: Transform pos: 45.5,-86.5 parent: 2 - - uid: 9630 + - uid: 9624 components: - type: Transform - pos: 17.5,3.5 + pos: -29.5,-39.5 parent: 2 - - uid: 9631 + - uid: 9649 components: - type: Transform - pos: 19.5,0.5 + pos: -42.5,-58.5 parent: 2 - uid: 9676 components: - type: Transform pos: 59.5,-49.5 parent: 2 - - uid: 9696 + - uid: 9800 components: - type: Transform - pos: -26.5,-56.5 + pos: 57.5,-49.5 parent: 2 - - uid: 9800 + - uid: 9937 components: - type: Transform - pos: 57.5,-49.5 + pos: -4.5,-54.5 parent: 2 - uid: 9958 components: @@ -107806,15 +118567,30 @@ entities: - type: Transform pos: 62.5,-82.5 parent: 2 + - uid: 10136 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 - uid: 10182 components: - type: Transform pos: -39.5,6.5 parent: 2 - - uid: 10394 + - uid: 10190 components: - type: Transform - pos: -49.5,-55.5 + pos: 2.5,-18.5 + parent: 2 + - uid: 10251 + components: + - type: Transform + pos: -28.5,-39.5 parent: 2 - uid: 10398 components: @@ -107826,15 +118602,40 @@ entities: - type: Transform pos: -35.5,-6.5 parent: 2 + - uid: 10433 + components: + - type: Transform + pos: -35.5,-51.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + pos: -35.5,-54.5 + parent: 2 - uid: 10452 components: - type: Transform pos: -38.5,-6.5 parent: 2 - - uid: 10687 + - uid: 10465 components: - type: Transform - pos: -34.5,-6.5 + pos: -56.5,-55.5 + parent: 2 + - uid: 10513 + components: + - type: Transform + pos: -39.5,-55.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + pos: 4.5,-11.5 parent: 2 - uid: 10793 components: @@ -107886,6 +118687,21 @@ entities: - type: Transform pos: 72.5,-39.5 parent: 2 + - uid: 10969 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 10998 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 11052 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 - uid: 11075 components: - type: Transform @@ -107896,30 +118712,35 @@ entities: - type: Transform pos: 34.5,3.5 parent: 2 - - uid: 11115 + - uid: 11121 components: - type: Transform - pos: 17.5,0.5 + pos: -22.5,-12.5 parent: 2 - - uid: 11116 + - uid: 11128 components: - type: Transform - pos: 17.5,2.5 + pos: -14.5,-19.5 parent: 2 - - uid: 11117 + - uid: 11170 components: - type: Transform - pos: 13.5,3.5 + pos: 22.5,24.5 parent: 2 - - uid: 11128 + - uid: 11193 components: - type: Transform - pos: -14.5,-19.5 + pos: -63.5,-60.5 parent: 2 - - uid: 11161 + - uid: 11196 components: - type: Transform - pos: 17.5,-0.5 + pos: 0.5,-82.5 + parent: 2 + - uid: 11211 + components: + - type: Transform + pos: 2.5,-23.5 parent: 2 - uid: 11327 components: @@ -107951,15 +118772,20 @@ entities: - type: Transform pos: 26.5,-28.5 parent: 2 - - uid: 11451 + - uid: 11504 components: - type: Transform - pos: -42.5,-27.5 + pos: -57.5,-61.5 parent: 2 - - uid: 11517 + - uid: 11582 components: - type: Transform - pos: -40.5,-25.5 + pos: -56.5,-57.5 + parent: 2 + - uid: 11610 + components: + - type: Transform + pos: 2.5,-83.5 parent: 2 - uid: 11654 components: @@ -107991,10 +118817,30 @@ entities: - type: Transform pos: 72.5,-59.5 parent: 2 - - uid: 12135 + - uid: 11933 components: - type: Transform - pos: -48.5,-42.5 + pos: -30.5,-12.5 + parent: 2 + - uid: 12024 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 12025 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 12027 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: -34.5,-34.5 parent: 2 - uid: 12151 components: @@ -108006,20 +118852,130 @@ entities: - type: Transform pos: -38.5,6.5 parent: 2 - - uid: 12176 + - uid: 12186 components: - type: Transform - pos: -34.5,5.5 + pos: 12.5,-67.5 + parent: 2 + - uid: 12192 + components: + - type: Transform + pos: -9.5,-78.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + pos: -36.5,-29.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + pos: -32.5,-22.5 parent: 2 - uid: 12245 components: - type: Transform pos: -43.5,-3.5 parent: 2 - - uid: 12573 + - uid: 12281 components: - type: Transform - pos: -45.5,-42.5 + pos: -28.5,-23.5 + parent: 2 + - uid: 12334 + components: + - type: Transform + pos: -61.5,-58.5 + parent: 2 + - uid: 12335 + components: + - type: Transform + pos: -57.5,-57.5 + parent: 2 + - uid: 12351 + components: + - type: Transform + pos: -56.5,-61.5 + parent: 2 + - uid: 12493 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 12494 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 12525 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 12526 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 12527 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 12528 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 12529 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - uid: 12547 + components: + - type: Transform + pos: -48.5,-20.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + pos: 12.5,-73.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: -43.5,-19.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + pos: -44.5,-19.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + pos: -45.5,-19.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: 12.5,-74.5 parent: 2 - uid: 12609 components: @@ -108031,16 +118987,136 @@ entities: - type: Transform pos: -23.5,-3.5 parent: 2 + - uid: 12645 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 12686 + components: + - type: Transform + pos: -46.5,-27.5 + parent: 2 - uid: 12694 components: - type: Transform pos: -41.5,-0.5 parent: 2 + - uid: 12703 + components: + - type: Transform + pos: -49.5,-20.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + pos: -9.5,-77.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + pos: -54.5,-32.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 + - uid: 12779 + components: + - type: Transform + pos: 8.5,-68.5 + parent: 2 + - uid: 12781 + components: + - type: Transform + pos: -54.5,-26.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + pos: -5.5,-71.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: -5.5,-70.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + pos: -55.5,-26.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + pos: 7.5,-75.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + pos: -60.5,-31.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 2 + - uid: 12876 + components: + - type: Transform + pos: -60.5,-29.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + pos: -60.5,-28.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + pos: -60.5,-27.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 - uid: 12880 components: - type: Transform pos: -38.5,0.5 parent: 2 + - uid: 12884 + components: + - type: Transform + pos: -58.5,-27.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + pos: -58.5,-32.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + pos: -60.5,-32.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + pos: 8.5,-70.5 + parent: 2 - uid: 13011 components: - type: Transform @@ -108051,10 +119127,101 @@ entities: - type: Transform pos: -23.5,-5.5 parent: 2 - - uid: 13273 + - uid: 13116 components: - type: Transform - pos: -36.5,15.5 + pos: -4.5,-75.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + pos: -61.5,-60.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + pos: -60.5,-58.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + pos: -60.5,-60.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + pos: -4.5,-62.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + pos: -5.5,-68.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + pos: 8.5,-73.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,26.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + pos: 6.5,-54.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + pos: 5.5,-59.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + pos: -3.5,-54.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + pos: 12.5,-78.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: -5.5,-78.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + pos: -52.5,-29.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + pos: -50.5,-26.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + pos: -50.5,-27.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + pos: -50.5,-34.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + pos: -50.5,-33.5 parent: 2 - uid: 13767 components: @@ -108086,6 +119253,46 @@ entities: - type: Transform pos: 18.5,-60.5 parent: 2 + - uid: 13791 + components: + - type: Transform + pos: 12.5,-77.5 + parent: 2 + - uid: 13798 + components: + - type: Transform + pos: -51.5,-23.5 + parent: 2 + - uid: 13879 + components: + - type: Transform + pos: -49.5,-40.5 + parent: 2 + - uid: 13898 + components: + - type: Transform + pos: -44.5,-42.5 + parent: 2 + - uid: 13905 + components: + - type: Transform + pos: -45.5,-42.5 + parent: 2 + - uid: 13918 + components: + - type: Transform + pos: -42.5,-42.5 + parent: 2 + - uid: 13919 + components: + - type: Transform + pos: -41.5,-42.5 + parent: 2 + - uid: 13926 + components: + - type: Transform + pos: -49.5,-41.5 + parent: 2 - uid: 13990 components: - type: Transform @@ -108096,80 +119303,80 @@ entities: - type: Transform pos: 7.5,28.5 parent: 2 - - uid: 14338 + - uid: 14498 components: - type: Transform - pos: 18.5,24.5 + pos: -42.5,2.5 parent: 2 - - uid: 14498 + - uid: 14502 components: - type: Transform - pos: -42.5,2.5 + pos: -5.5,-77.5 parent: 2 - - uid: 14573 + - uid: 14568 components: - type: Transform - pos: -27.5,-32.5 + pos: -2.5,-54.5 parent: 2 - uid: 14809 components: - type: Transform pos: -27.5,14.5 parent: 2 - - uid: 14811 + - uid: 14996 components: - type: Transform - pos: 35.5,14.5 + pos: 7.5,-62.5 parent: 2 - - uid: 14823 + - uid: 14998 components: - type: Transform - pos: 28.5,-10.5 + pos: -4.5,-63.5 parent: 2 - - uid: 14840 + - uid: 15005 components: - type: Transform - pos: 28.5,-9.5 + pos: 7.5,-63.5 parent: 2 - - uid: 15307 + - uid: 15027 components: - type: Transform - pos: -41.5,-31.5 + pos: -5.5,-55.5 parent: 2 - - uid: 15366 + - uid: 15236 components: - type: Transform - pos: -39.5,-34.5 + pos: -64.5,-58.5 parent: 2 - uid: 15372 components: - type: Transform pos: -21.5,-6.5 parent: 2 - - uid: 15675 + - uid: 15454 components: - type: Transform - pos: -20.5,-6.5 + pos: 36.5,21.5 parent: 2 - - uid: 15679 + - uid: 15615 components: - type: Transform - pos: -20.5,-9.5 + pos: -5.5,-73.5 parent: 2 - - uid: 15699 + - uid: 15675 components: - type: Transform - pos: -34.5,-32.5 + pos: -20.5,-6.5 parent: 2 - - uid: 15828 + - uid: 15679 components: - type: Transform - pos: 13.5,-14.5 + pos: -20.5,-9.5 parent: 2 - - uid: 15834 + - uid: 15780 components: - type: Transform - pos: 35.5,15.5 + pos: 35.5,20.5 parent: 2 - uid: 15901 components: @@ -108191,6 +119398,26 @@ entities: - type: Transform pos: -52.5,-14.5 parent: 2 + - uid: 16021 + components: + - type: Transform + pos: 0.5,-54.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + pos: 8.5,-77.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: -9.5,-73.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + pos: 2.5,-54.5 + parent: 2 - uid: 16202 components: - type: Transform @@ -108221,6 +119448,11 @@ entities: - type: Transform pos: -49.5,-12.5 parent: 2 + - uid: 16664 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 - uid: 16679 components: - type: Transform @@ -108236,25 +119468,25 @@ entities: - type: Transform pos: -41.5,-1.5 parent: 2 - - uid: 17092 + - uid: 16909 components: - type: Transform - pos: -34.5,3.5 + pos: -41.5,-58.5 parent: 2 - uid: 17094 components: - type: Transform pos: -33.5,0.5 parent: 2 - - uid: 17295 + - uid: 17177 components: - type: Transform - pos: -30.5,-11.5 + pos: -1.5,-96.5 parent: 2 - - uid: 17706 + - uid: 17418 components: - type: Transform - pos: 60.5,-54.5 + pos: -25.5,-45.5 parent: 2 - uid: 17707 components: @@ -108276,6 +119508,11 @@ entities: - type: Transform pos: 80.5,-15.5 parent: 2 + - uid: 17821 + components: + - type: Transform + pos: -59.5,-53.5 + parent: 2 - uid: 17825 components: - type: Transform @@ -108301,11 +119538,6 @@ entities: - type: Transform pos: 83.5,-14.5 parent: 2 - - uid: 17859 - components: - - type: Transform - pos: -30.5,-10.5 - parent: 2 - uid: 17946 components: - type: Transform @@ -108326,6 +119558,11 @@ entities: - type: Transform pos: 95.5,-19.5 parent: 2 + - uid: 18415 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 - uid: 18418 components: - type: Transform @@ -108386,15 +119623,152 @@ entities: - type: Transform pos: 97.5,-36.5 parent: 2 + - uid: 19195 + components: + - type: Transform + pos: -0.5,-96.5 + parent: 2 + - uid: 19202 + components: + - type: Transform + pos: 1.5,-58.5 + parent: 2 + - uid: 19215 + components: + - type: Transform + pos: 0.5,-58.5 + parent: 2 + - uid: 19244 + components: + - type: Transform + pos: -0.5,-58.5 + parent: 2 + - uid: 19258 + components: + - type: Transform + pos: -4.5,-66.5 + parent: 2 + - uid: 19276 + components: + - type: Transform + pos: 7.5,-66.5 + parent: 2 - uid: 19361 components: - type: Transform pos: 78.5,-47.5 parent: 2 - - uid: 20410 + - uid: 20168 components: - type: Transform - pos: 29.5,14.5 + pos: 8.5,-71.5 + parent: 2 + - uid: 21674 + components: + - type: Transform + pos: -31.5,15.5 + parent: 2 + - uid: 21838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,11.5 + parent: 2 + - uid: 21867 + components: + - type: Transform + pos: 60.5,-54.5 + parent: 2 + - uid: 21884 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 21901 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 21903 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 21904 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 21909 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 21918 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 21920 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 21921 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 21930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,13.5 + parent: 2 + - uid: 21931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,30.5 + parent: 2 + - uid: 21942 + components: + - type: Transform + pos: -55.5,-51.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + pos: -57.5,-51.5 + parent: 2 + - uid: 22011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,27.5 + parent: 2 + - uid: 22012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,29.5 + parent: 2 + - uid: 22050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,27.5 + parent: 2 + - uid: 22052 + components: + - type: Transform + pos: -57.5,-55.5 + parent: 2 + - uid: 22080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,29.5 parent: 2 - proto: RemoteSignaller entities: @@ -108418,19 +119792,39 @@ entities: - Pressed: Toggle 3501: - Pressed: Toggle + - uid: 8340 + components: + - type: MetaData + name: Janitor Shutters Remote + - type: Transform + pos: 24.653408,0.86710465 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7263: + - Pressed: Toggle + 6578: + - Pressed: Toggle - uid: 9536 components: - type: MetaData name: Janitor Shutters Remote - type: Transform - pos: 29.016838,4.6675644 + pos: 24.361597,1.0651593 parent: 2 - type: DeviceLinkSource linkedPorts: - 9369: + 7263: - Pressed: Toggle - 9370: + 6578: - Pressed: Toggle + - uid: 11096 + components: + - type: MetaData + name: Salvage Dock Remote + - type: Transform + pos: 14.520121,25.664625 + parent: 2 - uid: 17983 components: - type: MetaData @@ -108455,15 +119849,10 @@ entities: parent: 2 - proto: ResearchDisk entities: - - uid: 122 - components: - - type: Transform - pos: 30.487581,-35.375355 - parent: 2 - uid: 9847 components: - type: Transform - pos: -18.337261,-50.37869 + pos: -17.983162,-50.297432 parent: 2 - proto: RevolverCapGun entities: @@ -108477,8 +119866,16 @@ entities: - uid: 8291 components: - type: Transform - pos: -21.647089,6.5904083 + pos: -21.461847,6.590386 parent: 2 + - type: Blocking + blockingToggleActionEntity: 5100 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 5100 - proto: RiotLaserShield entities: - uid: 632 @@ -108488,10 +119885,10 @@ entities: parent: 2 - proto: RiotShield entities: - - uid: 6754 + - uid: 3686 components: - type: Transform - pos: -21.574173,6.5174413 + pos: -21.211723,6.5486903 parent: 2 - proto: RobocopCircuitBoard entities: @@ -108523,11 +119920,11 @@ entities: parent: 2 - proto: SalvageMagnet entities: - - uid: 1035 + - uid: 21965 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,32.5 + pos: 16.5,33.5 parent: 2 - proto: SandBattlemap entities: @@ -108569,21 +119966,25 @@ entities: rot: 3.141592653589793 rad pos: 54.5,-19.5 parent: 2 - - uid: 5007 + - uid: 6902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-46.5 + pos: -31.5,-26.5 parent: 2 - - uid: 11314 + - uid: 8584 components: - type: Transform - pos: -21.5,-39.5 + pos: 48.5,22.5 parent: 2 - - uid: 12115 + - uid: 10062 components: - type: Transform - pos: -5.5,-46.5 + pos: -50.5,-28.5 + parent: 2 + - uid: 11314 + components: + - type: Transform + pos: -21.5,-39.5 parent: 2 - uid: 12117 components: @@ -108600,10 +120001,10 @@ entities: - type: Transform pos: 43.5,-23.5 parent: 2 - - uid: 12122 + - uid: 12606 components: - type: Transform - pos: 30.5,29.5 + pos: 20.5,8.5 parent: 2 - uid: 13206 components: @@ -108615,16 +120016,6 @@ entities: - type: Transform pos: 27.5,-19.5 parent: 2 - - uid: 16668 - components: - - type: Transform - pos: -31.5,-28.5 - parent: 2 - - uid: 16678 - components: - - type: Transform - pos: 29.5,-1.5 - parent: 2 - uid: 16680 components: - type: Transform @@ -108645,29 +120036,69 @@ entities: - type: Transform pos: -13.5,-56.5 parent: 2 - - uid: 16688 + - uid: 22035 components: - type: Transform - pos: 34.5,40.5 + pos: 34.5,16.5 parent: 2 - - uid: 18966 + - uid: 22036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-50.5 + pos: 36.5,23.5 parent: 2 - - uid: 20767 + - uid: 22164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,16.5 + rot: -1.5707963267948966 rad + pos: -35.5,-74.5 parent: 2 -- proto: Screwdriver - entities: - - uid: 19555 + - uid: 22165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-81.5 + parent: 2 + - uid: 22166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-59.5 + parent: 2 + - uid: 22167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-49.5 + parent: 2 + - uid: 22210 components: - type: Transform - pos: -33.476517,4.525329 + pos: -39.5,-25.5 + parent: 2 + - uid: 22211 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 22212 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 22213 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 22214 + components: + - type: Transform + pos: -5.5,-46.5 + parent: 2 + - uid: 22216 + components: + - type: Transform + pos: 8.5,-46.5 parent: 2 - proto: SecurityTechFab entities: @@ -108685,11 +120116,6 @@ entities: parent: 2 - proto: SeedExtractor entities: - - uid: 3306 - components: - - type: Transform - pos: -18.5,-37.5 - parent: 2 - uid: 13276 components: - type: Transform @@ -108700,6 +120126,11 @@ entities: - type: Transform pos: 46.5,-60.5 parent: 2 + - uid: 22707 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 - proto: ShardGlass entities: - uid: 793 @@ -108707,6 +120138,11 @@ entities: - type: Transform pos: 74.42811,-44.107338 parent: 2 + - uid: 890 + components: + - type: Transform + pos: -0.48252273,-84.521225 + parent: 2 - uid: 2288 components: - type: Transform @@ -108732,11 +120168,6 @@ entities: - type: Transform pos: 73.42761,-43.54445 parent: 2 - - uid: 4025 - components: - - type: Transform - pos: 13.981267,-12.895584 - parent: 2 - uid: 4985 components: - type: Transform @@ -108763,11 +120194,6 @@ entities: - type: Transform pos: 64.549995,-40.491837 parent: 2 - - uid: 10689 - components: - - type: Transform - pos: -33.48411,-50.31736 - parent: 2 - uid: 10841 components: - type: Transform @@ -108779,16 +120205,6 @@ entities: rot: -1.5707963267948966 rad pos: 67.56429,-82.79552 parent: 2 - - uid: 15911 - components: - - type: Transform - pos: 11.269943,-13.322539 - parent: 2 - - uid: 17540 - components: - - type: Transform - pos: 16.667065,-0.29552567 - parent: 2 - uid: 17852 components: - type: Transform @@ -108864,17 +120280,12 @@ entities: - uid: 2250 components: - type: Transform - pos: 28.253607,-16.335518 - parent: 2 - - uid: 4002 - components: - - type: Transform - pos: -3.7460008,-14.344318 + pos: 28.705658,-16.41892 parent: 2 - - uid: 4003 + - uid: 3635 components: - type: Transform - pos: -3.747398,-14.455197 + pos: 11.520535,-16.466494 parent: 2 - uid: 4268 components: @@ -108886,15 +120297,15 @@ entities: - type: Transform pos: 8.793852,18.587227 parent: 2 - - uid: 4774 + - uid: 14889 components: - type: Transform - pos: -33.92257,-53.43389 + pos: -37.7531,-24.421627 parent: 2 - - uid: 10433 + - uid: 21619 components: - type: Transform - pos: -46.492474,-55.416134 + pos: -57.542072,-58.42012 parent: 2 - proto: SheetGlass1 entities: @@ -108908,19 +120319,37 @@ entities: - type: Transform pos: 63.470222,-39.49492 parent: 2 -- proto: SheetGlass10 +- proto: SheetPaper entities: - - uid: 501 + - uid: 2962 components: - type: Transform - pos: 19.591537,7.632542 + pos: 13.540051,-50.447964 parent: 2 -- proto: SheetPaper +- proto: SheetPaper1 entities: - - uid: 2962 + - uid: 5913 components: - type: Transform - pos: 13.540051,-50.447964 + rot: 3.141592653589793 rad + pos: 20.547642,18.769604 + parent: 2 + - uid: 12485 + components: + - type: Transform + pos: 20.500767,18.425854 + parent: 2 + - uid: 22382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.701982,19.633614 + parent: 2 + - uid: 22383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.31672,19.486847 parent: 2 - proto: SheetPlasma entities: @@ -108934,18 +120363,13 @@ entities: - uid: 1758 components: - type: Transform - pos: 28.389091,-16.377214 + pos: 28.53891,-16.450193 parent: 2 - uid: 2546 components: - type: Transform pos: -10.506894,-13.427014 parent: 2 - - uid: 4759 - components: - - type: Transform - pos: -28.457413,-61.391724 - parent: 2 - uid: 10172 components: - type: Transform @@ -108973,6 +120397,11 @@ entities: - type: Transform pos: 19.5265,-30.937439 parent: 2 + - uid: 14888 + components: + - type: Transform + pos: -37.47171,-24.411203 + parent: 2 - proto: SheetPlastic10 entities: - uid: 3997 @@ -109005,37 +120434,37 @@ entities: - uid: 2256 components: - type: Transform - pos: 28.576683,-16.36679 + pos: 28.236675,-16.41892 parent: 2 - uid: 2408 components: - type: Transform pos: -0.48844743,-4.350263 parent: 2 - - uid: 4000 + - uid: 3639 components: - type: Transform - pos: -3.335125,-14.359608 + pos: 11.364208,-16.487328 parent: 2 - - uid: 4001 + - uid: 4068 components: - type: Transform - pos: -3.3313518,-14.430718 + pos: -3.4528265,-14.511956 parent: 2 - - uid: 4272 + - uid: 4070 components: - type: Transform - pos: 19.547344,-30.51006 + pos: -10.51167,-13.449734 parent: 2 - - uid: 4594 + - uid: 4272 components: - type: Transform - pos: 1.5190241,-11.392845 + pos: 19.547344,-30.51006 parent: 2 - - uid: 4738 + - uid: 12747 components: - type: Transform - pos: -33.35979,-53.45474 + pos: 2.4604461,-55.406693 parent: 2 - uid: 14425 components: @@ -109047,12 +120476,10 @@ entities: - type: Transform pos: -60.99963,-11.384789 parent: 2 -- proto: SheetSteel1 - entities: - - uid: 2342 + - uid: 22546 components: - type: Transform - pos: 13.934829,-12.065643 + pos: -3.4737914,-14.490146 parent: 2 - proto: SheetSteel10 entities: @@ -109097,36 +120524,49 @@ entities: - uid: 4279 components: - type: Transform + rot: 3.141592653589793 rad pos: 33.5,-23.5 parent: 2 - - uid: 6787 + - uid: 6578 components: - type: Transform - pos: 34.5,-23.5 + rot: 1.5707963267948966 rad + pos: 29.5,2.5 parent: 2 - - uid: 9369 + - uid: 6787 components: - type: Transform - pos: 27.5,-1.5 + rot: 3.141592653589793 rad + pos: 34.5,-23.5 parent: 2 - - uid: 9370 + - uid: 7263 components: - type: Transform - pos: 28.5,-1.5 + rot: 1.5707963267948966 rad + pos: 29.5,1.5 parent: 2 - proto: ShuttersNormalOpen entities: - - uid: 1322 + - uid: 186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-32.5 + rot: 1.5707963267948966 rad + pos: -25.5,-46.5 parent: 2 - - uid: 1917 + - uid: 304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-34.5 + pos: -24.5,1.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -26.5,1.5 parent: 2 - uid: 2359 components: @@ -109134,28 +120574,91 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,-3.5 parent: 2 + - uid: 2500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + - uid: 2582 + components: + - type: Transform + pos: -26.5,8.5 + parent: 2 - uid: 2744 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-11.5 parent: 2 + - uid: 2759 + components: + - type: Transform + pos: -3.5,-46.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-44.5 + parent: 2 - uid: 4048 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-20.5 parent: 2 + - uid: 4698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-44.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-43.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-43.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-48.5 + parent: 2 + - uid: 4721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-43.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-47.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 2 - uid: 5439 components: - type: Transform pos: -8.5,16.5 parent: 2 - - uid: 7497 + - uid: 6345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-32.5 + pos: -4.5,-46.5 parent: 2 - uid: 7960 components: @@ -109163,16 +120666,22 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,11.5 parent: 2 - - uid: 9963 + - uid: 10652 components: - type: Transform - pos: -25.5,-56.5 + pos: -24.5,8.5 parent: 2 - - uid: 10464 + - uid: 10771 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-32.5 + pos: -42.5,-33.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-33.5 parent: 2 - uid: 11182 components: @@ -109226,17 +120735,16 @@ entities: - type: Transform pos: -6.5,16.5 parent: 2 - - uid: 12990 + - uid: 12193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-10.5 + pos: -2.5,-46.5 parent: 2 - - uid: 13043 + - uid: 12990 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,-35.5 + pos: -19.5,-10.5 parent: 2 - uid: 13642 components: @@ -109325,29 +120833,10 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-32.5 parent: 2 - - uid: 16041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-32.5 - parent: 2 - - uid: 16042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-32.5 - parent: 2 - - uid: 16050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-27.5 - parent: 2 - - uid: 16051 + - uid: 16090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-26.5 + pos: -1.5,-46.5 parent: 2 - uid: 17052 components: @@ -109416,10 +120905,234 @@ entities: rot: 1.5707963267948966 rad pos: 32.5,-35.5 parent: 2 - - uid: 20824 + - uid: 21229 components: - type: Transform - pos: -26.5,-56.5 + pos: -47.5,-25.5 + parent: 2 + - uid: 21230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-20.5 + parent: 2 + - uid: 21231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-20.5 + parent: 2 + - uid: 21234 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 + - uid: 21235 + components: + - type: Transform + pos: -44.5,-40.5 + parent: 2 + - uid: 21236 + components: + - type: Transform + pos: -43.5,-40.5 + parent: 2 + - uid: 21237 + components: + - type: Transform + pos: -42.5,-40.5 + parent: 2 + - uid: 21238 + components: + - type: Transform + pos: -41.5,-40.5 + parent: 2 + - uid: 21242 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - uid: 21243 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 21244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-19.5 + parent: 2 + - uid: 21245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-19.5 + parent: 2 + - uid: 21246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-19.5 + parent: 2 + - uid: 21247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-19.5 + parent: 2 + - uid: 21248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-19.5 + parent: 2 + - uid: 21251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-34.5 + parent: 2 + - uid: 21252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-37.5 + parent: 2 + - uid: 21253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 2 + - uid: 21254 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 21255 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 21256 + components: + - type: Transform + pos: -29.5,-39.5 + parent: 2 + - uid: 21257 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 21258 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 21876 + components: + - type: Transform + pos: -24.5,14.5 + parent: 2 + - uid: 21880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-45.5 + parent: 2 + - uid: 22133 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 + - uid: 22614 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 22616 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 2 + - uid: 22617 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 22618 + components: + - type: Transform + pos: -27.5,-12.5 + parent: 2 + - uid: 22619 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - uid: 22620 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 22719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,6.5 + parent: 2 + - uid: 22720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + - uid: 22721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 2 + - uid: 22724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - uid: 22725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-3.5 + parent: 2 + - uid: 22769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-20.5 + parent: 2 + - uid: 22770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-20.5 + parent: 2 + - uid: 22771 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 22772 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 22773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-22.5 parent: 2 - proto: ShuttersWindowOpen entities: @@ -109440,18 +121153,13 @@ entities: parent: 2 - proto: ShuttleConsoleCircuitboard entities: - - uid: 4721 + - uid: 21971 components: - type: Transform - pos: -34.410973,-53.378662 + pos: 21.58446,23.544025 parent: 2 - proto: SignAi entities: - - uid: 3315 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 - uid: 7090 components: - type: Transform @@ -109464,6 +121172,11 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-13.5 parent: 2 + - uid: 21309 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 - proto: SignAiUpload entities: - uid: 16477 @@ -109485,30 +121198,6 @@ entities: linkedPorts: 16099: - Pressed: Toggle - - uid: 1331 - components: - - type: MetaData - name: Janitorial Light - - type: Transform - rot: 1.5707963267948966 rad - pos: -29.497658,-27.75303 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 16113: - - Pressed: Toggle - - uid: 2351 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,8.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 20737: - - Pressed: Toggle - 9735: - - Pressed: Toggle - uid: 3255 components: - type: Transform @@ -109538,49 +121227,38 @@ entities: linkedPorts: 3508: - Pressed: Toggle - - uid: 15842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-41.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 432: - - Pressed: DoorBolt - - uid: 16054 + - uid: 13730 components: - type: Transform - pos: 7.5,-37.5 + rot: 3.141592653589793 rad + pos: 7.5,-43.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 5908: + 11992: - Pressed: DoorBolt - 5923: + 11221: - Pressed: DoorBolt - - uid: 16055 + - uid: 15842 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-43.5 + rot: 1.5707963267948966 rad + pos: 43.5,-41.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 237: - - Pressed: DoorBolt - 6029: + 432: - Pressed: DoorBolt - - uid: 16056 + - uid: 16054 components: - type: Transform - pos: 7.5,-43.5 + pos: 7.5,-37.5 parent: 2 - type: DeviceLinkSource linkedPorts: - 267: + 5908: - Pressed: DoorBolt - 4928: + 21405: - Pressed: DoorBolt - uid: 16057 components: @@ -109632,7 +121310,7 @@ entities: - uid: 17553 components: - type: MetaData - name: Janitorial Button + name: Janitor Light - type: Transform rot: 3.141592653589793 rad pos: 7.5,15.5 @@ -109655,6 +121333,8 @@ entities: - Pressed: Toggle - uid: 19282 components: + - type: MetaData + name: Light Switch - type: Transform rot: 3.141592653589793 rad pos: -42.5,-6.5 @@ -109663,6 +121343,51 @@ entities: linkedPorts: 12881: - Pressed: Toggle + - uid: 21408 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11833: + - Pressed: DoorBolt + 21406: + - Pressed: DoorBolt + - uid: 21754 + components: + - type: MetaData + name: Janitor Light + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-38.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21752: + - Pressed: Toggle + - uid: 21755 + components: + - type: MetaData + name: Janitor Light + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21751: + - Pressed: Toggle + - uid: 22621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 12433: + - Pressed: Toggle - proto: SignAnomaly entities: - uid: 4573 @@ -109694,11 +121419,11 @@ entities: parent: 2 - proto: SignBar entities: - - uid: 16015 + - uid: 20198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-45.5 + rot: 3.141592653589793 rad + pos: -6.5,-46.5 parent: 2 - proto: SignCans entities: @@ -109737,11 +121462,10 @@ entities: parent: 2 - proto: SignChem entities: - - uid: 17572 + - uid: 11968 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-32.5 + pos: -25.5,-33.5 parent: 2 - proto: SignCryo entities: @@ -109753,17 +121477,22 @@ entities: parent: 2 - proto: SignCryogenicsMed entities: - - uid: 5010 + - uid: 15241 components: - type: Transform - pos: -36.5,-19.5 + pos: -45.5,-33.5 + parent: 2 + - uid: 21737 + components: + - type: Transform + pos: -46.5,-36.5 parent: 2 - proto: SignDirectionalBar entities: - uid: 16976 components: - type: Transform - pos: -21.500635,-30.930183 + pos: -21.5,-30.93 parent: 2 - uid: 17015 components: @@ -109771,53 +121500,53 @@ entities: rot: -1.5707963267948966 rad pos: 25.5,-19.5 parent: 2 + - uid: 22260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.8,-46.3 + parent: 2 - proto: SignDirectionalBridge entities: - - uid: 15465 + - uid: 8742 components: - type: Transform - pos: -21.5,-30.5 + rot: -1.5707963267948966 rad + pos: 6.5,-46.5 parent: 2 - - uid: 16963 + - uid: 15465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.4946065,-46.298473 + pos: -21.5,-30.5 parent: 2 - uid: 16981 components: - type: Transform - pos: -13.5028,-2.2967658 + pos: -13.5,-2.3 parent: 2 - uid: 17069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.497295,-19.297873 + pos: 25.5,-19.3 parent: 2 - proto: SignDirectionalDorms entities: - - uid: 16021 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-46.5 - parent: 2 - - uid: 16968 - components: - - type: Transform - pos: 29.501575,-5.2910233 - parent: 2 - uid: 16978 components: - type: Transform - pos: -21.497547,-31.359373 + pos: -21.5,-31.36 parent: 2 - uid: 17068 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.497295,-19.714828 + pos: 25.5,-19.7 + parent: 2 + - uid: 22514 + components: + - type: Transform + pos: 29.5,9.3 parent: 2 - proto: SignDirectionalEng entities: @@ -109825,92 +121554,94 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -21.500673,-29.646055 + pos: -21.5,-29.65 parent: 2 - - uid: 16964 + - uid: 16982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5000954,-46.381866 + pos: -13.5,-2.1 parent: 2 - - uid: 16969 + - uid: 22265 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.497402,-5.287935 + pos: 5.8,-46.7 parent: 2 - - uid: 16970 + - uid: 22506 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.502121,-20.71029 - parent: 2 - - uid: 16982 - components: - - type: Transform - pos: -13.5028,-2.0836544 + pos: 11.5,9.3 parent: 2 - proto: SignDirectionalEvac entities: - - uid: 15651 + - uid: 31 components: - type: Transform - pos: 29.5,-5.5 + pos: 29.5,9.5 parent: 2 - - uid: 16024 + - uid: 16972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.499233,-46.28323 + pos: -21.5,-30.72 parent: 2 - - uid: 16046 + - uid: 16980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-20.5 + rot: 3.141592653589793 rad + pos: -13.5,-1.3 parent: 2 - - uid: 16866 + - uid: 17012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.4983397,-46.721607 - parent: 2 - - uid: 16972 - components: - - type: Transform - pos: -21.497791,-30.715273 + pos: 26.5,-19.5 parent: 2 - - uid: 16980 + - uid: 22266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.499712,-1.2991593 + rot: 1.5707963267948966 rad + pos: 7.2,-46.5 parent: 2 - - uid: 17012 + - uid: 22505 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,-19.5 + pos: 12.5,9.3 parent: 2 - proto: SignDirectionalFood entities: + - uid: 9489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-46.7 + parent: 2 - uid: 16977 components: - type: Transform - pos: -21.500635,-31.149471 + pos: -21.5,-31.15 parent: 2 - uid: 16983 components: - type: Transform - pos: -13.499712,-2.7137218 + pos: -13.5,-2.71 parent: 2 - proto: SignDirectionalJanitor entities: - - uid: 16965 + - uid: 22504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.497597,-5.932226 + rot: 1.5707963267948966 rad + pos: 12.5,9.7 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 22263 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.2,-46.7 parent: 2 - proto: SignDirectionalMed entities: @@ -109919,62 +121650,80 @@ entities: - type: Transform pos: -13.5,-2.5 parent: 2 - - uid: 13550 + - uid: 17013 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5000954,-46.598064 + pos: 26.5,-19.7 parent: 2 - - uid: 16971 + - uid: 22262 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.499033,-20.28407 + pos: 6.5,-46.3 parent: 2 - - uid: 17013 + - uid: 22501 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.497282,-19.713396 + pos: 11.5,9.5 + parent: 2 + - uid: 22509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.5 parent: 2 - proto: SignDirectionalSci entities: - - uid: 13538 + - uid: 22264 components: - type: Transform - pos: 29.501575,-5.717245 + rot: 1.5707963267948966 rad + pos: 7.2,-46.3 parent: 2 - - uid: 15803 + - uid: 22503 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.4985585,-46.702446 + pos: 12.5,9.5 + parent: 2 + - uid: 22511 + components: + - type: Transform + pos: 29.5,9.7 parent: 2 - proto: SignDirectionalSec entities: - - uid: 16868 + - uid: 17014 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-46.5 + pos: 26.5,-19.3 parent: 2 - - uid: 16967 + - uid: 21928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.49749,-30.06194 + parent: 2 + - uid: 22261 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.50108,-5.717245 + pos: 5.8,-46.5 parent: 2 - - uid: 16979 + - uid: 22507 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.50685,-30.073809 + rot: -1.5707963267948966 rad + pos: 11.5,9.7 parent: 2 - - uid: 17014 + - uid: 22512 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.497282,-19.284084 + pos: 28.5,9.7 parent: 2 - proto: SignDirectionalSolar entities: @@ -109990,20 +121739,14 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,21.5 parent: 2 - - uid: 20755 + - uid: 21606 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-49.5 + pos: -35.5,-47.5 parent: 2 - proto: SignDirectionalSupply entities: - - uid: 16966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-5.5 - parent: 2 - uid: 16973 components: - type: Transform @@ -110014,15 +121757,27 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -21.503761,-29.859167 + pos: -21.5,-29.86 + parent: 2 + - uid: 22513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,9.3 + parent: 2 +- proto: SignDirectionalWash + entities: + - uid: 1805 + components: + - type: Transform + pos: 15.5,4.5 parent: 2 - proto: SignElectricalMed entities: - - uid: 628 + - uid: 1748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,10.5 + pos: 14.5,-15.5 parent: 2 - uid: 4292 components: @@ -110042,11 +121797,16 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 - - uid: 4324 + - uid: 9202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-11.5 + pos: -33.5,-9.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,15.5 parent: 2 - uid: 11388 components: @@ -110054,17 +121814,15 @@ entities: rot: 3.141592653589793 rad pos: 39.5,-32.5 parent: 2 - - uid: 17059 + - uid: 12892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-15.5 + pos: -31.5,-20.5 parent: 2 - - uid: 17064 + - uid: 13017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,12.5 + pos: -54.5,-60.5 parent: 2 - uid: 17066 components: @@ -110095,11 +121853,6 @@ entities: rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 2 - - uid: 20582 - components: - - type: Transform - pos: -30.5,-9.5 - parent: 2 - uid: 20583 components: - type: Transform @@ -110148,29 +121901,18 @@ entities: rot: 3.141592653589793 rad pos: 60.5,-55.5 parent: 2 - - uid: 17856 - components: - - type: Transform - pos: -34.5,11.5 - parent: 2 - - uid: 20746 + - uid: 22094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-57.5 + rot: 3.141592653589793 rad + pos: -54.5,-51.5 parent: 2 - proto: SignEVA entities: - - uid: 15669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-51.5 - parent: 2 - - uid: 20578 + - uid: 19223 components: - type: Transform - pos: -31.5,-2.5 + pos: -5.5,-58.5 parent: 2 - proto: SignFlammableMed entities: @@ -110181,10 +121923,10 @@ entities: parent: 2 - proto: SignGravity entities: - - uid: 6583 + - uid: 22623 components: - type: Transform - pos: 24.5,-5.5 + pos: 29.5,-9.5 parent: 2 - proto: SignInterrogation entities: @@ -110195,17 +121937,18 @@ entities: parent: 2 - proto: SignJanitor entities: - - uid: 9375 + - uid: 5858 components: - type: Transform - pos: 30.5,3.5 + rot: -1.5707963267948966 rad + pos: 29.5,3.5 parent: 2 - proto: SignKiddiePlaque entities: - - uid: 10735 + - uid: 4806 components: - type: Transform - pos: 7.5,5.5 + pos: -28.5,-64.5 parent: 2 - proto: SignKitchen entities: @@ -110238,29 +121981,10 @@ entities: parent: 2 - proto: SignMagneticsMed entities: - - uid: 10727 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-10.5 - parent: 2 - - uid: 17071 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 - parent: 2 - - uid: 17072 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-10.5 - parent: 2 - - uid: 17493 + - uid: 21934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,29.5 + pos: 15.5,30.5 parent: 2 - proto: SignMail entities: @@ -110279,11 +122003,19 @@ entities: parent: 2 - proto: SignMedical entities: - - uid: 13202 + - uid: 12234 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-28.5 + pos: -25.5,-26.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 14118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -47.5,-39.5 parent: 2 - proto: SignNews entities: @@ -110295,18 +122027,6 @@ entities: parent: 2 - proto: SignNosmoking entities: - - uid: 17016 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-32.5 - parent: 2 - - uid: 17074 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-28.5 - parent: 2 - uid: 17076 components: - type: Transform @@ -110315,10 +122035,10 @@ entities: parent: 2 - proto: SignPlaque entities: - - uid: 10734 + - uid: 4944 components: - type: Transform - pos: 11.5,4.5 + pos: -28.5,-58.5 parent: 2 - proto: SignPrison entities: @@ -110330,11 +122050,11 @@ entities: parent: 2 - proto: SignPsychology entities: - - uid: 9660 + - uid: 18 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,-45.5 + pos: -35.5,-53.5 parent: 2 - proto: SignRadiationMed entities: @@ -110360,10 +122080,10 @@ entities: parent: 2 - proto: SignRedThree entities: - - uid: 16869 + - uid: 21447 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 8.5,-45.5 parent: 2 - proto: SignRedTwo @@ -110374,10 +122094,10 @@ entities: rot: -1.5707963267948966 rad pos: -22.534918,-9.81543 parent: 2 - - uid: 16961 + - uid: 21446 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 1.5707963267948966 rad pos: 8.5,-41.5 parent: 2 - proto: SignRobo @@ -110387,6 +122107,18 @@ entities: - type: Transform pos: 31.5,-26.5 parent: 2 +- proto: SignSalvage + entities: + - uid: 22415 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 22473 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 - proto: SignScience entities: - uid: 4323 @@ -110399,6 +122131,14 @@ entities: - type: Transform pos: 31.5,-23.5 parent: 2 +- proto: SignSecureMed + entities: + - uid: 4914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-62.5 + parent: 2 - proto: SignServer entities: - uid: 5592 @@ -110413,32 +122153,8 @@ entities: - type: Transform pos: 43.5,-19.5 parent: 2 -- proto: SignSmoking - entities: - - uid: 17073 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-36.5 - parent: 2 - proto: SignSpace entities: - - uid: 3516 - components: - - type: Transform - pos: -34.5,8.5 - parent: 2 - - uid: 14474 - components: - - type: Transform - pos: -24.5,-14.5 - parent: 2 - - uid: 17078 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 2 - uid: 19866 components: - type: Transform @@ -110446,17 +122162,15 @@ entities: parent: 2 - proto: SignSurgery entities: - - uid: 3189 + - uid: 12991 components: - type: Transform - pos: -45.5,-29.5 + pos: -45.5,-26.5 parent: 2 -- proto: SignTelecomms - entities: - - uid: 7761 + - uid: 21308 components: - type: Transform - pos: 23.5,-1.5 + pos: -40.5,-19.5 parent: 2 - proto: SignToolStorage entities: @@ -110468,25 +122182,24 @@ entities: parent: 2 - proto: SignVault entities: - - uid: 326 + - uid: 1917 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,6.5 + pos: -31.5,-60.5 parent: 2 - proto: SignVirology entities: - - uid: 8186 + - uid: 21325 components: - type: Transform - pos: -45.5,-41.5 + pos: -50.5,-31.5 parent: 2 - proto: Sink entities: - - uid: 434 + - uid: 413 components: - type: Transform - pos: -36.5,-2.5 + pos: -29.5,-9.5 parent: 2 - uid: 786 components: @@ -110500,27 +122213,17 @@ entities: rot: 3.141592653589793 rad pos: -40.5,1.5 parent: 2 - - uid: 7962 - components: - - type: Transform - pos: -49.5,-45.5 - parent: 2 - - uid: 8120 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-43.5 - parent: 2 - uid: 9836 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,-55.5 parent: 2 - - uid: 10412 + - uid: 12903 components: - type: Transform - pos: -28.5,-9.5 + rot: 3.141592653589793 rad + pos: -57.5,-31.5 parent: 2 - uid: 14526 components: @@ -110528,14 +122231,13 @@ entities: rot: 1.5707963267948966 rad pos: 43.5,-39.5 parent: 2 -- proto: SinkWide - entities: - - uid: 668 + - uid: 20630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-43.5 + pos: 18.5,-6.5 parent: 2 +- proto: SinkWide + entities: - uid: 3259 components: - type: Transform @@ -110558,93 +122260,119 @@ entities: - type: Transform pos: 45.5,12.5 parent: 2 - - uid: 9415 + - uid: 9043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,0.5 + pos: 14.5,3.5 parent: 2 - - uid: 10730 + - uid: 9376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-33.5 + rot: -1.5707963267948966 rad + pos: 28.5,0.5 parent: 2 - - uid: 11122 + - uid: 12123 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-31.5 + pos: -32.5,-35.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 20194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-45.5 parent: 2 - proto: SmartFridge entities: - - uid: 4741 + - uid: 1726 components: - type: Transform - pos: -32.5,-32.5 + pos: -40.5,-36.5 + parent: 2 + - uid: 22308 + components: + - type: Transform + pos: -35.5,-34.5 parent: 2 - proto: SMESAdvanced entities: - uid: 2499 components: + - type: MetaData + name: Bank SMES - Starboard - type: Transform pos: -1.5,-18.5 parent: 2 - uid: 2776 components: + - type: MetaData + name: Bank SMES - Bow - type: Transform pos: -2.5,-18.5 parent: 2 - uid: 8444 components: + - type: MetaData + name: Solars - North West SMES - type: Transform pos: -30.5,24.5 parent: 2 - uid: 8838 components: + - type: MetaData + name: Solars - North East SMES - type: Transform pos: 46.5,3.5 parent: 2 - - uid: 10400 + - uid: 15810 components: + - type: MetaData + name: Solars - South West SMES - type: Transform - pos: -43.5,-55.5 + pos: -55.5,-58.5 parent: 2 - uid: 15942 components: + - type: MetaData + name: AI Satellite SMES - type: Transform pos: -62.5,-8.5 parent: 2 - uid: 16111 components: + - type: MetaData + name: Bank SMES - Port - type: Transform pos: -3.5,-18.5 parent: 2 - proto: SMESBasic entities: - - uid: 2314 + - uid: 6269 components: - type: MetaData - name: Bridge SMES + name: Gravity SMES - type: Transform - pos: -10.5,-53.5 + pos: 23.5,-10.5 parent: 2 - - uid: 6542 + - uid: 12984 components: - type: MetaData - name: Telecoms SMES + name: Bridge SMES - type: Transform - pos: 25.5,3.5 + pos: -10.5,-56.5 parent: 2 - - uid: 6564 +- proto: SMESMachineCircuitboard + entities: + - uid: 573 components: - - type: MetaData - name: Gravity Generator SMES - type: Transform - pos: 21.5,-8.5 + pos: 3.5083165,-19.382118 parent: 2 -- proto: SMESMachineCircuitboard - entities: - uid: 2088 components: - type: Transform @@ -110653,7 +122381,7 @@ entities: - uid: 18882 components: - type: Transform - pos: 11.562226,-17.361189 + pos: 6.5098057,-16.3717 parent: 2 - proto: SnowBattlemap entities: @@ -110664,16 +122392,16 @@ entities: parent: 2 - proto: SodaDispenser entities: - - uid: 3701 + - uid: 7366 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-45.5 + pos: 44.5,12.5 parent: 2 - - uid: 7366 + - uid: 15897 components: - type: Transform - pos: 44.5,12.5 + rot: 1.5707963267948966 rad + pos: -2.5,-44.5 parent: 2 - proto: SolarPanel entities: @@ -110695,12 +122423,6 @@ entities: rot: -1.5707963267948966 rad pos: 63.5,5.5 parent: 2 - - uid: 3010 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-50.5 - parent: 2 - uid: 5067 components: - type: Transform @@ -110833,263 +122555,233 @@ entities: rot: 1.5707963267948966 rad pos: -45.5,12.5 parent: 2 - - uid: 7093 + - uid: 5815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-50.5 + pos: -66.5,-59.5 parent: 2 - - uid: 7225 + - uid: 8970 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-57.5 + rot: 1.5707963267948966 rad + pos: -45.5,10.5 parent: 2 - - uid: 8234 + - uid: 8971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-58.5 + rot: -1.5707963267948966 rad + pos: 69.5,6.5 parent: 2 - - uid: 8324 + - uid: 8972 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-58.5 + rot: -1.5707963267948966 rad + pos: 69.5,5.5 parent: 2 - - uid: 8332 + - uid: 8973 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-57.5 + rot: -1.5707963267948966 rad + pos: 61.5,6.5 parent: 2 - - uid: 8348 + - uid: 8992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-52.5 + rot: -1.5707963267948966 rad + pos: 61.5,5.5 parent: 2 - - uid: 8412 + - uid: 9110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-57.5 + rot: -1.5707963267948966 rad + pos: 61.5,-3.5 parent: 2 - - uid: 8419 + - uid: 9111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-49.5 + rot: -1.5707963267948966 rad + pos: 61.5,-1.5 parent: 2 - - uid: 8450 + - uid: 9395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-60.5 + pos: -68.5,-49.5 parent: 2 - - uid: 8451 + - uid: 9399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-58.5 + pos: -68.5,-48.5 parent: 2 - - uid: 8453 + - uid: 9558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-57.5 + pos: -68.5,-51.5 parent: 2 - - uid: 8454 + - uid: 9618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-60.5 + rot: -1.5707963267948966 rad + pos: 57.5,4.5 parent: 2 - - uid: 8472 + - uid: 9641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-59.5 + rot: -1.5707963267948966 rad + pos: 63.5,4.5 parent: 2 - - uid: 8481 + - uid: 9669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-59.5 + rot: -1.5707963267948966 rad + pos: 61.5,4.5 parent: 2 - - uid: 8482 + - uid: 10094 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-56.5 + pos: -66.5,-48.5 parent: 2 - - uid: 8483 + - uid: 10095 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-57.5 + pos: -64.5,-51.5 parent: 2 - - uid: 8511 + - uid: 10096 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-59.5 + pos: -72.5,-51.5 parent: 2 - - uid: 8516 + - uid: 10097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-56.5 + pos: -66.5,-49.5 parent: 2 - - uid: 8552 + - uid: 10098 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-59.5 + pos: -68.5,-50.5 parent: 2 - - uid: 8616 + - uid: 10405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-60.5 + pos: -66.5,-51.5 parent: 2 - - uid: 8676 + - uid: 10406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-58.5 + pos: -66.5,-52.5 parent: 2 - - uid: 8970 + - uid: 10407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,10.5 + pos: -66.5,-50.5 parent: 2 - - uid: 8971 + - uid: 10408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,6.5 + pos: -68.5,-52.5 parent: 2 - - uid: 8972 + - uid: 10411 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,5.5 + pos: -72.5,-52.5 parent: 2 - - uid: 8973 + - uid: 10420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,6.5 + pos: -74.5,-51.5 parent: 2 - - uid: 8992 + - uid: 10425 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,5.5 + pos: -70.5,-48.5 parent: 2 - - uid: 9110 + - uid: 10426 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-3.5 + pos: -64.5,-48.5 parent: 2 - - uid: 9111 + - uid: 10427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-1.5 + pos: -64.5,-49.5 parent: 2 - - uid: 9618 + - uid: 10430 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,4.5 + pos: -64.5,-50.5 parent: 2 - - uid: 9641 + - uid: 10432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,4.5 + pos: -62.5,-51.5 parent: 2 - - uid: 9649 + - uid: 10469 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-56.5 + rot: 1.5707963267948966 rad + pos: -47.5,14.5 parent: 2 - - uid: 9669 + - uid: 10470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,4.5 + rot: 1.5707963267948966 rad + pos: -44.5,10.5 parent: 2 - - uid: 10467 + - uid: 10471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-52.5 + pos: -70.5,-49.5 parent: 2 - - uid: 10469 + - uid: 10494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,14.5 + rot: -1.5707963267948966 rad + pos: 63.5,-2.5 parent: 2 - - uid: 10470 + - uid: 10640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,10.5 + pos: -70.5,-52.5 parent: 2 - - uid: 10476 + - uid: 10641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-60.5 + pos: -70.5,-50.5 parent: 2 - - uid: 10480 + - uid: 10642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-60.5 + pos: -70.5,-51.5 parent: 2 - - uid: 10481 + - uid: 10646 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-51.5 + pos: -62.5,-50.5 parent: 2 - - uid: 10482 + - uid: 10647 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-48.5 + pos: -62.5,-49.5 parent: 2 - - uid: 10483 + - uid: 10648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-49.5 + pos: -62.5,-48.5 parent: 2 - - uid: 10493 + - uid: 10678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-49.5 + pos: -66.5,-60.5 parent: 2 - - uid: 10494 + - uid: 10702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-2.5 + pos: -68.5,-57.5 parent: 2 - - uid: 10496 + - uid: 10709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-56.5 + pos: -66.5,-58.5 parent: 2 - uid: 10787 components: @@ -111181,42 +122873,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,20.5 parent: 2 - - uid: 11260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-59.5 - parent: 2 - - uid: 11261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-60.5 - parent: 2 - - uid: 11264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-58.5 - parent: 2 - - uid: 11266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-57.5 - parent: 2 - - uid: 11269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-49.5 - parent: 2 - - uid: 11270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,-48.5 - parent: 2 - uid: 11283 components: - type: Transform @@ -111313,143 +122969,140 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,-0.5 parent: 2 - - uid: 12233 + - uid: 12298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-58.5 + rot: -1.5707963267948966 rad + pos: 61.5,-2.5 parent: 2 - - uid: 12235 + - uid: 12299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-59.5 + rot: -1.5707963267948966 rad + pos: 65.5,-3.5 parent: 2 - - uid: 12239 + - uid: 12301 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-51.5 + rot: -1.5707963267948966 rad + pos: 65.5,-2.5 parent: 2 - - uid: 12240 + - uid: 12312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-52.5 + rot: -1.5707963267948966 rad + pos: 67.5,-2.5 parent: 2 - - uid: 12243 + - uid: 14217 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-50.5 + rot: -1.5707963267948966 rad + pos: 65.5,-1.5 parent: 2 - - uid: 12298 + - uid: 14226 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,-2.5 + pos: 61.5,0.5 parent: 2 - - uid: 12299 + - uid: 14227 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-3.5 + pos: 63.5,-0.5 parent: 2 - - uid: 12301 + - uid: 14283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-2.5 + pos: -76.5,-56.5 parent: 2 - - uid: 12312 + - uid: 14881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-2.5 + pos: -72.5,-57.5 parent: 2 - - uid: 12366 + - uid: 14939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-49.5 + pos: -76.5,-57.5 parent: 2 - - uid: 12367 + - uid: 15033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-48.5 + rot: -1.5707963267948966 rad + pos: 63.5,-1.5 parent: 2 - - uid: 12375 + - uid: 15034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-48.5 + pos: -72.5,-50.5 parent: 2 - - uid: 13017 + - uid: 15237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,-50.5 + pos: -66.5,-57.5 parent: 2 - - uid: 13139 + - uid: 15238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-48.5 + pos: -66.5,-56.5 parent: 2 - - uid: 13152 + - uid: 15295 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-49.5 + pos: -70.5,-56.5 parent: 2 - - uid: 13171 + - uid: 16106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-48.5 + rot: -1.5707963267948966 rad + pos: 67.5,-3.5 parent: 2 - - uid: 14217 + - uid: 16177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-1.5 + pos: 71.5,-3.5 parent: 2 - - uid: 14226 + - uid: 16957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,0.5 + pos: -70.5,-59.5 parent: 2 - - uid: 14227 + - uid: 16959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-0.5 + pos: -70.5,-57.5 parent: 2 - - uid: 14881 + - uid: 17121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-51.5 + pos: -68.5,-56.5 parent: 2 - - uid: 15033 + - uid: 17141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-1.5 + pos: -68.5,-58.5 parent: 2 - - uid: 16106 + - uid: 17154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-3.5 + pos: -68.5,-59.5 parent: 2 - - uid: 16177 + - uid: 17170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 71.5,-3.5 + pos: -68.5,-60.5 + parent: 2 + - uid: 17193 + components: + - type: Transform + pos: -72.5,-56.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + pos: -64.5,-52.5 parent: 2 - uid: 17298 components: @@ -111493,6 +123146,11 @@ entities: rot: -1.5707963267948966 rad pos: 67.5,0.5 parent: 2 + - uid: 17624 + components: + - type: Transform + pos: -62.5,-52.5 + parent: 2 - uid: 17760 components: - type: Transform @@ -111511,6 +123169,16 @@ entities: rot: -1.5707963267948966 rad pos: 71.5,8.5 parent: 2 + - uid: 17780 + components: + - type: Transform + pos: -74.5,-56.5 + parent: 2 + - uid: 17783 + components: + - type: Transform + pos: -74.5,-58.5 + parent: 2 - uid: 17800 components: - type: Transform @@ -111541,6 +123209,16 @@ entities: rot: -1.5707963267948966 rad pos: 69.5,4.5 parent: 2 + - uid: 17808 + components: + - type: Transform + pos: -74.5,-52.5 + parent: 2 + - uid: 17811 + components: + - type: Transform + pos: -74.5,-57.5 + parent: 2 - uid: 17942 components: - type: Transform @@ -111819,59 +123497,65 @@ entities: parent: 2 - proto: SolarPanelBroken entities: - - uid: 16076 + - uid: 5762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-56.5 + pos: -76.5,-51.5 parent: 2 - - uid: 16077 + - uid: 10409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-56.5 + pos: -72.5,-48.5 parent: 2 - - uid: 16867 + - uid: 10410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-50.5 + pos: -72.5,-49.5 parent: 2 - - uid: 17121 + - uid: 10673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-52.5 + pos: -76.5,-52.5 parent: 2 - - uid: 17170 + - uid: 14281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-51.5 + pos: -74.5,-59.5 parent: 2 - - uid: 20154 + - uid: 14282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-52.5 + pos: -76.5,-58.5 parent: 2 - - uid: 20156 + - uid: 15705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-50.5 + pos: -76.5,-50.5 parent: 2 - - uid: 20157 + - uid: 15714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-52.5 + pos: -70.5,-60.5 parent: 2 - - uid: 20158 + - uid: 16901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-51.5 + pos: -72.5,-58.5 + parent: 2 + - uid: 16905 + components: + - type: Transform + pos: -74.5,-49.5 + parent: 2 + - uid: 16958 + components: + - type: Transform + pos: -70.5,-58.5 + parent: 2 + - uid: 17810 + components: + - type: Transform + pos: -74.5,-48.5 parent: 2 - uid: 20159 components: @@ -111976,15 +123660,15 @@ entities: parent: 2 - proto: SolarTracker entities: - - uid: 10505 + - uid: 11502 components: - type: Transform - pos: -70.5,-54.5 + pos: -57.5,23.5 parent: 2 - - uid: 11502 + - uid: 16918 components: - type: Transform - pos: -57.5,23.5 + pos: -78.5,-54.5 parent: 2 - uid: 17299 components: @@ -112015,6 +123699,11 @@ entities: - type: Transform pos: -0.20342517,23.545658 parent: 2 + - uid: 1334 + components: + - type: Transform + pos: -28.98412,-45.744713 + parent: 2 - uid: 1544 components: - type: Transform @@ -112040,11 +123729,6 @@ entities: - type: Transform pos: -0.5473455,23.754135 parent: 2 - - uid: 11290 - components: - - type: Transform - pos: 22.358122,-40.464725 - parent: 2 - uid: 14149 components: - type: Transform @@ -112057,25 +123741,20 @@ entities: - type: Transform pos: 46.476448,-33.315113 parent: 2 -- proto: SpaceCash1000 - entities: - - uid: 15819 + - uid: 22042 components: - type: Transform - pos: 10.122962,3.7327852 + pos: 20.460146,-4.696697 parent: 2 -- proto: SpacemenFigureSpawner +- proto: SpaceCash1000 entities: - - uid: 3825 - components: - - type: Transform - pos: 20.5,-38.5 - parent: 2 - - uid: 3826 + - uid: 8247 components: - type: Transform - pos: 20.5,-39.5 + pos: -30.403597,-59.283337 parent: 2 +- proto: SpacemenFigureSpawner + entities: - uid: 5986 components: - type: Transform @@ -112091,6 +123770,16 @@ entities: - type: Transform pos: 21.5,-50.5 parent: 2 + - uid: 6301 + components: + - type: Transform + pos: 22.5,-41.5 + parent: 2 + - uid: 6311 + components: + - type: Transform + pos: 21.5,-41.5 + parent: 2 - proto: SpaceVillainArcadeComputerCircuitboard entities: - uid: 8879 @@ -112098,10 +123787,10 @@ entities: - type: Transform pos: 47.48892,-12.3788 parent: 2 - - uid: 18857 + - uid: 9538 components: - type: Transform - pos: 15.553789,-19.44597 + pos: 4.4929867,-19.3717 parent: 2 - proto: SpawnMechRipley entities: @@ -112158,41 +123847,6 @@ entities: rot: 3.141592653589793 rad pos: -18.5,30.5 parent: 2 - - uid: 4044 - components: - - type: Transform - pos: 14.5,-5.5 - parent: 2 - - uid: 5696 - components: - - type: Transform - pos: 6.5,-45.5 - parent: 2 - - uid: 6939 - components: - - type: Transform - pos: 7.5,-44.5 - parent: 2 - - uid: 7433 - components: - - type: Transform - pos: -41.5,-42.5 - parent: 2 - - uid: 7486 - components: - - type: Transform - pos: -40.5,-41.5 - parent: 2 - - uid: 7725 - components: - - type: Transform - pos: -38.5,-41.5 - parent: 2 - - uid: 14275 - components: - - type: Transform - pos: 16.5,-6.5 - parent: 2 - uid: 17326 components: - type: Transform @@ -112207,17 +123861,17 @@ entities: parent: 2 - proto: SpawnMobCatException entities: - - uid: 16098 + - uid: 13082 components: - type: Transform - pos: -42.5,-33.5 + pos: -49.5,-24.5 parent: 2 - proto: SpawnMobCatRuntime entities: - - uid: 12706 + - uid: 13012 components: - type: Transform - pos: -42.5,-35.5 + pos: -47.5,-24.5 parent: 2 - proto: SpawnMobCorgi entities: @@ -112228,10 +123882,10 @@ entities: parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 2113 + - uid: 7028 components: - type: Transform - pos: -2.5,-2.5 + pos: 1.5,-2.5 parent: 2 - proto: SpawnMobFoxRenault entities: @@ -112240,24 +123894,6 @@ entities: - type: Transform pos: -23.5,-53.5 parent: 2 -- proto: SpawnMobFrog - entities: - - uid: 3261 - components: - - type: Transform - pos: -41.5,-41.5 - parent: 2 - - uid: 3418 - components: - - type: Transform - pos: -39.5,-41.5 - parent: 2 - - uid: 15681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-5.5 - parent: 2 - proto: SpawnMobKangarooWillow entities: - uid: 20136 @@ -112267,11 +123903,10 @@ entities: parent: 2 - proto: SpawnMobLizard entities: - - uid: 12860 + - uid: 10632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 + pos: 12.5,-40.5 parent: 2 - proto: SpawnMobMcGriff entities: @@ -112282,17 +123917,17 @@ entities: parent: 2 - proto: SpawnMobMedibot entities: - - uid: 4836 + - uid: 21310 components: - type: Transform - pos: -38.5,-22.5 + pos: -42.5,-29.5 parent: 2 - proto: SpawnMobMonkeyPunpun entities: - - uid: 14499 + - uid: 20395 components: - type: Transform - pos: -2.5,-44.5 + pos: -1.5,-44.5 parent: 2 - proto: SpawnMobMouse entities: @@ -112301,15 +123936,10 @@ entities: - type: Transform pos: 30.5,-55.5 parent: 2 - - uid: 20137 + - uid: 22767 components: - type: Transform - pos: -12.5,-27.5 - parent: 2 - - uid: 20710 - components: - - type: Transform - pos: 16.5,-11.5 + pos: -51.5,-37.5 parent: 2 - proto: SpawnMobParrot entities: @@ -112318,15 +123948,13 @@ entities: - type: Transform pos: -7.5,-25.5 parent: 2 -- proto: SpawnMobPossumMorty +- proto: SpawnMobRaccoonMorticia entities: - - uid: 4204 + - uid: 2142 components: - type: Transform - pos: -39.5,-47.5 + pos: -45.5,-44.5 parent: 2 -- proto: SpawnMobRaccoonMorticia - entities: - uid: 17535 components: - type: Transform @@ -112334,19 +123962,19 @@ entities: parent: 2 - proto: SpawnMobReindeerBuck entities: - - uid: 5924 + - uid: 61 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,14.5 + rot: 1.5707963267948966 rad + pos: -3.5,-53.5 parent: 2 - proto: SpawnMobReindeerDoe entities: - - uid: 8861 + - uid: 10952 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,16.5 + pos: 6.5,-53.5 parent: 2 - proto: SpawnMobShiva entities: @@ -112371,10 +123999,10 @@ entities: parent: 2 - proto: SpawnMobWalter entities: - - uid: 10926 + - uid: 12182 components: - type: Transform - pos: -33.5,-37.5 + pos: -37.5,-38.5 parent: 2 - proto: SpawnPointAtmos entities: @@ -112395,15 +124023,15 @@ entities: parent: 2 - proto: SpawnPointBartender entities: - - uid: 3720 + - uid: 20192 components: - type: Transform - pos: -4.5,-44.5 + pos: 2.5,-44.5 parent: 2 - - uid: 3721 + - uid: 22131 components: - type: Transform - pos: -3.5,-44.5 + pos: -0.5,-44.5 parent: 2 - proto: SpawnPointBorg entities: @@ -112509,20 +124137,25 @@ entities: parent: 2 - proto: SpawnPointChemist entities: - - uid: 17252 + - uid: 15321 components: - type: Transform - pos: -29.5,-34.5 + pos: -30.5,-37.5 parent: 2 - - uid: 17253 + - uid: 15325 + components: + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - uid: 15326 components: - type: Transform pos: -29.5,-35.5 parent: 2 - - uid: 17254 + - uid: 15327 components: - type: Transform - pos: -33.5,-34.5 + pos: -30.5,-35.5 parent: 2 - proto: SpawnPointChiefEngineer entities: @@ -112533,10 +124166,10 @@ entities: parent: 2 - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 11334 + - uid: 21300 components: - type: Transform - pos: -41.5,-38.5 + pos: -53.5,-22.5 parent: 2 - proto: SpawnPointClown entities: @@ -112554,11 +124187,6 @@ entities: parent: 2 - proto: SpawnPointHeadOfPersonnel entities: - - uid: 7608 - components: - - type: Transform - pos: -13.5,-47.5 - parent: 2 - uid: 17257 components: - type: Transform @@ -112573,42 +124201,20 @@ entities: parent: 2 - proto: SpawnPointJanitor entities: - - uid: 17249 - components: - - type: Transform - pos: 28.5,1.5 - parent: 2 - - uid: 17250 - components: - - type: Transform - pos: 28.5,3.5 - parent: 2 - - uid: 20669 - components: - - type: Transform - pos: 28.5,0.5 - parent: 2 -- proto: SpawnPointLatejoin - entities: - - uid: 17217 - components: - - type: Transform - pos: -8.5,-64.5 - parent: 2 - - uid: 17258 + - uid: 20500 components: - type: Transform - pos: 11.5,-65.5 + pos: 26.5,0.5 parent: 2 - - uid: 17259 + - uid: 21459 components: - type: Transform - pos: 11.5,-64.5 + pos: 27.5,2.5 parent: 2 - - uid: 17260 + - uid: 21762 components: - type: Transform - pos: -8.5,-65.5 + pos: 25.5,2.5 parent: 2 - proto: SpawnPointLawyer entities: @@ -112624,64 +124230,74 @@ entities: parent: 2 - proto: SpawnPointLibrarian entities: - - uid: 3827 + - uid: 952 components: - type: Transform - pos: 15.5,-37.5 + pos: 21.5,-39.5 parent: 2 - - uid: 3828 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 3656 components: - type: Transform - pos: 19.5,-36.5 + pos: -48.5,-30.5 parent: 2 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 11464 + - uid: 3806 components: - type: Transform - pos: -44.5,-37.5 + pos: -43.5,-29.5 parent: 2 - - uid: 11465 + - uid: 3808 components: - type: Transform - pos: -44.5,-36.5 + pos: -41.5,-29.5 parent: 2 - - uid: 18000 + - uid: 3809 components: - type: Transform - pos: -39.5,-22.5 + pos: -37.5,-23.5 parent: 2 - - uid: 18001 + - uid: 6534 components: - type: Transform - pos: -37.5,-22.5 + pos: -48.5,-29.5 parent: 2 - - uid: 18052 + - uid: 7159 components: - type: Transform - pos: -44.5,-32.5 + pos: -36.5,-23.5 parent: 2 - proto: SpawnPointMedicalIntern entities: - - uid: 3682 + - uid: 22186 components: - type: Transform - pos: -44.5,-34.5 + pos: -43.5,-30.5 parent: 2 - - uid: 5024 + - uid: 22187 components: - type: Transform - pos: -44.5,-33.5 + pos: -41.5,-30.5 parent: 2 - - uid: 18002 + - uid: 22188 + components: + - type: Transform + pos: -48.5,-28.5 + parent: 2 + - uid: 22189 + components: + - type: Transform + pos: -48.5,-31.5 + parent: 2 + - uid: 22190 components: - type: Transform pos: -38.5,-23.5 parent: 2 - - uid: 18003 + - uid: 22191 components: - type: Transform - pos: -38.5,-21.5 + pos: -35.5,-23.5 parent: 2 - proto: SpawnPointMime entities: @@ -112709,30 +124325,30 @@ entities: parent: 2 - proto: SpawnPointObserver entities: - - uid: 15746 + - uid: 21116 components: - type: Transform - pos: 1.5,-49.5 + pos: 1.5,-50.5 parent: 2 - proto: SpawnPointParamedic entities: - - uid: 10486 + - uid: 12311 components: - type: Transform - pos: -30.5,-26.5 + pos: -28.5,-22.5 parent: 2 - - uid: 10725 + - uid: 12319 components: - type: Transform - pos: -31.5,-26.5 + pos: -29.5,-22.5 parent: 2 - - uid: 10731 +- proto: SpawnPointPassenger + entities: + - uid: 194 components: - type: Transform - pos: -29.5,-26.5 + pos: 0.5,-51.5 parent: 2 -- proto: SpawnPointPassenger - entities: - uid: 11013 components: - type: Transform @@ -112753,31 +124369,6 @@ entities: - type: Transform pos: 8.5,-24.5 parent: 2 - - uid: 16168 - components: - - type: Transform - pos: 23.5,-40.5 - parent: 2 - - uid: 16169 - components: - - type: Transform - pos: 22.5,-41.5 - parent: 2 - - uid: 16170 - components: - - type: Transform - pos: 0.5,-48.5 - parent: 2 - - uid: 16171 - components: - - type: Transform - pos: 1.5,-48.5 - parent: 2 - - uid: 16172 - components: - - type: Transform - pos: 2.5,-48.5 - parent: 2 - uid: 16173 components: - type: Transform @@ -112793,11 +124384,6 @@ entities: - type: Transform pos: -17.5,-23.5 parent: 2 - - uid: 16178 - components: - - type: Transform - pos: 18.5,7.5 - parent: 2 - uid: 16181 components: - type: Transform @@ -112848,27 +124434,72 @@ entities: - type: Transform pos: 20.5,-50.5 parent: 2 - - uid: 17650 + - uid: 21114 components: - type: Transform - pos: 30.5,27.5 + pos: 1.5,-52.5 parent: 2 - - uid: 17652 + - uid: 21115 + components: + - type: Transform + pos: 2.5,-51.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 21951 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 21952 components: - type: Transform - pos: 30.5,24.5 + pos: 22.5,5.5 + parent: 2 + - uid: 21953 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 22518 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - uid: 22519 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 22520 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 22521 + components: + - type: Transform + pos: -30.5,-53.5 + parent: 2 + - uid: 22522 + components: + - type: Transform + pos: -29.5,-51.5 parent: 2 - proto: SpawnPointPsychologist entities: - - uid: 17262 + - uid: 10505 components: - type: Transform - pos: -33.5,-44.5 + pos: -37.5,-54.5 parent: 2 - - uid: 17263 + - uid: 12563 components: - type: Transform - pos: -32.5,-45.5 + pos: -37.5,-52.5 parent: 2 - proto: SpawnPointQuartermaster entities: @@ -112879,11 +124510,6 @@ entities: parent: 2 - proto: SpawnPointReporter entities: - - uid: 3877 - components: - - type: Transform - pos: 20.5,-36.5 - parent: 2 - uid: 3878 components: - type: Transform @@ -112925,20 +124551,20 @@ entities: parent: 2 - proto: SpawnPointSalvageSpecialist entities: - - uid: 17459 + - uid: 22477 components: - type: Transform - pos: 13.5,23.5 + pos: 11.5,27.5 parent: 2 - - uid: 17460 + - uid: 22478 components: - type: Transform - pos: 14.5,23.5 + pos: 12.5,27.5 parent: 2 - - uid: 17461 + - uid: 22480 components: - type: Transform - pos: 15.5,23.5 + pos: 13.5,27.5 parent: 2 - proto: SpawnPointScientist entities: @@ -113003,54 +124629,59 @@ entities: parent: 2 - proto: SpawnPointServiceWorker entities: - - uid: 15300 + - uid: 22779 components: - type: Transform - pos: -9.5,-41.5 + pos: -9.5,-40.5 parent: 2 - - uid: 15658 + - uid: 22780 components: - type: Transform - pos: -8.5,-41.5 + pos: -8.5,-40.5 parent: 2 - - uid: 20155 + - uid: 22781 components: - type: Transform - pos: -7.5,-41.5 + pos: -8.5,-37.5 + parent: 2 + - uid: 22782 + components: + - type: Transform + pos: -9.5,-37.5 parent: 2 - proto: SpawnPointStationEngineer entities: - - uid: 5541 + - uid: 2128 components: - type: Transform - pos: -1.5,-14.5 + pos: 0.5,-20.5 parent: 2 - - uid: 5550 + - uid: 2403 components: - type: Transform - pos: -1.5,-13.5 + pos: 0.5,-19.5 parent: 2 - - uid: 7035 + - uid: 4072 components: - type: Transform - pos: -1.5,-15.5 + pos: -1.5,-14.5 parent: 2 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 5870 + - uid: 4096 components: - type: Transform - pos: -4.5,-15.5 + pos: -0.5,-14.5 parent: 2 - - uid: 6940 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 2387 components: - type: Transform - pos: -4.5,-14.5 + pos: 0.5,-21.5 parent: 2 - - uid: 8464 + - uid: 2410 components: - type: Transform - pos: -4.5,-13.5 + pos: 0.5,-18.5 parent: 2 - proto: SpawnPointWarden entities: @@ -113059,13 +124690,6 @@ entities: - type: Transform pos: -21.5,-4.5 parent: 2 -- proto: SpawnVendingMachineRestockFoodDrink - entities: - - uid: 13199 - components: - - type: Transform - pos: 16.5,3.5 - parent: 2 - proto: SprayBottle entities: - uid: 3499 @@ -113085,11 +124709,6 @@ entities: - type: Transform pos: 1.7120702,-33.15089 parent: 2 - - uid: 3763 - components: - - type: Transform - pos: 0.7823801,-45.45515 - parent: 2 - uid: 5911 components: - type: Transform @@ -113108,36 +124727,29 @@ entities: - uid: 9411 components: - type: Transform - pos: 29.681166,3.766048 + pos: 24.486702,0.22927201 parent: 2 - uid: 9412 components: - type: Transform - pos: 29.719204,4.0160723 + pos: 24.278265,0.21884787 parent: 2 - uid: 9413 components: - type: Transform - pos: 29.545681,4.245547 - parent: 2 -- proto: SprayBottleWater - entities: - - uid: 17541 - components: - - type: Transform - pos: 14.197013,-2.5043328 + pos: 24.392906,0.38563025 parent: 2 - proto: SprayPainter entities: - uid: 3987 components: - type: Transform - pos: 20.488756,-39.273766 + pos: 21.592346,-41.32462 parent: 2 - uid: 4717 components: - type: Transform - pos: -5.5797024,-10.352867 + pos: -5.501354,-10.355706 parent: 2 - proto: StairDark entities: @@ -113193,12 +124805,6 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-42.5 parent: 2 - - uid: 7487 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-47.5 - parent: 2 - uid: 9014 components: - type: Transform @@ -113219,79 +124825,11 @@ entities: - type: Transform pos: -16.5,1.5 parent: 2 - - uid: 12315 - components: - - type: Transform - pos: 14.5,9.5 - parent: 2 - - uid: 12316 - components: - - type: Transform - pos: 15.5,9.5 - parent: 2 - - uid: 12317 - components: - - type: Transform - pos: 16.5,9.5 - parent: 2 - - uid: 12318 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-2.5 - parent: 2 - - uid: 12319 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-3.5 - parent: 2 - - uid: 12320 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-4.5 - parent: 2 - - uid: 13266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-49.5 - parent: 2 - - uid: 13267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-48.5 - parent: 2 - - uid: 13268 + - uid: 14117 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,-47.5 - parent: 2 - - uid: 13269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-49.5 - parent: 2 - - uid: 13270 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-48.5 - parent: 2 - - uid: 13271 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-47.5 - parent: 2 - - uid: 13274 - components: - - type: Transform - pos: 3.5,-45.5 + pos: -46.5,-45.5 parent: 2 - uid: 14366 components: @@ -113309,58 +124847,20 @@ entities: - type: Transform pos: -14.5,1.5 parent: 2 - - uid: 19025 - components: - - type: Transform - pos: 32.5,0.5 - parent: 2 - - uid: 19026 - components: - - type: Transform - pos: 31.5,0.5 - parent: 2 - - uid: 19027 - components: - - type: Transform - pos: 33.5,0.5 - parent: 2 - proto: StairStageDark entities: - - uid: 818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-55.5 - parent: 2 - - uid: 3751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-37.5 - parent: 2 - uid: 4972 components: - type: Transform rot: -1.5707963267948966 rad pos: 51.5,-42.5 parent: 2 - - uid: 5243 - components: - - type: Transform - pos: -49.5,-31.5 - parent: 2 - uid: 5546 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-42.5 parent: 2 - - uid: 16071 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-29.5 - parent: 2 - proto: StairStageWood entities: - uid: 3515 @@ -113384,12 +124884,18 @@ entities: - type: Transform pos: 50.5,10.5 parent: 2 + - uid: 10515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-37.5 + parent: 2 - proto: StasisBed entities: - - uid: 4943 + - uid: 6573 components: - type: Transform - pos: -38.5,-26.5 + pos: -39.5,-29.5 parent: 2 - proto: StationAiUploadComputer entities: @@ -113415,10 +124921,10 @@ entities: parent: 2 - proto: StationMap entities: - - uid: 5100 + - uid: 1684 components: - type: Transform - pos: -25.5,-39.5 + pos: 29.5,-1.5 parent: 2 - uid: 5148 components: @@ -113430,20 +124936,20 @@ entities: - type: Transform pos: 29.5,-19.5 parent: 2 - - uid: 11455 + - uid: 8454 components: - type: Transform - pos: 30.5,-1.5 + pos: -18.5,-17.5 parent: 2 - - uid: 16663 + - uid: 12941 components: - type: Transform - pos: 12.5,-47.5 + pos: -25.5,-39.5 parent: 2 - - uid: 16664 + - uid: 16663 components: - type: Transform - pos: -6.5,-46.5 + pos: 12.5,-47.5 parent: 2 - uid: 16667 components: @@ -113465,11 +124971,6 @@ entities: - type: Transform pos: 30.5,13.5 parent: 2 - - uid: 16675 - components: - - type: Transform - pos: 34.5,22.5 - parent: 2 - uid: 16676 components: - type: Transform @@ -113480,15 +124981,10 @@ entities: - type: Transform pos: 46.5,-26.5 parent: 2 - - uid: 16682 - components: - - type: Transform - pos: -18.5,-17.5 - parent: 2 - - uid: 19553 + - uid: 21872 components: - type: Transform - pos: -30.5,-47.5 + pos: -31.5,-57.5 parent: 2 - proto: StationMapAssembly entities: @@ -113497,6 +124993,29 @@ entities: - type: Transform pos: 71.5,-39.5 parent: 2 +- proto: StationMapBroken + entities: + - uid: 1347 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 +- proto: StatueVenusBlue + entities: + - uid: 10580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-52.5 + parent: 2 +- proto: StatueVenusRed + entities: + - uid: 6435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-52.5 + parent: 2 - proto: SteelBench entities: - uid: 683 @@ -113505,17 +125024,16 @@ entities: rot: 3.141592653589793 rad pos: -28.5,-11.5 parent: 2 - - uid: 2259 + - uid: 6290 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,-41.5 + pos: 14.5,1.5 parent: 2 - - uid: 2434 + - uid: 6634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,-42.5 + pos: 20.5,-4.5 parent: 2 - uid: 8381 components: @@ -113541,11 +125059,17 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-11.5 parent: 2 - - uid: 9596 + - uid: 9591 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-11.5 + pos: 15.5,0.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-11.5 parent: 2 - uid: 18897 components: @@ -113553,6 +125077,11 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,-12.5 parent: 2 + - uid: 21837 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 - proto: Stool entities: - uid: 3803 @@ -113573,44 +125102,14 @@ entities: rot: -1.5707963267948966 rad pos: 35.355778,-9.333347 parent: 2 - - uid: 6310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.652184,1.584077 - parent: 2 - - uid: 7614 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.439132,-61.18458 - parent: 2 - uid: 8882 components: - type: Transform rot: 3.141592653589793 rad pos: 47.478497,-12.295409 parent: 2 - - uid: 9131 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 37.502296,11.696904 - parent: 2 - - uid: 10651 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -45.609833,-53.361378 - parent: 2 - proto: StoolBar entities: - - uid: 71 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-52.5 - parent: 2 - uid: 132 components: - type: Transform @@ -113674,11 +125173,11 @@ entities: rot: 3.141592653589793 rad pos: 45.5,9.5 parent: 2 - - uid: 11114 + - uid: 8317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-52.5 + rot: 1.5707963267948966 rad + pos: -7.5,-44.5 parent: 2 - uid: 11257 components: @@ -113702,16 +125201,34 @@ entities: - type: Transform pos: 72.5,-61.5 parent: 2 - - uid: 15019 + - uid: 14986 components: - type: Transform - pos: 73.5,-61.5 + rot: 3.141592653589793 rad + pos: -4.5,-47.5 parent: 2 - - uid: 15668 + - uid: 14987 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-52.5 + pos: -3.5,-47.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-47.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-47.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + pos: 73.5,-61.5 parent: 2 - uid: 16213 components: @@ -113732,40 +125249,45 @@ entities: parent: 2 - proto: StorageCanister entities: - - uid: 1469 + - uid: 2121 components: - type: Transform - pos: 3.5,4.5 + pos: 26.5,-44.5 parent: 2 - - uid: 2121 + - uid: 6276 components: - type: Transform - pos: 26.5,-44.5 + pos: 4.5,-4.5 parent: 2 - - uid: 4471 + - uid: 7066 components: - type: Transform - pos: 26.5,-43.5 + pos: 3.5,5.5 parent: 2 - - uid: 19990 + - uid: 9683 components: - type: Transform - pos: 4.5,-4.5 + pos: 9.5,-4.5 parent: 2 - - uid: 19991 + - uid: 9685 components: - type: Transform - pos: 3.5,-4.5 + pos: 1.5,-15.5 parent: 2 - - uid: 20735 + - uid: 9696 components: - type: Transform - pos: 5.5,-0.5 + pos: 5.5,-4.5 parent: 2 - - uid: 20736 + - uid: 10497 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 22787 components: - type: Transform - pos: 5.5,-1.5 + pos: 34.5,-46.5 parent: 2 - proto: StrangePill entities: @@ -113779,28 +125301,26 @@ entities: - type: Transform pos: -25.723806,23.681719 parent: 2 -- proto: SubstationBasic +- proto: Stunbaton entities: - - uid: 798 + - uid: 3561 components: - - type: MetaData - name: Cargo Substation - type: Transform - pos: -11.5,25.5 + pos: -20.47044,6.5382667 parent: 2 - - uid: 1525 + - uid: 5118 components: - - type: MetaData - name: Tech Vault Substation - type: Transform - pos: 16.5,-19.5 + pos: -20.720564,6.5591145 parent: 2 - - uid: 1639 +- proto: SubstationBasic + entities: + - uid: 798 components: - type: MetaData - name: North Maints Substation + name: Cargo Substation - type: Transform - pos: 23.5,14.5 + pos: -11.5,25.5 parent: 2 - uid: 1692 components: @@ -113809,13 +125329,6 @@ entities: - type: Transform pos: 41.5,-32.5 parent: 2 - - uid: 2248 - components: - - type: MetaData - name: North East Substation - - type: Transform - pos: 36.5,12.5 - parent: 2 - uid: 2347 components: - type: MetaData @@ -113851,54 +125364,73 @@ entities: - type: Transform pos: 25.5,-18.5 parent: 2 - - uid: 6498 + - uid: 7425 components: - type: MetaData - name: Telecoms Substation + name: South Maints Substation - type: Transform - pos: 24.5,3.5 + pos: 28.5,-50.5 parent: 2 - - uid: 6645 + - uid: 8780 components: - type: MetaData - name: Gravity Generator Substation + name: Solars - North East Substation - type: Transform - pos: 21.5,-11.5 + pos: 44.5,3.5 parent: 2 - - uid: 7425 + - uid: 8952 components: - type: MetaData - name: South Maints Substation + name: Solars North West Substation - type: Transform - pos: 28.5,-50.5 + pos: -28.5,22.5 parent: 2 - - uid: 8008 + - uid: 10154 components: - type: MetaData - name: Medical North Substation + name: Medical Substation - type: Transform - pos: -27.5,-18.5 + pos: -29.5,-18.5 parent: 2 - - uid: 8780 + - uid: 12610 components: - type: MetaData - name: North East Solars Substation + name: Telecoms Substation - type: Transform - pos: 44.5,3.5 + pos: 16.5,-18.5 parent: 2 - - uid: 8952 + - uid: 12847 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 + - uid: 13303 components: - type: MetaData - name: Solars North West Substation + name: Arrivals Substation - type: Transform - pos: -28.5,22.5 + pos: 14.5,-64.5 parent: 2 - - uid: 10396 + - uid: 13349 components: - type: MetaData - name: South West Solars Substation + name: Gravity Substation - type: Transform - pos: -43.5,-53.5 + pos: 23.5,-6.5 + parent: 2 + - uid: 15804 + components: + - type: MetaData + name: Solars - South West Substation + - type: Transform + pos: -55.5,-60.5 + parent: 2 + - uid: 22092 + components: + - type: MetaData + name: Salvage Substation + - type: Transform + pos: 26.5,19.5 parent: 2 - proto: SubstationBasicEmpty entities: @@ -113937,110 +125469,107 @@ entities: - type: Transform pos: -5.5,-25.5 parent: 2 -- proto: SuitStorageEngi +- proto: SuitStorageCMO entities: - - uid: 2754 + - uid: 12946 components: - type: Transform - pos: -0.5,-15.5 + pos: -50.5,-23.5 parent: 2 - - uid: 2755 +- proto: SuitStorageEngi + entities: + - uid: 1635 components: - type: Transform - pos: -0.5,-14.5 + pos: 1.5,-21.5 parent: 2 - uid: 5341 components: - type: Transform pos: -34.5,22.5 parent: 2 - - uid: 9950 + - uid: 9547 components: - type: Transform - pos: -0.5,-12.5 + pos: 1.5,-18.5 parent: 2 - - uid: 15035 + - uid: 10077 components: - type: Transform - pos: -0.5,-13.5 + pos: 0.5,-15.5 parent: 2 -- proto: SuitStorageEVA - entities: - - uid: 15219 + - uid: 10080 components: - type: Transform - pos: -25.5,-15.5 + pos: 0.5,-14.5 parent: 2 -- proto: SuitStorageEVAAlternate +- proto: SuitStorageEVA entities: - - uid: 4633 - components: - - type: Transform - pos: -4.5,-54.5 - parent: 2 - - uid: 8206 + - uid: 429 components: - type: Transform - pos: -4.5,-55.5 + pos: -37.5,-14.5 parent: 2 - - uid: 10484 +- proto: SuitStorageEVAAlternate + entities: + - uid: 2318 components: - type: Transform - pos: -54.5,-11.5 + pos: -11.5,-56.5 parent: 2 - - uid: 11901 + - uid: 4166 components: - type: Transform - pos: -4.5,-56.5 + pos: -0.5,-57.5 parent: 2 - - uid: 12521 + - uid: 4752 components: - type: Transform - pos: -4.5,-53.5 + pos: -0.5,-55.5 parent: 2 -- proto: SuitStorageEVAEmergency - entities: - - uid: 5470 + - uid: 4848 components: - type: Transform - pos: -31.5,-1.5 + pos: -2.5,-55.5 parent: 2 - - uid: 5511 + - uid: 4861 components: - type: Transform - pos: -11.5,-56.5 + pos: 1.5,-55.5 parent: 2 - - uid: 7022 + - uid: 10484 components: - type: Transform - pos: -10.5,-56.5 + pos: -54.5,-11.5 parent: 2 - - uid: 10009 + - uid: 19204 components: - type: Transform - pos: 52.5,-33.5 + pos: 1.5,-57.5 parent: 2 - - uid: 12884 +- proto: SuitStorageEVAEmergency + entities: + - uid: 6392 components: - type: Transform - pos: -31.5,-0.5 + pos: 9.5,-77.5 parent: 2 - - uid: 18726 + - uid: 6525 components: - type: Transform - pos: 51.5,-33.5 + pos: -6.5,-77.5 parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 13136 + - uid: 8465 components: - type: Transform - pos: -29.5,-3.5 + pos: -30.5,-5.5 parent: 2 - - uid: 20723 + - uid: 11806 components: - type: Transform - pos: -28.5,-3.5 + pos: -30.5,-3.5 parent: 2 - proto: SuitStorageHOS entities: @@ -114082,6 +125611,14 @@ entities: parent: 2 - type: SurveillanceCamera id: Bridge - Entrance + - uid: 4843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-66.5 + parent: 2 + - type: SurveillanceCamera + id: Vault - Outside South - uid: 5064 components: - type: Transform @@ -114089,14 +125626,14 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Outside North East - - uid: 5216 + - uid: 5663 components: - - type: MetaData - name: AI Chute - Outside Airlock - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-13.5 + rot: 1.5707963267948966 rad + pos: -28.5,-61.5 parent: 2 + - type: SurveillanceCamera + id: Vault - Inside - uid: 8020 components: - type: Transform @@ -114120,14 +125657,6 @@ entities: parent: 2 - type: SurveillanceCamera id: HoP's Office - - uid: 8317 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -53.5,-15.5 - parent: 2 - - type: SurveillanceCamera - id: AI Satellite - Outside South East - uid: 10451 components: - type: Transform @@ -114135,22 +125664,6 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Foyer - - uid: 10460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-10.5 - parent: 2 - - type: SurveillanceCamera - id: Gravity Generator - - uid: 11000 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-14.5 - parent: 2 - - type: SurveillanceCamera - id: AI Chute - Entrance - uid: 11004 components: - type: Transform @@ -114158,14 +125671,6 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Upload - - uid: 11787 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,0.5 - parent: 2 - - type: SurveillanceCamera - id: Telecoms - uid: 14164 components: - type: Transform @@ -114180,14 +125685,6 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Core South East - - uid: 14354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 2 - - type: SurveillanceCamera - id: Vault - uid: 17245 components: - type: Transform @@ -114196,14 +125693,6 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Power - - uid: 17949 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-51.5 - parent: 2 - - type: SurveillanceCamera - id: EVA - uid: 17969 components: - type: Transform @@ -114242,38 +125731,32 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Satellite - Core North West - - uid: 20399 - components: - - type: Transform - pos: 12.5,-19.5 - parent: 2 - - type: SurveillanceCamera - id: Tech Vault - - uid: 20613 + - uid: 21154 components: - type: Transform - pos: -23.5,-16.5 + rot: 3.141592653589793 rad + pos: -0.5,-55.5 parent: 2 - type: SurveillanceCamera - id: AI Chute - Bin -- proto: SurveillanceCameraEngineering - entities: - - uid: 402 + id: EVA + - uid: 21276 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-1.5 + pos: -54.5,-15.5 parent: 2 - type: SurveillanceCamera - id: Atmos West - - uid: 1298 + id: AI Satellite - Outside South East + - uid: 22148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-53.5 + rot: 3.141592653589793 rad + pos: -30.5,-44.5 parent: 2 - type: SurveillanceCamera - id: Solars - South West + id: Conference Room +- proto: SurveillanceCameraEngineering + entities: - uid: 5456 components: - type: Transform @@ -114282,117 +125765,103 @@ entities: parent: 2 - type: SurveillanceCamera id: Solars - North West - - uid: 8669 - components: - - type: Transform - pos: -34.5,-55.5 - parent: 2 - - type: SurveillanceCamera - id: Shuttle Building Storage - - uid: 10462 + - uid: 7864 components: - type: Transform - pos: 5.5,-23.5 + rot: 3.141592653589793 rad + pos: 5.5,-16.5 parent: 2 - type: SurveillanceCamera - id: Station Anchor - - uid: 11069 + id: Tech Vault + - uid: 7872 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-16.5 + pos: 14.5,-17.5 parent: 2 - type: SurveillanceCamera - id: Materials Room - - uid: 11425 + id: Telecoms + - uid: 18049 components: + - type: MetaData + name: camera - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-19.5 + pos: -13.5,-15.5 parent: 2 - type: SurveillanceCamera - id: AME Room - - uid: 11426 + id: Front Desk + - uid: 20296 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-19.5 + pos: 50.5,3.5 parent: 2 - type: SurveillanceCamera - id: SMES Power Bank - - uid: 11435 + id: Solars - North East + - uid: 21194 components: - type: Transform - pos: -3.5,-15.5 + rot: 3.141592653589793 rad + pos: 3.5,-21.5 parent: 2 - type: SurveillanceCamera - id: Lockers - - uid: 18047 + id: Station Anchor + - uid: 21403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-9.5 + pos: 25.5,-10.5 parent: 2 - type: SurveillanceCamera - id: TEG West - - uid: 18049 + id: Gravity Generator + - uid: 21448 components: - - type: MetaData - name: camera - type: Transform - pos: -13.5,-15.5 + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Front Desk - - uid: 20296 + id: Atmos - East + - uid: 21608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,3.5 + rot: 1.5707963267948966 rad + pos: -65.5,-60.5 parent: 2 - type: SurveillanceCamera - id: Solars - North East -- proto: SurveillanceCameraGeneral - entities: - - uid: 7726 + id: Solars - South West - West Side + - uid: 22739 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,-53.5 + pos: -10.5,-4.5 parent: 2 - type: SurveillanceCamera - id: Disposals - - uid: 7831 + id: Atmos - West +- proto: SurveillanceCameraGeneral + entities: + - uid: 526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,5.5 + rot: -1.5707963267948966 rad + pos: -8.5,-72.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Detective's Office - - uid: 7978 + id: Arrivals West Arm - South + - uid: 1180 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,26.5 - parent: 2 - - type: SurveillanceCamera - id: Docking Arm - Seating - - uid: 8307 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-59.5 + pos: 11.5,-23.5 parent: 2 - type: SurveillanceCamera - id: Shuttle Construction - Materials - - uid: 8550 + id: Hall - Outside Clothing + - uid: 7726 components: - type: Transform - pos: 22.5,-4.5 + rot: 3.141592653589793 rad + pos: 29.5,-53.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Grav and Comms + id: Disposals - uid: 8554 components: - type: Transform @@ -114401,30 +125870,29 @@ entities: parent: 2 - type: SurveillanceCamera id: Evac - North - - uid: 10450 + - uid: 10076 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,43.5 + rot: 3.141592653589793 rad + pos: 11.5,-81.5 parent: 2 - type: SurveillanceCamera - id: Docking Arm - Outside NW - - uid: 10479 + id: Arrivals East Arm - Outside + - uid: 10491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-68.5 + pos: 12.5,-44.5 parent: 2 - type: SurveillanceCamera - id: Shuttle Construction - Airlock - - uid: 10489 + id: Hall - Outside Cryo + - uid: 10584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-45.5 + rot: -1.5707963267948966 rad + pos: -8.5,-50.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Psych + id: Arrivals West Arm - North - uid: 10656 components: - type: Transform @@ -114433,14 +125901,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Hall - Outside Engineering - - uid: 10719 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-30.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Medical - uid: 11045 components: - type: Transform @@ -114448,326 +125908,319 @@ entities: parent: 2 - type: SurveillanceCamera id: Tool Room - - uid: 11050 + - uid: 11070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,40.5 + pos: 38.5,-22.5 parent: 2 - type: SurveillanceCamera - id: Docking Arm - Outside NE - - uid: 11060 + id: Hall - Outside Evac + - uid: 11278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,22.5 + pos: -17.5,-42.5 parent: 2 - type: SurveillanceCamera - id: Docking Arm - Outside SE - - uid: 11063 + id: Hall - Outside HoP + - uid: 11460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-3.5 + rot: 3.141592653589793 rad + pos: -8.5,-81.5 parent: 2 - type: SurveillanceCamera - id: Hall - NE Intersection - - uid: 11064 + id: Arrivals West Arm - Outside + - uid: 17484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,39.5 + rot: 1.5707963267948966 rad + pos: -10.5,16.5 parent: 2 - type: SurveillanceCamera - id: Docking Arm - North - - uid: 11070 + id: Garden + - uid: 18005 components: - type: Transform - pos: 38.5,-22.5 + rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Evac - - uid: 11273 + id: Hall - Outside Security + - uid: 18056 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 + rot: 1.5707963267948966 rad + pos: -1.5,-37.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Science - - uid: 11274 + id: Canteen - Stage + - uid: 18169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-47.5 + pos: -11.5,10.5 parent: 2 - type: SurveillanceCamera - id: Hall - East Arrivals - - uid: 11277 + id: Hall - North West Garden + - uid: 20398 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-39.5 - parent: 2 - - type: SurveillanceCamera - id: Canteen - West - - uid: 11278 - components: - - type: Transform - pos: -17.5,-42.5 + pos: 9.5,-29.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside HoP - - uid: 11629 + id: Banana Phone + - uid: 20401 components: - type: Transform - pos: 16.5,-44.5 + rot: 1.5707963267948966 rad + pos: 53.5,-23.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Cryo - - uid: 13257 + id: Evac - West + - uid: 20402 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-37.5 + pos: 44.5,-24.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Library - - uid: 14238 + id: Evac - East + - uid: 21138 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,4.5 + pos: -6.5,-60.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Vault - - uid: 16332 + id: Arrivals West Arm - Center + - uid: 21139 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,-11.5 + pos: 9.5,-60.5 parent: 2 - type: SurveillanceCamera - id: Hall - West of Chapel - - uid: 17484 + id: Arrivals East Arm - Center + - uid: 21140 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,16.5 + pos: 11.5,-50.5 parent: 2 - type: SurveillanceCamera - id: Garden - - uid: 17970 + id: Arrivals East Arm - North + - uid: 21143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-49.5 + rot: 1.5707963267948966 rad + pos: 11.5,-72.5 parent: 2 - type: SurveillanceCamera - id: Arrivals West - Outside EVA - - uid: 18005 + id: Arrivals East Arm - South + - uid: 21155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,1.5 + pos: 3.5,-53.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Security - - uid: 18048 + id: Arrivals Lounge + - uid: 21402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-20.5 + rot: 1.5707963267948966 rad + pos: 32.5,-12.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside Tools Room - - uid: 18056 + id: Hall - Outside Gravity Generator + - uid: 22057 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-37.5 + pos: 33.5,-2.5 parent: 2 - type: SurveillanceCamera - id: Canteen - Stage - - uid: 18169 + id: Hall - Detective's Garden + - uid: 22145 components: - type: Transform - pos: -11.5,10.5 + pos: 15.5,5.5 parent: 2 - type: SurveillanceCamera - id: Hall - NW Garden - - uid: 20392 + id: Hall - Coffee Hall + - uid: 22147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-64.5 + rot: 3.141592653589793 rad + pos: 9.5,12.5 parent: 2 - type: SurveillanceCamera - id: Arrivals West - Airlocks - - uid: 20393 + id: Hall - Cargo Loading Bay + - uid: 22149 components: + - type: MetaData + name: camera - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,-64.5 + pos: -29.5,-53.5 parent: 2 - type: SurveillanceCamera - id: Arrivals East - Airlocks - - uid: 20394 + id: Hall - Outside Psychology + - uid: 22151 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-54.5 + pos: -32.5,-78.5 parent: 2 - type: SurveillanceCamera - id: Arrivals East - Seating - - uid: 20395 + id: Docking Arm - South Gates + - uid: 22152 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-52.5 + rot: 1.5707963267948966 rad + pos: -36.5,-82.5 parent: 2 - type: SurveillanceCamera - id: Arrivals West - EVA - - uid: 20397 + id: Docking Arm - Outside South West + - uid: 22153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-24.5 + rot: -1.5707963267948966 rad + pos: -30.5,-82.5 parent: 2 - type: SurveillanceCamera - id: Clothing Vendors - - uid: 20398 + id: Docking Arm - Outside South East + - uid: 22192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-29.5 + rot: 1.5707963267948966 rad + pos: -22.5,-30.5 parent: 2 - type: SurveillanceCamera - id: Banana Phone - - uid: 20400 + id: Hall - Med Entrance + - uid: 22565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-13.5 + rot: 1.5707963267948966 rad + pos: -32.5,-67.5 parent: 2 - type: SurveillanceCamera - id: Chapel - - uid: 20401 + id: Docking Arm - North Gate +- proto: SurveillanceCameraMedical + entities: + - uid: 11147 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,-23.5 + pos: 22.5,0.5 parent: 2 - type: SurveillanceCamera - id: Evac - West - - uid: 20402 + id: Clinic + - uid: 21317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-24.5 + pos: -45.5,-21.5 parent: 2 - type: SurveillanceCamera - id: Evac - East - - uid: 20409 + id: Surgery + - uid: 21324 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,18.5 + pos: -53.5,-31.5 parent: 2 - type: SurveillanceCamera - id: Hall - Outside North Airlock -- proto: SurveillanceCameraMedical - entities: - - uid: 8422 + id: Virology + - uid: 22154 components: - type: Transform - pos: -34.5,-31.5 + rot: 3.141592653589793 rad + pos: -49.5,-43.5 parent: 2 - type: SurveillanceCamera - id: Entrance Hall - - uid: 9548 + id: Morgue + - uid: 22155 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,-35.5 + pos: -47.5,-36.5 parent: 2 - type: SurveillanceCamera - id: South Hall - - uid: 10235 + id: Aft Hall - Starboard + - uid: 22156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-40.5 + rot: 1.5707963267948966 rad + pos: -41.5,-35.5 parent: 2 - type: SurveillanceCamera - id: Virology - - uid: 10440 + id: Cryopods + - uid: 22157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-45.5 + pos: -31.5,-37.5 parent: 2 - type: SurveillanceCamera - id: Morgue - - uid: 10723 + id: Chemistry + - uid: 22158 components: - type: Transform - pos: -31.5,-35.5 + rot: -1.5707963267948966 rad + pos: -31.5,-30.5 parent: 2 - type: SurveillanceCamera - id: Chemistry - - uid: 18050 + id: Waiting Area + - uid: 22159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-24.5 + pos: -26.5,-25.5 parent: 2 - type: SurveillanceCamera - id: Break Area - - uid: 18051 + id: Front Desk + - uid: 22160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-35.5 + rot: 3.141592653589793 rad + pos: -37.5,-22.5 parent: 2 - type: SurveillanceCamera - id: Lockers - - uid: 18055 + id: Break Room + - uid: 22161 components: - type: Transform - pos: -39.5,-43.5 + rot: 1.5707963267948966 rad + pos: -47.5,-29.5 parent: 2 - type: SurveillanceCamera - id: Frog Pond - - uid: 19016 + id: Aft Hall - Stern Dock + - uid: 22162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-22.5 + rot: -1.5707963267948966 rad + pos: -45.5,-30.5 parent: 2 - type: SurveillanceCamera - id: Cryo Pods - - uid: 20121 + id: Medbay - Aft + - uid: 22163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-29.5 + rot: -1.5707963267948966 rad + pos: -35.5,-28.5 parent: 2 - type: SurveillanceCamera - id: Surgery - - uid: 20406 + id: Foyer +- proto: SurveillanceCameraRouterCircuitboard + entities: + - uid: 2970 components: - type: Transform - pos: -31.5,-26.5 + pos: 6.574911,-16.383217 parent: 2 - - type: SurveillanceCamera - id: Paramedic's Office - proto: SurveillanceCameraRouterCommand entities: - - uid: 6247 + - uid: 13218 components: - type: Transform - pos: 5.5,-17.5 + pos: -10.5,-53.5 parent: 2 - uid: 16582 components: @@ -114776,52 +126229,52 @@ entities: parent: 2 - proto: SurveillanceCameraRouterEngineering entities: - - uid: 5217 + - uid: 7888 components: - type: Transform - pos: 8.5,-17.5 + pos: 13.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterGeneral entities: - - uid: 3372 + - uid: 5687 components: - type: Transform - pos: 5.5,-19.5 + pos: 14.5,-19.5 parent: 2 - proto: SurveillanceCameraRouterMedical entities: - - uid: 3379 + - uid: 12464 components: - type: Transform - pos: 7.5,-17.5 + pos: -55.5,-23.5 parent: 2 - proto: SurveillanceCameraRouterScience entities: - - uid: 1515 + - uid: 24 components: - type: Transform - pos: 8.5,-19.5 + pos: 30.5,-33.5 parent: 2 - proto: SurveillanceCameraRouterSecurity entities: - - uid: 1460 + - uid: 6887 components: - type: Transform - pos: 9.5,-17.5 + pos: 17.5,-18.5 parent: 2 - proto: SurveillanceCameraRouterService entities: - - uid: 3374 + - uid: 12986 components: - type: Transform - pos: 6.5,-19.5 + pos: -12.5,-56.5 parent: 2 - proto: SurveillanceCameraRouterSupply entities: - - uid: 3170 + - uid: 9297 components: - type: Transform - pos: 9.5,-19.5 + pos: 11.5,-19.5 parent: 2 - proto: SurveillanceCameraScience entities: @@ -114833,14 +126286,6 @@ entities: parent: 2 - type: SurveillanceCamera id: R&D - - uid: 8513 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-45.5 - parent: 2 - - type: SurveillanceCamera - id: Artifacts - Cans - uid: 12293 components: - type: Transform @@ -114902,21 +126347,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Foyer - - uid: 3706 - components: - - type: Transform - pos: -28.5,-11.5 - parent: 2 - - type: SurveillanceCamera - id: Holding Cell - - uid: 5523 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-3.5 - parent: 2 - - type: SurveillanceCamera - id: Perma Entrance - uid: 7830 components: - type: Transform @@ -114970,21 +126400,6 @@ entities: parent: 2 - type: SurveillanceCamera id: Locker Room - - uid: 20503 - components: - - type: Transform - pos: -36.5,-5.5 - parent: 2 - - type: SurveillanceCamera - id: Perma Kitchen - - uid: 20603 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-7.5 - parent: 2 - - type: SurveillanceCamera - id: Perma - Outside South - uid: 20614 components: - type: Transform @@ -114993,66 +126408,62 @@ entities: parent: 2 - type: SurveillanceCamera id: Perma - Outside North -- proto: SurveillanceCameraService - entities: - - uid: 7673 + - uid: 22738 components: - - type: MetaData - name: Janitorial - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,3.5 + rot: 3.141592653589793 rad + pos: -30.5,-3.5 parent: 2 - type: SurveillanceCamera - id: Janitorial - - uid: 10478 + id: Perma Airlock +- proto: SurveillanceCameraService + entities: + - uid: 9503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-35.5 + pos: 21.5,-41.5 parent: 2 - type: SurveillanceCamera - id: Library - Office - - uid: 11279 + id: Library Desk + - uid: 10478 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,-33.5 + pos: 22.5,-35.5 parent: 2 - type: SurveillanceCamera - id: Hydroponics - Back - - uid: 11281 + id: Reporter's Office + - uid: 11307 components: - type: Transform - pos: -20.5,-38.5 + rot: -1.5707963267948966 rad + pos: -0.5,-32.5 parent: 2 - type: SurveillanceCamera - id: Hydroponics - Front - - uid: 11302 + id: Kitchen - Back + - uid: 22146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-33.5 + pos: 25.5,-0.5 parent: 2 - type: SurveillanceCamera - id: Kitchen - Front - - uid: 11307 + id: Janitor +- proto: SurveillanceCameraSupply + entities: + - uid: 1280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-32.5 + pos: 22.5,21.5 parent: 2 - type: SurveillanceCamera - id: Kitchen - Back - - uid: 11309 + id: Salvage - Shuttle Yard + - uid: 17404 components: - type: Transform - pos: -4.5,-45.5 + pos: 18.5,31.5 parent: 2 - type: SurveillanceCamera - id: Bar - Front -- proto: SurveillanceCameraSupply - entities: + id: Salvage - Magnet - uid: 17482 components: - type: Transform @@ -115069,52 +126480,36 @@ entities: parent: 2 - type: SurveillanceCamera id: Outside QM's Office - - uid: 17485 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,23.5 - parent: 2 - - type: SurveillanceCamera - id: Salvage - - uid: 20403 + - uid: 20405 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,12.5 - parent: 2 - - type: SurveillanceCamera - id: Hall - Outside Cargo - - uid: 20404 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,18.5 + pos: 4.5,26.5 parent: 2 - type: SurveillanceCamera - id: Loading Bay - - uid: 20405 + id: Docking Airlocks + - uid: 22472 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,26.5 + pos: 12.5,28.5 parent: 2 - type: SurveillanceCamera - id: Docking Airlocks - - uid: 20408 + id: Salvage - Lockers + - uid: 22476 components: - type: Transform rot: -1.5707963267948966 rad - pos: 17.5,29.5 + pos: 14.5,21.5 parent: 2 - type: SurveillanceCamera - id: Salvage - Airlocks + id: Salvage - Processing - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 1254 + - uid: 3506 components: - type: Transform - pos: 5.5,-18.5 + pos: 15.5,-19.5 parent: 2 - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: @@ -115153,6 +126548,27 @@ entities: parent: 2 - proto: Syringe entities: + - uid: 907 + components: + - type: Transform + pos: -29.442802,-46.33888 + parent: 2 + - uid: 12661 + components: + - type: Transform + rot: 6.283185307179586 rad + pos: -41.466064,-39.364727 + parent: 2 + - uid: 12977 + components: + - type: Transform + pos: -53.516407,-27.447947 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: -45.478733,-23.540825 + parent: 2 - uid: 18973 components: - type: Transform @@ -115160,15 +126576,11 @@ entities: parent: 2 - proto: Table entities: - - uid: 209 - components: - - type: Transform - pos: -38.5,-2.5 - parent: 2 - - uid: 230 + - uid: 71 components: - type: Transform - pos: 28.5,-16.5 + rot: 3.141592653589793 rad + pos: 13.5,-59.5 parent: 2 - uid: 270 components: @@ -115212,12 +126624,6 @@ entities: - type: Transform pos: -26.5,13.5 parent: 2 - - uid: 474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-15.5 - parent: 2 - uid: 511 components: - type: Transform @@ -115228,12 +126634,6 @@ entities: - type: Transform pos: -27.5,4.5 parent: 2 - - uid: 665 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-2.5 - parent: 2 - uid: 722 components: - type: Transform @@ -115244,16 +126644,23 @@ entities: - type: Transform pos: -11.5,19.5 parent: 2 + - uid: 732 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-37.5 + parent: 2 - uid: 1091 components: - type: Transform rot: -1.5707963267948966 rad pos: -23.5,22.5 parent: 2 - - uid: 1183 + - uid: 1134 components: - type: Transform - pos: -6.5,-14.5 + rot: 3.141592653589793 rad + pos: -56.5,-54.5 parent: 2 - uid: 1503 components: @@ -115271,6 +126678,17 @@ entities: - type: Transform pos: 30.5,-35.5 parent: 2 + - uid: 1728 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 - uid: 1829 components: - type: Transform @@ -115310,11 +126728,6 @@ entities: rot: 3.141592653589793 rad pos: -23.5,0.5 parent: 2 - - uid: 2762 - components: - - type: Transform - pos: 14.5,-13.5 - parent: 2 - uid: 2924 components: - type: Transform @@ -115332,22 +126745,11 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-23.5 parent: 2 - - uid: 3158 - components: - - type: Transform - pos: -45.5,-21.5 - parent: 2 - uid: 3191 components: - type: Transform pos: -13.5,-33.5 parent: 2 - - uid: 3196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-61.5 - parent: 2 - uid: 3225 components: - type: Transform @@ -115374,6 +126776,11 @@ entities: - type: Transform pos: -13.5,-34.5 parent: 2 + - uid: 3316 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 - uid: 3348 components: - type: Transform @@ -115416,22 +126823,11 @@ entities: - type: Transform pos: -19.5,-39.5 parent: 2 - - uid: 3563 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-60.5 - parent: 2 - uid: 3564 components: - type: Transform pos: 7.5,-31.5 parent: 2 - - uid: 3595 - components: - - type: Transform - pos: -30.5,-33.5 - parent: 2 - uid: 3623 components: - type: Transform @@ -115442,21 +126838,11 @@ entities: - type: Transform pos: -7.5,-33.5 parent: 2 - - uid: 3635 - components: - - type: Transform - pos: -40.5,-21.5 - parent: 2 - uid: 3844 components: - type: Transform pos: 15.5,-47.5 parent: 2 - - uid: 4110 - components: - - type: Transform - pos: -29.5,-36.5 - parent: 2 - uid: 4161 components: - type: Transform @@ -115467,17 +126853,16 @@ entities: - type: Transform pos: -23.5,-18.5 parent: 2 - - uid: 4166 + - uid: 4209 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-51.5 + pos: 26.5,-38.5 parent: 2 - - uid: 4209 + - uid: 4241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-38.5 + pos: -1.5,-57.5 parent: 2 - uid: 4248 components: @@ -115507,11 +126892,6 @@ entities: rot: 1.5707963267948966 rad pos: 37.5,-27.5 parent: 2 - - uid: 4322 - components: - - type: Transform - pos: -45.5,-22.5 - parent: 2 - uid: 4326 components: - type: Transform @@ -115556,47 +126936,16 @@ entities: - type: Transform pos: 11.5,24.5 parent: 2 - - uid: 4686 - components: - - type: Transform - pos: -30.5,-36.5 - parent: 2 - - uid: 4698 - components: - - type: Transform - pos: -32.5,-27.5 - parent: 2 - - uid: 4761 - components: - - type: Transform - pos: -31.5,-59.5 - parent: 2 - - uid: 4763 - components: - - type: Transform - pos: -31.5,-61.5 - parent: 2 - - uid: 4810 - components: - - type: Transform - pos: -28.5,-25.5 - parent: 2 - - uid: 4811 - components: - - type: Transform - pos: -29.5,-25.5 - parent: 2 - - uid: 4947 + - uid: 4762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-25.5 + rot: 1.5707963267948966 rad + pos: 7.5,-19.5 parent: 2 - - uid: 5002 + - uid: 4807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-27.5 + pos: -26.5,-48.5 parent: 2 - uid: 5196 components: @@ -115610,20 +126959,15 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,-22.5 parent: 2 - - uid: 5293 - components: - - type: Transform - pos: -33.5,-57.5 - parent: 2 - uid: 5446 components: - type: Transform pos: -0.5,12.5 parent: 2 - - uid: 5549 + - uid: 5502 components: - type: Transform - pos: -27.5,-8.5 + pos: -27.5,-48.5 parent: 2 - uid: 5610 components: @@ -115631,31 +126975,21 @@ entities: rot: -1.5707963267948966 rad pos: -23.5,21.5 parent: 2 - - uid: 5925 - components: - - type: Transform - pos: -40.5,-52.5 - parent: 2 - uid: 5943 components: - type: Transform pos: 6.5,-27.5 parent: 2 - - uid: 6222 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,-47.5 - parent: 2 - - uid: 6312 + - uid: 6653 components: - type: Transform - pos: 25.5,-0.5 + rot: 1.5707963267948966 rad + pos: -3.5,-15.5 parent: 2 - - uid: 6578 + - uid: 6677 components: - type: Transform - pos: 25.5,0.5 + pos: 26.5,-9.5 parent: 2 - uid: 6722 components: @@ -115674,219 +127008,244 @@ entities: - type: Transform pos: -13.5,-17.5 parent: 2 - - uid: 7002 + - uid: 6987 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-9.5 + pos: 25.5,-9.5 parent: 2 - - uid: 7003 + - uid: 7002 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,-9.5 + pos: -45.5,-29.5 parent: 2 - - uid: 7012 + - uid: 7097 components: - type: Transform - pos: -6.5,-15.5 + rot: 3.141592653589793 rad + pos: 14.5,0.5 parent: 2 - - uid: 7018 + - uid: 7176 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-14.5 + pos: 10.5,-19.5 parent: 2 - - uid: 7195 + - uid: 7617 components: - type: Transform - pos: -33.5,-53.5 + rot: -1.5707963267948966 rad + pos: 20.5,-6.5 parent: 2 - - uid: 7196 + - uid: 7626 components: - type: Transform - pos: -44.5,-45.5 + rot: -1.5707963267948966 rad + pos: 21.5,-6.5 parent: 2 - - uid: 7198 + - uid: 7629 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-60.5 + pos: -15.5,-25.5 parent: 2 - - uid: 7484 + - uid: 8538 components: - type: Transform - pos: -35.5,-53.5 + rot: 1.5707963267948966 rad + pos: -3.5,-14.5 parent: 2 - - uid: 7485 + - uid: 8599 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,-60.5 + pos: 44.5,-2.5 parent: 2 - - uid: 7619 + - uid: 8852 components: - type: Transform - pos: -40.5,-23.5 + rot: -1.5707963267948966 rad + pos: -25.5,22.5 parent: 2 - - uid: 7629 + - uid: 8881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-19.5 + parent: 2 + - uid: 9130 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-25.5 + pos: -25.5,23.5 parent: 2 - - uid: 7657 + - uid: 9275 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-64.5 + pos: 7.5,-16.5 parent: 2 - - uid: 7991 + - uid: 9288 components: - type: Transform - pos: -37.5,-24.5 + pos: -27.5,-21.5 parent: 2 - - uid: 7994 + - uid: 9289 components: - type: Transform - pos: -34.5,-53.5 + pos: -26.5,-21.5 parent: 2 - - uid: 8088 + - uid: 9290 components: - type: Transform - pos: -51.5,-47.5 + pos: -26.5,-22.5 parent: 2 - - uid: 8156 + - uid: 9380 components: - type: Transform - pos: -50.5,-47.5 + rot: 1.5707963267948966 rad + pos: 28.5,-16.5 parent: 2 - - uid: 8160 + - uid: 9515 components: - type: Transform - pos: -52.5,-46.5 + pos: 23.5,5.5 parent: 2 - - uid: 8205 + - uid: 9963 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-51.5 + pos: -36.5,-2.5 parent: 2 - - uid: 8229 + - uid: 10191 components: - type: Transform - pos: -44.5,-46.5 + rot: 3.141592653589793 rad + pos: 11.5,-16.5 parent: 2 - - uid: 8267 + - uid: 10236 components: - type: Transform - pos: -43.5,-45.5 + pos: -43.5,-39.5 parent: 2 - - uid: 8599 + - uid: 10439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-2.5 + rot: 1.5707963267948966 rad + pos: -26.5,15.5 parent: 2 - - uid: 8659 + - uid: 10489 components: - type: Transform - pos: 20.5,-17.5 + pos: -40.5,-30.5 parent: 2 - - uid: 8852 + - uid: 10492 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,22.5 + pos: -52.5,-51.5 parent: 2 - - uid: 9130 + - uid: 10533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,23.5 + rot: 1.5707963267948966 rad + pos: -44.5,-27.5 parent: 2 - - uid: 9140 + - uid: 10551 components: - type: Transform - pos: -27.5,-7.5 + rot: -1.5707963267948966 rad + pos: -29.5,-36.5 parent: 2 - - uid: 9257 + - uid: 10915 components: - type: Transform - pos: -30.5,-34.5 + pos: -28.5,-8.5 parent: 2 - - uid: 10439 + - uid: 11244 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,15.5 + pos: -27.5,15.5 parent: 2 - - uid: 11178 + - uid: 11338 components: - type: Transform - pos: -40.5,-50.5 + rot: -1.5707963267948966 rad + pos: -30.5,-36.5 parent: 2 - - uid: 11193 + - uid: 11416 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-52.5 + rot: 1.5707963267948966 rad + pos: 27.5,-27.5 parent: 2 - - uid: 11201 + - uid: 11437 components: - type: Transform - pos: -40.5,-51.5 + rot: -1.5707963267948966 rad + pos: -53.5,-51.5 parent: 2 - - uid: 11244 + - uid: 11843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,15.5 + pos: -10.5,-36.5 parent: 2 - - uid: 11416 + - uid: 11976 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-27.5 + pos: -28.5,-7.5 parent: 2 - - uid: 11604 + - uid: 12036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-58.5 + rot: 3.141592653589793 rad + pos: -32.5,-37.5 parent: 2 - - uid: 11605 + - uid: 12152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-59.5 + rot: 3.141592653589793 rad + pos: -38.5,3.5 parent: 2 - - uid: 11843 + - uid: 12338 components: - type: Transform - pos: -10.5,-36.5 + pos: -28.5,-21.5 parent: 2 - - uid: 11845 + - uid: 12384 components: - type: Transform - pos: -10.5,-37.5 + rot: 3.141592653589793 rad + pos: -44.5,-29.5 parent: 2 - - uid: 12152 + - uid: 12429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,3.5 + pos: 18.5,8.5 parent: 2 - - uid: 12427 + - uid: 12538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-34.5 + rot: -1.5707963267948966 rad + pos: 24.5,8.5 parent: 2 - - uid: 12551 + - uid: 12647 components: - type: Transform - pos: 13.5,-17.5 + pos: -44.5,-39.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-12.5 + parent: 2 + - uid: 12748 + components: + - type: Transform + pos: 2.5,-57.5 parent: 2 - uid: 12855 components: @@ -115894,51 +127253,56 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-46.5 parent: 2 - - uid: 12857 + - uid: 12918 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-48.5 + pos: -59.5,-30.5 parent: 2 - - uid: 12858 + - uid: 12933 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,-48.5 + pos: -59.5,-29.5 parent: 2 - - uid: 12983 + - uid: 12934 components: - type: Transform - pos: -27.5,6.5 + rot: -1.5707963267948966 rad + pos: -59.5,-28.5 parent: 2 - - uid: 13084 + - uid: 12938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-35.5 + rot: 3.141592653589793 rad + pos: -53.5,-27.5 parent: 2 - - uid: 13101 + - uid: 12939 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,-29.5 + pos: -53.5,-28.5 parent: 2 - - uid: 13194 + - uid: 12983 components: - type: Transform - pos: -21.5,6.5 + pos: -27.5,6.5 parent: 2 - - uid: 13363 + - uid: 13061 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-16.5 + pos: 10.5,-18.5 parent: 2 - - uid: 13395 + - uid: 13194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-16.5 + pos: -21.5,6.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + pos: 7.5,-58.5 parent: 2 - uid: 13551 components: @@ -115946,16 +127310,72 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,-24.5 parent: 2 - - uid: 13789 + - uid: 13749 components: - type: Transform - pos: 15.5,-57.5 + rot: -1.5707963267948966 rad + pos: -29.5,-24.5 parent: 2 - uid: 13894 components: - type: Transform pos: 53.5,-51.5 parent: 2 + - uid: 14108 + components: + - type: Transform + pos: -49.5,-43.5 + parent: 2 + - uid: 14110 + components: + - type: Transform + pos: -50.5,-43.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + pos: -50.5,-44.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 14764 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - uid: 14766 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 14840 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 14841 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 15101 + components: + - type: Transform + pos: 3.5,-55.5 + parent: 2 + - uid: 15186 + components: + - type: Transform + pos: 2.5,-55.5 + parent: 2 - uid: 15376 components: - type: Transform @@ -115968,6 +127388,16 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-23.5 parent: 2 + - uid: 15610 + components: + - type: Transform + pos: 5.5,-55.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: 7.5,-57.5 + parent: 2 - uid: 16409 components: - type: Transform @@ -116002,12 +127432,6 @@ entities: - type: Transform pos: -61.5,-11.5 parent: 2 - - uid: 16635 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 2 - uid: 16879 components: - type: Transform @@ -116020,6 +127444,16 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,-75.5 parent: 2 + - uid: 17258 + components: + - type: Transform + pos: 6.5,-89.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 - uid: 17699 components: - type: Transform @@ -116030,10 +127464,10 @@ entities: - type: Transform pos: 48.5,-60.5 parent: 2 - - uid: 18545 + - uid: 17855 components: - type: Transform - pos: -32.5,-57.5 + pos: 34.5,26.5 parent: 2 - uid: 18910 components: @@ -116050,6 +127484,16 @@ entities: - type: Transform pos: 44.5,-75.5 parent: 2 + - uid: 19210 + components: + - type: Transform + pos: 6.5,-88.5 + parent: 2 + - uid: 19217 + components: + - type: Transform + pos: 3.5,-57.5 + parent: 2 - uid: 19882 components: - type: Transform @@ -116111,6 +127555,33 @@ entities: - type: Transform pos: -11.5,-14.5 parent: 2 + - uid: 21398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 + - uid: 21445 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 21607 + components: + - type: Transform + pos: 53.5,-52.5 + parent: 2 + - uid: 21757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,4.5 + parent: 2 + - uid: 22111 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 - proto: TableCarpet entities: - uid: 26 @@ -116151,11 +127622,6 @@ entities: - type: Transform pos: 67.5,-62.5 parent: 2 - - uid: 11297 - components: - - type: Transform - pos: 22.5,-40.5 - parent: 2 - uid: 14295 components: - type: Transform @@ -116173,6 +127639,17 @@ entities: - type: Transform pos: -20.5,-2.5 parent: 2 + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 - uid: 2169 components: - type: Transform @@ -116226,40 +127703,55 @@ entities: - type: Transform pos: 21.5,-23.5 parent: 2 - - uid: 4685 + - uid: 4596 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,-28.5 + pos: -27.5,-33.5 parent: 2 - - uid: 4697 + - uid: 6371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-28.5 + pos: 29.5,5.5 parent: 2 - - uid: 6116 + - uid: 9408 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 + pos: 29.5,4.5 parent: 2 - - uid: 6120 + - uid: 10633 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 + pos: 28.5,5.5 + parent: 2 + - uid: 11265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-33.5 parent: 2 - uid: 11322 components: - type: Transform pos: -19.5,-2.5 parent: 2 + - uid: 11331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-33.5 + parent: 2 - uid: 11453 components: - type: Transform pos: 15.5,13.5 parent: 2 + - uid: 12009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-26.5 + parent: 2 - uid: 12596 components: - type: Transform @@ -116270,12 +127762,6 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 - - uid: 15775 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-32.5 - parent: 2 - uid: 18073 components: - type: Transform @@ -116301,15 +127787,11 @@ entities: rot: 3.141592653589793 rad pos: -4.5,-42.5 parent: 2 - - uid: 3753 - components: - - type: Transform - pos: 18.5,-36.5 - parent: 2 - - uid: 3754 + - uid: 6062 components: - type: Transform - pos: 18.5,-35.5 + rot: 1.5707963267948966 rad + pos: -36.5,-53.5 parent: 2 - uid: 6147 components: @@ -116346,6 +127828,12 @@ entities: - type: Transform pos: 46.5,11.5 parent: 2 + - uid: 9397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-46.5 + parent: 2 - uid: 11865 components: - type: Transform @@ -116356,6 +127844,12 @@ entities: - type: Transform pos: 71.5,-65.5 parent: 2 + - uid: 14611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-46.5 + parent: 2 - uid: 14721 components: - type: Transform @@ -116386,6 +127880,18 @@ entities: - type: Transform pos: -6.5,-44.5 parent: 2 + - uid: 17970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-46.5 + parent: 2 + - uid: 20188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-46.5 + parent: 2 - proto: TableFancyBlack entities: - uid: 3513 @@ -116442,6 +127948,18 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,-11.5 parent: 2 + - uid: 6705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-38.5 + parent: 2 + - uid: 6844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-38.5 + parent: 2 - uid: 8390 components: - type: Transform @@ -116462,6 +127980,12 @@ entities: - type: Transform pos: -24.5,-51.5 parent: 2 + - uid: 21436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-41.5 + parent: 2 - proto: TableFancyCyan entities: - uid: 2975 @@ -116515,45 +128039,42 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-30.5 parent: 2 -- proto: TableFrame - entities: - - uid: 4024 + - uid: 7808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 + pos: 19.5,-10.5 parent: 2 - - uid: 4345 + - uid: 7839 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-11.5 + pos: 19.5,-9.5 parent: 2 - - uid: 7344 + - uid: 9140 components: - type: Transform - pos: 43.5,12.5 + pos: 20.5,-9.5 parent: 2 - - uid: 7388 + - uid: 9180 components: - type: Transform - pos: 46.5,7.5 + pos: 20.5,-10.5 parent: 2 - - uid: 8555 +- proto: TableFrame + entities: + - uid: 7344 components: - type: Transform - pos: 18.5,5.5 + pos: 43.5,12.5 parent: 2 - - uid: 8881 + - uid: 7388 components: - type: Transform - pos: 19.5,5.5 + pos: 46.5,7.5 parent: 2 - - uid: 12401 + - uid: 15766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-0.5 + pos: 42.5,21.5 parent: 2 - uid: 18808 components: @@ -116589,61 +128110,33 @@ entities: rot: 3.141592653589793 rad pos: 96.5,-29.5 parent: 2 -- proto: TableGlass - entities: - - uid: 5294 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-26.5 - parent: 2 - - uid: 5295 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-25.5 - parent: 2 - - uid: 7816 + - uid: 21804 components: - type: Transform - pos: -51.5,-42.5 + pos: 43.5,21.5 parent: 2 - - uid: 8033 +- proto: TableGlass + entities: + - uid: 1136 components: - type: Transform - pos: -52.5,-42.5 + pos: 18.5,3.5 parent: 2 - - uid: 8157 + - uid: 13073 components: - type: Transform - pos: -52.5,-40.5 + pos: -45.5,-23.5 parent: 2 - - uid: 8218 + - uid: 13084 components: - type: Transform - pos: -52.5,-41.5 + pos: -45.5,-22.5 parent: 2 - uid: 14015 components: - type: Transform pos: 22.5,-59.5 parent: 2 - - uid: 16420 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-23.5 - parent: 2 - - uid: 20739 - components: - - type: Transform - pos: -36.5,-20.5 - parent: 2 - - uid: 20740 - components: - - type: Transform - pos: -37.5,-20.5 - parent: 2 - proto: TablePlasmaGlass entities: - uid: 6734 @@ -116654,6 +128147,12 @@ entities: parent: 2 - proto: TableReinforced entities: + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-15.5 + parent: 2 - uid: 443 components: - type: Transform @@ -116669,15 +128168,10 @@ entities: - type: Transform pos: -28.5,9.5 parent: 2 - - uid: 548 - components: - - type: Transform - pos: 10.5,3.5 - parent: 2 - - uid: 564 + - uid: 836 components: - type: Transform - pos: 9.5,3.5 + pos: -30.5,-64.5 parent: 2 - uid: 851 components: @@ -116707,21 +128201,40 @@ entities: rot: -1.5707963267948966 rad pos: -0.5,16.5 parent: 2 - - uid: 1414 + - uid: 1906 components: - type: Transform - pos: 8.5,6.5 + pos: -28.5,-63.5 parent: 2 - - uid: 1428 + - uid: 1908 components: - type: Transform - pos: 9.5,6.5 + pos: -28.5,-62.5 parent: 2 - - uid: 2845 + - uid: 1909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-32.5 + pos: -28.5,-60.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: -29.5,-64.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: -28.5,-59.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + pos: -30.5,-63.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: -38.5,-14.5 parent: 2 - uid: 3843 components: @@ -116729,6 +128242,22 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,20.5 parent: 2 + - uid: 4874 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-16.5 + parent: 2 + - uid: 4926 + components: + - type: Transform + pos: -30.5,-58.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: -30.5,-59.5 + parent: 2 - uid: 5332 components: - type: Transform @@ -116755,16 +128284,10 @@ entities: - type: Transform pos: 46.5,-27.5 parent: 2 - - uid: 10688 - components: - - type: Transform - pos: -33.5,-50.5 - parent: 2 - - uid: 11902 + - uid: 9610 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-33.5 + pos: 22.5,2.5 parent: 2 - uid: 14290 components: @@ -116777,32 +128300,43 @@ entities: rot: -1.5707963267948966 rad pos: 9.5,22.5 parent: 2 - - uid: 14410 + - uid: 18466 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-27.5 + pos: 88.5,-28.5 parent: 2 - - uid: 14411 + - uid: 18467 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-28.5 + pos: 87.5,-28.5 parent: 2 - - uid: 18466 + - uid: 20675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 88.5,-28.5 + pos: 21.5,23.5 parent: 2 - - uid: 18467 + - uid: 21969 components: - type: Transform rot: 1.5707963267948966 rad - pos: 87.5,-28.5 + pos: 19.5,-0.5 + parent: 2 + - uid: 22644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,15.5 parent: 2 - proto: TableReinforcedGlass entities: + - uid: 2080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-86.5 + parent: 2 - uid: 10045 components: - type: Transform @@ -116821,55 +128355,48 @@ entities: rot: 1.5707963267948966 rad pos: 74.5,-41.5 parent: 2 -- proto: TableWood - entities: - - uid: 165 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 2 - - uid: 556 + - uid: 12824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 + rot: -1.5707963267948966 rad + pos: 3.5,-87.5 parent: 2 - - uid: 1011 +- proto: TableWood + entities: + - uid: 105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-51.5 + rot: 3.141592653589793 rad + pos: 24.5,1.5 parent: 2 - - uid: 1015 + - uid: 165 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-51.5 + pos: 37.5,4.5 parent: 2 - - uid: 2044 + - uid: 241 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,-51.5 + pos: -0.5,-43.5 parent: 2 - - uid: 2045 + - uid: 556 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-55.5 + pos: 37.5,2.5 parent: 2 - - uid: 2058 + - uid: 1629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-55.5 + rot: 3.141592653589793 rad + pos: -31.5,-53.5 parent: 2 - - uid: 2523 + - uid: 1836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-34.5 + pos: -35.5,-80.5 parent: 2 - uid: 2529 components: @@ -116893,21 +128420,26 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,15.5 parent: 2 - - uid: 3584 + - uid: 3531 components: - type: Transform - pos: 13.5,-32.5 + pos: -9.5,-64.5 parent: 2 - - uid: 3604 + - uid: 3584 components: - type: Transform - pos: -4.5,-45.5 + pos: 13.5,-32.5 parent: 2 - uid: 3608 components: - type: Transform pos: -12.5,14.5 parent: 2 + - uid: 3638 + components: + - type: Transform + pos: 9.5,-71.5 + parent: 2 - uid: 3650 components: - type: Transform @@ -116918,82 +128450,103 @@ entities: - type: Transform pos: 15.5,-30.5 parent: 2 - - uid: 3697 + - uid: 3738 components: - type: Transform - pos: -3.5,-45.5 + pos: 15.5,-35.5 parent: 2 - - uid: 3698 + - uid: 3880 components: - type: Transform - pos: -2.5,-45.5 + rot: -1.5707963267948966 rad + pos: -10.5,-38.5 parent: 2 - - uid: 3738 + - uid: 3986 components: - type: Transform - pos: 15.5,-35.5 + rot: -1.5707963267948966 rad + pos: 21.5,-44.5 parent: 2 - - uid: 3821 + - uid: 4001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-39.5 + rot: -1.5707963267948966 rad + pos: 22.5,-44.5 parent: 2 - - uid: 3822 + - uid: 4204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-38.5 + pos: -28.5,-45.5 parent: 2 - - uid: 3846 + - uid: 4216 components: - type: Transform - pos: 0.5,-45.5 + pos: -29.5,-46.5 parent: 2 - - uid: 3881 + - uid: 4220 components: - type: Transform + rot: -1.5707963267948966 rad pos: -10.5,-39.5 parent: 2 - - uid: 4153 + - uid: 4266 components: - type: Transform - pos: 2.5,-50.5 + rot: -1.5707963267948966 rad + pos: -7.5,-38.5 parent: 2 - - uid: 4222 + - uid: 4714 components: - type: Transform - pos: -0.5,-50.5 + rot: 3.141592653589793 rad + pos: -31.5,-54.5 parent: 2 - - uid: 4637 + - uid: 4934 components: - type: Transform - pos: -41.5,-34.5 + pos: -12.5,-48.5 parent: 2 - - uid: 4934 + - uid: 5012 components: - type: Transform - pos: -12.5,-48.5 + pos: -28.5,-46.5 parent: 2 - uid: 5048 components: - type: Transform pos: -7.5,-39.5 parent: 2 + - uid: 5085 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 - uid: 5131 components: - type: Transform pos: 46.5,-33.5 parent: 2 - - uid: 5133 + - uid: 5203 components: - type: Transform - pos: -6.5,-39.5 + pos: -27.5,-45.5 parent: 2 - - uid: 5590 + - uid: 5227 components: - type: Transform - pos: -31.5,-46.5 + pos: -27.5,-46.5 + parent: 2 + - uid: 5296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-64.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-52.5 parent: 2 - uid: 5761 components: @@ -117036,7 +128589,7 @@ entities: - uid: 5979 components: - type: Transform - pos: 20.5,-37.5 + pos: 22.5,-41.5 parent: 2 - uid: 5991 components: @@ -117068,15 +128621,50 @@ entities: - type: Transform pos: 35.5,-2.5 parent: 2 + - uid: 6350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-52.5 + parent: 2 - uid: 6363 components: - type: Transform pos: -11.5,-48.5 parent: 2 - - uid: 7135 + - uid: 6523 components: - type: Transform - pos: 29.5,23.5 + rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + pos: -9.5,-59.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: -28.5,-30.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-40.5 parent: 2 - uid: 7322 components: @@ -117111,10 +128699,16 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-47.5 parent: 2 - - uid: 7603 + - uid: 7658 components: - type: Transform - pos: -9.5,-61.5 + rot: -1.5707963267948966 rad + pos: -2.5,-44.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: -53.5,-23.5 parent: 2 - uid: 8355 components: @@ -117128,74 +128722,74 @@ entities: rot: -1.5707963267948966 rad pos: 41.5,-10.5 parent: 2 - - uid: 8694 + - uid: 9120 components: - type: Transform rot: 1.5707963267948966 rad - pos: 30.5,41.5 + pos: 28.5,11.5 parent: 2 - - uid: 9120 + - uid: 9704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,11.5 + pos: -16.5,-48.5 parent: 2 - - uid: 9389 + - uid: 9705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 + pos: -15.5,-48.5 parent: 2 - - uid: 9401 + - uid: 9842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,4.5 + rot: 1.5707963267948966 rad + pos: -17.5,-50.5 parent: 2 - - uid: 9404 + - uid: 9843 components: - type: Transform - pos: 29.5,3.5 + rot: 1.5707963267948966 rad + pos: -18.5,-50.5 parent: 2 - - uid: 9685 + - uid: 10074 components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,-44.5 + pos: 21.5,-41.5 parent: 2 - - uid: 9704 + - uid: 10083 components: - type: Transform - pos: -16.5,-48.5 + rot: 3.141592653589793 rad + pos: 25.5,-0.5 parent: 2 - - uid: 9705 + - uid: 10084 components: - type: Transform - pos: -15.5,-48.5 + rot: 3.141592653589793 rad + pos: 24.5,0.5 parent: 2 - - uid: 9842 + - uid: 10106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-50.5 + rot: 3.141592653589793 rad + pos: 24.5,-0.5 parent: 2 - - uid: 9843 + - uid: 10224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-50.5 + pos: -28.5,-29.5 parent: 2 - - uid: 10144 + - uid: 10507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-45.5 + rot: 3.141592653589793 rad + pos: -41.5,-53.5 parent: 2 - - uid: 10148 + - uid: 10639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-45.5 + rot: 1.5707963267948966 rad + pos: -38.5,-52.5 parent: 2 - uid: 10977 components: @@ -117224,6 +128818,23 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-51.5 parent: 2 + - uid: 12459 + components: + - type: Transform + pos: -52.5,-23.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-22.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-22.5 + parent: 2 - uid: 13373 components: - type: Transform @@ -117234,6 +128845,11 @@ entities: - type: Transform pos: 19.5,-59.5 parent: 2 + - uid: 14575 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 - uid: 14814 components: - type: Transform @@ -117246,16 +128862,29 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,10.5 parent: 2 + - uid: 15040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-40.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-51.5 + parent: 2 - uid: 15330 components: - type: Transform rot: 1.5707963267948966 rad pos: 28.5,10.5 parent: 2 - - uid: 18065 + - uid: 16171 components: - type: Transform - pos: -10.5,-40.5 + rot: -1.5707963267948966 rad + pos: -0.5,-52.5 parent: 2 - uid: 18776 components: @@ -117283,6 +128912,18 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,3.5 parent: 2 + - uid: 22303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,18.5 + parent: 2 + - uid: 22309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,19.5 + parent: 2 - proto: TargetClown entities: - uid: 18803 @@ -117290,51 +128931,59 @@ entities: - type: Transform pos: 82.5,-14.5 parent: 2 +- proto: TeaPlantSeeds + entities: + - uid: 12627 + components: + - type: Transform + pos: 19.270489,-6.2979584 + parent: 2 - proto: TegCenter entities: - - uid: 6710 + - uid: 2237 components: - type: Transform - pos: 0.5,-8.5 + rot: 3.141592653589793 rad + pos: -0.5,-9.5 parent: 2 - proto: TegCirculator entities: - - uid: 6708 + - uid: 1697 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-9.5 + pos: -0.5,-10.5 parent: 2 - type: PointLight color: '#FF3300FF' - - uid: 6709 + - uid: 9630 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-7.5 + pos: -0.5,-8.5 parent: 2 - type: PointLight color: '#FF3300FF' - proto: TelecomServerCircuitboard entities: - - uid: 6581 + - uid: 2932 components: - type: Transform - pos: 25.540142,-0.05832243 + pos: 4.532232,-19.395725 parent: 2 - proto: TelecomServerFilledCargo entities: - - uid: 6466 + - uid: 11551 components: - type: Transform - pos: 22.5,3.5 + pos: 11.5,-18.5 parent: 2 - proto: TelecomServerFilledCommand entities: - - uid: 6465 + - uid: 7545 components: - type: Transform - pos: 20.5,-0.5 + pos: -11.5,-53.5 parent: 2 - uid: 16581 components: @@ -117343,24 +128992,24 @@ entities: parent: 2 - proto: TelecomServerFilledCommon entities: - - uid: 6467 + - uid: 13181 components: - type: Transform - pos: 22.5,0.5 + pos: 15.5,-18.5 parent: 2 - proto: TelecomServerFilledEngineering entities: - - uid: 6313 + - uid: 7158 components: - type: Transform - pos: 20.5,2.5 + pos: 13.5,-18.5 parent: 2 - proto: TelecomServerFilledMedical entities: - - uid: 6472 + - uid: 7924 components: - type: Transform - pos: 20.5,3.5 + pos: -55.5,-22.5 parent: 2 - proto: TelecomServerFilledScience entities: @@ -117369,24 +129018,19 @@ entities: - type: Transform pos: 31.5,-35.5 parent: 2 - - uid: 6475 - components: - - type: Transform - pos: 22.5,2.5 - parent: 2 - proto: TelecomServerFilledSecurity entities: - - uid: 6484 + - uid: 9080 components: - type: Transform - pos: 20.5,0.5 + pos: 17.5,-17.5 parent: 2 - proto: TelecomServerFilledService entities: - - uid: 6493 + - uid: 7489 components: - type: Transform - pos: 22.5,-0.5 + pos: -12.5,-55.5 parent: 2 - proto: ThrusterUnanchored entities: @@ -117396,21 +129040,16 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-28.5 parent: 2 - - uid: 7644 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-69.5 - parent: 2 - - uid: 8081 + - uid: 7601 components: - type: Transform - pos: -34.5,-55.5 + pos: 5.5,-86.5 parent: 2 - - uid: 8127 + - uid: 10993 components: - type: Transform - pos: -35.5,-55.5 + rot: 3.141592653589793 rad + pos: -31.5,-13.5 parent: 2 - uid: 19098 components: @@ -117418,18 +129057,28 @@ entities: rot: 3.141592653589793 rad pos: 58.5,-71.5 parent: 2 - - uid: 20704 + - uid: 19194 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-69.5 + pos: 11.5,-97.5 + parent: 2 + - uid: 22043 + components: + - type: Transform + pos: 22.5,23.5 parent: 2 - proto: TintedWindow entities: - - uid: 1177 + - uid: 369 components: - type: Transform - pos: -18.5,-15.5 + pos: 8.5,-41.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: 19.5,-45.5 parent: 2 - uid: 3132 components: @@ -117446,16 +129095,6 @@ entities: - type: Transform pos: 15.5,-34.5 parent: 2 - - uid: 4014 - components: - - type: Transform - pos: 8.5,-45.5 - parent: 2 - - uid: 4146 - components: - - type: Transform - pos: 8.5,-41.5 - parent: 2 - uid: 4151 components: - type: Transform @@ -117481,6 +129120,34 @@ entities: - type: Transform pos: -28.5,2.5 parent: 2 + - uid: 7780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-35.5 + parent: 2 + - uid: 7781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-37.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-45.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - uid: 11969 + components: + - type: Transform + pos: 8.5,-20.5 + parent: 2 - uid: 11979 components: - type: Transform @@ -117491,36 +129158,49 @@ entities: - type: Transform pos: 37.5,-5.5 parent: 2 - - uid: 12073 + - uid: 12023 components: - type: Transform - pos: 29.5,-16.5 + rot: 1.5707963267948966 rad + pos: -49.5,-38.5 parent: 2 - - uid: 12129 + - uid: 12043 components: - type: Transform - pos: -42.5,-44.5 + rot: 1.5707963267948966 rad + pos: -49.5,-36.5 parent: 2 - - uid: 12182 + - uid: 12073 components: - type: Transform - pos: -43.5,-44.5 + pos: 29.5,-16.5 parent: 2 - - uid: 13667 + - uid: 13377 components: - type: Transform - pos: 8.5,-20.5 + pos: -47.5,-39.5 parent: 2 - - uid: 13763 + - uid: 13732 components: - type: Transform - pos: 25.5,-1.5 + pos: 8.5,-45.5 + parent: 2 + - uid: 13884 + components: + - type: Transform + pos: -47.5,-42.5 parent: 2 - uid: 14542 components: - type: Transform pos: -28.5,4.5 parent: 2 + - uid: 21437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-41.5 + parent: 2 - proto: ToiletDirtyWater entities: - uid: 2278 @@ -117529,17 +129209,17 @@ entities: rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 - - uid: 2383 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - uid: 7440 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-42.5 parent: 2 + - uid: 9285 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 - uid: 20146 components: - type: Transform @@ -117548,6 +129228,11 @@ entities: parent: 2 - proto: ToiletEmpty entities: + - uid: 12756 + components: + - type: Transform + pos: 12.5,-87.5 + parent: 2 - uid: 18798 components: - type: Transform @@ -117567,7 +129252,7 @@ entities: - uid: 6175 components: - type: Transform - pos: 36.611614,-6.2526426 + pos: 35.468998,-6.2932315 parent: 2 - uid: 12719 components: @@ -117581,11 +129266,6 @@ entities: - type: Transform pos: 48.499065,8.688345 parent: 2 - - uid: 2236 - components: - - type: Transform - pos: -3.4769769,-15.417981 - parent: 2 - uid: 2252 components: - type: Transform @@ -117596,82 +129276,57 @@ entities: - type: Transform pos: -13.8070965,-24.415592 parent: 2 - - uid: 3891 + - uid: 3829 components: - type: Transform - pos: -6.4899387,-58.354485 + pos: 6.4702086,-19.298756 parent: 2 - uid: 4021 components: - type: Transform pos: 0.4601429,-37.34924 parent: 2 - - uid: 4905 - components: - - type: Transform - pos: -31.393875,-57.456467 - parent: 2 - - uid: 7001 - components: - - type: Transform - pos: 24.461014,-9.445431 - parent: 2 - - uid: 7393 - components: - - type: Transform - pos: 6.5029826,-14.36323 - parent: 2 - - uid: 9488 - components: - - type: Transform - pos: 40.49712,-32.355556 - parent: 2 - - uid: 10252 + - uid: 10540 components: - type: Transform - pos: 13.54951,-17.30169 + pos: -30.529837,-18.358828 parent: 2 - - uid: 11176 + - uid: 15360 components: - type: Transform - pos: -4.5797296,-51.20996 + pos: 3.230478,-57.190697 parent: 2 - - uid: 11789 + - uid: 17533 components: - type: Transform - pos: 25.41051,0.32120275 + pos: 8.657806,22.619923 parent: 2 - - uid: 14400 + - uid: 20145 components: - type: Transform - pos: -23.574083,-16.441706 + pos: -23.49462,22.648626 parent: 2 - - uid: 17533 + - uid: 20753 components: - type: Transform - pos: 8.657806,22.619923 + pos: 13.516491,-2.3443527 parent: 2 - - uid: 20145 + - uid: 22647 components: - type: Transform - pos: -23.49462,22.648626 + pos: 42.479362,15.690158 parent: 2 - proto: ToolboxEmergencyFilled entities: - - uid: 2954 - components: - - type: Transform - pos: 5.488068,-14.345005 - parent: 2 - uid: 3368 components: - type: Transform pos: -13.5152855,-24.269657 parent: 2 - - uid: 3873 + - uid: 3744 components: - type: Transform - pos: -6.3961887,-58.71386 + pos: 26.48545,15.684371 parent: 2 - uid: 5177 components: @@ -117690,10 +129345,10 @@ entities: parent: 2 - proto: ToolboxGoldFilled entities: - - uid: 732 + - uid: 1911 components: - type: Transform - pos: 8.515682,5.553195 + pos: -28.496399,-62.452206 parent: 2 - proto: ToolboxMechanicalFilled entities: @@ -117702,56 +129357,46 @@ entities: - type: Transform pos: 27.628296,-16.512726 parent: 2 - - uid: 2237 + - uid: 2789 components: - type: Transform - pos: -3.549467,-15.050287 + pos: -38.45977,-14.446957 parent: 2 - uid: 3369 components: - type: Transform pos: -14.161439,-24.24881 parent: 2 - - uid: 4921 + - uid: 3945 components: - type: Transform - pos: -31.560625,-57.27926 + pos: 6.8037076,-19.507088 parent: 2 - - uid: 6740 + - uid: 8162 components: - type: Transform - pos: 25.522491,-24.342314 + pos: -13.500765,-96.34585 parent: 2 - uid: 9074 components: - type: Transform pos: 45.476677,-28.1458 parent: 2 - - uid: 10971 - components: - - type: Transform - pos: -23.324083,-16.16026 - parent: 2 - - uid: 11175 + - uid: 15055 components: - type: Transform - pos: -4.3608713,-51.460136 + pos: 3.5118675,-57.430447 parent: 2 - uid: 16081 components: - type: Transform - pos: -27.562857,-8.430839 + pos: -28.404318,-7.233346 parent: 2 - uid: 16275 components: - type: Transform pos: -60.524765,-8.3371105 parent: 2 - - uid: 16650 - components: - - type: Transform - pos: 35.497726,-27.344141 - parent: 2 - uid: 17532 components: - type: Transform @@ -117797,33 +129442,40 @@ entities: - type: Transform pos: -24.332443,-50.88702 parent: 2 +- proto: ToyFigurineCargoTech + entities: + - uid: 1329 + components: + - type: Transform + pos: 0.37641108,24.536484 + parent: 2 - proto: ToyFigurineChemist entities: - - uid: 731 + - uid: 8550 components: - type: Transform - pos: -30.1006,-36.283936 + pos: -37.48012,-37.226265 parent: 2 - proto: ToyFigurineChiefMedicalOfficer entities: - - uid: 17049 + - uid: 13101 components: - type: Transform - pos: -41.133793,-34.387356 + pos: -53.583843,-23.123 parent: 2 - proto: ToyFigurineEngineer entities: - - uid: 2243 + - uid: 4071 components: - type: Transform - pos: -6.640417,-14.156688 + pos: -3.2924695,-15.3550205 parent: 2 - proto: ToyFigurineHeadOfPersonnel entities: - uid: 20222 components: - type: Transform - pos: -16.25951,-48.160717 + pos: -16.557547,-48.286213 parent: 2 - proto: ToyFigurineHeadOfSecurity entities: @@ -117837,14 +129489,14 @@ entities: - uid: 3831 components: - type: Transform - pos: 20.36242,-38.93584 + pos: 21.092098,-41.16826 parent: 2 - proto: ToyFigurineMedicalDoctor entities: - - uid: 20233 + - uid: 8580 components: - type: Transform - pos: -45.47558,-38.18208 + pos: -38.15235,-24.380262 parent: 2 - proto: ToyFigurineMouse entities: @@ -117855,10 +129507,10 @@ entities: parent: 2 - proto: ToyFigurineParamedic entities: - - uid: 4804 + - uid: 3805 components: - type: Transform - pos: -32.345467,-27.41426 + pos: -28.05531,-21.336483 parent: 2 - proto: ToyFigurineRatKing entities: @@ -117904,10 +129556,15 @@ entities: parent: 2 - proto: ToyMouse entities: - - uid: 13548 + - uid: 13064 components: - type: Transform - pos: -42.55918,-33.612373 + pos: 14.441343,6.51343 + parent: 2 + - uid: 13129 + components: + - type: Transform + pos: -49.47193,-24.443256 parent: 2 - uid: 20819 components: @@ -117926,17 +129583,12 @@ entities: - type: Transform pos: -16.40359,-35.52857 parent: 2 - - uid: 17050 - components: - - type: Transform - pos: -49.464893,-45.456413 - parent: 2 - proto: ToySpawner entities: - - uid: 5597 + - uid: 6119 components: - type: Transform - pos: -31.5,-46.5 + pos: -36.5,-55.5 parent: 2 - uid: 7623 components: @@ -117948,20 +129600,15 @@ entities: - type: Transform pos: 48.5,-12.5 parent: 2 - - uid: 9686 - components: - - type: Transform - pos: -31.5,-45.5 - parent: 2 - uid: 9959 components: - type: Transform pos: -15.5,-46.5 parent: 2 - - uid: 13475 + - uid: 10657 components: - type: Transform - pos: 29.5,25.5 + pos: -55.5,-54.5 parent: 2 - uid: 17296 components: @@ -117973,6 +129620,11 @@ entities: - type: Transform pos: 95.5,-28.5 parent: 2 + - uid: 20737 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 - proto: trayScanner entities: - uid: 4066 @@ -117985,10 +129637,10 @@ entities: - type: Transform pos: 27.39705,-50.377018 parent: 2 - - uid: 16799 + - uid: 12676 components: - type: Transform - pos: -26.673822,-21.455803 + pos: -50.456078,-36.383743 parent: 2 - proto: TreasureCoinGold entities: @@ -118014,21 +129666,6 @@ entities: parent: 2 - proto: TwoWayLever entities: - - uid: 891 - components: - - type: Transform - pos: 17.5,22.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5365: - - Left: Forward - - Right: Reverse - - Middle: Off - 8507: - - Left: Forward - - Right: Reverse - - Middle: Off - uid: 6135 components: - type: Transform @@ -118087,6 +129724,29 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 11941 + components: + - type: Transform + pos: -27.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11226: + - Left: Forward + - Right: Reverse + - Middle: Off + 4763: + - Left: Forward + - Right: Reverse + - Middle: Off + 11225: + - Left: Forward + - Right: Reverse + - Middle: Off + 11937: + - Middle: Close + - Right: AutoClose + - Left: AutoClose - uid: 14673 components: - type: Transform @@ -118152,6 +129812,21 @@ entities: - Left: Forward - Right: Reverse - Middle: Off + - uid: 22008 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 21999: + - Left: Forward + - Right: Reverse + - Middle: Off + 21974: + - Left: Forward + - Right: Reverse + - Middle: Off - proto: UnfinishedMachineFrame entities: - uid: 14624 @@ -118169,6 +129844,18 @@ entities: - type: Transform pos: 76.5,-42.5 parent: 2 + - uid: 19193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-97.5 + parent: 2 + - uid: 19206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-86.5 + parent: 2 - proto: UniformPrinter entities: - uid: 9700 @@ -118204,10 +129891,10 @@ entities: parent: 2 - proto: Vaccinator entities: - - uid: 8025 + - uid: 12943 components: - type: Transform - pos: -49.5,-41.5 + pos: -54.5,-27.5 parent: 2 - proto: VariantCubeBox entities: @@ -118218,10 +129905,10 @@ entities: parent: 2 - proto: VendingBarDrobe entities: - - uid: 5059 + - uid: 21407 components: - type: Transform - pos: 1.5,-43.5 + pos: 2.5,-43.5 parent: 2 - proto: VendingMachineAtmosDrobe entities: @@ -118232,15 +129919,15 @@ entities: parent: 2 - proto: VendingMachineBooze entities: - - uid: 3696 + - uid: 7368 components: - type: Transform - pos: -5.5,-45.5 + pos: 42.5,12.5 parent: 2 - - uid: 7368 + - uid: 18007 components: - type: Transform - pos: 42.5,12.5 + pos: -3.5,-44.5 parent: 2 - proto: VendingMachineCargoDrobe entities: @@ -118279,17 +129966,17 @@ entities: parent: 2 - proto: VendingMachineChemDrobe entities: - - uid: 18583 + - uid: 10129 components: - type: Transform - pos: -27.5,-38.5 + pos: -39.5,-38.5 parent: 2 - proto: VendingMachineChemicals entities: - - uid: 4826 + - uid: 10453 components: - type: Transform - pos: -30.5,-38.5 + pos: -31.5,-34.5 parent: 2 - proto: VendingMachineCigs entities: @@ -118298,11 +129985,6 @@ entities: - type: Transform pos: 17.5,-30.5 parent: 2 - - uid: 7660 - components: - - type: Transform - pos: 9.5,-60.5 - parent: 2 - uid: 8043 components: - type: Transform @@ -118313,16 +129995,21 @@ entities: - type: Transform pos: 47.5,-15.5 parent: 2 - - uid: 11458 + - uid: 10607 components: - type: Transform - pos: -15.5,-40.5 + pos: 8.5,-62.5 parent: 2 - uid: 14729 components: - type: Transform pos: -20.5,-25.5 parent: 2 + - uid: 22762 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 - proto: VendingMachineClothing entities: - uid: 10901 @@ -118330,12 +130017,22 @@ entities: - type: Transform pos: 13.5,-25.5 parent: 2 + - uid: 11490 + components: + - type: Transform + pos: 15.5,3.5 + parent: 2 - proto: VendingMachineCoffee entities: - - uid: 5857 + - uid: 1752 components: - type: Transform - pos: 34.5,25.5 + pos: -35.5,-61.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + pos: 19.5,8.5 parent: 2 - proto: VendingMachineCondiments entities: @@ -118344,12 +130041,17 @@ entities: - type: Transform pos: -10.5,-36.5 parent: 2 + - uid: 7915 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 - proto: VendingMachineCuraDrobe entities: - - uid: 3820 + - uid: 10799 components: - type: Transform - pos: 20.5,-40.5 + pos: 22.5,-39.5 parent: 2 - proto: VendingMachineDetDrobe entities: @@ -118395,10 +130097,10 @@ entities: parent: 2 - proto: VendingMachineGeneDrobe entities: - - uid: 11016 + - uid: 15011 components: - type: Transform - pos: -45.5,-37.5 + pos: -33.5,-22.5 parent: 2 - proto: VendingMachineHappyHonk entities: @@ -118416,10 +130118,10 @@ entities: parent: 2 - proto: VendingMachineJaniDrobe entities: - - uid: 9410 + - uid: 9633 components: - type: Transform - pos: 27.5,2.5 + pos: 24.5,3.5 parent: 2 - proto: VendingMachineLawDrobe entities: @@ -118430,22 +130132,32 @@ entities: parent: 2 - proto: VendingMachineMedical entities: - - uid: 4952 + - uid: 1718 components: - type: Transform - pos: -34.5,-24.5 + pos: -40.5,-26.5 parent: 2 - - uid: 12844 + - uid: 12263 components: - type: Transform - pos: -42.5,-21.5 + pos: -36.5,-22.5 + parent: 2 + - uid: 14759 + components: + - type: Transform + pos: -49.5,-34.5 + parent: 2 + - uid: 21973 + components: + - type: Transform + pos: 22.5,1.5 parent: 2 - proto: VendingMachineMediDrobe entities: - - uid: 12716 + - uid: 15012 components: - type: Transform - pos: -45.5,-36.5 + pos: -33.5,-23.5 parent: 2 - proto: VendingMachineNutri entities: @@ -118463,10 +130175,10 @@ entities: parent: 2 - proto: VendingMachineSalvage entities: - - uid: 10465 + - uid: 355 components: - type: Transform - pos: 17.5,25.5 + pos: 14.5,28.5 parent: 2 - proto: VendingMachineSciDrobe entities: @@ -118510,18 +130222,13 @@ entities: parent: 2 - proto: VendingMachineSovietSoda entities: - - uid: 9679 + - uid: 13180 components: - type: Transform - pos: 23.5,9.5 + pos: 25.5,-12.5 parent: 2 - proto: VendingMachineSustenance entities: - - uid: 8037 - components: - - type: Transform - pos: -51.5,-39.5 - parent: 2 - uid: 20256 components: - type: Transform @@ -118546,25 +130253,15 @@ entities: - type: Transform pos: -12.5,-10.5 parent: 2 - - uid: 3506 - components: - - type: Transform - pos: -31.5,0.5 - parent: 2 - - uid: 7021 - components: - - type: Transform - pos: -12.5,-56.5 - parent: 2 - - uid: 8598 + - uid: 10582 components: - type: Transform - pos: -5.5,-51.5 + pos: -4.5,-55.5 parent: 2 - - uid: 8710 + - uid: 22334 components: - type: Transform - pos: 10.5,28.5 + pos: 16.5,17.5 parent: 2 - proto: VendingMachineTheater entities: @@ -118587,10 +130284,10 @@ entities: parent: 2 - proto: VendingMachineViroDrobe entities: - - uid: 10744 + - uid: 12937 components: - type: Transform - pos: -45.5,-35.5 + pos: -53.5,-31.5 parent: 2 - proto: VendingMachineWinter entities: @@ -118625,15 +130322,15 @@ entities: parent: 2 - proto: WallmountTelevision entities: - - uid: 1305 + - uid: 4761 components: - type: Transform - pos: 1.5,-46.5 + pos: 11.5,-20.5 parent: 2 - - uid: 1306 + - uid: 14992 components: - type: Transform - pos: 10.5,-20.5 + pos: 1.5,-46.5 parent: 2 - proto: WallReinforced entities: @@ -118652,11 +130349,6 @@ entities: - type: Transform pos: -14.5,24.5 parent: 2 - - uid: 21 - components: - - type: Transform - pos: -53.5,-29.5 - parent: 2 - uid: 37 components: - type: Transform @@ -118672,21 +130364,6 @@ entities: - type: Transform pos: -18.5,24.5 parent: 2 - - uid: 65 - components: - - type: Transform - pos: -25.5,-48.5 - parent: 2 - - uid: 70 - components: - - type: Transform - pos: 13.5,4.5 - parent: 2 - - uid: 89 - components: - - type: Transform - pos: 28.5,-11.5 - parent: 2 - uid: 90 components: - type: Transform @@ -118722,11 +130399,6 @@ entities: - type: Transform pos: 50.5,-45.5 parent: 2 - - uid: 121 - components: - - type: Transform - pos: -49.5,-25.5 - parent: 2 - uid: 125 components: - type: Transform @@ -118750,12 +130422,7 @@ entities: - uid: 138 components: - type: Transform - pos: 18.5,16.5 - parent: 2 - - uid: 139 - components: - - type: Transform - pos: 20.5,16.5 + pos: 41.5,16.5 parent: 2 - uid: 140 components: @@ -118777,11 +130444,6 @@ entities: - type: Transform pos: 9.5,15.5 parent: 2 - - uid: 162 - components: - - type: Transform - pos: 21.5,16.5 - parent: 2 - uid: 168 components: - type: Transform @@ -118792,21 +130454,32 @@ entities: - type: Transform pos: -17.5,0.5 parent: 2 - - uid: 177 + - uid: 185 components: - type: Transform - pos: 0.5,-15.5 + pos: -30.5,-78.5 parent: 2 - uid: 207 components: - type: Transform pos: -22.5,1.5 parent: 2 + - uid: 209 + components: + - type: Transform + pos: -25.5,-35.5 + parent: 2 - uid: 214 components: - type: Transform pos: -23.5,1.5 parent: 2 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,10.5 + parent: 2 - uid: 222 components: - type: Transform @@ -118842,20 +130515,25 @@ entities: - type: Transform pos: -69.5,-8.5 parent: 2 - - uid: 256 + - uid: 259 components: - type: Transform - pos: 28.5,-15.5 + pos: -30.5,5.5 parent: 2 - - uid: 259 + - uid: 263 components: - type: Transform - pos: -30.5,5.5 + pos: 4.5,-86.5 parent: 2 - - uid: 280 + - uid: 267 components: - type: Transform - pos: 12.5,-4.5 + pos: -1.5,-87.5 + parent: 2 + - uid: 275 + components: + - type: Transform + pos: -28.5,-20.5 parent: 2 - uid: 287 components: @@ -118867,45 +130545,80 @@ entities: - type: Transform pos: -24.5,18.5 parent: 2 - - uid: 309 + - uid: 303 components: - type: Transform - pos: 13.5,26.5 + pos: 11.5,5.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -28.5,-57.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -4.5,-87.5 parent: 2 - uid: 327 components: - type: Transform pos: 56.5,-46.5 parent: 2 + - uid: 333 + components: + - type: Transform + pos: -36.5,8.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -3.5,-87.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 - uid: 352 components: - type: Transform pos: -31.5,5.5 parent: 2 + - uid: 366 + components: + - type: Transform + pos: -8.5,-86.5 + parent: 2 - uid: 370 components: - type: Transform pos: 42.5,-63.5 parent: 2 - - uid: 381 + - uid: 376 components: - type: Transform - pos: -25.5,-12.5 + pos: 10.5,-96.5 parent: 2 - uid: 392 components: - type: Transform pos: -37.5,0.5 parent: 2 - - uid: 395 + - uid: 396 components: - type: Transform - pos: -23.5,-12.5 + pos: -42.5,0.5 parent: 2 - - uid: 396 + - uid: 397 components: - type: Transform - pos: -42.5,0.5 + pos: -35.5,8.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: -54.5,-51.5 parent: 2 - uid: 408 components: @@ -118922,11 +130635,6 @@ entities: - type: Transform pos: -28.5,17.5 parent: 2 - - uid: 413 - components: - - type: Transform - pos: 10.5,2.5 - parent: 2 - uid: 414 components: - type: Transform @@ -118942,15 +130650,10 @@ entities: - type: Transform pos: 48.5,-63.5 parent: 2 - - uid: 424 - components: - - type: Transform - pos: 8.5,7.5 - parent: 2 - - uid: 425 + - uid: 434 components: - type: Transform - pos: 13.5,6.5 + pos: 13.5,1.5 parent: 2 - uid: 435 components: @@ -118977,10 +130680,10 @@ entities: - type: Transform pos: -11.5,7.5 parent: 2 - - uid: 515 + - uid: 513 components: - type: Transform - pos: 9.5,2.5 + pos: -36.5,-11.5 parent: 2 - uid: 520 components: @@ -118992,21 +130695,11 @@ entities: - type: Transform pos: -9.5,-54.5 parent: 2 - - uid: 528 - components: - - type: Transform - pos: 7.5,4.5 - parent: 2 - uid: 530 components: - type: Transform pos: 60.5,-46.5 parent: 2 - - uid: 531 - components: - - type: Transform - pos: 10.5,7.5 - parent: 2 - uid: 532 components: - type: Transform @@ -119020,12 +130713,7 @@ entities: - uid: 538 components: - type: Transform - pos: 9.5,7.5 - parent: 2 - - uid: 539 - components: - - type: Transform - pos: 13.5,9.5 + pos: 7.5,1.5 parent: 2 - uid: 545 components: @@ -119055,22 +130743,17 @@ entities: - uid: 577 components: - type: Transform - pos: 7.5,6.5 - parent: 2 - - uid: 580 - components: - - type: Transform - pos: 38.5,13.5 + pos: 5.5,7.5 parent: 2 - uid: 581 components: - type: Transform pos: 47.5,-44.5 parent: 2 - - uid: 588 + - uid: 589 components: - type: Transform - pos: -5.5,-5.5 + pos: 3.5,-85.5 parent: 2 - uid: 596 components: @@ -119107,30 +130790,35 @@ entities: - type: Transform pos: 37.5,-64.5 parent: 2 - - uid: 646 + - uid: 648 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 650 components: - type: Transform - pos: 11.5,6.5 + pos: -31.5,-12.5 parent: 2 - uid: 657 components: - type: Transform pos: 47.5,-49.5 parent: 2 - - uid: 686 + - uid: 670 components: - type: Transform - pos: -28.5,7.5 + pos: -30.5,-17.5 parent: 2 - - uid: 688 + - uid: 686 components: - type: Transform - pos: 11.5,4.5 + pos: -28.5,7.5 parent: 2 - - uid: 689 + - uid: 687 components: - type: Transform - pos: 12.5,6.5 + pos: -37.5,10.5 parent: 2 - uid: 700 components: @@ -119157,35 +130845,25 @@ entities: - type: Transform pos: 0.5,27.5 parent: 2 - - uid: 752 - components: - - type: Transform - pos: 11.5,9.5 - parent: 2 - uid: 758 components: - type: Transform pos: 49.5,-14.5 parent: 2 - - uid: 762 - components: - - type: Transform - pos: 36.5,13.5 - parent: 2 - uid: 764 components: - type: Transform pos: -28.5,27.5 parent: 2 - - uid: 765 + - uid: 789 components: - type: Transform - pos: 37.5,13.5 + pos: 44.5,-43.5 parent: 2 - - uid: 789 + - uid: 818 components: - type: Transform - pos: 44.5,-43.5 + pos: 2.5,-85.5 parent: 2 - uid: 820 components: @@ -119207,6 +130885,11 @@ entities: - type: Transform pos: -20.5,27.5 parent: 2 + - uid: 840 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 - uid: 842 components: - type: Transform @@ -119222,11 +130905,6 @@ entities: - type: Transform pos: -5.5,20.5 parent: 2 - - uid: 854 - components: - - type: Transform - pos: 17.5,20.5 - parent: 2 - uid: 869 components: - type: Transform @@ -119237,11 +130915,6 @@ entities: - type: Transform pos: -0.5,15.5 parent: 2 - - uid: 882 - components: - - type: Transform - pos: 27.5,14.5 - parent: 2 - uid: 892 components: - type: Transform @@ -119277,6 +130950,31 @@ entities: - type: Transform pos: -3.5,21.5 parent: 2 + - uid: 941 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 942 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 945 + components: + - type: Transform + pos: -37.5,8.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 947 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 - uid: 961 components: - type: Transform @@ -119292,11 +130990,6 @@ entities: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 986 - components: - - type: Transform - pos: 18.5,20.5 - parent: 2 - uid: 987 components: - type: Transform @@ -119312,11 +131005,6 @@ entities: - type: Transform pos: -0.5,13.5 parent: 2 - - uid: 996 - components: - - type: Transform - pos: 39.5,13.5 - parent: 2 - uid: 998 components: - type: Transform @@ -119347,6 +131035,11 @@ entities: - type: Transform pos: 7.5,15.5 parent: 2 + - uid: 1011 + components: + - type: Transform + pos: 0.5,-85.5 + parent: 2 - uid: 1012 components: - type: Transform @@ -119367,6 +131060,12 @@ entities: - type: Transform pos: -58.5,-10.5 parent: 2 + - uid: 1037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,19.5 + parent: 2 - uid: 1042 components: - type: Transform @@ -119382,6 +131081,12 @@ entities: - type: Transform pos: -0.5,27.5 parent: 2 + - uid: 1070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 2 - uid: 1084 components: - type: Transform @@ -119392,11 +131097,6 @@ entities: - type: Transform pos: -70.5,-13.5 parent: 2 - - uid: 1094 - components: - - type: Transform - pos: 35.5,12.5 - parent: 2 - uid: 1102 components: - type: Transform @@ -119420,17 +131120,14 @@ entities: - uid: 1110 components: - type: Transform - pos: 16.5,17.5 - parent: 2 - - uid: 1111 - components: - - type: Transform - pos: 16.5,18.5 + rot: 3.141592653589793 rad + pos: 27.5,18.5 parent: 2 - uid: 1112 components: - type: Transform - pos: 16.5,19.5 + rot: 3.141592653589793 rad + pos: 27.5,17.5 parent: 2 - uid: 1114 components: @@ -119452,6 +131149,11 @@ entities: - type: Transform pos: -70.5,-8.5 parent: 2 + - uid: 1132 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 - uid: 1133 components: - type: Transform @@ -119462,16 +131164,6 @@ entities: - type: Transform pos: -31.5,11.5 parent: 2 - - uid: 1140 - components: - - type: Transform - pos: -18.5,-16.5 - parent: 2 - - uid: 1143 - components: - - type: Transform - pos: -26.5,-15.5 - parent: 2 - uid: 1146 components: - type: Transform @@ -119495,12 +131187,14 @@ entities: - uid: 1151 components: - type: Transform - pos: -29.5,-17.5 + rot: -1.5707963267948966 rad + pos: -59.5,-51.5 parent: 2 - uid: 1153 components: - type: Transform - pos: 18.5,23.5 + rot: -1.5707963267948966 rad + pos: -58.5,-54.5 parent: 2 - uid: 1162 components: @@ -119527,6 +131221,11 @@ entities: - type: Transform pos: -37.5,6.5 parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 - uid: 1245 components: - type: Transform @@ -119537,6 +131236,11 @@ entities: - type: Transform pos: -18.5,-5.5 parent: 2 + - uid: 1255 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 - uid: 1294 components: - type: Transform @@ -119572,6 +131276,16 @@ entities: - type: Transform pos: -35.5,15.5 parent: 2 + - uid: 1391 + components: + - type: Transform + pos: 50.5,18.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 - uid: 1419 components: - type: Transform @@ -119617,11 +131331,6 @@ entities: - type: Transform pos: -2.5,6.5 parent: 2 - - uid: 1429 - components: - - type: Transform - pos: 17.5,1.5 - parent: 2 - uid: 1430 components: - type: Transform @@ -119697,6 +131406,11 @@ entities: - type: Transform pos: 5.5,3.5 parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -28.5,-49.5 + parent: 2 - uid: 1484 components: - type: Transform @@ -119717,46 +131431,21 @@ entities: - type: Transform pos: -13.5,6.5 parent: 2 - - uid: 1497 - components: - - type: Transform - pos: -43.5,-33.5 - parent: 2 - uid: 1512 components: - type: Transform pos: 45.5,-91.5 parent: 2 - - uid: 1516 - components: - - type: Transform - pos: 24.5,15.5 - parent: 2 - - uid: 1529 - components: - - type: Transform - pos: 22.5,14.5 - parent: 2 - uid: 1530 components: - type: Transform pos: 42.5,-26.5 parent: 2 - - uid: 1533 - components: - - type: Transform - pos: 7.5,-60.5 - parent: 2 - uid: 1534 components: - type: Transform pos: -4.5,13.5 parent: 2 - - uid: 1538 - components: - - type: Transform - pos: -26.5,-17.5 - parent: 2 - uid: 1560 components: - type: Transform @@ -119767,150 +131456,65 @@ entities: - type: Transform pos: -10.5,1.5 parent: 2 - - uid: 1583 - components: - - type: Transform - pos: -6.5,-6.5 - parent: 2 - uid: 1589 components: - type: Transform pos: -18.5,-3.5 parent: 2 - - uid: 1627 - components: - - type: Transform - pos: -26.5,-14.5 - parent: 2 - - uid: 1635 - components: - - type: Transform - pos: 4.5,-11.5 - parent: 2 - - uid: 1644 + - uid: 1639 components: - type: Transform - pos: 6.5,1.5 + pos: -38.5,14.5 parent: 2 - uid: 1645 components: - type: Transform pos: 47.5,-43.5 parent: 2 - - uid: 1659 - components: - - type: Transform - pos: -36.5,8.5 - parent: 2 - - uid: 1661 - components: - - type: Transform - pos: -37.5,10.5 - parent: 2 - - uid: 1662 - components: - - type: Transform - pos: 10.5,-10.5 - parent: 2 - - uid: 1664 - components: - - type: Transform - pos: 11.5,-9.5 - parent: 2 - - uid: 1666 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - - uid: 1671 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 2 - - uid: 1679 - components: - - type: Transform - pos: 9.5,-1.5 - parent: 2 - - uid: 1684 + - uid: 1663 components: - type: Transform - pos: 8.5,-1.5 + pos: -24.5,-13.5 parent: 2 - uid: 1687 components: - type: Transform pos: -33.5,-0.5 parent: 2 - - uid: 1696 + - uid: 1691 components: - type: Transform - pos: 29.5,-6.5 + pos: 13.5,29.5 parent: 2 - - uid: 1697 + - uid: 1707 components: - type: Transform - pos: 13.5,-3.5 + pos: -33.5,-10.5 parent: 2 - - uid: 1718 + - uid: 1725 components: - type: Transform - pos: 6.5,-11.5 + pos: 14.5,29.5 parent: 2 - uid: 1735 components: - type: Transform pos: 44.5,-15.5 parent: 2 - - uid: 1736 - components: - - type: Transform - pos: 0.5,-18.5 - parent: 2 - - uid: 1754 - components: - - type: Transform - pos: 11.5,-10.5 - parent: 2 - - uid: 1764 - components: - - type: Transform - pos: 25.5,15.5 - parent: 2 - - uid: 1780 - components: - - type: Transform - pos: 6.5,-1.5 - parent: 2 - - uid: 1781 - components: - - type: Transform - pos: 7.5,-1.5 - parent: 2 - - uid: 1807 - components: - - type: Transform - pos: 6.5,-4.5 - parent: 2 - - uid: 1817 - components: - - type: Transform - pos: -6.5,-9.5 - parent: 2 - - uid: 1819 + - uid: 1843 components: - type: Transform - pos: -6.5,-8.5 + pos: -30.5,-60.5 parent: 2 - - uid: 1833 + - uid: 1858 components: - type: Transform - pos: 9.5,-11.5 + pos: -59.5,-61.5 parent: 2 - - uid: 1846 + - uid: 1863 components: - type: Transform - pos: -36.5,-56.5 + pos: -28.5,-58.5 parent: 2 - uid: 1864 components: @@ -119922,65 +131526,75 @@ entities: - type: Transform pos: 26.5,-47.5 parent: 2 - - uid: 1872 + - uid: 1874 components: - type: Transform - pos: 8.5,-13.5 + pos: -27.5,-61.5 parent: 2 - uid: 1876 components: - type: Transform pos: 10.5,-20.5 parent: 2 - - uid: 1879 + - uid: 1882 components: - type: Transform - pos: 9.5,-20.5 + pos: -27.5,-64.5 parent: 2 - - uid: 1883 + - uid: 1890 components: - type: Transform - pos: 6.5,-60.5 + pos: -35.5,14.5 parent: 2 - - uid: 1887 + - uid: 1892 components: - type: Transform - pos: 0.5,-11.5 + pos: -30.5,-62.5 parent: 2 - - uid: 1889 + - uid: 1894 components: - type: Transform - pos: 0.5,-12.5 + pos: 40.5,-68.5 parent: 2 - - uid: 1894 + - uid: 1918 components: - type: Transform - pos: 40.5,-68.5 + pos: 53.5,-27.5 parent: 2 - - uid: 1897 + - uid: 1926 components: - type: Transform - pos: 13.5,0.5 + pos: -27.5,-62.5 parent: 2 - - uid: 1911 + - uid: 1950 components: - type: Transform - pos: -40.5,-39.5 + pos: -28.5,-64.5 parent: 2 - - uid: 1918 + - uid: 1967 components: - type: Transform - pos: 53.5,-27.5 + pos: -34.5,-6.5 parent: 2 - - uid: 2011 + - uid: 2016 components: - type: Transform - pos: 0.5,-20.5 + pos: -33.5,-8.5 parent: 2 - - uid: 2041 + - uid: 2029 components: - type: Transform - pos: 7.5,5.5 + pos: -27.5,-58.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -29.5,-65.5 parent: 2 - uid: 2069 components: @@ -119992,10 +131606,10 @@ entities: - type: Transform pos: 53.5,-57.5 parent: 2 - - uid: 2086 + - uid: 2077 components: - type: Transform - pos: -45.5,-39.5 + pos: 11.5,-88.5 parent: 2 - uid: 2153 components: @@ -120052,6 +131666,16 @@ entities: - type: Transform pos: -67.5,-8.5 parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 44.5,16.5 + parent: 2 - uid: 2258 components: - type: Transform @@ -120077,11 +131701,6 @@ entities: - type: Transform pos: -65.5,-8.5 parent: 2 - - uid: 2287 - components: - - type: Transform - pos: 10.5,-16.5 - parent: 2 - uid: 2289 components: - type: Transform @@ -120112,6 +131731,17 @@ entities: - type: Transform pos: 37.5,-63.5 parent: 2 + - uid: 2343 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,27.5 + parent: 2 - uid: 2353 components: - type: Transform @@ -120122,15 +131752,16 @@ entities: - type: Transform pos: 66.5,-43.5 parent: 2 - - uid: 2435 + - uid: 2389 components: - type: Transform - pos: 0.5,-5.5 + rot: -1.5707963267948966 rad + pos: 36.5,27.5 parent: 2 - - uid: 2436 + - uid: 2413 components: - type: Transform - pos: -6.5,-10.5 + pos: 5.5,-13.5 parent: 2 - uid: 2452 components: @@ -120142,21 +131773,26 @@ entities: - type: Transform pos: -20.5,25.5 parent: 2 - - uid: 2515 + - uid: 2456 components: - type: Transform - pos: -6.5,-24.5 + pos: -25.5,-21.5 parent: 2 - - uid: 2527 + - uid: 2515 components: - type: Transform - pos: -43.5,-34.5 + pos: -6.5,-24.5 parent: 2 - uid: 2541 components: - type: Transform pos: -19.5,-12.5 parent: 2 + - uid: 2545 + components: + - type: Transform + pos: -31.5,-65.5 + parent: 2 - uid: 2553 components: - type: Transform @@ -120182,16 +131818,6 @@ entities: - type: Transform pos: -3.5,-27.5 parent: 2 - - uid: 2588 - components: - - type: Transform - pos: -46.5,-39.5 - parent: 2 - - uid: 2590 - components: - - type: Transform - pos: 9.5,-16.5 - parent: 2 - uid: 2609 components: - type: Transform @@ -120220,27 +131846,32 @@ entities: - uid: 2624 components: - type: Transform - pos: -4.5,-5.5 + pos: -35.5,-13.5 parent: 2 - uid: 2653 components: - type: Transform pos: -28.5,5.5 parent: 2 + - uid: 2673 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 - uid: 2676 components: - type: Transform - pos: -21.5,-12.5 + pos: -35.5,-18.5 parent: 2 - - uid: 2685 + - uid: 2678 components: - type: Transform - pos: -22.5,-12.5 + pos: -38.5,-11.5 parent: 2 - - uid: 2704 + - uid: 2685 components: - type: Transform - pos: -33.5,-5.5 + pos: -38.5,-16.5 parent: 2 - uid: 2737 components: @@ -120262,11 +131893,6 @@ entities: - type: Transform pos: 65.5,-43.5 parent: 2 - - uid: 2766 - components: - - type: Transform - pos: -40.5,-24.5 - parent: 2 - uid: 2781 components: - type: Transform @@ -120312,6 +131938,11 @@ entities: - type: Transform pos: -19.5,10.5 parent: 2 + - uid: 2847 + components: + - type: Transform + pos: -31.5,-62.5 + parent: 2 - uid: 2879 components: - type: Transform @@ -120322,15 +131953,15 @@ entities: - type: Transform pos: 42.5,-65.5 parent: 2 - - uid: 2915 + - uid: 2907 components: - type: Transform - pos: -10.5,-24.5 + pos: -9.5,-70.5 parent: 2 - - uid: 2920 + - uid: 2915 components: - type: Transform - pos: 8.5,-16.5 + pos: -10.5,-24.5 parent: 2 - uid: 2923 components: @@ -120342,6 +131973,11 @@ entities: - type: Transform pos: 23.5,-26.5 parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 - uid: 2936 components: - type: Transform @@ -120352,31 +131988,11 @@ entities: - type: Transform pos: 11.5,-20.5 parent: 2 - - uid: 2949 - components: - - type: Transform - pos: -39.5,-36.5 - parent: 2 - uid: 2953 components: - type: Transform pos: -65.5,-9.5 parent: 2 - - uid: 2958 - components: - - type: Transform - pos: 11.5,-7.5 - parent: 2 - - uid: 2963 - components: - - type: Transform - pos: 30.5,14.5 - parent: 2 - - uid: 2989 - components: - - type: Transform - pos: -22.5,-14.5 - parent: 2 - uid: 3005 components: - type: Transform @@ -120387,11 +132003,6 @@ entities: - type: Transform pos: -36.5,22.5 parent: 2 - - uid: 3014 - components: - - type: Transform - pos: 29.5,-7.5 - parent: 2 - uid: 3016 components: - type: Transform @@ -120402,10 +132013,10 @@ entities: - type: Transform pos: -2.5,13.5 parent: 2 - - uid: 3070 + - uid: 3066 components: - type: Transform - pos: 9.5,-8.5 + pos: -31.5,-60.5 parent: 2 - uid: 3072 components: @@ -120422,21 +132033,11 @@ entities: - type: Transform pos: -11.5,-45.5 parent: 2 - - uid: 3092 - components: - - type: Transform - pos: -10.5,-45.5 - parent: 2 - uid: 3093 components: - type: Transform pos: -10.5,-46.5 parent: 2 - - uid: 3094 - components: - - type: Transform - pos: -10.5,-47.5 - parent: 2 - uid: 3100 components: - type: Transform @@ -120477,21 +132078,11 @@ entities: - type: Transform pos: 32.5,-49.5 parent: 2 - - uid: 3130 - components: - - type: Transform - pos: -46.5,-29.5 - parent: 2 - uid: 3131 components: - type: Transform pos: -10.5,-49.5 parent: 2 - - uid: 3133 - components: - - type: Transform - pos: -19.5,-45.5 - parent: 2 - uid: 3134 components: - type: Transform @@ -120532,36 +132123,6 @@ entities: - type: Transform pos: -10.5,-48.5 parent: 2 - - uid: 3143 - components: - - type: Transform - pos: -45.5,-29.5 - parent: 2 - - uid: 3144 - components: - - type: Transform - pos: -31.5,-18.5 - parent: 2 - - uid: 3186 - components: - - type: Transform - pos: -32.5,-59.5 - parent: 2 - - uid: 3199 - components: - - type: Transform - pos: -52.5,-35.5 - parent: 2 - - uid: 3204 - components: - - type: Transform - pos: -27.5,-17.5 - parent: 2 - - uid: 3206 - components: - - type: Transform - pos: -18.5,-13.5 - parent: 2 - uid: 3210 components: - type: Transform @@ -120572,11 +132133,6 @@ entities: - type: Transform pos: -4.5,-33.5 parent: 2 - - uid: 3214 - components: - - type: Transform - pos: -22.5,-16.5 - parent: 2 - uid: 3215 components: - type: Transform @@ -120602,20 +132158,10 @@ entities: - type: Transform pos: -1.5,-32.5 parent: 2 - - uid: 3237 - components: - - type: Transform - pos: -29.5,-18.5 - parent: 2 - - uid: 3239 - components: - - type: Transform - pos: -28.5,-17.5 - parent: 2 - - uid: 3240 + - uid: 3233 components: - type: Transform - pos: -30.5,-18.5 + pos: -4.5,-72.5 parent: 2 - uid: 3251 components: @@ -120627,15 +132173,35 @@ entities: - type: Transform pos: -19.5,13.5 parent: 2 + - uid: 3294 + components: + - type: Transform + pos: -9.5,-51.5 + parent: 2 - uid: 3322 components: - type: Transform pos: 61.5,-80.5 parent: 2 - - uid: 3451 + - uid: 3379 components: - type: Transform - pos: -27.5,-65.5 + pos: -25.5,-24.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -25.5,-22.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: -31.5,-43.5 parent: 2 - uid: 3488 components: @@ -120647,6 +132213,11 @@ entities: - type: Transform pos: 47.5,-45.5 parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -35.5,-83.5 + parent: 2 - uid: 3524 components: - type: Transform @@ -120672,15 +132243,10 @@ entities: - type: Transform pos: 40.5,-62.5 parent: 2 - - uid: 3559 - components: - - type: Transform - pos: -24.5,-12.5 - parent: 2 - uid: 3568 components: - type: Transform - pos: 13.5,7.5 + pos: -34.5,-1.5 parent: 2 - uid: 3579 components: @@ -120702,15 +132268,35 @@ entities: - type: Transform pos: 59.5,-78.5 parent: 2 + - uid: 3689 + components: + - type: Transform + pos: -36.5,-74.5 + parent: 2 - uid: 3692 components: - type: Transform pos: 58.5,-78.5 parent: 2 - - uid: 3710 + - uid: 3714 components: - type: Transform - pos: 35.5,11.5 + pos: -36.5,14.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: -9.5,19.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: -37.5,14.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: 16.5,-61.5 parent: 2 - uid: 3797 components: @@ -120722,11 +132308,47 @@ entities: - type: Transform pos: 54.5,-47.5 parent: 2 + - uid: 3801 + components: + - type: Transform + pos: 16.5,-62.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,17.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 49.5,22.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 4.5,-58.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: -1.5,-59.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 12.5,-69.5 + parent: 2 - uid: 3946 components: - type: Transform pos: 57.5,-45.5 parent: 2 + - uid: 3947 + components: + - type: Transform + pos: -46.5,-21.5 + parent: 2 - uid: 3958 components: - type: Transform @@ -120747,11 +132369,6 @@ entities: - type: Transform pos: 53.5,-64.5 parent: 2 - - uid: 3995 - components: - - type: Transform - pos: 28.5,-12.5 - parent: 2 - uid: 4017 components: - type: Transform @@ -120772,16 +132389,26 @@ entities: - type: Transform pos: 52.5,-62.5 parent: 2 - - uid: 4069 + - uid: 4073 components: - type: Transform - pos: 9.5,-10.5 + pos: -35.5,-78.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: 8.5,-59.5 parent: 2 - uid: 4145 components: - type: Transform pos: 75.5,-64.5 parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 6.5,-66.5 + parent: 2 - uid: 4195 components: - type: Transform @@ -120797,6 +132424,11 @@ entities: - type: Transform pos: 32.5,-32.5 parent: 2 + - uid: 4223 + components: + - type: Transform + pos: -5.5,-59.5 + parent: 2 - uid: 4256 components: - type: Transform @@ -120837,6 +132469,16 @@ entities: - type: Transform pos: 50.5,-65.5 parent: 2 + - uid: 4348 + components: + - type: Transform + pos: 13.5,-64.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + pos: -10.5,-64.5 + parent: 2 - uid: 4362 components: - type: Transform @@ -120847,6 +132489,11 @@ entities: - type: Transform pos: 50.5,-43.5 parent: 2 + - uid: 4383 + components: + - type: Transform + pos: 7.5,-15.5 + parent: 2 - uid: 4414 components: - type: Transform @@ -120857,6 +132504,16 @@ entities: - type: Transform pos: 42.5,-33.5 parent: 2 + - uid: 4442 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + pos: -37.5,-78.5 + parent: 2 - uid: 4478 components: - type: Transform @@ -120865,7 +132522,12 @@ entities: - uid: 4507 components: - type: Transform - pos: 4.5,-13.5 + pos: -31.5,-14.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + pos: -40.5,-16.5 parent: 2 - uid: 4520 components: @@ -120920,12 +132582,12 @@ entities: - uid: 4549 components: - type: Transform - pos: 2.5,-13.5 + pos: -36.5,-18.5 parent: 2 - uid: 4550 components: - type: Transform - pos: 1.5,-13.5 + pos: -37.5,-18.5 parent: 2 - uid: 4551 components: @@ -120937,6 +132599,11 @@ entities: - type: Transform pos: 40.5,-47.5 parent: 2 + - uid: 4558 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 - uid: 4564 components: - type: Transform @@ -120952,10 +132619,15 @@ entities: - type: Transform pos: 30.5,-47.5 parent: 2 - - uid: 4593 + - uid: 4594 components: - type: Transform - pos: -6.5,-5.5 + pos: -31.5,0.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: 24.5,-5.5 parent: 2 - uid: 4613 components: @@ -120992,125 +132664,120 @@ entities: - type: Transform pos: 37.5,-58.5 parent: 2 - - uid: 4675 + - uid: 4684 components: - type: Transform - pos: -28.5,-18.5 + pos: -36.5,-78.5 + parent: 2 + - uid: 4694 + components: + - type: Transform + pos: -31.5,-57.5 parent: 2 - uid: 4695 components: - type: Transform pos: 47.5,-48.5 parent: 2 + - uid: 4697 + components: + - type: Transform + pos: -30.5,-57.5 + parent: 2 - uid: 4711 components: - type: Transform pos: 50.5,-64.5 parent: 2 - - uid: 4716 + - uid: 4719 components: - type: Transform - pos: 9.5,-5.5 + pos: -31.5,-58.5 parent: 2 - uid: 4723 components: - type: Transform pos: 53.5,-61.5 parent: 2 + - uid: 4733 + components: + - type: Transform + pos: -31.5,-78.5 + parent: 2 - uid: 4734 components: - type: Transform pos: 49.5,-91.5 parent: 2 - - uid: 4777 + - uid: 4749 components: - type: Transform - pos: -42.5,-24.5 + pos: -30.5,-81.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: -37.5,-21.5 parent: 2 - uid: 4789 components: - type: Transform pos: -20.5,9.5 parent: 2 - - uid: 4790 + - uid: 4795 components: - type: Transform - pos: -45.5,-19.5 + pos: 22.5,-7.5 parent: 2 - - uid: 4791 + - uid: 4811 components: - type: Transform - pos: 35.5,16.5 + pos: -37.5,-70.5 parent: 2 - uid: 4828 components: - type: Transform pos: 74.5,-67.5 parent: 2 - - uid: 4831 - components: - - type: Transform - pos: -42.5,-56.5 - parent: 2 - uid: 4833 components: - type: Transform pos: 60.5,-80.5 parent: 2 - - uid: 4835 - components: - - type: Transform - pos: -45.5,-28.5 - parent: 2 - - uid: 4837 - components: - - type: Transform - pos: 4.5,-18.5 - parent: 2 - - uid: 4847 + - uid: 4846 components: - type: Transform - pos: 4.5,-19.5 + pos: -25.5,-68.5 parent: 2 - uid: 4849 components: - type: Transform pos: 4.5,-20.5 parent: 2 - - uid: 4863 + - uid: 4853 components: - type: Transform - pos: -42.5,-26.5 + pos: -15.5,-68.5 parent: 2 - uid: 4875 components: - type: Transform - pos: -45.5,-20.5 + pos: -35.5,-74.5 parent: 2 - - uid: 4879 + - uid: 4881 components: - type: Transform - pos: 4.5,-16.5 + pos: -37.5,-66.5 parent: 2 - uid: 4883 components: - type: Transform - pos: -47.5,-32.5 - parent: 2 - - uid: 4885 - components: - - type: Transform - pos: -39.5,-39.5 + pos: -19.5,-68.5 parent: 2 - - uid: 4886 - components: - - type: Transform - pos: -47.5,-29.5 - parent: 2 - - uid: 4889 + - uid: 4888 components: - type: Transform - pos: 0.5,-23.5 + pos: -27.5,-60.5 parent: 2 - uid: 4893 components: @@ -121122,30 +132789,20 @@ entities: - type: Transform pos: 6.5,-23.5 parent: 2 - - uid: 4902 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 4903 - components: - - type: Transform - pos: -29.5,-70.5 - parent: 2 - - uid: 4909 + - uid: 4905 components: - type: Transform - pos: 9.5,-12.5 + pos: -21.5,-68.5 parent: 2 - - uid: 4913 + - uid: 4907 components: - type: Transform - pos: 35.5,10.5 + pos: -27.5,-68.5 parent: 2 - - uid: 4915 + - uid: 4912 components: - type: Transform - pos: 29.5,17.5 + pos: 14.5,-3.5 parent: 2 - uid: 4931 components: @@ -121162,20 +132819,30 @@ entities: - type: Transform pos: -5.5,26.5 parent: 2 + - uid: 4945 + components: + - type: Transform + pos: -27.5,-63.5 + parent: 2 - uid: 4960 components: - type: Transform - pos: -40.5,-20.5 + pos: -30.5,-43.5 parent: 2 - - uid: 4963 + - uid: 4966 components: - type: Transform - pos: -36.5,-19.5 + pos: -35.5,-66.5 parent: 2 - - uid: 4989 + - uid: 4984 components: - type: Transform - pos: 30.5,19.5 + pos: -48.5,-59.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -37.5,-74.5 parent: 2 - uid: 5021 components: @@ -121187,6 +132854,11 @@ entities: - type: Transform pos: -8.5,24.5 parent: 2 + - uid: 5058 + components: + - type: Transform + pos: 8.5,-76.5 + parent: 2 - uid: 5065 components: - type: Transform @@ -121197,11 +132869,6 @@ entities: - type: Transform pos: -72.5,-13.5 parent: 2 - - uid: 5080 - components: - - type: Transform - pos: 30.5,20.5 - parent: 2 - uid: 5088 components: - type: Transform @@ -121232,6 +132899,16 @@ entities: - type: Transform pos: -9.5,16.5 parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 5136 + components: + - type: Transform + pos: -37.5,-59.5 + parent: 2 - uid: 5140 components: - type: Transform @@ -121247,6 +132924,16 @@ entities: - type: Transform pos: 49.5,-85.5 parent: 2 + - uid: 5154 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 5155 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 - uid: 5157 components: - type: Transform @@ -121257,11 +132944,6 @@ entities: - type: Transform pos: 76.5,-59.5 parent: 2 - - uid: 5163 - components: - - type: Transform - pos: -32.5,-70.5 - parent: 2 - uid: 5174 components: - type: Transform @@ -121270,7 +132952,13 @@ entities: - uid: 5176 components: - type: Transform - pos: -33.5,-66.5 + rot: 3.141592653589793 rad + pos: 18.5,27.5 + parent: 2 + - uid: 5185 + components: + - type: Transform + pos: -31.5,-74.5 parent: 2 - uid: 5186 components: @@ -121297,15 +132985,15 @@ entities: - type: Transform pos: -64.5,-7.5 parent: 2 - - uid: 5212 + - uid: 5224 components: - type: Transform - pos: -28.5,-19.5 + pos: 13.5,-0.5 parent: 2 - - uid: 5215 + - uid: 5242 components: - type: Transform - pos: -30.5,-70.5 + pos: -35.5,-82.5 parent: 2 - uid: 5246 components: @@ -121317,20 +133005,20 @@ entities: - type: Transform pos: -21.5,1.5 parent: 2 - - uid: 5280 + - uid: 5289 components: - type: Transform - pos: -25.5,-14.5 + pos: -35.5,-70.5 parent: 2 - - uid: 5284 + - uid: 5290 components: - type: Transform - pos: -24.5,-14.5 + pos: -23.5,6.5 parent: 2 - - uid: 5290 + - uid: 5295 components: - type: Transform - pos: -23.5,6.5 + pos: -37.5,-58.5 parent: 2 - uid: 5305 components: @@ -121362,11 +133050,6 @@ entities: - type: Transform pos: -18.5,27.5 parent: 2 - - uid: 5335 - components: - - type: Transform - pos: -9.5,19.5 - parent: 2 - uid: 5337 components: - type: Transform @@ -121407,11 +133090,6 @@ entities: - type: Transform pos: -6.5,26.5 parent: 2 - - uid: 5366 - components: - - type: Transform - pos: 18.5,26.5 - parent: 2 - uid: 5367 components: - type: Transform @@ -121437,6 +133115,11 @@ entities: - type: Transform pos: -9.5,20.5 parent: 2 + - uid: 5426 + components: + - type: Transform + pos: 50.5,22.5 + parent: 2 - uid: 5448 components: - type: Transform @@ -121502,6 +133185,11 @@ entities: - type: Transform pos: -54.5,-10.5 parent: 2 + - uid: 5516 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 - uid: 5521 components: - type: Transform @@ -121527,6 +133215,11 @@ entities: - type: Transform pos: -56.5,-10.5 parent: 2 + - uid: 5541 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 - uid: 5544 components: - type: Transform @@ -121572,6 +133265,21 @@ entities: - type: Transform pos: 30.5,-23.5 parent: 2 + - uid: 5576 + components: + - type: Transform + pos: -40.5,-58.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 5581 + components: + - type: Transform + pos: -52.5,-46.5 + parent: 2 - uid: 5603 components: - type: Transform @@ -121617,25 +133325,10 @@ entities: - type: Transform pos: 32.5,-56.5 parent: 2 - - uid: 5661 - components: - - type: Transform - pos: -28.5,-69.5 - parent: 2 - - uid: 5662 - components: - - type: Transform - pos: -28.5,-68.5 - parent: 2 - - uid: 5664 - components: - - type: Transform - pos: -41.5,-24.5 - parent: 2 - - uid: 5666 + - uid: 5667 components: - type: Transform - pos: -46.5,-24.5 + pos: -35.5,-59.5 parent: 2 - uid: 5669 components: @@ -121687,11 +133380,6 @@ entities: - type: Transform pos: 43.5,-19.5 parent: 2 - - uid: 5751 - components: - - type: Transform - pos: -26.5,-48.5 - parent: 2 - uid: 5770 components: - type: Transform @@ -121707,26 +133395,16 @@ entities: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 5811 - components: - - type: Transform - pos: 22.5,13.5 - parent: 2 - uid: 5816 components: - type: Transform - pos: 5.5,-5.5 + pos: 52.5,-32.5 parent: 2 - uid: 5825 components: - type: Transform pos: 50.5,-34.5 parent: 2 - - uid: 5832 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - uid: 5836 components: - type: Transform @@ -121747,2735 +133425,2806 @@ entities: - type: Transform pos: 58.5,-70.5 parent: 2 - - uid: 5845 + - uid: 5861 components: - type: Transform - pos: 28.5,29.5 + pos: -28.5,18.5 parent: 2 - - uid: 5849 + - uid: 5886 components: - type: Transform - pos: 35.5,34.5 + rot: 3.141592653589793 rad + pos: 48.5,25.5 parent: 2 - - uid: 5852 + - uid: 5900 components: - type: Transform - pos: 34.5,26.5 + pos: 53.5,-34.5 parent: 2 - - uid: 5854 + - uid: 5901 components: - type: Transform - pos: 30.5,22.5 + pos: 41.5,-16.5 parent: 2 - - uid: 5860 + - uid: 5907 components: - type: Transform - pos: 28.5,22.5 + pos: -68.5,-8.5 parent: 2 - - uid: 5861 + - uid: 5909 components: - type: Transform - pos: -28.5,18.5 + pos: -1.5,-24.5 parent: 2 - - uid: 5863 + - uid: 5922 components: - type: Transform - pos: 30.5,30.5 + pos: -28.5,-51.5 parent: 2 - - uid: 5865 + - uid: 5927 components: - type: Transform - pos: 30.5,34.5 + pos: -70.5,-9.5 parent: 2 - - uid: 5867 + - uid: 5930 components: - type: Transform - pos: 27.5,17.5 + pos: -62.5,-7.5 parent: 2 - - uid: 5869 + - uid: 5931 components: - type: Transform - pos: 34.5,34.5 + pos: 56.5,-50.5 parent: 2 - - uid: 5871 + - uid: 5939 components: - type: Transform - pos: 34.5,19.5 + pos: 41.5,-13.5 parent: 2 - - uid: 5874 + - uid: 5942 components: - type: Transform - pos: 34.5,30.5 + pos: 56.5,-51.5 parent: 2 - - uid: 5875 + - uid: 6035 components: - type: Transform - pos: 36.5,38.5 + pos: 56.5,-49.5 parent: 2 - - uid: 5876 + - uid: 6043 components: - type: Transform - pos: 34.5,21.5 + pos: 44.5,-79.5 parent: 2 - - uid: 5877 + - uid: 6059 components: - type: Transform - pos: 34.5,20.5 + pos: 57.5,-71.5 parent: 2 - - uid: 5879 + - uid: 6095 components: - type: Transform - pos: 36.5,34.5 + pos: 41.5,-15.5 parent: 2 - - uid: 5882 + - uid: 6109 components: - type: Transform - pos: 36.5,26.5 + pos: 14.5,-0.5 parent: 2 - - uid: 5896 + - uid: 6116 components: - type: Transform - pos: 35.5,26.5 + pos: -31.5,-63.5 parent: 2 - - uid: 5897 + - uid: 6122 components: - type: Transform - pos: 34.5,16.5 + pos: -58.5,-11.5 parent: 2 - - uid: 5900 + - uid: 6125 components: - type: Transform - pos: 53.5,-34.5 + pos: -61.5,-17.5 parent: 2 - - uid: 5901 + - uid: 6128 components: - type: Transform - pos: 41.5,-16.5 + pos: 49.5,-7.5 parent: 2 - - uid: 5907 + - uid: 6136 components: - type: Transform - pos: -68.5,-8.5 + pos: 46.5,13.5 parent: 2 - - uid: 5909 + - uid: 6149 components: - type: Transform - pos: -1.5,-24.5 + pos: 47.5,13.5 parent: 2 - - uid: 5922 + - uid: 6165 components: - type: Transform - pos: -28.5,-51.5 + pos: -31.5,-67.5 parent: 2 - - uid: 5927 + - uid: 6172 components: - type: Transform - pos: -70.5,-9.5 + pos: -31.5,-69.5 parent: 2 - - uid: 5930 + - uid: 6188 components: - type: Transform - pos: -62.5,-7.5 + pos: -31.5,-83.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: 29.5,-47.5 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: -35.5,22.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: -31.5,-68.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: 32.5,-63.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: 60.5,-70.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: -64.5,-18.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: 60.5,-71.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: 32.5,-61.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + pos: 60.5,-74.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: 30.5,-66.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: -67.5,-13.5 parent: 2 - - uid: 5931 + - uid: 6310 components: - type: Transform - pos: 56.5,-50.5 + pos: 11.5,-5.5 parent: 2 - - uid: 5939 + - uid: 6332 components: - type: Transform - pos: 41.5,-13.5 + pos: 15.5,-61.5 parent: 2 - - uid: 5942 + - uid: 6360 components: - type: Transform - pos: 56.5,-51.5 + pos: -13.5,-57.5 parent: 2 - - uid: 5950 + - uid: 6373 components: - type: Transform - pos: -28.5,-50.5 + pos: 14.5,-15.5 parent: 2 - - uid: 6035 + - uid: 6376 components: - type: Transform - pos: 56.5,-49.5 + pos: -9.5,13.5 parent: 2 - - uid: 6043 + - uid: 6379 components: - type: Transform - pos: 44.5,-79.5 + pos: 44.5,0.5 parent: 2 - - uid: 6059 + - uid: 6380 components: - type: Transform - pos: 57.5,-71.5 + pos: 43.5,0.5 parent: 2 - - uid: 6095 + - uid: 6384 components: - type: Transform - pos: 41.5,-15.5 + pos: -1.5,-85.5 parent: 2 - - uid: 6102 + - uid: 6389 components: - type: Transform - pos: 30.5,40.5 + pos: 12.5,-3.5 parent: 2 - - uid: 6122 + - uid: 6400 components: - type: Transform - pos: -58.5,-11.5 + pos: 16.5,-64.5 parent: 2 - - uid: 6125 + - uid: 6406 components: - type: Transform - pos: -61.5,-17.5 + pos: -10.5,-65.5 parent: 2 - - uid: 6128 + - uid: 6418 components: - type: Transform - pos: 49.5,-7.5 + pos: 13.5,-62.5 parent: 2 - - uid: 6136 + - uid: 6422 components: - type: Transform - pos: 46.5,13.5 + pos: 14.5,-65.5 parent: 2 - - uid: 6140 + - uid: 6427 components: - type: Transform - pos: 30.5,35.5 + pos: -9.5,-52.5 parent: 2 - - uid: 6149 + - uid: 6430 components: - type: Transform - pos: 47.5,13.5 + pos: -9.5,-66.5 parent: 2 - - uid: 6150 + - uid: 6433 components: - type: Transform - pos: 34.5,39.5 + pos: 12.5,-68.5 parent: 2 - - uid: 6154 + - uid: 6437 components: - type: Transform - pos: 30.5,39.5 + pos: 12.5,-70.5 parent: 2 - - uid: 6190 + - uid: 6439 components: - type: Transform - pos: 29.5,-47.5 + pos: -10.5,-66.5 parent: 2 - - uid: 6207 + - uid: 6442 components: - type: Transform - pos: -35.5,22.5 + pos: 12.5,-72.5 parent: 2 - - uid: 6217 + - uid: 6454 components: - type: Transform - pos: 40.5,-16.5 + pos: -10.5,-87.5 parent: 2 - - uid: 6227 + - uid: 6464 components: - type: Transform - pos: -28.5,-67.5 + pos: 36.5,-56.5 parent: 2 - - uid: 6233 + - uid: 6472 components: - type: Transform - pos: 32.5,-63.5 + pos: -31.5,-8.5 parent: 2 - - uid: 6239 + - uid: 6482 components: - type: Transform - pos: 60.5,-70.5 + pos: -25.5,-43.5 parent: 2 - - uid: 6240 + - uid: 6488 components: - type: Transform - pos: -64.5,-18.5 + pos: -14.5,-57.5 parent: 2 - - uid: 6245 + - uid: 6493 components: - type: Transform - pos: 60.5,-71.5 + pos: 7.5,-20.5 parent: 2 - - uid: 6246 + - uid: 6496 components: - type: Transform - pos: 32.5,-61.5 + pos: -9.5,-49.5 parent: 2 - - uid: 6249 + - uid: 6524 components: - type: Transform - pos: 22.5,-6.5 + pos: -70.5,-11.5 parent: 2 - - uid: 6251 + - uid: 6526 components: - type: Transform - pos: 22.5,-7.5 + pos: 13.5,-65.5 parent: 2 - - uid: 6255 + - uid: 6544 components: - type: Transform - pos: 20.5,-8.5 + pos: 15.5,-64.5 parent: 2 - - uid: 6256 + - uid: 6555 components: - type: Transform - pos: 20.5,-9.5 + pos: 75.5,-47.5 parent: 2 - - uid: 6258 + - uid: 6556 components: - type: Transform - pos: 20.5,-11.5 + pos: 41.5,-26.5 parent: 2 - - uid: 6259 + - uid: 6588 components: - type: Transform - pos: 20.5,-12.5 + pos: -57.5,-39.5 parent: 2 - - uid: 6262 + - uid: 6596 components: - type: Transform - pos: 23.5,-13.5 + pos: -31.5,-9.5 parent: 2 - - uid: 6263 + - uid: 6616 components: - type: Transform - pos: 24.5,-13.5 + pos: 29.5,-48.5 parent: 2 - - uid: 6266 + - uid: 6617 components: - type: Transform - pos: 22.5,-13.5 + pos: 29.5,-49.5 parent: 2 - - uid: 6268 + - uid: 6618 components: - type: Transform - pos: 26.5,-11.5 + pos: 29.5,-50.5 parent: 2 - - uid: 6269 + - uid: 6623 components: - type: Transform - pos: 26.5,-10.5 + pos: 32.5,-51.5 parent: 2 - - uid: 6280 + - uid: 6624 components: - type: Transform - pos: 26.5,-8.5 + pos: 33.5,-52.5 parent: 2 - - uid: 6281 + - uid: 6627 components: - type: Transform - pos: 26.5,-7.5 + pos: 36.5,-57.5 parent: 2 - - uid: 6283 + - uid: 6628 components: - type: Transform - pos: 24.5,-7.5 + pos: -37.5,-28.5 parent: 2 - - uid: 6284 + - uid: 6629 components: - type: Transform - pos: 21.5,-12.5 + pos: -37.5,-31.5 parent: 2 - - uid: 6286 + - uid: 6640 components: - type: Transform - pos: 60.5,-74.5 + pos: 32.5,-64.5 parent: 2 - - uid: 6288 + - uid: 6641 components: - type: Transform - pos: 30.5,-66.5 + pos: -40.5,-13.5 parent: 2 - - uid: 6306 + - uid: 6654 components: - type: Transform - pos: -67.5,-13.5 + pos: 22.5,-10.5 parent: 2 - - uid: 6314 + - uid: 6655 components: - type: Transform - pos: -7.5,-72.5 + pos: 5.5,-15.5 parent: 2 - - uid: 6315 + - uid: 6657 components: - type: Transform - pos: -7.5,-73.5 + pos: 12.5,-0.5 parent: 2 - - uid: 6317 + - uid: 6663 components: - type: Transform - pos: 23.5,3.5 + pos: 40.5,-17.5 parent: 2 - - uid: 6318 + - uid: 6670 components: - type: Transform - pos: -6.5,-66.5 + pos: 42.5,-1.5 parent: 2 - - uid: 6320 + - uid: 6712 components: - type: Transform - pos: 26.5,4.5 + pos: -38.5,-28.5 parent: 2 - - uid: 6321 + - uid: 6713 components: - type: Transform - pos: -3.5,-57.5 + pos: 23.5,-11.5 parent: 2 - - uid: 6322 + - uid: 6716 components: - type: Transform - pos: -5.5,-66.5 + pos: 13.5,-6.5 parent: 2 - - uid: 6323 + - uid: 6733 components: - type: Transform - pos: 8.5,-60.5 + pos: 32.5,-36.5 parent: 2 - - uid: 6325 + - uid: 6741 components: - type: Transform - pos: -4.5,-66.5 + pos: 42.5,-34.5 parent: 2 - - uid: 6326 + - uid: 6781 components: - type: Transform - pos: -3.5,-66.5 + pos: 25.5,-37.5 parent: 2 - - uid: 6329 + - uid: 6788 components: - type: Transform - pos: 6.5,-63.5 + pos: 32.5,-62.5 parent: 2 - - uid: 6331 + - uid: 6793 components: - type: Transform - pos: 6.5,-69.5 + pos: 60.5,-76.5 parent: 2 - - uid: 6333 + - uid: 6795 components: - type: Transform - pos: 9.5,-70.5 + pos: 60.5,-48.5 parent: 2 - - uid: 6334 + - uid: 6803 components: - type: Transform - pos: -10.5,-64.5 + pos: 39.5,-32.5 parent: 2 - - uid: 6335 + - uid: 6823 components: - type: Transform - pos: 8.5,-66.5 + pos: 30.5,-36.5 parent: 2 - - uid: 6336 + - uid: 6841 components: - type: Transform - pos: 5.5,-51.5 + pos: 39.5,-77.5 parent: 2 - - uid: 6337 + - uid: 6867 components: - type: Transform - pos: 5.5,-52.5 + pos: 54.5,-51.5 parent: 2 - - uid: 6342 + - uid: 6875 components: - type: Transform - pos: -3.5,-60.5 + pos: -66.5,-11.5 parent: 2 - - uid: 6345 + - uid: 6880 components: - type: Transform - pos: -3.5,-63.5 + pos: -36.5,-61.5 parent: 2 - - uid: 6346 + - uid: 6882 components: - type: Transform - pos: -5.5,-69.5 + pos: -36.5,24.5 parent: 2 - - uid: 6348 + - uid: 6909 components: - type: Transform - pos: 5.5,-53.5 + pos: 43.5,-23.5 parent: 2 - - uid: 6349 + - uid: 6925 components: - type: Transform - pos: -9.5,-70.5 + pos: 60.5,-78.5 parent: 2 - - uid: 6350 + - uid: 6930 components: - type: Transform - pos: -10.5,-72.5 + pos: 43.5,-24.5 parent: 2 - - uid: 6351 + - uid: 6931 components: - type: Transform - pos: 24.5,4.5 + pos: 15.5,-65.5 parent: 2 - - uid: 6353 + - uid: 6944 components: - type: Transform - pos: 6.5,-66.5 + pos: 40.5,-18.5 parent: 2 - - uid: 6360 + - uid: 6946 components: - type: Transform - pos: -13.5,-57.5 + pos: -36.5,-21.5 parent: 2 - - uid: 6365 + - uid: 6948 components: - type: Transform - pos: 23.5,-1.5 + rot: -1.5707963267948966 rad + pos: 41.5,15.5 parent: 2 - - uid: 6366 + - uid: 6949 components: - type: Transform - pos: 22.5,-1.5 + pos: 16.5,-19.5 parent: 2 - - uid: 6368 + - uid: 6950 components: - type: Transform - pos: 20.5,-1.5 + pos: 40.5,-24.5 parent: 2 - - uid: 6371 + - uid: 6960 components: - type: Transform - pos: 26.5,-0.5 + pos: 22.5,-11.5 parent: 2 - - uid: 6372 + - uid: 6961 components: - type: Transform - pos: 26.5,0.5 + pos: 45.5,-84.5 parent: 2 - - uid: 6373 + - uid: 6968 components: - type: Transform - pos: 26.5,1.5 + pos: 46.5,-1.5 parent: 2 - - uid: 6376 + - uid: 6969 components: - type: Transform - pos: -9.5,13.5 + pos: 46.5,-2.5 parent: 2 - - uid: 6379 + - uid: 6970 components: - type: Transform - pos: 44.5,0.5 + pos: 47.5,-2.5 parent: 2 - - uid: 6380 + - uid: 6978 components: - type: Transform - pos: 43.5,0.5 + pos: 50.5,-77.5 parent: 2 - - uid: 6384 + - uid: 6993 components: - type: Transform - pos: 7.5,-66.5 + pos: -68.5,-16.5 parent: 2 - - uid: 6386 + - uid: 6994 components: - type: Transform - pos: 8.5,-69.5 + pos: 24.5,-11.5 parent: 2 - - uid: 6387 + - uid: 7010 components: - type: Transform - pos: 7.5,-63.5 + pos: -53.5,-20.5 parent: 2 - - uid: 6388 + - uid: 7048 components: - type: Transform - pos: 12.5,-73.5 + pos: 53.5,-59.5 parent: 2 - - uid: 6389 + - uid: 7056 components: - type: Transform - pos: 26.5,3.5 + pos: 11.5,-12.5 parent: 2 - - uid: 6392 + - uid: 7075 components: - type: Transform - pos: -4.5,-57.5 + pos: 49.5,-11.5 parent: 2 - - uid: 6393 + - uid: 7076 components: - type: Transform - pos: 25.5,4.5 + pos: -59.5,-10.5 parent: 2 - - uid: 6396 + - uid: 7082 components: - type: Transform - pos: 13.5,-72.5 + pos: 49.5,-10.5 parent: 2 - - uid: 6397 + - uid: 7105 components: - type: Transform - pos: 10.5,-73.5 + pos: 8.5,-5.5 parent: 2 - - uid: 6400 + - uid: 7123 components: - type: Transform - pos: -4.5,-63.5 + pos: 8.5,-9.5 parent: 2 - - uid: 6401 + - uid: 7164 components: - type: Transform - pos: -4.5,-69.5 + pos: -27.5,-54.5 parent: 2 - - uid: 6402 + - uid: 7165 components: - type: Transform - pos: 10.5,-72.5 + pos: -27.5,-55.5 parent: 2 - - uid: 6404 + - uid: 7169 components: - type: Transform - pos: -9.5,-72.5 + pos: 49.5,-69.5 parent: 2 - - uid: 6405 + - uid: 7184 components: - type: Transform - pos: -5.5,-70.5 + pos: -27.5,-56.5 parent: 2 - - uid: 6406 + - uid: 7185 components: - type: Transform - pos: -10.5,-65.5 + pos: -27.5,-53.5 parent: 2 - - uid: 6407 + - uid: 7208 components: - type: Transform - pos: 8.5,-63.5 + pos: 44.5,-16.5 parent: 2 - - uid: 6409 + - uid: 7229 components: - type: Transform - pos: -5.5,-63.5 + pos: 51.5,-47.5 parent: 2 - - uid: 6411 + - uid: 7230 components: - type: Transform - pos: 7.5,-69.5 + pos: 50.5,-47.5 parent: 2 - - uid: 6412 + - uid: 7233 components: - type: Transform - pos: -3.5,-69.5 + pos: 53.5,-47.5 parent: 2 - - uid: 6413 + - uid: 7237 components: - type: Transform - pos: 12.5,-72.5 + pos: 6.5,-15.5 parent: 2 - - uid: 6415 + - uid: 7238 components: - type: Transform - pos: -2.5,-51.5 + pos: -10.5,26.5 parent: 2 - - uid: 6416 + - uid: 7240 components: - type: Transform - pos: 13.5,-70.5 + pos: -25.5,-33.5 parent: 2 - - uid: 6422 + - uid: 7244 components: - type: Transform - pos: -2.5,-52.5 + pos: 81.5,-13.5 parent: 2 - - uid: 6423 + - uid: 7308 components: - type: Transform - pos: -2.5,-53.5 + pos: 44.5,7.5 parent: 2 - - uid: 6426 + - uid: 7312 components: - type: Transform - pos: -9.5,-51.5 + pos: 40.5,-65.5 parent: 2 - - uid: 6427 + - uid: 7314 components: - type: Transform - pos: -9.5,-52.5 + pos: 42.5,5.5 parent: 2 - - uid: 6428 + - uid: 7337 components: - type: Transform - pos: -5.5,-60.5 + pos: 43.5,-47.5 parent: 2 - - uid: 6432 + - uid: 7338 components: - type: Transform - pos: 14.5,-58.5 + pos: 53.5,-60.5 parent: 2 - - uid: 6435 + - uid: 7348 components: - type: Transform - pos: -9.5,-73.5 + pos: 53.5,-65.5 parent: 2 - - uid: 6437 + - uid: 7359 components: - type: Transform - pos: 8.5,-58.5 + pos: 51.5,9.5 parent: 2 - - uid: 6441 + - uid: 7390 components: - type: Transform - pos: -4.5,-60.5 + pos: 49.5,7.5 parent: 2 - - uid: 6442 + - uid: 7404 components: - type: Transform - pos: 7.5,-57.5 + pos: 48.5,6.5 parent: 2 - - uid: 6445 + - uid: 7412 components: - type: Transform - pos: -3.5,-53.5 + pos: 51.5,-70.5 parent: 2 - - uid: 6447 + - uid: 7416 components: - type: Transform - pos: 6.5,-57.5 + pos: 28.5,-49.5 parent: 2 - - uid: 6450 + - uid: 7419 components: - type: Transform - pos: -10.5,-70.5 + pos: 26.5,-50.5 parent: 2 - - uid: 6451 + - uid: 7422 components: - type: Transform - pos: -6.5,-70.5 + pos: 27.5,-52.5 parent: 2 - - uid: 6454 + - uid: 7423 components: - type: Transform - pos: -6.5,-72.5 + pos: 28.5,-52.5 parent: 2 - - uid: 6457 + - uid: 7450 components: - type: Transform - pos: 6.5,-53.5 + pos: 50.5,-62.5 parent: 2 - - uid: 6462 + - uid: 7453 components: - type: Transform - pos: 22.5,4.5 + pos: -19.5,7.5 parent: 2 - - uid: 6463 + - uid: 7481 components: - type: Transform - pos: 20.5,4.5 + pos: -20.5,1.5 parent: 2 - - uid: 6464 + - uid: 7516 components: - type: Transform - pos: 36.5,-56.5 + pos: -9.5,-56.5 parent: 2 - - uid: 6471 + - uid: 7518 components: - type: Transform - pos: 23.5,4.5 + pos: -9.5,-57.5 parent: 2 - - uid: 6478 + - uid: 7520 components: - type: Transform - pos: -25.5,-44.5 + pos: -10.5,-57.5 parent: 2 - - uid: 6479 + - uid: 7529 components: - type: Transform - pos: -25.5,-45.5 + pos: -20.5,-57.5 parent: 2 - - uid: 6482 + - uid: 7546 components: - type: Transform - pos: -25.5,-43.5 + pos: 49.5,-62.5 parent: 2 - - uid: 6488 + - uid: 7588 components: - type: Transform - pos: -14.5,-57.5 + pos: -5.5,-61.5 parent: 2 - - uid: 6496 + - uid: 7602 components: - type: Transform - pos: -9.5,-49.5 + pos: 5.5,-87.5 parent: 2 - - uid: 6506 + - uid: 7614 components: - type: Transform - pos: 11.5,3.5 + pos: -10.5,-89.5 parent: 2 - - uid: 6509 + - uid: 7618 components: - type: Transform - pos: 9.5,-66.5 + pos: -34.5,-5.5 parent: 2 - - uid: 6512 + - uid: 7628 components: - type: Transform - pos: 9.5,-63.5 + pos: -31.5,-7.5 parent: 2 - - uid: 6513 + - uid: 7631 components: - type: Transform - pos: 8.5,-70.5 + pos: -28.5,14.5 parent: 2 - - uid: 6514 + - uid: 7633 components: - type: Transform - pos: 9.5,-72.5 + pos: -33.5,-7.5 parent: 2 - - uid: 6524 + - uid: 7649 components: - type: Transform - pos: -70.5,-11.5 + pos: 27.5,19.5 parent: 2 - - uid: 6526 + - uid: 7651 components: - type: Transform - pos: 13.5,-65.5 + pos: 80.5,-47.5 parent: 2 - - uid: 6527 + - uid: 7652 components: - type: Transform - pos: 13.5,-64.5 + pos: 80.5,-46.5 parent: 2 - - uid: 6532 + - uid: 7659 components: - type: Transform - pos: 10.5,-70.5 + pos: 16.5,-60.5 parent: 2 - - uid: 6533 + - uid: 7671 components: - type: Transform - pos: -3.5,-67.5 + pos: 18.5,-16.5 parent: 2 - - uid: 6534 + - uid: 7693 components: - type: Transform - pos: 6.5,-67.5 + pos: -24.5,-14.5 parent: 2 - - uid: 6535 + - uid: 7700 components: - type: Transform - pos: 6.5,-62.5 + pos: -31.5,-11.5 parent: 2 - - uid: 6536 + - uid: 7707 components: - type: Transform - pos: -3.5,-62.5 + pos: -33.5,-9.5 parent: 2 - - uid: 6537 + - uid: 7731 components: - type: Transform - pos: -7.5,-70.5 + pos: 43.5,-69.5 parent: 2 - - uid: 6538 + - uid: 7761 components: - type: Transform - pos: 12.5,-70.5 + pos: 11.5,-10.5 parent: 2 - - uid: 6546 + - uid: 7785 components: - type: Transform - pos: 26.5,-15.5 + pos: 72.5,-47.5 parent: 2 - - uid: 6549 + - uid: 7831 components: - type: Transform - pos: 25.5,-15.5 + pos: -30.5,-33.5 parent: 2 - - uid: 6555 + - uid: 7841 components: - type: Transform - pos: 75.5,-47.5 + pos: -9.5,-50.5 parent: 2 - - uid: 6556 + - uid: 7993 components: - type: Transform - pos: 41.5,-26.5 + pos: 37.5,-59.5 parent: 2 - - uid: 6616 + - uid: 8017 components: - type: Transform - pos: 29.5,-48.5 + pos: 13.5,-69.5 parent: 2 - - uid: 6617 + - uid: 8039 components: - type: Transform - pos: 29.5,-49.5 + pos: 16.5,-71.5 parent: 2 - - uid: 6618 + - uid: 8040 components: - type: Transform - pos: 29.5,-50.5 + pos: 16.5,-73.5 parent: 2 - - uid: 6623 + - uid: 8046 components: - type: Transform - pos: 32.5,-51.5 + pos: 16.5,-77.5 parent: 2 - - uid: 6624 + - uid: 8049 components: - type: Transform - pos: 33.5,-52.5 + pos: 16.5,-79.5 parent: 2 - - uid: 6627 + - uid: 8054 components: - type: Transform - pos: 36.5,-57.5 + pos: 16.5,-83.5 parent: 2 - - uid: 6640 + - uid: 8077 components: - type: Transform - pos: 32.5,-64.5 + pos: 50.5,-79.5 parent: 2 - - uid: 6663 + - uid: 8196 components: - type: Transform - pos: 40.5,-17.5 + pos: -13.5,-69.5 parent: 2 - - uid: 6670 + - uid: 8198 components: - type: Transform - pos: 42.5,-1.5 + pos: -13.5,-71.5 parent: 2 - - uid: 6733 + - uid: 8200 components: - type: Transform - pos: 32.5,-36.5 + pos: -13.5,-75.5 parent: 2 - - uid: 6741 + - uid: 8202 components: - type: Transform - pos: 42.5,-34.5 + pos: -13.5,-77.5 parent: 2 - - uid: 6781 + - uid: 8204 components: - type: Transform - pos: 25.5,-37.5 + pos: -13.5,-81.5 parent: 2 - - uid: 6788 + - uid: 8254 components: - type: Transform - pos: 32.5,-62.5 + pos: 50.5,-78.5 parent: 2 - - uid: 6793 + - uid: 8280 components: - type: Transform - pos: 60.5,-76.5 + pos: 37.5,-62.5 parent: 2 - - uid: 6795 + - uid: 8290 components: - type: Transform - pos: 60.5,-48.5 + pos: 41.5,-33.5 parent: 2 - - uid: 6803 + - uid: 8302 components: - type: Transform - pos: 39.5,-32.5 + pos: 49.5,-12.5 parent: 2 - - uid: 6823 + - uid: 8333 components: - type: Transform - pos: 30.5,-36.5 + pos: 37.5,-57.5 parent: 2 - - uid: 6841 + - uid: 8342 components: - type: Transform - pos: 39.5,-77.5 + pos: 51.5,-14.5 parent: 2 - - uid: 6867 + - uid: 8357 components: - type: Transform - pos: 54.5,-51.5 + pos: 45.5,-89.5 parent: 2 - - uid: 6875 + - uid: 8376 components: - type: Transform - pos: -66.5,-11.5 + pos: 40.5,-26.5 parent: 2 - - uid: 6882 + - uid: 8380 components: - type: Transform - pos: -36.5,24.5 + pos: -52.5,-61.5 parent: 2 - - uid: 6909 + - uid: 8385 components: - type: Transform - pos: 43.5,-23.5 + pos: 39.5,-19.5 parent: 2 - - uid: 6925 + - uid: 8388 components: - type: Transform - pos: 60.5,-78.5 + pos: 39.5,-16.5 parent: 2 - - uid: 6930 + - uid: 8391 components: - type: Transform - pos: 43.5,-24.5 + pos: -53.5,-61.5 parent: 2 - - uid: 6944 + - uid: 8412 components: - type: Transform - pos: 40.5,-18.5 + pos: -54.5,-61.5 parent: 2 - - uid: 6950 + - uid: 8418 components: - type: Transform - pos: 40.5,-24.5 + pos: 51.5,22.5 parent: 2 - - uid: 6961 + - uid: 8419 components: - type: Transform - pos: 45.5,-84.5 + pos: -50.5,-61.5 parent: 2 - - uid: 6968 + - uid: 8428 components: - type: Transform - pos: 46.5,-1.5 + pos: 33.5,20.5 parent: 2 - - uid: 6969 + - uid: 8463 components: - type: Transform - pos: 46.5,-2.5 + pos: -38.5,-31.5 parent: 2 - - uid: 6970 + - uid: 8467 components: - type: Transform - pos: 47.5,-2.5 + pos: -23.5,18.5 parent: 2 - - uid: 6978 + - uid: 8473 components: - type: Transform - pos: 50.5,-77.5 + pos: -20.5,7.5 parent: 2 - - uid: 6979 + - uid: 8476 components: - type: Transform - pos: 15.5,-58.5 + pos: -18.5,-12.5 parent: 2 - - uid: 6993 + - uid: 8492 components: - type: Transform - pos: -68.5,-16.5 + pos: -50.5,-10.5 parent: 2 - - uid: 7034 + - uid: 8507 components: - type: Transform - pos: -41.5,-56.5 + rot: 3.141592653589793 rad + pos: 46.5,18.5 parent: 2 - - uid: 7042 + - uid: 8541 components: - type: Transform - pos: -42.5,-39.5 + pos: -64.5,-14.5 parent: 2 - - uid: 7048 + - uid: 8543 components: - type: Transform - pos: 53.5,-59.5 + pos: -0.5,14.5 parent: 2 - - uid: 7066 + - uid: 8544 components: - type: Transform - pos: 19.5,-7.5 + pos: -68.5,-17.5 parent: 2 - - uid: 7070 + - uid: 8577 components: - type: Transform - pos: 19.5,-5.5 + pos: -60.5,-35.5 parent: 2 - - uid: 7075 + - uid: 8594 components: - type: Transform - pos: 49.5,-11.5 + pos: -25.5,24.5 parent: 2 - - uid: 7076 + - uid: 8623 components: - type: Transform - pos: -59.5,-10.5 + pos: 54.5,-23.5 parent: 2 - - uid: 7082 + - uid: 8624 components: - type: Transform - pos: 49.5,-10.5 + pos: 55.5,-23.5 parent: 2 - - uid: 7126 + - uid: 8629 components: - type: Transform - pos: 35.5,22.5 + pos: 57.5,-23.5 parent: 2 - - uid: 7128 + - uid: 8695 components: - type: Transform - pos: 30.5,29.5 + pos: -35.5,2.5 parent: 2 - - uid: 7141 + - uid: 8702 components: - type: Transform - pos: 34.5,43.5 + pos: -35.5,6.5 parent: 2 - - uid: 7142 + - uid: 8703 components: - type: Transform - pos: 35.5,40.5 + pos: -34.5,6.5 parent: 2 - - uid: 7144 + - uid: 8718 components: - type: Transform - pos: 35.5,43.5 + pos: 57.5,-27.5 parent: 2 - - uid: 7146 + - uid: 8747 components: - type: Transform - pos: 29.5,43.5 + pos: 54.5,-19.5 parent: 2 - - uid: 7152 + - uid: 8749 components: - type: Transform - pos: 30.5,45.5 + pos: 56.5,-19.5 parent: 2 - - uid: 7164 + - uid: 8750 components: - type: Transform - pos: -27.5,-54.5 + pos: 57.5,-19.5 parent: 2 - - uid: 7165 + - uid: 8755 components: - type: Transform - pos: -27.5,-55.5 + pos: 57.5,-15.5 parent: 2 - - uid: 7169 + - uid: 8759 components: - type: Transform - pos: 49.5,-69.5 + pos: 53.5,-15.5 parent: 2 - - uid: 7170 + - uid: 8760 components: - type: Transform - pos: -27.5,-59.5 + pos: 53.5,-14.5 parent: 2 - - uid: 7184 + - uid: 8768 components: - type: Transform - pos: -27.5,-56.5 + pos: 47.5,0.5 parent: 2 - - uid: 7185 + - uid: 8770 components: - type: Transform - pos: -27.5,-53.5 + pos: 48.5,1.5 parent: 2 - - uid: 7189 + - uid: 8771 components: - type: Transform - pos: -48.5,-33.5 + pos: 47.5,1.5 parent: 2 - - uid: 7207 + - uid: 8774 components: - type: Transform - pos: 13.5,-59.5 + pos: 47.5,4.5 parent: 2 - - uid: 7208 + - uid: 8777 components: - type: Transform - pos: 44.5,-16.5 + pos: 44.5,4.5 parent: 2 - - uid: 7209 + - uid: 8779 components: - type: Transform - pos: -23.5,-17.5 + pos: 42.5,4.5 parent: 2 - - uid: 7229 + - uid: 8783 components: - type: Transform - pos: 51.5,-47.5 + pos: 43.5,1.5 parent: 2 - - uid: 7230 + - uid: 8785 components: - type: Transform - pos: 50.5,-47.5 + pos: -24.5,24.5 parent: 2 - - uid: 7233 + - uid: 8796 components: - type: Transform - pos: 53.5,-47.5 + pos: 49.5,1.5 parent: 2 - - uid: 7238 + - uid: 8797 components: - type: Transform - pos: -10.5,26.5 + pos: 49.5,3.5 parent: 2 - - uid: 7244 + - uid: 8839 components: - type: Transform - pos: 81.5,-13.5 + pos: 43.5,3.5 parent: 2 - - uid: 7262 + - uid: 8853 components: - type: Transform - pos: -43.5,-56.5 + rot: 3.141592653589793 rad + pos: 48.5,24.5 parent: 2 - - uid: 7264 + - uid: 8861 components: - type: Transform - pos: 13.5,-58.5 + pos: 8.5,-79.5 parent: 2 - - uid: 7308 + - uid: 8864 components: - type: Transform - pos: 44.5,7.5 + pos: -35.5,19.5 parent: 2 - - uid: 7312 + - uid: 8893 components: - type: Transform - pos: 40.5,-65.5 + pos: -44.5,-58.5 parent: 2 - - uid: 7314 + - uid: 8896 components: - type: Transform - pos: 42.5,5.5 + pos: 49.5,-28.5 parent: 2 - - uid: 7315 + - uid: 8907 components: - type: Transform - pos: 17.5,-58.5 + pos: 50.5,-30.5 parent: 2 - - uid: 7316 + - uid: 8949 components: - type: Transform - pos: 16.5,-58.5 + pos: 43.5,-0.5 parent: 2 - - uid: 7317 + - uid: 8969 components: - type: Transform - pos: 8.5,-57.5 + pos: -27.5,22.5 parent: 2 - - uid: 7324 + - uid: 8998 components: - type: Transform - pos: -32.5,-65.5 + pos: 45.5,-43.5 parent: 2 - - uid: 7334 + - uid: 9011 components: - type: Transform - pos: -52.5,-26.5 + pos: -28.5,24.5 parent: 2 - - uid: 7337 + - uid: 9017 components: - type: Transform - pos: 43.5,-47.5 + pos: -27.5,24.5 parent: 2 - - uid: 7338 + - uid: 9018 components: - type: Transform - pos: 53.5,-60.5 + pos: -32.5,25.5 parent: 2 - - uid: 7347 + - uid: 9109 components: - type: Transform - pos: 38.5,10.5 + pos: 79.5,-47.5 parent: 2 - - uid: 7348 + - uid: 9112 components: - type: Transform - pos: 53.5,-65.5 + pos: -32.5,24.5 parent: 2 - - uid: 7349 + - uid: 9260 components: - type: Transform - pos: -48.5,-26.5 + pos: 16.5,-63.5 parent: 2 - - uid: 7359 + - uid: 9266 components: - type: Transform - pos: 51.5,9.5 + pos: 6.5,-72.5 parent: 2 - - uid: 7390 + - uid: 9276 components: - type: Transform - pos: 49.5,7.5 + pos: 2.5,-20.5 parent: 2 - - uid: 7404 + - uid: 9298 components: - type: Transform - pos: 48.5,6.5 + pos: -6.5,-79.5 parent: 2 - - uid: 7412 + - uid: 9314 components: - type: Transform - pos: 51.5,-70.5 + pos: 3.5,-24.5 parent: 2 - - uid: 7416 + - uid: 9375 components: - type: Transform - pos: 28.5,-49.5 + pos: -45.5,-58.5 parent: 2 - - uid: 7419 + - uid: 9389 components: - type: Transform - pos: 26.5,-50.5 + pos: 16.5,-16.5 parent: 2 - - uid: 7422 + - uid: 9401 components: - type: Transform - pos: 27.5,-52.5 + pos: -19.5,-14.5 parent: 2 - - uid: 7423 + - uid: 9495 components: - type: Transform - pos: 28.5,-52.5 + pos: 15.5,4.5 parent: 2 - - uid: 7450 + - uid: 9507 components: - type: Transform - pos: 50.5,-62.5 + pos: -38.5,-17.5 parent: 2 - - uid: 7453 + - uid: 9542 components: - type: Transform - pos: -19.5,7.5 + pos: 43.5,-73.5 parent: 2 - - uid: 7477 + - uid: 9549 components: - type: Transform - pos: -48.5,-34.5 + pos: 18.5,-18.5 parent: 2 - - uid: 7481 + - uid: 9566 components: - type: Transform - pos: -20.5,1.5 + pos: 49.5,-82.5 parent: 2 - - uid: 7505 + - uid: 9569 components: - type: Transform - pos: -10.5,-59.5 + pos: -34.5,-2.5 parent: 2 - - uid: 7507 + - uid: 9575 components: - type: Transform - pos: -10.5,-58.5 + pos: 80.5,-51.5 parent: 2 - - uid: 7508 + - uid: 9586 components: - type: Transform - pos: 9.5,-59.5 + pos: 57.5,-38.5 parent: 2 - - uid: 7516 + - uid: 9597 components: - type: Transform - pos: -9.5,-56.5 + pos: -25.5,-39.5 parent: 2 - - uid: 7518 + - uid: 9600 components: - type: Transform - pos: -9.5,-57.5 + pos: 43.5,-78.5 parent: 2 - - uid: 7520 + - uid: 9602 components: - type: Transform - pos: -10.5,-57.5 + rot: 3.141592653589793 rad + pos: 24.5,17.5 parent: 2 - - uid: 7522 + - uid: 9609 components: - type: Transform - pos: -5.5,-58.5 + pos: -37.5,-39.5 parent: 2 - - uid: 7523 + - uid: 9612 components: - type: Transform - pos: -5.5,-57.5 + pos: 7.5,-13.5 parent: 2 - - uid: 7529 + - uid: 9621 components: - type: Transform - pos: -20.5,-57.5 + pos: 4.5,-9.5 parent: 2 - - uid: 7533 + - uid: 9654 components: - type: Transform - pos: 17.5,16.5 + pos: 75.5,-68.5 parent: 2 - - uid: 7538 + - uid: 9656 components: - type: Transform - pos: 8.5,-59.5 + pos: -14.5,-10.5 parent: 2 - - uid: 7543 + - uid: 9660 components: - type: Transform - pos: 12.5,-59.5 + pos: -27.5,-14.5 parent: 2 - - uid: 7545 + - uid: 9661 components: - type: Transform - pos: -5.5,-59.5 + pos: -26.5,-14.5 parent: 2 - - uid: 7546 + - uid: 9663 components: - type: Transform - pos: 49.5,-62.5 + pos: 66.5,-66.5 parent: 2 - - uid: 7558 + - uid: 9664 components: - type: Transform - pos: -41.5,-28.5 + pos: 28.5,-11.5 parent: 2 - - uid: 7616 + - uid: 9670 components: - type: Transform - pos: -41.5,-32.5 + pos: -13.5,-0.5 parent: 2 - - uid: 7621 + - uid: 9691 components: - type: Transform - pos: -41.5,-20.5 + pos: -21.5,-57.5 parent: 2 - - uid: 7631 + - uid: 9693 components: - type: Transform - pos: -28.5,14.5 + pos: -22.5,-56.5 parent: 2 - - uid: 7647 + - uid: 9701 components: - type: Transform - pos: 28.5,20.5 + pos: -9.5,-53.5 parent: 2 - - uid: 7649 + - uid: 9839 components: - type: Transform - pos: 27.5,19.5 + pos: -12.5,23.5 parent: 2 - - uid: 7651 + - uid: 9850 components: - type: Transform - pos: 80.5,-47.5 + pos: -13.5,-1.5 parent: 2 - - uid: 7652 + - uid: 9852 components: - type: Transform - pos: 80.5,-46.5 + pos: -8.5,23.5 parent: 2 - - uid: 7653 + - uid: 9863 components: - type: Transform - pos: 29.5,20.5 + pos: -24.5,-56.5 parent: 2 - - uid: 7663 + - uid: 9866 components: - type: Transform - pos: -40.5,-56.5 + pos: -12.5,-57.5 parent: 2 - - uid: 7731 + - uid: 9894 components: - type: Transform - pos: 43.5,-69.5 + pos: -13.5,-4.5 parent: 2 - - uid: 7785 + - uid: 9895 components: - type: Transform - pos: 72.5,-47.5 + pos: -13.5,-3.5 parent: 2 - - uid: 7806 + - uid: 9933 components: - type: Transform - pos: -48.5,-29.5 + pos: 30.5,-62.5 parent: 2 - - uid: 7807 + - uid: 9944 components: - type: Transform - pos: -52.5,-25.5 + pos: -27.5,-49.5 parent: 2 - - uid: 7809 + - uid: 9946 components: - type: Transform - pos: -45.5,-49.5 + pos: -27.5,-50.5 parent: 2 - - uid: 7819 + - uid: 9971 components: - type: Transform - pos: -52.5,-34.5 + pos: 83.5,-12.5 parent: 2 - - uid: 7839 + - uid: 9984 components: - type: Transform - pos: -44.5,-50.5 + pos: 80.5,-49.5 parent: 2 - - uid: 7840 + - uid: 10003 components: - type: Transform - pos: -44.5,-52.5 + pos: 57.5,-40.5 parent: 2 - - uid: 7841 + - uid: 10007 components: - type: Transform - pos: -9.5,-50.5 + pos: -14.5,-13.5 parent: 2 - - uid: 7842 + - uid: 10011 components: - type: Transform - pos: -44.5,-51.5 + pos: -58.5,-57.5 parent: 2 - - uid: 7846 + - uid: 10013 components: - type: Transform - pos: -53.5,-34.5 + pos: -31.5,-18.5 parent: 2 - - uid: 7847 + - uid: 10081 components: - type: Transform - pos: -33.5,-70.5 + pos: -14.5,-6.5 parent: 2 - - uid: 7947 + - uid: 10113 components: - type: Transform - pos: -49.5,-35.5 + pos: 8.5,-13.5 parent: 2 - - uid: 7948 + - uid: 10117 components: - type: Transform - pos: -52.5,-38.5 + pos: 11.5,-3.5 parent: 2 - - uid: 7953 + - uid: 10121 components: - type: Transform - pos: -52.5,-39.5 + pos: -54.5,-60.5 parent: 2 - - uid: 7955 + - uid: 10130 components: - type: Transform - pos: -49.5,-38.5 + pos: -31.5,-1.5 parent: 2 - - uid: 7958 + - uid: 10148 components: - type: Transform - pos: -45.5,-46.5 + pos: -32.5,-33.5 parent: 2 - - uid: 7964 + - uid: 10173 components: - type: Transform - pos: -45.5,-40.5 + pos: -17.5,3.5 parent: 2 - - uid: 7965 + - uid: 10193 components: - type: Transform - pos: -45.5,-41.5 + pos: 12.5,-15.5 parent: 2 - - uid: 7993 + - uid: 10198 components: - type: Transform - pos: 37.5,-59.5 + pos: -32.5,-14.5 parent: 2 - - uid: 8010 + - uid: 10218 components: - type: Transform - pos: -6.5,-63.5 + pos: 28.5,-9.5 parent: 2 - - uid: 8027 + - uid: 10228 components: - type: Transform - pos: -32.5,-62.5 + pos: -31.5,-38.5 parent: 2 - - uid: 8038 + - uid: 10230 components: - type: Transform - pos: -45.5,-45.5 + pos: -25.5,-26.5 parent: 2 - - uid: 8039 + - uid: 10231 components: - type: Transform - pos: -48.5,-44.5 + pos: -26.5,-33.5 parent: 2 - - uid: 8055 + - uid: 10252 components: - type: Transform - pos: -42.5,-28.5 + pos: -25.5,-37.5 parent: 2 - - uid: 8059 + - uid: 10384 components: - type: Transform - pos: -53.5,-39.5 + pos: -58.5,-61.5 parent: 2 - - uid: 8062 + - uid: 10412 components: - type: Transform - pos: -48.5,-47.5 + pos: 11.5,-8.5 parent: 2 - - uid: 8063 + - uid: 10417 components: - type: Transform - pos: -49.5,-48.5 + pos: -31.5,-10.5 parent: 2 - - uid: 8071 + - uid: 10422 components: - type: Transform - pos: -34.5,-56.5 + pos: 63.5,-51.5 parent: 2 - - uid: 8077 + - uid: 10423 components: - type: Transform - pos: 50.5,-79.5 + rot: -1.5707963267948966 rad + pos: -58.5,-55.5 parent: 2 - - uid: 8078 + - uid: 10428 components: - type: Transform - pos: -33.5,-59.5 + pos: 27.5,-5.5 parent: 2 - - uid: 8079 + - uid: 10429 components: - type: Transform - pos: -27.5,-66.5 + pos: 22.5,-8.5 parent: 2 - - uid: 8106 + - uid: 10456 components: - type: Transform - pos: -47.5,-44.5 + pos: 27.5,-11.5 parent: 2 - - uid: 8118 + - uid: 10498 components: - type: Transform - pos: -52.5,-48.5 + pos: -1.5,15.5 parent: 2 - - uid: 8142 + - uid: 10528 components: - type: Transform - pos: -40.5,-28.5 + pos: -26.5,-13.5 parent: 2 - - uid: 8145 + - uid: 10529 components: - type: Transform - pos: -40.5,-26.5 + pos: -18.5,-14.5 parent: 2 - - uid: 8154 + - uid: 10531 components: - type: Transform - pos: -42.5,-19.5 + pos: -39.5,-21.5 parent: 2 - - uid: 8164 + - uid: 10534 components: - type: Transform - pos: -46.5,-41.5 + pos: -14.5,-16.5 parent: 2 - - uid: 8169 + - uid: 10541 components: - type: Transform - pos: -53.5,-44.5 + pos: 13.5,9.5 parent: 2 - - uid: 8171 + - uid: 10550 components: - type: Transform - pos: -47.5,-41.5 + pos: -30.5,-20.5 parent: 2 - - uid: 8172 + - uid: 10555 components: - type: Transform - pos: -45.5,-44.5 + pos: 11.5,1.5 parent: 2 - - uid: 8173 + - uid: 10557 components: - type: Transform - pos: -48.5,-41.5 + pos: 4.5,-13.5 parent: 2 - - uid: 8254 + - uid: 10629 components: - type: Transform - pos: 50.5,-78.5 + pos: -18.5,-13.5 parent: 2 - - uid: 8280 + - uid: 10630 components: - type: Transform - pos: 37.5,-62.5 + pos: -31.5,-2.5 parent: 2 - - uid: 8290 + - uid: 10635 components: - type: Transform - pos: 41.5,-33.5 + pos: -33.5,-21.5 parent: 2 - - uid: 8302 + - uid: 10653 components: - type: Transform - pos: 49.5,-12.5 + pos: -34.5,-10.5 parent: 2 - - uid: 8333 + - uid: 10679 components: - type: Transform - pos: 37.5,-57.5 + pos: -24.5,-12.5 parent: 2 - - uid: 8342 + - uid: 10691 components: - type: Transform - pos: 51.5,-14.5 + pos: -32.5,-26.5 parent: 2 - - uid: 8357 + - uid: 10693 components: - type: Transform - pos: 45.5,-89.5 + pos: -49.5,-35.5 parent: 2 - - uid: 8376 + - uid: 10694 components: - type: Transform - pos: 40.5,-26.5 + pos: 80.5,-14.5 parent: 2 - - uid: 8385 + - uid: 10713 components: - type: Transform - pos: 39.5,-19.5 + pos: -10.5,32.5 parent: 2 - - uid: 8388 + - uid: 10742 components: - type: Transform - pos: 39.5,-16.5 + pos: -55.5,-20.5 parent: 2 - - uid: 8414 + - uid: 10744 components: - type: Transform - pos: 26.5,12.5 + pos: -56.5,-24.5 parent: 2 - - uid: 8467 + - uid: 10748 components: - type: Transform - pos: -23.5,18.5 + pos: -54.5,-56.5 parent: 2 - - uid: 8473 + - uid: 10759 components: - type: Transform - pos: -20.5,7.5 + pos: -56.5,-23.5 parent: 2 - - uid: 8492 + - uid: 10766 components: - type: Transform - pos: -50.5,-10.5 + pos: -56.5,-20.5 parent: 2 - - uid: 8495 + - uid: 10778 components: - type: Transform - pos: 9.5,-13.5 + pos: -28.5,26.5 parent: 2 - - uid: 8541 + - uid: 10780 components: - type: Transform - pos: -64.5,-14.5 + pos: -28.5,30.5 parent: 2 - - uid: 8543 + - uid: 10819 components: - type: Transform - pos: -0.5,14.5 + pos: 69.5,-83.5 parent: 2 - - uid: 8544 + - uid: 10821 components: - type: Transform - pos: -68.5,-17.5 + pos: 71.5,-82.5 parent: 2 - - uid: 8594 + - uid: 10826 components: - type: Transform - pos: -25.5,24.5 + pos: 65.5,-70.5 parent: 2 - - uid: 8600 + - uid: 10831 components: - type: Transform - pos: -34.5,-59.5 + pos: 70.5,-82.5 parent: 2 - - uid: 8605 + - uid: 10837 components: - type: Transform - pos: -37.5,8.5 + pos: 66.5,-70.5 parent: 2 - - uid: 8623 + - uid: 10839 components: - type: Transform - pos: 54.5,-23.5 + pos: 73.5,-79.5 parent: 2 - - uid: 8624 + - uid: 10840 components: - type: Transform - pos: 55.5,-23.5 + pos: 73.5,-80.5 parent: 2 - - uid: 8625 + - uid: 10848 components: - type: Transform - pos: -24.5,-17.5 + pos: 69.5,-84.5 parent: 2 - - uid: 8629 + - uid: 10851 components: - type: Transform - pos: 57.5,-23.5 + pos: 76.5,-74.5 parent: 2 - - uid: 8685 + - uid: 10854 components: - type: Transform - pos: -19.5,-17.5 + pos: 77.5,-73.5 parent: 2 - - uid: 8717 + - uid: 10855 components: - type: Transform - pos: -20.5,-17.5 + pos: 77.5,-74.5 parent: 2 - - uid: 8718 + - uid: 10856 components: - type: Transform - pos: 57.5,-27.5 + pos: 72.5,-80.5 parent: 2 - - uid: 8747 + - uid: 10859 components: - type: Transform - pos: 54.5,-19.5 + pos: 75.5,-76.5 parent: 2 - - uid: 8749 + - uid: 10860 components: - type: Transform - pos: 56.5,-19.5 + pos: 74.5,-79.5 parent: 2 - - uid: 8750 + - uid: 10862 components: - type: Transform - pos: 57.5,-19.5 + pos: 75.5,-75.5 parent: 2 - - uid: 8755 + - uid: 10863 components: - type: Transform - pos: 57.5,-15.5 + pos: 61.5,-70.5 parent: 2 - - uid: 8759 + - uid: 10866 components: - type: Transform - pos: 53.5,-15.5 + pos: 75.5,-78.5 parent: 2 - - uid: 8760 + - uid: 10867 components: - type: Transform - pos: 53.5,-14.5 + pos: 74.5,-78.5 parent: 2 - - uid: 8768 + - uid: 10870 components: - type: Transform - pos: 47.5,0.5 + pos: 64.5,-83.5 parent: 2 - - uid: 8770 + - uid: 10882 components: - type: Transform - pos: 48.5,1.5 + pos: 70.5,-83.5 parent: 2 - - uid: 8771 + - uid: 10891 components: - type: Transform - pos: 47.5,1.5 + pos: 71.5,-81.5 parent: 2 - - uid: 8774 + - uid: 10893 components: - type: Transform - pos: 47.5,4.5 + pos: 72.5,-81.5 parent: 2 - - uid: 8777 + - uid: 10894 components: - type: Transform - pos: 44.5,4.5 + pos: 66.5,-84.5 parent: 2 - - uid: 8779 + - uid: 10971 components: - type: Transform - pos: 42.5,4.5 + pos: -26.5,-39.5 parent: 2 - - uid: 8783 + - uid: 10985 components: - type: Transform - pos: 43.5,1.5 + pos: 85.5,-39.5 parent: 2 - - uid: 8785 + - uid: 10999 components: - type: Transform - pos: -24.5,24.5 + pos: -31.5,-20.5 parent: 2 - - uid: 8796 + - uid: 11035 components: - type: Transform - pos: 49.5,1.5 + pos: -31.5,-39.5 parent: 2 - - uid: 8797 + - uid: 11043 components: - type: Transform - pos: 49.5,3.5 + pos: -28.5,-55.5 parent: 2 - - uid: 8839 + - uid: 11059 components: - type: Transform - pos: 43.5,3.5 + pos: -30.5,-14.5 parent: 2 - - uid: 8864 + - uid: 11071 components: - type: Transform - pos: -35.5,19.5 + pos: -46.5,-25.5 parent: 2 - - uid: 8884 + - uid: 11076 components: - type: Transform - pos: 50.5,-33.5 + pos: 74.5,-59.5 parent: 2 - - uid: 8896 + - uid: 11122 components: - type: Transform - pos: 49.5,-28.5 + pos: 18.5,-19.5 parent: 2 - - uid: 8907 + - uid: 11169 components: - type: Transform - pos: 50.5,-30.5 + pos: -9.5,-86.5 parent: 2 - - uid: 8949 + - uid: 11209 components: - type: Transform - pos: 43.5,-0.5 + pos: -21.5,18.5 parent: 2 - - uid: 8969 + - uid: 11216 components: - type: Transform - pos: -27.5,22.5 + rot: -1.5707963267948966 rad + pos: 26.5,30.5 parent: 2 - - uid: 8998 + - uid: 11239 components: - type: Transform - pos: 45.5,-43.5 + pos: -36.5,-38.5 parent: 2 - - uid: 9011 + - uid: 11253 components: - type: Transform - pos: -28.5,24.5 + pos: 42.5,13.5 parent: 2 - - uid: 9017 + - uid: 11261 components: - type: Transform - pos: -27.5,24.5 + pos: -54.5,-47.5 parent: 2 - - uid: 9018 + - uid: 11264 components: - type: Transform - pos: -32.5,25.5 + pos: -54.5,-48.5 parent: 2 - - uid: 9109 + - uid: 11271 components: - type: Transform - pos: 79.5,-47.5 + pos: -26.5,-26.5 parent: 2 - - uid: 9112 + - uid: 11284 components: - type: Transform - pos: -32.5,24.5 + pos: -53.5,-46.5 parent: 2 - - uid: 9132 + - uid: 11286 components: - type: Transform - pos: 26.5,14.5 + pos: 51.5,18.5 parent: 2 - - uid: 9276 + - uid: 11290 components: - type: Transform - pos: 2.5,-20.5 + pos: -7.5,-27.5 parent: 2 - - uid: 9278 + - uid: 11311 components: - type: Transform - pos: 2.5,-21.5 + pos: -25.5,-38.5 parent: 2 - - uid: 9284 + - uid: 11323 components: - type: Transform - pos: -42.5,-52.5 + pos: -18.5,26.5 parent: 2 - - uid: 9287 + - uid: 11324 components: - type: Transform - pos: 19.5,1.5 + pos: -18.5,25.5 parent: 2 - - uid: 9288 + - uid: 11342 components: - type: Transform - pos: 18.5,-1.5 + pos: 62.5,-80.5 parent: 2 - - uid: 9289 + - uid: 11347 components: - type: Transform - pos: 17.5,-1.5 + pos: 27.5,-32.5 parent: 2 - - uid: 9307 + - uid: 11348 components: - type: Transform - pos: -48.5,-55.5 + pos: 26.5,-32.5 parent: 2 - - uid: 9309 + - uid: 11389 components: - type: Transform - pos: -42.5,-55.5 + pos: 31.5,-32.5 parent: 2 - - uid: 9311 + - uid: 11396 components: - type: Transform - pos: 23.5,12.5 + pos: 23.5,-27.5 parent: 2 - - uid: 9314 + - uid: 11399 components: - type: Transform - pos: 3.5,-24.5 + pos: 31.5,-36.5 parent: 2 - - uid: 9351 + - uid: 11483 components: - type: Transform - pos: 11.5,-8.5 + pos: -35.5,-38.5 parent: 2 - - uid: 9542 + - uid: 11526 components: - type: Transform - pos: 43.5,-73.5 + pos: 60.5,-73.5 parent: 2 - - uid: 9566 + - uid: 11536 components: - type: Transform - pos: 49.5,-82.5 + pos: 63.5,-67.5 parent: 2 - - uid: 9567 + - uid: 11553 components: - type: Transform - pos: 0.5,-21.5 + pos: 17.5,-19.5 parent: 2 - - uid: 9575 + - uid: 11554 components: - type: Transform - pos: 80.5,-51.5 + pos: 64.5,-63.5 parent: 2 - - uid: 9586 + - uid: 11575 components: - type: Transform - pos: 57.5,-38.5 + pos: 16.5,-20.5 parent: 2 - - uid: 9600 + - uid: 11577 components: - type: Transform - pos: 43.5,-78.5 + pos: 13.5,-20.5 parent: 2 - - uid: 9633 + - uid: 11578 components: - type: Transform - pos: 19.5,4.5 + pos: 12.5,-20.5 parent: 2 - - uid: 9635 + - uid: 11579 components: - type: Transform - pos: 17.5,4.5 + pos: 15.5,-20.5 parent: 2 - - uid: 9654 + - uid: 11598 components: - type: Transform - pos: 75.5,-68.5 + pos: 64.5,-67.5 parent: 2 - - uid: 9656 + - uid: 11625 components: - type: Transform - pos: -14.5,-10.5 + pos: 58.5,-37.5 parent: 2 - - uid: 9663 + - uid: 11637 components: - type: Transform - pos: 66.5,-66.5 + pos: -49.5,-10.5 parent: 2 - - uid: 9668 + - uid: 11787 components: - type: Transform - pos: -25.5,-46.5 + pos: 26.5,-5.5 parent: 2 - - uid: 9670 + - uid: 11803 components: - type: Transform - pos: -13.5,-0.5 + pos: 82.5,-38.5 parent: 2 - - uid: 9672 + - uid: 11824 components: - type: Transform - pos: -25.5,-49.5 + pos: -42.5,4.5 parent: 2 - - uid: 9691 + - uid: 11868 components: - type: Transform - pos: -21.5,-57.5 + pos: 73.5,-72.5 parent: 2 - - uid: 9693 + - uid: 11873 components: - type: Transform - pos: -22.5,-56.5 + pos: 80.5,-53.5 parent: 2 - - uid: 9694 + - uid: 11892 components: - type: Transform - pos: -23.5,-56.5 + rot: 3.141592653589793 rad + pos: -31.5,-33.5 parent: 2 - - uid: 9701 + - uid: 11894 components: - type: Transform - pos: -9.5,-53.5 + pos: -28.5,35.5 parent: 2 - - uid: 9713 + - uid: 11908 components: - type: Transform - pos: 35.5,13.5 + pos: -32.5,-29.5 parent: 2 - - uid: 9798 + - uid: 12005 components: - type: Transform - pos: 22.5,12.5 + pos: -32.5,-38.5 parent: 2 - - uid: 9839 + - uid: 12016 components: - type: Transform - pos: -12.5,23.5 + pos: -30.5,-26.5 parent: 2 - - uid: 9850 + - uid: 12022 components: - type: Transform - pos: -13.5,-1.5 + rot: -1.5707963267948966 rad + pos: 45.5,14.5 parent: 2 - - uid: 9852 + - uid: 12026 components: - type: Transform - pos: -8.5,23.5 + pos: -20.5,-14.5 parent: 2 - - uid: 9859 + - uid: 12029 components: - type: Transform - pos: -11.5,-57.5 + pos: -28.5,-17.5 parent: 2 - - uid: 9863 + - uid: 12075 components: - type: Transform - pos: -24.5,-56.5 + pos: 64.5,-55.5 parent: 2 - - uid: 9866 + - uid: 12133 components: - type: Transform - pos: -12.5,-57.5 + pos: -39.5,-39.5 parent: 2 - - uid: 9886 + - uid: 12217 components: - type: Transform - pos: -25.5,-18.5 + pos: -36.5,-31.5 parent: 2 - - uid: 9894 + - uid: 12221 components: - type: Transform - pos: -13.5,-4.5 + pos: -36.5,-28.5 parent: 2 - - uid: 9895 + - uid: 12226 components: - type: Transform - pos: -13.5,-3.5 + pos: -32.5,-21.5 parent: 2 - - uid: 9933 + - uid: 12243 components: - type: Transform - pos: 30.5,-62.5 + pos: -59.5,-58.5 parent: 2 - - uid: 9944 + - uid: 12323 components: - type: Transform - pos: -27.5,-49.5 + pos: -14.5,-22.5 parent: 2 - - uid: 9945 + - uid: 12337 components: - type: Transform - pos: -26.5,-49.5 + pos: -8.5,20.5 parent: 2 - - uid: 9946 + - uid: 12356 components: - type: Transform - pos: -27.5,-50.5 + pos: 54.5,-46.5 parent: 2 - - uid: 9971 + - uid: 12359 components: - type: Transform - pos: 83.5,-12.5 + pos: 51.5,-30.5 parent: 2 - - uid: 9984 + - uid: 12374 components: - type: Transform - pos: 80.5,-49.5 + pos: -17.5,16.5 parent: 2 - - uid: 10003 + - uid: 12448 components: - type: Transform - pos: 57.5,-40.5 + pos: -48.5,-58.5 parent: 2 - - uid: 10007 + - uid: 12462 components: - type: Transform - pos: -14.5,-13.5 + pos: -54.5,-20.5 parent: 2 - - uid: 10011 + - uid: 12490 components: - type: Transform - pos: -17.5,-65.5 + pos: 12.5,9.5 parent: 2 - - uid: 10012 + - uid: 12491 components: - type: Transform - pos: -13.5,-65.5 + pos: 11.5,9.5 parent: 2 - - uid: 10013 + - uid: 12492 components: - type: Transform - pos: -15.5,-65.5 + pos: 10.5,9.5 parent: 2 - - uid: 10077 + - uid: 12495 components: - type: Transform - pos: 18.5,4.5 + pos: 13.5,5.5 parent: 2 - - uid: 10081 + - uid: 12501 components: - type: Transform - pos: -14.5,-6.5 + pos: 52.5,-30.5 parent: 2 - - uid: 10171 + - uid: 12511 components: - type: Transform - pos: 17.5,26.5 + pos: -38.5,-21.5 parent: 2 - - uid: 10173 + - uid: 12516 components: - type: Transform - pos: -17.5,3.5 + pos: -46.5,-39.5 parent: 2 - - uid: 10384 + - uid: 12523 components: - type: Transform - pos: -47.5,-56.5 + pos: -40.5,-40.5 parent: 2 - - uid: 10385 + - uid: 12524 components: - type: Transform - pos: -47.5,-55.5 + pos: -46.5,-40.5 parent: 2 - - uid: 10387 + - uid: 12537 components: - type: Transform - pos: -47.5,-53.5 + pos: -52.5,-28.5 parent: 2 - - uid: 10388 + - uid: 12539 components: - type: Transform - pos: -47.5,-52.5 + pos: -52.5,-39.5 parent: 2 - - uid: 10390 + - uid: 12540 components: - type: Transform - pos: -45.5,-52.5 + pos: -50.5,-20.5 parent: 2 - - uid: 10393 + - uid: 12542 components: - type: Transform - pos: -50.5,-53.5 + pos: -53.5,-35.5 parent: 2 - - uid: 10399 + - uid: 12548 components: - type: Transform - pos: -50.5,-55.5 + pos: -51.5,-35.5 parent: 2 - - uid: 10498 + - uid: 12549 components: - type: Transform - pos: -1.5,15.5 + pos: -52.5,-35.5 parent: 2 - - uid: 10534 + - uid: 12556 components: - type: Transform - pos: -14.5,-16.5 + pos: -49.5,-39.5 parent: 2 - - uid: 10694 + - uid: 12558 components: - type: Transform - pos: 80.5,-14.5 + pos: -50.5,-35.5 parent: 2 - - uid: 10713 + - uid: 12559 components: - type: Transform - pos: -10.5,32.5 + pos: -51.5,-20.5 parent: 2 - - uid: 10778 + - uid: 12566 components: - type: Transform - pos: -28.5,26.5 + pos: -46.5,-19.5 parent: 2 - - uid: 10780 + - uid: 12567 components: - type: Transform - pos: -28.5,30.5 + pos: -47.5,-20.5 parent: 2 - - uid: 10819 + - uid: 12568 components: - type: Transform - pos: 69.5,-83.5 + pos: -40.5,-19.5 parent: 2 - - uid: 10821 + - uid: 12569 components: - type: Transform - pos: 71.5,-82.5 + pos: 18.5,26.5 parent: 2 - - uid: 10826 + - uid: 12572 components: - type: Transform - pos: 65.5,-70.5 + pos: -53.5,-24.5 parent: 2 - - uid: 10831 + - uid: 12573 components: - type: Transform - pos: 70.5,-82.5 + pos: -46.5,-22.5 parent: 2 - - uid: 10837 + - uid: 12582 components: - type: Transform - pos: 66.5,-70.5 + pos: -40.5,-18.5 parent: 2 - - uid: 10839 + - uid: 12611 components: - type: Transform - pos: 73.5,-79.5 + pos: -54.5,-24.5 parent: 2 - - uid: 10840 + - uid: 12617 components: - type: Transform - pos: 73.5,-80.5 + pos: -53.5,-38.5 parent: 2 - - uid: 10848 + - uid: 12618 components: - type: Transform - pos: 69.5,-84.5 + pos: -53.5,-39.5 parent: 2 - - uid: 10851 + - uid: 12620 components: - type: Transform - pos: 76.5,-74.5 + pos: -51.5,-24.5 parent: 2 - - uid: 10854 + - uid: 12621 components: - type: Transform - pos: 77.5,-73.5 + pos: -50.5,-24.5 parent: 2 - - uid: 10855 + - uid: 12624 components: - type: Transform - pos: 77.5,-74.5 + pos: -49.5,-59.5 parent: 2 - - uid: 10856 + - uid: 12626 components: - type: Transform - pos: 72.5,-80.5 + pos: -50.5,-32.5 parent: 2 - - uid: 10859 + - uid: 12630 components: - type: Transform - pos: 75.5,-76.5 + pos: -50.5,-28.5 parent: 2 - - uid: 10860 + - uid: 12633 components: - type: Transform - pos: 74.5,-79.5 + pos: -50.5,-25.5 parent: 2 - - uid: 10862 + - uid: 12670 components: - type: Transform - pos: 75.5,-75.5 + pos: -17.5,4.5 parent: 2 - - uid: 10863 + - uid: 12692 components: - type: Transform - pos: 61.5,-70.5 + pos: -51.5,-32.5 parent: 2 - - uid: 10866 + - uid: 12693 components: - type: Transform - pos: 75.5,-78.5 + pos: -18.5,10.5 parent: 2 - - uid: 10867 + - uid: 12696 components: - type: Transform - pos: 74.5,-78.5 + pos: -53.5,-32.5 parent: 2 - - uid: 10870 + - uid: 12701 components: - type: Transform - pos: 64.5,-83.5 + pos: -23.5,2.5 parent: 2 - - uid: 10882 + - uid: 12705 components: - type: Transform - pos: 70.5,-83.5 + pos: -51.5,-28.5 parent: 2 - - uid: 10891 + - uid: 12726 components: - type: Transform - pos: 71.5,-81.5 + pos: 7.5,-87.5 parent: 2 - - uid: 10893 + - uid: 12730 components: - type: Transform - pos: 72.5,-81.5 + pos: 7.5,-86.5 parent: 2 - - uid: 10894 + - uid: 12731 components: - type: Transform - pos: 66.5,-84.5 + pos: 8.5,-86.5 parent: 2 - - uid: 10985 + - uid: 12734 components: - type: Transform - pos: 85.5,-39.5 + pos: 11.5,-87.5 parent: 2 - - uid: 11043 + - uid: 12736 components: - type: Transform - pos: -28.5,-55.5 + pos: 7.5,-97.5 parent: 2 - - uid: 11076 + - uid: 12772 components: - type: Transform - pos: 74.5,-59.5 + pos: 13.5,-87.5 parent: 2 - - uid: 11130 + - uid: 12774 components: - type: Transform - pos: -34.5,14.5 + pos: -5.5,-95.5 parent: 2 - - uid: 11162 + - uid: 12775 components: - type: Transform - pos: -21.5,-65.5 + pos: -4.5,-69.5 parent: 2 - - uid: 11163 + - uid: 12777 components: - type: Transform - pos: -23.5,-65.5 + pos: -5.5,-64.5 parent: 2 - - uid: 11209 + - uid: 12784 components: - type: Transform - pos: -21.5,18.5 + rot: -1.5707963267948966 rad + pos: 3.5,-54.5 parent: 2 - - uid: 11263 + - uid: 12787 components: - type: Transform - pos: -18.5,-17.5 + pos: 8.5,-64.5 parent: 2 - - uid: 11265 + - uid: 12790 components: - type: Transform - pos: -18.5,-12.5 + pos: 8.5,-69.5 parent: 2 - - uid: 11271 + - uid: 12791 components: - type: Transform - pos: -46.5,-35.5 + pos: -4.5,-64.5 parent: 2 - - uid: 11287 + - uid: 12793 components: - type: Transform - pos: 17.5,-59.5 + pos: 6.5,-68.5 parent: 2 - - uid: 11321 + - uid: 12810 components: - type: Transform - pos: -34.5,8.5 + pos: -11.5,-90.5 parent: 2 - - uid: 11323 + - uid: 12812 components: - type: Transform - pos: -18.5,26.5 + pos: -12.5,-90.5 parent: 2 - - uid: 11324 + - uid: 12820 components: - type: Transform - pos: -18.5,25.5 + pos: -4.5,-96.5 parent: 2 - - uid: 11342 + - uid: 12826 components: - type: Transform - pos: 62.5,-80.5 + pos: -53.5,-26.5 parent: 2 - - uid: 11347 + - uid: 12837 components: - type: Transform - pos: 27.5,-32.5 + pos: 14.5,-90.5 parent: 2 - - uid: 11348 + - uid: 12846 components: - type: Transform - pos: 26.5,-32.5 + pos: -56.5,-26.5 parent: 2 - - uid: 11389 + - uid: 12848 components: - type: Transform - pos: 31.5,-32.5 + pos: 13.5,-89.5 parent: 2 - - uid: 11396 + - uid: 12852 components: - type: Transform - pos: 23.5,-27.5 + rot: -1.5707963267948966 rad + pos: -5.5,-54.5 parent: 2 - - uid: 11399 + - uid: 12873 components: - type: Transform - pos: 31.5,-36.5 + pos: -57.5,-27.5 parent: 2 - - uid: 11526 + - uid: 12921 components: - type: Transform - pos: 60.5,-73.5 + pos: -57.5,-32.5 parent: 2 - - uid: 11536 + - uid: 12981 components: - type: Transform - pos: 63.5,-67.5 + pos: -21.5,15.5 parent: 2 - - uid: 11554 + - uid: 13025 components: - type: Transform - pos: 64.5,-63.5 + pos: -46.5,-23.5 parent: 2 - - uid: 11598 + - uid: 13027 components: - type: Transform - pos: 64.5,-67.5 + pos: 71.5,-39.5 parent: 2 - - uid: 11625 + - uid: 13057 components: - type: Transform - pos: 58.5,-37.5 + pos: 44.5,18.5 parent: 2 - - uid: 11637 + - uid: 13102 components: - type: Transform - pos: -49.5,-10.5 + pos: -22.5,18.5 parent: 2 - - uid: 11803 + - uid: 13124 components: - type: Transform - pos: 82.5,-38.5 + pos: -49.5,-25.5 parent: 2 - - uid: 11815 + - uid: 13167 components: - type: Transform - pos: -26.5,-20.5 + pos: 6.5,-75.5 parent: 2 - - uid: 11824 + - uid: 13195 components: - type: Transform - pos: -42.5,4.5 + pos: 28.5,-6.5 parent: 2 - - uid: 11868 + - uid: 13204 components: - type: Transform - pos: 73.5,-72.5 + pos: 17.5,-16.5 parent: 2 - - uid: 11871 + - uid: 13257 components: - type: Transform - pos: -19.5,-65.5 + pos: -3.5,-75.5 parent: 2 - - uid: 11873 + - uid: 13269 components: - type: Transform - pos: 80.5,-53.5 + pos: -5.5,-75.5 parent: 2 - - uid: 11894 + - uid: 13279 components: - type: Transform - pos: -28.5,35.5 + pos: 8.5,-72.5 parent: 2 - - uid: 11969 + - uid: 13283 components: - type: Transform - pos: -28.5,-20.5 + pos: -5.5,-65.5 parent: 2 - - uid: 12323 + - uid: 13286 components: - type: Transform - pos: -14.5,-22.5 + pos: -5.5,-66.5 parent: 2 - - uid: 12356 + - uid: 13292 components: - type: Transform - pos: 54.5,-46.5 + pos: -5.5,-60.5 parent: 2 - - uid: 12359 + - uid: 13306 components: - type: Transform - pos: 51.5,-30.5 + pos: 57.5,-42.5 parent: 2 - - uid: 12364 + - uid: 13339 components: - type: Transform - pos: -45.5,-25.5 + pos: -20.5,15.5 parent: 2 - - uid: 12374 + - uid: 13386 components: - type: Transform - pos: -17.5,16.5 + pos: -6.5,-80.5 parent: 2 - - uid: 12380 + - uid: 13391 components: - type: Transform - pos: -43.5,-39.5 + pos: -9.5,-76.5 parent: 2 - - uid: 12400 + - uid: 13469 components: - type: Transform - pos: -25.5,-20.5 + pos: -37.5,19.5 parent: 2 - - uid: 12501 + - uid: 13540 components: - type: Transform - pos: 52.5,-30.5 + pos: -10.5,-22.5 parent: 2 - - uid: 12670 + - uid: 13670 components: - type: Transform - pos: -17.5,4.5 + pos: 26.5,-60.5 parent: 2 - - uid: 12693 + - uid: 13691 components: - type: Transform - pos: -18.5,10.5 + pos: -9.5,-79.5 parent: 2 - - uid: 12701 + - uid: 13738 components: - type: Transform - pos: -23.5,2.5 + pos: 20.5,-60.5 parent: 2 - - uid: 12717 + - uid: 13764 components: - type: Transform - pos: -46.5,-34.5 + pos: 23.5,-60.5 parent: 2 - - uid: 12981 + - uid: 13765 components: - type: Transform - pos: -21.5,15.5 + pos: 17.5,-60.5 parent: 2 - - uid: 13027 + - uid: 13859 components: - type: Transform - pos: 71.5,-39.5 + pos: 18.5,-17.5 parent: 2 - - uid: 13102 + - uid: 13880 components: - type: Transform - pos: -22.5,18.5 + pos: -46.5,-41.5 parent: 2 - - uid: 13263 + - uid: 13882 components: - type: Transform - pos: -46.5,-33.5 + pos: -46.5,-42.5 parent: 2 - - uid: 13306 + - uid: 13883 components: - type: Transform - pos: 57.5,-42.5 + pos: -49.5,-42.5 parent: 2 - - uid: 13339 + - uid: 13886 components: - type: Transform - pos: -20.5,15.5 + pos: -50.5,-42.5 parent: 2 - - uid: 13469 + - uid: 13888 components: - type: Transform - pos: -37.5,19.5 + pos: -51.5,-43.5 parent: 2 - - uid: 13540 + - uid: 13889 components: - type: Transform - pos: -10.5,-22.5 + pos: -51.5,-44.5 parent: 2 - - uid: 13670 + - uid: 13897 components: - type: Transform - pos: 26.5,-60.5 + pos: -42.5,-6.5 parent: 2 - - uid: 13738 + - uid: 13904 components: - type: Transform - pos: 20.5,-60.5 + pos: -43.5,-45.5 parent: 2 - - uid: 13764 + - uid: 13906 components: - type: Transform - pos: 23.5,-60.5 + pos: -49.5,-46.5 parent: 2 - - uid: 13765 + - uid: 13911 components: - type: Transform - pos: 17.5,-60.5 + pos: -46.5,-47.5 parent: 2 - - uid: 13802 + - uid: 13912 components: - type: Transform - pos: -43.5,-37.5 + pos: -43.5,-42.5 parent: 2 - - uid: 13863 + - uid: 13913 components: - type: Transform - pos: -30.5,-9.5 + pos: -44.5,-47.5 parent: 2 - - uid: 13897 + - uid: 13917 components: - type: Transform - pos: -42.5,-6.5 + pos: -51.5,-46.5 parent: 2 - - uid: 14014 + - uid: 13920 components: - type: Transform - pos: -43.5,-38.5 + pos: -40.5,-41.5 parent: 2 - - uid: 14211 + - uid: 13925 components: - type: Transform - pos: -22.5,23.5 + pos: -43.5,-46.5 parent: 2 - - uid: 14213 + - uid: 14211 components: - type: Transform - pos: -30.5,-7.5 + pos: -22.5,23.5 parent: 2 - uid: 14263 components: - type: Transform pos: -16.5,24.5 parent: 2 - - uid: 14272 - components: - - type: Transform - pos: 13.5,29.5 - parent: 2 - uid: 14276 components: - type: Transform pos: -5.5,16.5 parent: 2 - - uid: 14278 - components: - - type: Transform - pos: 15.5,26.5 - parent: 2 - uid: 14302 components: - type: Transform pos: -28.5,-52.5 parent: 2 - - uid: 14333 + - uid: 14314 components: - type: Transform - pos: 14.5,26.5 + pos: 42.5,22.5 parent: 2 - uid: 14334 components: @@ -124487,30 +136236,35 @@ entities: - type: Transform pos: -2.5,15.5 parent: 2 - - uid: 14336 + - uid: 14456 components: - type: Transform - pos: 16.5,29.5 + pos: -21.5,-56.5 parent: 2 - - uid: 14413 + - uid: 14492 components: - type: Transform - pos: -30.5,-1.5 + pos: 45.5,-42.5 parent: 2 - - uid: 14423 + - uid: 14494 components: - type: Transform - pos: 11.5,-16.5 + pos: 6.5,-69.5 parent: 2 - - uid: 14456 + - uid: 14499 components: - type: Transform - pos: -21.5,-56.5 + pos: -5.5,-79.5 parent: 2 - - uid: 14492 + - uid: 14501 components: - type: Transform - pos: 45.5,-42.5 + pos: -8.5,-80.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + pos: 9.5,-80.5 parent: 2 - uid: 14510 components: @@ -124557,11 +136311,6 @@ entities: - type: Transform pos: -19.5,6.5 parent: 2 - - uid: 14779 - components: - - type: Transform - pos: -45.5,-27.5 - parent: 2 - uid: 14792 components: - type: Transform @@ -124572,16 +136321,6 @@ entities: - type: Transform pos: -19.5,1.5 parent: 2 - - uid: 14805 - components: - - type: Transform - pos: -22.5,-13.5 - parent: 2 - - uid: 14808 - components: - - type: Transform - pos: 27.5,-12.5 - parent: 2 - uid: 14810 components: - type: Transform @@ -124612,61 +136351,71 @@ entities: - type: Transform pos: -0.5,-24.5 parent: 2 - - uid: 15023 + - uid: 14916 components: - type: Transform - pos: -46.5,-36.5 + pos: -63.5,-35.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + pos: -63.5,-39.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: 7.5,-61.5 + parent: 2 + - uid: 15008 + components: + - type: Transform + pos: 7.5,-64.5 parent: 2 - uid: 15024 components: - type: Transform pos: -22.5,8.5 parent: 2 - - uid: 15036 + - uid: 15042 components: - type: Transform - pos: -34.5,10.5 + pos: 8.5,-61.5 parent: 2 - - uid: 15195 + - uid: 15049 components: - type: Transform - pos: -42.5,-25.5 + pos: 9.5,-100.5 parent: 2 - - uid: 15286 + - uid: 15057 components: - type: Transform - pos: -23.5,23.5 + pos: 8.5,-95.5 parent: 2 - - uid: 15288 + - uid: 15069 components: - type: Transform - pos: 22.5,16.5 + pos: 13.5,-96.5 parent: 2 - - uid: 15289 + - uid: 15240 components: - type: Transform - pos: -24.5,23.5 + pos: -54.5,-58.5 parent: 2 - - uid: 15294 + - uid: 15286 components: - type: Transform - pos: -46.5,-38.5 + pos: -23.5,23.5 parent: 2 - - uid: 15305 + - uid: 15289 components: - type: Transform - pos: -45.5,-26.5 + pos: -24.5,23.5 parent: 2 - uid: 15328 components: - type: Transform pos: -10.5,34.5 parent: 2 - - uid: 15361 - components: - - type: Transform - pos: -46.5,-37.5 - parent: 2 - uid: 15371 components: - type: Transform @@ -124682,6 +136431,16 @@ entities: - type: Transform pos: -26.5,24.5 parent: 2 + - uid: 15451 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: 36.5,23.5 + parent: 2 - uid: 15467 components: - type: Transform @@ -124737,41 +136496,16 @@ entities: - type: Transform pos: -21.5,23.5 parent: 2 - - uid: 15734 - components: - - type: Transform - pos: -35.5,-59.5 - parent: 2 - - uid: 15737 - components: - - type: Transform - pos: -38.5,-59.5 - parent: 2 - - uid: 15740 - components: - - type: Transform - pos: -39.5,-59.5 - parent: 2 - - uid: 15741 - components: - - type: Transform - pos: -39.5,-57.5 - parent: 2 - - uid: 15744 + - uid: 15786 components: - type: Transform - pos: -38.5,-56.5 + pos: -54.5,-55.5 parent: 2 - uid: 15823 components: - type: Transform pos: -61.5,-7.5 parent: 2 - - uid: 15836 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 2 - uid: 15843 components: - type: Transform @@ -124862,11 +136596,6 @@ entities: - type: Transform pos: 42.5,-40.5 parent: 2 - - uid: 15933 - components: - - type: Transform - pos: 29.5,-8.5 - parent: 2 - uid: 15941 components: - type: Transform @@ -125032,6 +136761,18 @@ entities: - type: Transform pos: -13.5,-55.5 parent: 2 + - uid: 16055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-54.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,18.5 + parent: 2 - uid: 16080 components: - type: Transform @@ -125047,20 +136788,25 @@ entities: - type: Transform pos: -13.5,-52.5 parent: 2 - - uid: 16141 + - uid: 16092 components: - type: Transform - pos: -43.5,-4.5 + pos: 13.5,-66.5 parent: 2 - - uid: 16179 + - uid: 16094 components: - type: Transform - pos: 0.5,-16.5 + pos: -3.5,-69.5 parent: 2 - - uid: 16180 + - uid: 16113 components: - type: Transform - pos: 0.5,-17.5 + pos: -64.5,-57.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: -43.5,-4.5 parent: 2 - uid: 16201 components: @@ -125142,16 +136888,6 @@ entities: - type: Transform pos: 56.5,-60.5 parent: 2 - - uid: 16683 - components: - - type: Transform - pos: 25.5,-12.5 - parent: 2 - - uid: 16687 - components: - - type: Transform - pos: -11.5,-52.5 - parent: 2 - uid: 16723 components: - type: Transform @@ -125217,6 +136953,21 @@ entities: - type: Transform pos: -43.5,-2.5 parent: 2 + - uid: 16895 + components: + - type: Transform + pos: -64.5,-60.5 + parent: 2 + - uid: 16964 + components: + - type: Transform + pos: 5.5,-100.5 + parent: 2 + - uid: 16965 + components: + - type: Transform + pos: -49.5,-47.5 + parent: 2 - uid: 16993 components: - type: Transform @@ -125292,16 +137043,37 @@ entities: - type: Transform pos: 51.5,-72.5 parent: 2 - - uid: 17283 + - uid: 17393 components: - type: Transform - pos: -30.5,-8.5 + pos: 21.5,20.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 17459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,13.5 + parent: 2 + - uid: 17461 + components: + - type: Transform + pos: 44.5,13.5 parent: 2 - uid: 17655 components: - type: Transform pos: -35.5,18.5 parent: 2 + - uid: 17706 + components: + - type: Transform + pos: 64.5,-51.5 + parent: 2 - uid: 17714 components: - type: Transform @@ -125347,6 +137119,12 @@ entities: - type: Transform pos: 86.5,-32.5 parent: 2 + - uid: 17817 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-51.5 + parent: 2 - uid: 17844 components: - type: Transform @@ -125372,11 +137150,6 @@ entities: - type: Transform pos: 89.5,-11.5 parent: 2 - - uid: 17855 - components: - - type: Transform - pos: -34.5,11.5 - parent: 2 - uid: 17972 components: - type: Transform @@ -125387,11 +137160,6 @@ entities: - type: Transform pos: 90.5,-11.5 parent: 2 - - uid: 18148 - components: - - type: Transform - pos: -29.5,-12.5 - parent: 2 - uid: 18161 components: - type: Transform @@ -125462,11 +137230,6 @@ entities: - type: Transform pos: -23.5,40.5 parent: 2 - - uid: 18236 - components: - - type: Transform - pos: -30.5,-12.5 - parent: 2 - uid: 18243 components: - type: Transform @@ -125492,6 +137255,12 @@ entities: - type: Transform pos: -10.5,35.5 parent: 2 + - uid: 18409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,23.5 + parent: 2 - uid: 18423 components: - type: Transform @@ -125552,21 +137321,11 @@ entities: - type: Transform pos: 97.5,-35.5 parent: 2 - - uid: 18553 - components: - - type: Transform - pos: -28.5,-12.5 - parent: 2 - uid: 18605 components: - type: Transform pos: -28.5,34.5 parent: 2 - - uid: 18612 - components: - - type: Transform - pos: 28.5,-8.5 - parent: 2 - uid: 18724 components: - type: Transform @@ -125582,120 +137341,97 @@ entities: - type: Transform pos: -23.5,4.5 parent: 2 - - uid: 19069 - components: - - type: Transform - pos: -16.5,-83.5 - parent: 2 - - uid: 19142 - components: - - type: Transform - pos: -15.5,-83.5 - parent: 2 - - uid: 19143 - components: - - type: Transform - pos: -14.5,-83.5 - parent: 2 - - uid: 19144 - components: - - type: Transform - pos: -12.5,-82.5 - parent: 2 - - uid: 19145 - components: - - type: Transform - pos: -10.5,-81.5 - parent: 2 - - uid: 19146 + - uid: 19149 components: - type: Transform - pos: -8.5,-80.5 + pos: -6.5,-96.5 parent: 2 - - uid: 19147 + - uid: 19182 components: - type: Transform - pos: -6.5,-81.5 + pos: 15.5,-96.5 parent: 2 - - uid: 19148 + - uid: 19183 components: - type: Transform - pos: -4.5,-82.5 + pos: 5.5,-98.5 parent: 2 - - uid: 19149 + - uid: 19185 components: - type: Transform - pos: -2.5,-83.5 + pos: 7.5,-98.5 parent: 2 - - uid: 19151 + - uid: 19199 components: - type: Transform - pos: -1.5,-83.5 + pos: 9.5,-96.5 parent: 2 - - uid: 19153 + - uid: 19214 components: - type: Transform - pos: 0.5,-84.5 + pos: 7.5,-100.5 parent: 2 - - uid: 19154 + - uid: 19218 components: - type: Transform - pos: 1.5,-84.5 + pos: 8.5,-100.5 parent: 2 - - uid: 19155 + - uid: 19226 components: - type: Transform - pos: 2.5,-84.5 + pos: 14.5,-96.5 parent: 2 - - uid: 19156 + - uid: 19228 components: - type: Transform - pos: 4.5,-83.5 + pos: -7.5,-96.5 parent: 2 - - uid: 19157 + - uid: 19229 components: - type: Transform - pos: 5.5,-83.5 + rot: -1.5707963267948966 rad + pos: 4.5,-55.5 parent: 2 - - uid: 19158 + - uid: 19239 components: - type: Transform - pos: 7.5,-82.5 + pos: 5.5,-99.5 parent: 2 - - uid: 19159 + - uid: 19240 components: - type: Transform - pos: 9.5,-81.5 + pos: 8.5,-96.5 parent: 2 - - uid: 19181 + - uid: 19241 components: - type: Transform - pos: 11.5,-80.5 + pos: 7.5,-99.5 parent: 2 - - uid: 19182 + - uid: 19245 components: - type: Transform - pos: 13.5,-81.5 + pos: 12.5,-79.5 parent: 2 - - uid: 19183 + - uid: 19247 components: - type: Transform - pos: 15.5,-82.5 + pos: 13.5,-63.5 parent: 2 - - uid: 19185 + - uid: 19254 components: - type: Transform - pos: 17.5,-83.5 + pos: 13.5,-61.5 parent: 2 - - uid: 19186 + - uid: 19261 components: - type: Transform - pos: 18.5,-83.5 + pos: -5.5,-69.5 parent: 2 - - uid: 19187 + - uid: 19264 components: - type: Transform - pos: 19.5,-83.5 + rot: -1.5707963267948966 rad + pos: 4.5,-57.5 parent: 2 - uid: 19365 components: @@ -125752,26 +137488,11 @@ entities: - type: Transform pos: 37.5,-76.5 parent: 2 - - uid: 19916 - components: - - type: Transform - pos: 15.5,-69.5 - parent: 2 - uid: 19917 components: - type: Transform pos: 17.5,-69.5 parent: 2 - - uid: 19918 - components: - - type: Transform - pos: 19.5,-69.5 - parent: 2 - - uid: 19919 - components: - - type: Transform - pos: 21.5,-69.5 - parent: 2 - uid: 19920 components: - type: Transform @@ -125802,10 +137523,31 @@ entities: - type: Transform pos: 36.5,-49.5 parent: 2 - - uid: 20665 + - uid: 20160 components: - type: Transform - pos: -34.5,15.5 + pos: -5.5,-72.5 + parent: 2 + - uid: 20181 + components: + - type: Transform + pos: 7.5,-72.5 + parent: 2 + - uid: 20193 + components: + - type: Transform + pos: 12.5,-66.5 + parent: 2 + - uid: 20195 + components: + - type: Transform + pos: 9.5,-76.5 + parent: 2 + - uid: 20663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,26.5 parent: 2 - uid: 20666 components: @@ -125815,104 +137557,166 @@ entities: - uid: 20670 components: - type: Transform - pos: -35.5,13.5 + pos: 43.5,22.5 parent: 2 - - uid: 20671 + - uid: 20770 components: - type: Transform - pos: -36.5,13.5 + pos: -33.5,-1.5 parent: 2 - - uid: 20720 + - uid: 21760 components: - type: Transform - pos: -31.5,-2.5 + pos: 17.5,17.5 parent: 2 - - uid: 20742 + - uid: 21785 components: - type: Transform - pos: -42.5,-57.5 + rot: 3.141592653589793 rad + pos: 44.5,25.5 parent: 2 - - uid: 20743 + - uid: 21807 components: - type: Transform - pos: -42.5,-59.5 + pos: 39.5,23.5 parent: 2 - - uid: 20744 + - uid: 21859 components: - type: Transform - pos: -41.5,-59.5 + pos: -34.5,8.5 parent: 2 - - uid: 20745 + - uid: 21870 components: - type: Transform - pos: -40.5,-59.5 + pos: 15.5,26.5 parent: 2 - - uid: 20770 + - uid: 21877 components: - type: Transform - pos: -33.5,-1.5 + pos: 24.5,20.5 parent: 2 -- proto: WallReinforcedRust - entities: - - uid: 141 + - uid: 21879 components: - type: Transform - pos: 38.5,11.5 + pos: 18.5,25.5 parent: 2 - - uid: 144 + - uid: 21881 components: - type: Transform - pos: 38.5,12.5 + pos: 26.5,23.5 parent: 2 - - uid: 249 + - uid: 21886 components: - type: Transform - pos: -64.5,-6.5 + rot: -1.5707963267948966 rad + pos: 51.5,12.5 parent: 2 - - uid: 273 + - uid: 21891 components: - type: Transform - pos: 13.5,-4.5 + pos: 29.5,26.5 parent: 2 - - uid: 286 + - uid: 21897 components: - type: Transform - pos: 8.5,2.5 + pos: 41.5,23.5 parent: 2 - - uid: 307 + - uid: 21899 components: - type: Transform - pos: 7.5,3.5 + pos: 63.5,-55.5 parent: 2 - - uid: 374 + - uid: 22004 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 22013 components: - type: Transform - pos: -39.5,-37.5 + rot: -1.5707963267948966 rad + pos: -36.5,10.5 parent: 2 - - uid: 375 + - uid: 22015 components: - type: Transform - pos: -39.5,-38.5 + pos: 26.5,20.5 parent: 2 - - uid: 513 + - uid: 22025 components: - type: Transform - pos: 11.5,7.5 + rot: -1.5707963267948966 rad + pos: -58.5,-50.5 parent: 2 - - uid: 576 + - uid: 22038 components: - type: Transform - pos: 7.5,7.5 + rot: -1.5707963267948966 rad + pos: 18.5,30.5 parent: 2 - - uid: 592 + - uid: 22054 components: - type: Transform - pos: 11.5,2.5 + pos: -38.5,10.5 parent: 2 - - uid: 648 + - uid: 22081 components: - type: Transform - pos: 8.5,3.5 + pos: 42.5,17.5 + parent: 2 + - uid: 22082 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 22086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,10.5 + parent: 2 + - uid: 22089 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 22096 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 22101 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 22117 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 22118 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 22125 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 22639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,15.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 249 + components: + - type: Transform + pos: -64.5,-6.5 parent: 2 - uid: 694 components: @@ -125949,11 +137753,6 @@ entities: - type: Transform pos: -59.5,-9.5 parent: 2 - - uid: 1053 - components: - - type: Transform - pos: 40.5,13.5 - parent: 2 - uid: 1079 components: - type: Transform @@ -125984,35 +137783,37 @@ entities: - type: Transform pos: -61.5,-10.5 parent: 2 - - uid: 1158 + - uid: 1118 components: - type: Transform - pos: 13.5,8.5 + rot: -1.5707963267948966 rad + pos: -59.5,-54.5 parent: 2 - - uid: 1413 + - uid: 1158 components: - type: Transform - pos: 12.5,9.5 + pos: 13.5,8.5 parent: 2 - - uid: 1442 + - uid: 1448 components: - type: Transform - pos: -43.5,-32.5 + pos: 20.5,20.5 parent: 2 - - uid: 1950 + - uid: 1659 components: - type: Transform - pos: -39.5,-32.5 + pos: 18.5,24.5 parent: 2 - - uid: 2047 + - uid: 2139 components: - type: Transform - pos: 12.5,4.5 + pos: 74.5,-39.5 parent: 2 - - uid: 2139 + - uid: 2805 components: - type: Transform - pos: 74.5,-39.5 + rot: -1.5707963267948966 rad + pos: 4.5,-87.5 parent: 2 - uid: 3090 components: @@ -126024,11 +137825,6 @@ entities: - type: Transform pos: -68.5,-6.5 parent: 2 - - uid: 3190 - components: - - type: Transform - pos: 16.5,26.5 - parent: 2 - uid: 3208 components: - type: Transform @@ -126054,6 +137850,48 @@ entities: - type: Transform pos: -21.5,7.5 parent: 2 + - uid: 3227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-87.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-85.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-87.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-68.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-66.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-59.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-68.5 + parent: 2 - uid: 3339 components: - type: Transform @@ -126069,10 +137907,35 @@ entities: - type: Transform pos: 57.5,-77.5 parent: 2 - - uid: 3714 + - uid: 3415 components: - type: Transform - pos: 16.5,20.5 + rot: -1.5707963267948966 rad + pos: -30.5,-65.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-68.5 + parent: 2 + - uid: 3429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-86.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-86.5 + parent: 2 + - uid: 3573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-72.5 parent: 2 - uid: 3719 components: @@ -126084,26 +137947,40 @@ entities: - type: Transform pos: 37.5,-77.5 parent: 2 - - uid: 3845 + - uid: 3812 components: - type: Transform - pos: 5.5,9.5 + rot: -1.5707963267948966 rad + pos: -9.5,-71.5 parent: 2 - - uid: 3866 + - uid: 3828 components: - type: Transform - pos: 23.5,15.5 + rot: -1.5707963267948966 rad + pos: 9.5,-79.5 parent: 2 - - uid: 4060 + - uid: 3845 components: - type: Transform - pos: -36.5,10.5 + pos: 5.5,9.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-59.5 parent: 2 - uid: 4144 components: - type: Transform pos: 75.5,-66.5 parent: 2 + - uid: 4164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-58.5 + parent: 2 - uid: 4352 components: - type: Transform @@ -126124,21 +138001,53 @@ entities: - type: Transform pos: 67.5,-66.5 parent: 2 - - uid: 4830 + - uid: 4852 components: - type: Transform - pos: -43.5,-36.5 + rot: -1.5707963267948966 rad + pos: -10.5,-88.5 parent: 2 - - uid: 4954 + - uid: 4885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-86.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-75.5 + parent: 2 + - uid: 4918 components: - type: Transform - pos: -32.5,-5.5 + rot: -1.5707963267948966 rad + pos: 16.5,-81.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-73.5 parent: 2 - uid: 4974 components: - type: Transform pos: -4.5,-27.5 parent: 2 + - uid: 5101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-79.5 + parent: 2 + - uid: 5114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-60.5 + parent: 2 - uid: 5146 components: - type: Transform @@ -126149,11 +138058,6 @@ entities: - type: Transform pos: -19.5,11.5 parent: 2 - - uid: 5173 - components: - - type: Transform - pos: -34.5,13.5 - parent: 2 - uid: 5183 components: - type: Transform @@ -126229,11 +138133,6 @@ entities: - type: Transform pos: -60.5,-10.5 parent: 2 - - uid: 5609 - components: - - type: Transform - pos: -53.5,-31.5 - parent: 2 - uid: 5622 components: - type: Transform @@ -126244,11 +138143,6 @@ entities: - type: Transform pos: 75.5,-57.5 parent: 2 - - uid: 5648 - components: - - type: Transform - pos: -49.5,-26.5 - parent: 2 - uid: 5736 components: - type: Transform @@ -126264,6 +138158,12 @@ entities: - type: Transform pos: -28.5,13.5 parent: 2 + - uid: 5774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-85.5 + parent: 2 - uid: 5775 components: - type: Transform @@ -126284,6 +138184,11 @@ entities: - type: Transform pos: -23.5,8.5 parent: 2 + - uid: 5811 + components: + - type: Transform + pos: 51.5,-32.5 + parent: 2 - uid: 5814 components: - type: Transform @@ -126304,11 +138209,29 @@ entities: - type: Transform pos: -25.5,18.5 parent: 2 + - uid: 5866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-86.5 + parent: 2 - uid: 5881 components: - type: Transform pos: -17.5,6.5 parent: 2 + - uid: 5888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-76.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-88.5 + parent: 2 - uid: 5898 components: - type: Transform @@ -126319,6 +138242,12 @@ entities: - type: Transform pos: -0.5,-35.5 parent: 2 + - uid: 6085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-65.5 + parent: 2 - uid: 6099 components: - type: Transform @@ -126329,11 +138258,29 @@ entities: - type: Transform pos: -8.5,7.5 parent: 2 + - uid: 6161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-91.5 + parent: 2 - uid: 6179 components: - type: Transform pos: -8.5,6.5 parent: 2 + - uid: 6185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-97.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-73.5 + parent: 2 - uid: 6223 components: - type: Transform @@ -126384,6 +138331,36 @@ entities: - type: Transform pos: 5.5,5.5 parent: 2 + - uid: 6321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-73.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-75.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-90.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-76.5 + parent: 2 + - uid: 6353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-76.5 + parent: 2 - uid: 6369 components: - type: Transform @@ -126394,31 +138371,45 @@ entities: - type: Transform pos: -9.5,1.5 parent: 2 + - uid: 6397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-58.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-80.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-79.5 + parent: 2 - uid: 6476 components: - type: Transform pos: 65.5,-37.5 parent: 2 - - uid: 6604 + - uid: 6510 components: - type: Transform - pos: -32.5,22.5 + rot: -1.5707963267948966 rad + pos: 11.5,-76.5 parent: 2 - - uid: 6619 + - uid: 6604 components: - type: Transform - pos: 22.5,15.5 + pos: -32.5,22.5 parent: 2 - uid: 6620 components: - type: Transform pos: 5.5,1.5 parent: 2 - - uid: 6631 - components: - - type: Transform - pos: 25.5,14.5 - parent: 2 - uid: 6632 components: - type: Transform @@ -126429,1320 +138420,1586 @@ entities: - type: Transform pos: -3.5,-24.5 parent: 2 - - uid: 6872 + - uid: 6905 components: - type: Transform - pos: 29.5,-15.5 + pos: -10.5,-23.5 parent: 2 - - uid: 6876 + - uid: 6908 components: - type: Transform - pos: 3.5,-13.5 + pos: 60.5,-77.5 parent: 2 - - uid: 6878 + - uid: 6913 components: - type: Transform - pos: 27.5,-15.5 + pos: -5.5,-27.5 parent: 2 - - uid: 6887 + - uid: 6923 components: - type: Transform - pos: 29.5,-5.5 + pos: -9.5,-27.5 parent: 2 - - uid: 6888 + - uid: 6927 components: - type: Transform - pos: 5.5,-11.5 + pos: -10.5,-27.5 parent: 2 - - uid: 6905 + - uid: 6933 components: - type: Transform - pos: -10.5,-23.5 + pos: -3.5,-25.5 parent: 2 - - uid: 6908 + - uid: 6934 components: - type: Transform - pos: 60.5,-77.5 + pos: 28.5,-5.5 parent: 2 - - uid: 6913 + - uid: 6982 components: - type: Transform - pos: -5.5,-27.5 + pos: 80.5,-43.5 parent: 2 - - uid: 6915 + - uid: 6995 components: - type: Transform - pos: -6.5,-7.5 + pos: -35.5,24.5 parent: 2 - - uid: 6917 + - uid: 6997 components: - type: Transform - pos: 7.5,-13.5 + pos: -17.5,5.5 parent: 2 - - uid: 6918 + - uid: 7026 components: - type: Transform - pos: -5.5,-11.5 + pos: -29.5,9.5 parent: 2 - - uid: 6923 + - uid: 7087 components: - type: Transform - pos: -9.5,-27.5 + rot: -1.5707963267948966 rad + pos: -8.5,-76.5 parent: 2 - - uid: 6927 + - uid: 7107 components: - type: Transform - pos: -10.5,-27.5 + pos: 22.5,-27.5 parent: 2 - - uid: 6929 + - uid: 7163 components: - type: Transform - pos: -0.5,-5.5 + pos: -19.5,-6.5 parent: 2 - - uid: 6933 + - uid: 7167 components: - type: Transform - pos: -3.5,-25.5 + pos: 30.5,-59.5 parent: 2 - - uid: 6934 + - uid: 7168 + components: + - type: Transform + pos: 32.5,-57.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-66.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: 22.5,-28.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: 81.5,-14.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-61.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-72.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-79.5 + parent: 2 + - uid: 7326 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: -22.5,7.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: 34.5,-56.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: 33.5,-56.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: 32.5,-59.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-69.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-66.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: -16.5,23.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-68.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + pos: -27.5,23.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + pos: -9.5,23.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: -10.5,23.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 7643 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 + - uid: 7661 components: - type: Transform - pos: 28.5,-5.5 + pos: -19.5,12.5 parent: 2 - - uid: 6938 + - uid: 7672 components: - type: Transform - pos: 0.5,-19.5 + rot: -1.5707963267948966 rad + pos: -11.5,-89.5 parent: 2 - - uid: 6946 + - uid: 7701 components: - type: Transform - pos: 22.5,-5.5 + pos: -17.5,18.5 parent: 2 - - uid: 6949 + - uid: 7717 components: - type: Transform - pos: 6.5,-13.5 + pos: 41.5,-14.5 parent: 2 - - uid: 6953 + - uid: 7723 components: - type: Transform - pos: 7.5,-16.5 + pos: 25.5,-33.5 parent: 2 - - uid: 6972 + - uid: 7744 components: - type: Transform - pos: 24.5,-15.5 + pos: 49.5,-3.5 parent: 2 - - uid: 6973 + - uid: 7748 components: - type: Transform - pos: -6.5,-11.5 + pos: -29.5,-12.5 parent: 2 - - uid: 6982 + - uid: 7749 components: - type: Transform - pos: 80.5,-43.5 + pos: 49.5,-6.5 parent: 2 - - uid: 6995 + - uid: 7758 components: - type: Transform - pos: -35.5,24.5 + pos: 32.5,-52.5 parent: 2 - - uid: 6997 + - uid: 7759 components: - type: Transform - pos: -17.5,5.5 + pos: 25.5,-36.5 parent: 2 - - uid: 7026 + - uid: 7799 components: - type: Transform - pos: -29.5,9.5 + pos: 66.5,-44.5 parent: 2 - - uid: 7097 + - uid: 7820 components: - type: Transform - pos: -20.5,-12.5 + pos: 29.5,-51.5 parent: 2 - - uid: 7103 + - uid: 7823 components: - type: Transform - pos: 18.5,-19.5 + pos: 29.5,-52.5 parent: 2 - - uid: 7107 + - uid: 7996 components: - type: Transform - pos: 22.5,-27.5 + pos: 49.5,-8.5 parent: 2 - - uid: 7163 + - uid: 8022 components: - type: Transform - pos: -19.5,-6.5 + pos: 48.5,-2.5 parent: 2 - - uid: 7167 + - uid: 8028 components: - type: Transform - pos: 30.5,-59.5 + pos: 49.5,-9.5 parent: 2 - - uid: 7168 + - uid: 8041 components: - type: Transform - pos: 32.5,-57.5 + rot: -1.5707963267948966 rad + pos: -5.5,-96.5 parent: 2 - - uid: 7210 + - uid: 8042 components: - type: Transform - pos: 22.5,-28.5 + pos: 44.5,-13.5 parent: 2 - - uid: 7218 + - uid: 8047 components: - type: Transform - pos: 1.5,-38.5 + pos: 48.5,-3.5 parent: 2 - - uid: 7222 + - uid: 8051 components: - type: Transform - pos: 0.5,-38.5 + rot: -1.5707963267948966 rad + pos: 14.5,-89.5 parent: 2 - - uid: 7228 + - uid: 8089 components: - type: Transform - pos: 2.5,-35.5 + pos: 43.5,7.5 parent: 2 - - uid: 7273 + - uid: 8105 components: - type: Transform - pos: 81.5,-14.5 + pos: 42.5,7.5 parent: 2 - - uid: 7313 + - uid: 8111 components: - type: Transform - pos: -46.5,-20.5 + pos: 42.5,6.5 parent: 2 - - uid: 7318 + - uid: 8144 components: - type: Transform - pos: 6.5,-21.5 + pos: 45.5,13.5 parent: 2 - - uid: 7326 + - uid: 8175 components: - type: Transform - pos: -26.5,-12.5 + pos: -17.5,23.5 parent: 2 - - uid: 7331 + - uid: 8199 components: - type: Transform - pos: -31.5,-19.5 + rot: -1.5707963267948966 rad + pos: 15.5,-69.5 parent: 2 - - uid: 7333 + - uid: 8203 components: - type: Transform - pos: -32.5,-19.5 + rot: -1.5707963267948966 rad + pos: 19.5,-69.5 parent: 2 - - uid: 7352 + - uid: 8209 components: - type: Transform - pos: -22.5,7.5 + pos: 51.5,8.5 parent: 2 - - uid: 7363 + - uid: 8211 components: - type: Transform - pos: -28.5,-70.5 + pos: 51.5,13.5 parent: 2 - - uid: 7370 + - uid: 8235 components: - type: Transform - pos: -20.5,18.5 + pos: 48.5,7.5 parent: 2 - - uid: 7389 + - uid: 8237 components: - type: Transform - pos: -40.5,-19.5 + pos: 50.5,8.5 parent: 2 - - uid: 7392 + - uid: 8240 components: - type: Transform - pos: 30.5,17.5 + pos: 49.5,8.5 parent: 2 - - uid: 7417 + - uid: 8257 components: - type: Transform - pos: -31.5,-70.5 + pos: -20.5,17.5 parent: 2 - - uid: 7430 + - uid: 8262 components: - type: Transform - pos: 34.5,-56.5 + pos: 44.5,6.5 parent: 2 - - uid: 7456 + - uid: 8271 components: - type: Transform - pos: 33.5,-56.5 + pos: 27.5,-49.5 parent: 2 - - uid: 7461 + - uid: 8273 components: - type: Transform - pos: 32.5,-59.5 + pos: 26.5,-49.5 parent: 2 - - uid: 7483 + - uid: 8276 components: - type: Transform - pos: 30.5,21.5 + pos: 26.5,-52.5 parent: 2 - - uid: 7488 + - uid: 8318 components: - type: Transform - pos: 28.5,17.5 + pos: 27.5,20.5 parent: 2 - - uid: 7489 + - uid: 8392 components: - type: Transform - pos: 29.5,22.5 + pos: 5.5,-24.5 parent: 2 - - uid: 7499 + - uid: 8399 components: - type: Transform - pos: 29.5,29.5 + pos: 4.5,-24.5 parent: 2 - - uid: 7500 + - uid: 8400 components: - type: Transform - pos: 34.5,45.5 + pos: 44.5,-17.5 parent: 2 - - uid: 7510 + - uid: 8401 components: - type: Transform - pos: 35.5,30.5 + rot: -1.5707963267948966 rad + pos: 21.5,-69.5 parent: 2 - - uid: 7517 + - uid: 8404 components: - type: Transform - pos: 34.5,17.5 + pos: 43.5,-26.5 parent: 2 - - uid: 7527 + - uid: 8486 components: - type: Transform - pos: 34.5,22.5 + pos: -49.5,-14.5 parent: 2 - - uid: 7537 + - uid: 8725 components: - type: Transform - pos: 34.5,18.5 + rot: -1.5707963267948966 rad + pos: -58.5,-49.5 parent: 2 - - uid: 7562 + - uid: 8746 components: - type: Transform - pos: 36.5,30.5 + pos: 49.5,-34.5 parent: 2 - - uid: 7572 + - uid: 8748 components: - type: Transform - pos: -16.5,23.5 + pos: 53.5,-35.5 parent: 2 - - uid: 7605 + - uid: 8894 components: - type: Transform - pos: 26.5,-29.5 + pos: 55.5,-37.5 parent: 2 - - uid: 7634 + - uid: 8904 components: - type: Transform - pos: -27.5,23.5 + pos: 56.5,-37.5 parent: 2 - - uid: 7637 + - uid: 9256 components: - type: Transform - pos: -9.5,23.5 + pos: 40.5,-19.5 parent: 2 - - uid: 7638 + - uid: 9262 components: - type: Transform - pos: -10.5,23.5 + pos: 48.5,3.5 parent: 2 - - uid: 7639 + - uid: 9279 components: - type: Transform - pos: -17.5,17.5 + pos: 43.5,4.5 parent: 2 - - uid: 7640 + - uid: 9280 components: - type: Transform - pos: 12.5,29.5 + pos: 47.5,3.5 parent: 2 - - uid: 7641 + - uid: 9281 components: - type: Transform - pos: -10.5,28.5 + pos: 43.5,-1.5 parent: 2 - - uid: 7642 + - uid: 9313 components: - type: Transform - pos: -2.5,16.5 + pos: 43.5,-18.5 parent: 2 - - uid: 7643 + - uid: 9562 components: - type: Transform - pos: -17.5,10.5 + pos: -21.5,13.5 parent: 2 - - uid: 7661 + - uid: 9571 components: - type: Transform - pos: -19.5,12.5 + pos: 17.5,-29.5 parent: 2 - - uid: 7662 + - uid: 9617 components: - type: Transform - pos: 34.5,38.5 + pos: 54.5,-37.5 parent: 2 - - uid: 7664 + - uid: 9799 components: - type: Transform - pos: 34.5,40.5 + pos: -17.5,14.5 parent: 2 - - uid: 7701 + - uid: 9858 components: - type: Transform - pos: -17.5,18.5 + pos: -13.5,-2.5 parent: 2 - - uid: 7717 + - uid: 9899 components: - type: Transform - pos: 41.5,-14.5 + pos: -14.5,-9.5 parent: 2 - - uid: 7723 + - uid: 10002 components: - type: Transform - pos: 25.5,-33.5 + pos: 57.5,-41.5 parent: 2 - - uid: 7734 + - uid: 10004 components: - type: Transform - pos: 29.5,40.5 + pos: 58.5,-43.5 parent: 2 - - uid: 7741 + - uid: 10023 components: - type: Transform - pos: 30.5,43.5 + pos: -14.5,-17.5 parent: 2 - - uid: 7744 + - uid: 10055 components: - type: Transform - pos: 49.5,-3.5 + pos: -13.5,-5.5 parent: 2 - - uid: 7749 + - uid: 10175 components: - type: Transform - pos: 49.5,-6.5 + pos: -28.5,31.5 parent: 2 - - uid: 7758 + - uid: 10241 components: - type: Transform - pos: 32.5,-52.5 + pos: -48.5,-10.5 parent: 2 - - uid: 7759 + - uid: 10263 components: - type: Transform - pos: 25.5,-36.5 + pos: -14.5,-21.5 parent: 2 - - uid: 7799 + - uid: 10535 components: - type: Transform - pos: 66.5,-44.5 + pos: -14.5,-5.5 parent: 2 - - uid: 7808 + - uid: 10705 components: - type: Transform - pos: 26.5,2.5 + pos: 43.5,-25.5 parent: 2 - - uid: 7810 + - uid: 10708 components: - type: Transform - pos: -32.5,-66.5 + pos: 40.5,-25.5 parent: 2 - - uid: 7820 + - uid: 10715 components: - type: Transform - pos: 29.5,-51.5 + pos: -28.5,28.5 parent: 2 - - uid: 7823 + - uid: 10777 components: - type: Transform - pos: 29.5,-52.5 + pos: -26.5,37.5 parent: 2 - - uid: 7996 + - uid: 10885 components: - type: Transform - pos: 49.5,-8.5 + pos: 84.5,-38.5 parent: 2 - - uid: 8022 + - uid: 10925 components: - type: Transform - pos: 48.5,-2.5 + rot: 3.141592653589793 rad + pos: -31.5,-64.5 parent: 2 - - uid: 8028 + - uid: 10978 components: - type: Transform - pos: 49.5,-9.5 + pos: -20.5,40.5 parent: 2 - - uid: 8042 + - uid: 11017 components: - type: Transform - pos: 44.5,-13.5 + pos: 40.5,-23.5 parent: 2 - - uid: 8045 + - uid: 11018 components: - type: Transform - pos: 12.5,-7.5 + pos: 56.5,-23.5 parent: 2 - - uid: 8046 + - uid: 11021 components: - type: Transform - pos: -46.5,-32.5 + pos: 54.5,-27.5 parent: 2 - - uid: 8047 + - uid: 11022 components: - type: Transform - pos: 48.5,-3.5 + pos: 54.5,-15.5 parent: 2 - - uid: 8052 + - uid: 11023 components: - type: Transform - pos: -21.5,-17.5 + pos: 55.5,-19.5 parent: 2 - - uid: 8065 + - uid: 11024 components: - type: Transform - pos: 28.5,26.5 + rot: 3.141592653589793 rad + pos: -29.5,-17.5 parent: 2 - - uid: 8067 + - uid: 11033 components: - type: Transform - pos: -27.5,-62.5 + pos: 50.5,-27.5 parent: 2 - - uid: 8089 + - uid: 11038 components: - type: Transform - pos: 43.5,7.5 + pos: 49.5,-29.5 parent: 2 - - uid: 8105 + - uid: 11039 components: - type: Transform - pos: 42.5,7.5 + pos: 50.5,-32.5 parent: 2 - - uid: 8111 + - uid: 11040 components: - type: Transform - pos: 42.5,6.5 + pos: 50.5,-29.5 parent: 2 - - uid: 8116 + - uid: 11042 components: - type: Transform - pos: -28.5,-66.5 + pos: 50.5,-14.5 parent: 2 - - uid: 8119 + - uid: 11047 components: - type: Transform - pos: 41.5,13.5 + pos: 52.5,-14.5 parent: 2 - - uid: 8144 + - uid: 11082 components: - type: Transform - pos: 45.5,13.5 + rot: 3.141592653589793 rad + pos: -40.5,-21.5 parent: 2 - - uid: 8152 + - uid: 11109 components: - type: Transform - pos: -53.5,-26.5 + rot: 3.141592653589793 rad + pos: -27.5,-59.5 parent: 2 - - uid: 8175 + - uid: 11165 components: - type: Transform - pos: -17.5,23.5 + pos: -12.5,37.5 parent: 2 - - uid: 8201 + - uid: 11266 components: - type: Transform - pos: 30.5,13.5 + rot: 3.141592653589793 rad + pos: -58.5,-39.5 parent: 2 - - uid: 8209 + - uid: 11291 components: - type: Transform - pos: 51.5,8.5 + rot: 3.141592653589793 rad + pos: -26.5,-43.5 parent: 2 - - uid: 8211 + - uid: 11292 components: - type: Transform - pos: 51.5,13.5 + rot: 3.141592653589793 rad + pos: -39.5,-16.5 parent: 2 - - uid: 8235 + - uid: 11297 components: - type: Transform - pos: 48.5,7.5 + rot: 3.141592653589793 rad + pos: -10.5,-45.5 parent: 2 - - uid: 8237 + - uid: 11332 components: - type: Transform - pos: 50.5,8.5 + rot: 3.141592653589793 rad + pos: -10.5,-47.5 parent: 2 - - uid: 8240 + - uid: 11455 components: - type: Transform - pos: 49.5,8.5 + rot: 3.141592653589793 rad + pos: -19.5,-45.5 parent: 2 - - uid: 8257 + - uid: 11498 components: - type: Transform - pos: -20.5,17.5 + rot: 3.141592653589793 rad + pos: -31.5,-70.5 parent: 2 - - uid: 8262 + - uid: 11572 components: - type: Transform - pos: 44.5,6.5 + rot: 3.141592653589793 rad + pos: -36.5,-70.5 parent: 2 - - uid: 8271 + - uid: 11620 components: - type: Transform - pos: 27.5,-49.5 + rot: 3.141592653589793 rad + pos: -36.5,-66.5 parent: 2 - - uid: 8273 + - uid: 11622 components: - type: Transform - pos: 26.5,-49.5 + rot: 3.141592653589793 rad + pos: -46.5,-24.5 parent: 2 - - uid: 8276 + - uid: 11629 components: - type: Transform - pos: 26.5,-52.5 + rot: 3.141592653589793 rad + pos: -25.5,-17.5 parent: 2 - - uid: 8277 + - uid: 11825 components: - type: Transform - pos: -42.5,-32.5 + rot: 3.141592653589793 rad + pos: -36.5,-81.5 parent: 2 - - uid: 8318 + - uid: 11875 components: - type: Transform - pos: 27.5,20.5 + pos: 79.5,-54.5 parent: 2 - - uid: 8360 + - uid: 11879 components: - type: Transform - pos: 5.5,-13.5 + pos: 42.5,-49.5 parent: 2 - - uid: 8368 + - uid: 11880 components: - type: Transform - pos: -39.5,-56.5 + pos: 49.5,-90.5 parent: 2 - - uid: 8392 + - uid: 11881 components: - type: Transform - pos: 5.5,-24.5 + pos: 56.5,-48.5 parent: 2 - - uid: 8395 + - uid: 11882 components: - type: Transform - pos: -48.5,-32.5 + pos: 54.5,-56.5 parent: 2 - - uid: 8399 + - uid: 11883 components: - type: Transform - pos: 4.5,-24.5 + pos: 45.5,-90.5 parent: 2 - - uid: 8400 + - uid: 11884 components: - type: Transform - pos: 44.5,-17.5 + pos: 42.5,-47.5 parent: 2 - - uid: 8403 + - uid: 11887 components: - type: Transform - pos: -45.5,-48.5 + pos: 40.5,-64.5 parent: 2 - - uid: 8404 + - uid: 11890 components: - type: Transform - pos: 43.5,-26.5 + pos: 51.5,-43.5 parent: 2 - - uid: 8408 + - uid: 11903 components: - type: Transform - pos: 4.5,-17.5 + rot: 3.141592653589793 rad + pos: -30.5,-39.5 parent: 2 - - uid: 8415 + - uid: 11927 components: - type: Transform - pos: -53.5,-30.5 + pos: 38.5,-65.5 parent: 2 - - uid: 8417 + - uid: 11938 components: - type: Transform - pos: -49.5,-34.5 + pos: 54.5,-48.5 parent: 2 - - uid: 8446 + - uid: 11965 components: - type: Transform - pos: -35.5,10.5 + rot: 3.141592653589793 rad + pos: -29.5,-57.5 parent: 2 - - uid: 8461 + - uid: 12004 components: - type: Transform - pos: -34.5,6.5 + rot: 3.141592653589793 rad + pos: -28.5,-56.5 parent: 2 - - uid: 8470 + - uid: 12069 components: - type: Transform - pos: -46.5,-44.5 + pos: 51.5,-71.5 parent: 2 - - uid: 8471 + - uid: 12118 components: - type: Transform - pos: -53.5,-43.5 + pos: 32.5,-50.5 parent: 2 - - uid: 8475 + - uid: 12127 components: - type: Transform - pos: -48.5,-39.5 + pos: -19.5,3.5 parent: 2 - - uid: 8476 + - uid: 12207 components: - type: Transform - pos: -48.5,-40.5 + rot: 3.141592653589793 rad + pos: -36.5,-65.5 parent: 2 - - uid: 8477 + - uid: 12227 components: - type: Transform - pos: -53.5,-42.5 + rot: 3.141592653589793 rad + pos: -28.5,-65.5 parent: 2 - - uid: 8486 + - uid: 12240 components: - type: Transform - pos: -49.5,-14.5 + rot: 3.141592653589793 rad + pos: -37.5,-13.5 parent: 2 - - uid: 8503 + - uid: 12315 components: - type: Transform - pos: 5.5,-16.5 + rot: 3.141592653589793 rad + pos: -35.5,-12.5 parent: 2 - - uid: 8679 + - uid: 12316 components: - type: Transform - pos: 16.5,16.5 + rot: 3.141592653589793 rad + pos: -37.5,-16.5 parent: 2 - - uid: 8746 + - uid: 12317 components: - type: Transform - pos: 49.5,-34.5 + rot: 3.141592653589793 rad + pos: -31.5,-81.5 parent: 2 - - uid: 8748 + - uid: 12318 components: - type: Transform - pos: 53.5,-35.5 + rot: 3.141592653589793 rad + pos: -35.5,-81.5 parent: 2 - - uid: 8772 + - uid: 12321 components: - type: Transform - pos: -42.5,-20.5 + pos: -37.5,5.5 parent: 2 - - uid: 8778 + - uid: 12342 components: - type: Transform - pos: -52.5,-47.5 + rot: 3.141592653589793 rad + pos: -31.5,-82.5 parent: 2 - - uid: 8894 + - uid: 12353 components: - type: Transform - pos: 55.5,-37.5 + pos: 53.5,-58.5 parent: 2 - - uid: 8904 + - uid: 12362 components: - type: Transform - pos: 56.5,-37.5 + rot: 3.141592653589793 rad + pos: -31.5,-59.5 parent: 2 - - uid: 8910 + - uid: 12365 components: - type: Transform - pos: -35.5,-56.5 + pos: 26.5,-59.5 parent: 2 - - uid: 8911 + - uid: 12369 components: - type: Transform - pos: -49.5,-47.5 + pos: 49.5,-70.5 parent: 2 - - uid: 9001 + - uid: 12390 components: - type: Transform - pos: -35.5,8.5 + rot: 3.141592653589793 rad + pos: -25.5,-20.5 parent: 2 - - uid: 9031 + - uid: 12441 components: - type: Transform - pos: -34.5,-57.5 + pos: 53.5,-62.5 parent: 2 - - uid: 9043 + - uid: 12478 components: - type: Transform - pos: -53.5,-47.5 + rot: 3.141592653589793 rad + pos: -59.5,-35.5 parent: 2 - - uid: 9137 + - uid: 12480 components: - type: Transform - pos: -40.5,-27.5 + rot: 3.141592653589793 rad + pos: -61.5,-35.5 parent: 2 - - uid: 9146 + - uid: 12486 components: - type: Transform - pos: -45.5,-24.5 + pos: 50.5,-75.5 parent: 2 - - uid: 9180 + - uid: 12504 components: - type: Transform - pos: -49.5,-39.5 + pos: -19.5,2.5 parent: 2 - - uid: 9253 + - uid: 12555 components: - type: Transform - pos: -45.5,-47.5 + pos: 7.5,5.5 parent: 2 - - uid: 9255 + - uid: 12561 components: - type: Transform - pos: -44.5,-49.5 + pos: 44.5,22.5 parent: 2 - - uid: 9256 + - uid: 12565 components: - type: Transform - pos: 40.5,-19.5 + rot: 3.141592653589793 rad + pos: -28.5,-50.5 parent: 2 - - uid: 9262 + - uid: 12570 components: - type: Transform - pos: 48.5,3.5 + rot: 3.141592653589793 rad + pos: -52.5,-20.5 parent: 2 - - uid: 9279 + - uid: 12601 components: - type: Transform - pos: 43.5,4.5 + pos: 43.5,-76.5 parent: 2 - - uid: 9280 + - uid: 12616 components: - type: Transform - pos: 47.5,3.5 + rot: 3.141592653589793 rad + pos: -36.5,-60.5 parent: 2 - - uid: 9281 + - uid: 12622 components: - type: Transform - pos: 43.5,-1.5 + pos: 4.5,-15.5 parent: 2 - - uid: 9313 + - uid: 12625 components: - type: Transform - pos: 43.5,-18.5 + rot: 3.141592653589793 rad + pos: -47.5,-58.5 parent: 2 - - uid: 9334 + - uid: 12648 components: - type: Transform - pos: 6.5,-8.5 + pos: 49.5,-84.5 parent: 2 - - uid: 9335 + - uid: 12653 components: - type: Transform - pos: 3.5,-11.5 + pos: 60.5,-47.5 parent: 2 - - uid: 9367 + - uid: 12655 components: - type: Transform - pos: -43.5,-52.5 + pos: 43.5,-63.5 parent: 2 - - uid: 9391 + - uid: 12656 components: - type: Transform - pos: -46.5,-52.5 + pos: 37.5,-60.5 parent: 2 - - uid: 9392 + - uid: 12689 components: - type: Transform - pos: -48.5,-53.5 + pos: 13.5,0.5 parent: 2 - - uid: 9395 + - uid: 12690 components: - type: Transform - pos: -42.5,-53.5 + pos: 13.5,-4.5 parent: 2 - - uid: 9398 + - uid: 12691 components: - type: Transform - pos: 25.5,12.5 + rot: 3.141592653589793 rad + pos: -32.5,-13.5 parent: 2 - - uid: 9399 + - uid: 12717 components: - type: Transform - pos: -22.5,-17.5 + rot: 3.141592653589793 rad + pos: -32.5,-12.5 parent: 2 - - uid: 9523 + - uid: 12724 components: - type: Transform - pos: 26.5,13.5 + rot: 3.141592653589793 rad + pos: -62.5,-39.5 parent: 2 - - uid: 9562 + - uid: 12780 components: - type: Transform - pos: -21.5,13.5 + rot: 3.141592653589793 rad + pos: -55.5,-61.5 parent: 2 - - uid: 9569 + - uid: 12811 components: - type: Transform - pos: 0.5,-13.5 + rot: -1.5707963267948966 rad + pos: -0.5,-54.5 parent: 2 - - uid: 9571 + - uid: 12858 components: - type: Transform - pos: 17.5,-29.5 + pos: 44.5,15.5 parent: 2 - - uid: 9617 + - uid: 12859 components: - type: Transform - pos: 54.5,-37.5 + rot: 3.141592653589793 rad + pos: -49.5,-60.5 parent: 2 - - uid: 9624 + - uid: 12902 components: - type: Transform - pos: 24.5,-6.5 + pos: 11.5,-0.5 parent: 2 - - uid: 9629 + - uid: 13123 components: - type: Transform - pos: 21.5,-7.5 + pos: 23.5,-5.5 parent: 2 - - uid: 9661 + - uid: 13141 components: - type: Transform - pos: 20.5,-7.5 + pos: 43.5,-74.5 parent: 2 - - uid: 9662 + - uid: 13157 components: - type: Transform - pos: 20.5,-10.5 + pos: 48.5,22.5 parent: 2 - - uid: 9799 + - uid: 13211 components: - type: Transform - pos: -17.5,14.5 + rot: 3.141592653589793 rad + pos: -51.5,-61.5 parent: 2 - - uid: 9841 + - uid: 13223 components: - type: Transform - pos: 14.5,29.5 + pos: 53.5,-63.5 parent: 2 - - uid: 9856 + - uid: 13224 components: - type: Transform - pos: 21.5,-13.5 + pos: 60.5,-51.5 parent: 2 - - uid: 9858 + - uid: 13227 components: - type: Transform - pos: -13.5,-2.5 + pos: 37.5,-61.5 parent: 2 - - uid: 9899 + - uid: 13229 components: - type: Transform - pos: -14.5,-9.5 + rot: 3.141592653589793 rad + pos: -35.5,-11.5 parent: 2 - - uid: 9934 + - uid: 13250 components: - type: Transform - pos: 25.5,-13.5 + pos: 13.5,2.5 parent: 2 - - uid: 9939 + - uid: 13273 components: - type: Transform - pos: 15.5,29.5 + pos: 20.5,23.5 parent: 2 - - uid: 10002 + - uid: 13407 components: - type: Transform - pos: 57.5,-41.5 + rot: 3.141592653589793 rad + pos: -43.5,-58.5 parent: 2 - - uid: 10004 + - uid: 13409 components: - type: Transform - pos: 58.5,-43.5 + rot: 3.141592653589793 rad + pos: -46.5,-58.5 parent: 2 - - uid: 10023 + - uid: 13650 components: - type: Transform - pos: -14.5,-17.5 + rot: 3.141592653589793 rad + pos: -23.5,-56.5 parent: 2 - - uid: 10055 + - uid: 13667 components: - type: Transform - pos: -13.5,-5.5 + rot: 3.141592653589793 rad + pos: -11.5,-57.5 parent: 2 - - uid: 10175 + - uid: 13671 components: - type: Transform - pos: -28.5,31.5 + rot: 3.141592653589793 rad + pos: -55.5,-57.5 parent: 2 - - uid: 10198 + - uid: 13674 components: - type: Transform - pos: 26.5,-12.5 + rot: 3.141592653589793 rad + pos: -31.5,-17.5 parent: 2 - - uid: 10199 + - uid: 13704 components: - type: Transform - pos: 26.5,-9.5 + rot: 3.141592653589793 rad + pos: -57.5,-24.5 parent: 2 - - uid: 10200 + - uid: 13706 components: - type: Transform - pos: 25.5,-7.5 + rot: 3.141592653589793 rad + pos: -55.5,-24.5 parent: 2 - - uid: 10201 + - uid: 13723 components: - type: Transform - pos: 21.5,-1.5 + rot: 3.141592653589793 rad + pos: -56.5,-21.5 parent: 2 - - uid: 10202 + - uid: 13724 components: - type: Transform - pos: 26.5,-1.5 + rot: 3.141592653589793 rad + pos: -56.5,-22.5 parent: 2 - - uid: 10241 + - uid: 13725 components: - type: Transform - pos: -48.5,-10.5 + rot: 3.141592653589793 rad + pos: -53.5,-47.5 parent: 2 - - uid: 10263 + - uid: 13773 components: - type: Transform - pos: -14.5,-21.5 + rot: 3.141592653589793 rad + pos: -50.5,-60.5 parent: 2 - - uid: 10535 + - uid: 13813 components: - type: Transform - pos: -14.5,-5.5 + rot: 3.141592653589793 rad + pos: -54.5,-50.5 parent: 2 - - uid: 10705 + - uid: 13866 components: - type: Transform - pos: 43.5,-25.5 + pos: 10.5,-13.5 parent: 2 - - uid: 10708 + - uid: 13867 components: - type: Transform - pos: 40.5,-25.5 + pos: 14.5,-2.5 parent: 2 - - uid: 10715 + - uid: 13887 components: - type: Transform - pos: -28.5,28.5 + rot: 3.141592653589793 rad + pos: -32.5,-30.5 parent: 2 - - uid: 10777 + - uid: 13890 components: - type: Transform - pos: -26.5,37.5 + rot: 3.141592653589793 rad + pos: -59.5,-57.5 parent: 2 - - uid: 10885 + - uid: 13900 components: - type: Transform - pos: 84.5,-38.5 + rot: 3.141592653589793 rad + pos: -62.5,-60.5 parent: 2 - - uid: 10978 + - uid: 13901 components: - type: Transform - pos: -20.5,40.5 + rot: 3.141592653589793 rad + pos: -29.5,-20.5 parent: 2 - - uid: 10993 + - uid: 13903 components: - type: Transform - pos: 19.5,-6.5 + rot: 3.141592653589793 rad + pos: -36.5,-39.5 parent: 2 - - uid: 11017 + - uid: 13907 components: - type: Transform - pos: 40.5,-23.5 + rot: 3.141592653589793 rad + pos: -25.5,-34.5 parent: 2 - - uid: 11018 + - uid: 13908 components: - type: Transform - pos: 56.5,-23.5 + rot: 3.141592653589793 rad + pos: -62.5,-58.5 parent: 2 - - uid: 11021 + - uid: 13914 components: - type: Transform - pos: 54.5,-27.5 + rot: 3.141592653589793 rad + pos: -40.5,-39.5 parent: 2 - - uid: 11022 + - uid: 13922 components: - type: Transform - pos: 54.5,-15.5 + rot: 3.141592653589793 rad + pos: -35.5,-21.5 parent: 2 - - uid: 11023 + - uid: 13975 components: - type: Transform - pos: 55.5,-19.5 + rot: 3.141592653589793 rad + pos: -59.5,-60.5 parent: 2 - - uid: 11033 + - uid: 14094 components: - type: Transform - pos: 50.5,-27.5 + rot: 3.141592653589793 rad + pos: -31.5,-21.5 parent: 2 - - uid: 11038 + - uid: 14095 components: - type: Transform - pos: 49.5,-29.5 + rot: 3.141592653589793 rad + pos: -52.5,-24.5 parent: 2 - - uid: 11039 + - uid: 14098 components: - type: Transform - pos: 50.5,-32.5 + rot: 3.141592653589793 rad + pos: -36.5,-59.5 parent: 2 - - uid: 11040 + - uid: 14099 components: - type: Transform - pos: 50.5,-29.5 + rot: 3.141592653589793 rad + pos: -53.5,-36.5 parent: 2 - - uid: 11041 + - uid: 14100 components: - type: Transform - pos: 2.5,-23.5 + rot: 3.141592653589793 rad + pos: -50.5,-39.5 parent: 2 - - uid: 11042 + - uid: 14101 components: - type: Transform - pos: 50.5,-14.5 + rot: 3.141592653589793 rad + pos: -51.5,-39.5 parent: 2 - - uid: 11047 + - uid: 14102 components: - type: Transform - pos: 52.5,-14.5 + rot: 3.141592653589793 rad + pos: -46.5,-20.5 parent: 2 - - uid: 11059 + - uid: 14104 components: - type: Transform - pos: 19.5,-1.5 + rot: 3.141592653589793 rad + pos: -39.5,-18.5 parent: 2 - - uid: 11061 + - uid: 14131 components: - type: Transform - pos: 0.5,-14.5 + rot: 3.141592653589793 rad + pos: -53.5,-37.5 parent: 2 - - uid: 11165 + - uid: 14132 components: - type: Transform - pos: -12.5,37.5 + rot: 3.141592653589793 rad + pos: -54.5,-39.5 parent: 2 - - uid: 11875 + - uid: 14133 components: - type: Transform - pos: 79.5,-54.5 + rot: 3.141592653589793 rad + pos: -52.5,-27.5 parent: 2 - - uid: 11879 + - uid: 14137 components: - type: Transform - pos: 42.5,-49.5 + rot: 3.141592653589793 rad + pos: -52.5,-32.5 parent: 2 - - uid: 11880 + - uid: 14150 components: - type: Transform - pos: 49.5,-90.5 + rot: 3.141592653589793 rad + pos: -52.5,-26.5 parent: 2 - - uid: 11881 + - uid: 14151 components: - type: Transform - pos: 56.5,-48.5 + rot: 3.141592653589793 rad + pos: -56.5,-32.5 parent: 2 - - uid: 11882 + - uid: 14279 components: - type: Transform - pos: 54.5,-56.5 + rot: 3.141592653589793 rad + pos: -56.5,-27.5 parent: 2 - - uid: 11883 + - uid: 14280 components: - type: Transform - pos: 45.5,-90.5 + rot: 3.141592653589793 rad + pos: -57.5,-20.5 parent: 2 - - uid: 11884 + - uid: 14365 components: - type: Transform - pos: 42.5,-47.5 + rot: 3.141592653589793 rad + pos: -51.5,-42.5 parent: 2 - - uid: 11887 + - uid: 14399 components: - type: Transform - pos: 40.5,-64.5 + rot: 3.141592653589793 rad + pos: -51.5,-45.5 parent: 2 - - uid: 11890 + - uid: 14413 components: - type: Transform - pos: 51.5,-43.5 + pos: 13.5,-5.5 parent: 2 - - uid: 11927 + - uid: 14481 components: - type: Transform - pos: 38.5,-65.5 + pos: 47.5,-42.5 parent: 2 - - uid: 11938 + - uid: 14514 components: - type: Transform - pos: 54.5,-48.5 + pos: 43.5,-41.5 parent: 2 - - uid: 12069 + - uid: 14525 components: - type: Transform - pos: 51.5,-71.5 + pos: 80.5,-16.5 parent: 2 - - uid: 12118 + - uid: 14744 components: - type: Transform - pos: 32.5,-50.5 + pos: 22.5,-9.5 parent: 2 - - uid: 12127 + - uid: 14811 components: - type: Transform - pos: -19.5,3.5 + rot: 3.141592653589793 rad + pos: -43.5,-44.5 parent: 2 - - uid: 12133 + - uid: 14816 components: - type: Transform - pos: -52.5,-44.5 + rot: 3.141592653589793 rad + pos: -43.5,-43.5 parent: 2 - - uid: 12321 + - uid: 14906 components: - type: Transform - pos: -37.5,5.5 + rot: 3.141592653589793 rad + pos: -43.5,-47.5 parent: 2 - - uid: 12353 + - uid: 14908 components: - type: Transform - pos: 53.5,-58.5 + pos: 12.5,-7.5 parent: 2 - - uid: 12365 + - uid: 14917 components: - type: Transform - pos: 26.5,-59.5 + rot: 3.141592653589793 rad + pos: -48.5,-47.5 parent: 2 - - uid: 12369 + - uid: 14922 components: - type: Transform - pos: 49.5,-70.5 + rot: 3.141592653589793 rad + pos: -47.5,-47.5 parent: 2 - - uid: 12441 + - uid: 14932 components: - type: Transform - pos: 53.5,-62.5 + rot: 3.141592653589793 rad + pos: -50.5,-46.5 parent: 2 - - uid: 12486 + - uid: 14942 components: - type: Transform - pos: 50.5,-75.5 + pos: 13.5,-7.5 parent: 2 - - uid: 12504 + - uid: 14953 components: - type: Transform - pos: -19.5,2.5 + pos: 33.5,23.5 parent: 2 - - uid: 12601 + - uid: 14957 components: - type: Transform - pos: 43.5,-76.5 + pos: 9.5,-13.5 parent: 2 - - uid: 12648 + - uid: 15015 components: - type: Transform - pos: 49.5,-84.5 + rot: -1.5707963267948966 rad + pos: 4.5,-54.5 parent: 2 - - uid: 12653 + - uid: 15023 components: - type: Transform - pos: 60.5,-47.5 + pos: 7.5,-14.5 parent: 2 - - uid: 12655 + - uid: 15028 components: - type: Transform - pos: 43.5,-63.5 + pos: 45.5,18.5 parent: 2 - - uid: 12656 + - uid: 15142 components: - type: Transform - pos: 37.5,-60.5 + rot: 3.141592653589793 rad + pos: -40.5,-42.5 parent: 2 - - uid: 13141 + - uid: 15204 components: - type: Transform - pos: 43.5,-74.5 + rot: 3.141592653589793 rad + pos: -31.5,-26.5 parent: 2 - - uid: 13223 + - uid: 15265 components: - type: Transform - pos: 53.5,-63.5 + pos: -30.5,-2.5 parent: 2 - - uid: 13224 + - uid: 15307 components: - type: Transform - pos: 60.5,-51.5 + pos: 48.5,18.5 parent: 2 - - uid: 13227 + - uid: 15312 components: - type: Transform - pos: 37.5,-61.5 + pos: 11.5,-11.5 parent: 2 - - uid: 14427 + - uid: 15316 components: - type: Transform - pos: -30.5,0.5 + pos: -30.5,1.5 parent: 2 - - uid: 14441 + - uid: 15444 components: - type: Transform - pos: -43.5,-35.5 + rot: 3.141592653589793 rad + pos: -62.5,-36.5 parent: 2 - - uid: 14481 + - uid: 15445 components: - type: Transform - pos: 47.5,-42.5 + rot: 3.141592653589793 rad + pos: -62.5,-38.5 parent: 2 - - uid: 14514 + - uid: 15446 components: - type: Transform - pos: 43.5,-41.5 + rot: 3.141592653589793 rad + pos: -62.5,-35.5 parent: 2 - - uid: 14525 + - uid: 15447 components: - type: Transform - pos: 80.5,-16.5 + rot: 3.141592653589793 rad + pos: -11.5,-52.5 parent: 2 - - uid: 14816 + - uid: 15448 components: - type: Transform - pos: 34.5,10.5 + rot: 3.141592653589793 rad + pos: -62.5,-57.5 parent: 2 - - uid: 15265 + - uid: 15449 components: - type: Transform - pos: -30.5,-2.5 + rot: 3.141592653589793 rad + pos: -54.5,-57.5 parent: 2 - - uid: 15316 + - uid: 15450 components: - type: Transform - pos: -30.5,1.5 + rot: 3.141592653589793 rad + pos: -54.5,-49.5 parent: 2 - - uid: 15476 + - uid: 15457 components: - type: Transform - pos: -58.5,-14.5 + rot: 3.141592653589793 rad + pos: -64.5,-59.5 parent: 2 - - uid: 15735 + - uid: 15476 components: - type: Transform - pos: -36.5,-59.5 + pos: -58.5,-14.5 parent: 2 - - uid: 15736 + - uid: 15768 components: - type: Transform - pos: -37.5,-59.5 + pos: 11.5,-15.5 parent: 2 - uid: 15884 components: @@ -127899,6 +140156,11 @@ entities: - type: Transform pos: 56.5,-65.5 parent: 2 + - uid: 16233 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 - uid: 16234 components: - type: Transform @@ -127909,6 +140171,16 @@ entities: - type: Transform pos: -59.5,-16.5 parent: 2 + - uid: 16308 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 16313 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 - uid: 16451 components: - type: Transform @@ -127929,11 +140201,6 @@ entities: - type: Transform pos: 56.5,-63.5 parent: 2 - - uid: 16884 - components: - - type: Transform - pos: -27.5,-12.5 - parent: 2 - uid: 16996 components: - type: Transform @@ -127954,6 +140221,11 @@ entities: - type: Transform pos: -42.5,-2.5 parent: 2 + - uid: 17527 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 - uid: 17718 components: - type: Transform @@ -127999,21 +140271,11 @@ entities: - type: Transform pos: 66.5,-37.5 parent: 2 - - uid: 17975 - components: - - type: Transform - pos: 37.5,10.5 - parent: 2 - uid: 18196 components: - type: Transform pos: 95.5,-16.5 parent: 2 - - uid: 18386 - components: - - type: Transform - pos: -33.5,-2.5 - parent: 2 - uid: 18470 components: - type: Transform @@ -128079,15 +140341,165 @@ entities: - type: Transform pos: 39.5,-78.5 parent: 2 + - uid: 20541 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 20556 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 20636 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 - uid: 20656 components: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 20673 + - uid: 21355 components: - type: Transform - pos: -36.5,11.5 + pos: 14.5,4.5 + parent: 2 + - uid: 21363 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 21365 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 21370 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 21450 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 21458 + components: + - type: Transform + pos: 42.5,16.5 + parent: 2 + - uid: 21673 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 21738 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 21784 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - uid: 21803 + components: + - type: Transform + pos: 36.5,26.5 + parent: 2 + - uid: 21852 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 21860 + components: + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 21868 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 21871 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 21878 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 21892 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 21894 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 21910 + components: + - type: Transform + pos: 48.5,23.5 + parent: 2 + - uid: 21914 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 21960 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 22010 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 22016 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 22017 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 22021 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 22027 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 22119 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 22127 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 + - uid: 22134 + components: + - type: Transform + pos: 43.5,13.5 parent: 2 - proto: WallSolid entities: @@ -128111,16 +140523,26 @@ entities: - type: Transform pos: -15.5,21.5 parent: 2 - - uid: 112 + - uid: 116 components: - type: Transform - pos: 13.5,14.5 + pos: 19.5,-12.5 parent: 2 - uid: 120 components: - type: Transform pos: -22.5,-6.5 parent: 2 + - uid: 130 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 - uid: 205 components: - type: Transform @@ -128131,15 +140553,10 @@ entities: - type: Transform pos: 47.5,-50.5 parent: 2 - - uid: 236 - components: - - type: Transform - pos: 2.5,-43.5 - parent: 2 - - uid: 272 + - uid: 257 components: - type: Transform - pos: 48.5,-10.5 + pos: -37.5,-34.5 parent: 2 - uid: 305 components: @@ -128151,25 +140568,25 @@ entities: - type: Transform pos: 6.5,-40.5 parent: 2 - - uid: 337 + - uid: 320 components: - type: Transform - pos: 7.5,-43.5 + pos: -8.5,-87.5 parent: 2 - - uid: 338 + - uid: 334 components: - type: Transform - pos: -31.5,-36.5 + pos: 0.5,-43.5 parent: 2 - - uid: 345 + - uid: 350 components: - type: Transform - pos: 47.5,-14.5 + pos: 5.5,-29.5 parent: 2 - - uid: 350 + - uid: 381 components: - type: Transform - pos: 5.5,-29.5 + pos: -26.5,-35.5 parent: 2 - uid: 383 components: @@ -128181,31 +140598,51 @@ entities: - type: Transform pos: -23.5,12.5 parent: 2 + - uid: 482 + components: + - type: Transform + pos: 22.5,-1.5 + parent: 2 - uid: 542 components: - type: Transform pos: 67.5,-58.5 parent: 2 - - uid: 590 + - uid: 548 components: - type: Transform - pos: 8.5,-37.5 + pos: 23.5,-1.5 parent: 2 - - uid: 610 + - uid: 549 components: - type: Transform - pos: 6.5,-35.5 + pos: -23.5,14.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 8.5,-37.5 parent: 2 - uid: 611 components: - type: Transform pos: -21.5,21.5 parent: 2 + - uid: 620 + components: + - type: Transform + pos: -50.5,-31.5 + parent: 2 - uid: 622 components: - type: Transform pos: 7.5,-35.5 parent: 2 + - uid: 624 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 - uid: 644 components: - type: Transform @@ -128216,6 +140653,16 @@ entities: - type: Transform pos: -17.5,21.5 parent: 2 + - uid: 766 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: -41.5,-56.5 + parent: 2 - uid: 870 components: - type: Transform @@ -128231,30 +140678,25 @@ entities: - type: Transform pos: -9.5,21.5 parent: 2 - - uid: 957 + - uid: 935 components: - type: Transform - pos: -12.5,20.5 + pos: 30.5,23.5 parent: 2 - - uid: 958 + - uid: 957 components: - type: Transform - pos: 15.5,-17.5 + pos: -12.5,20.5 parent: 2 - uid: 978 components: - type: Transform pos: 10.5,22.5 parent: 2 - - uid: 1009 - components: - - type: Transform - pos: 14.5,14.5 - parent: 2 - - uid: 1088 + - uid: 996 components: - type: Transform - pos: 20.5,-58.5 + pos: 35.5,14.5 parent: 2 - uid: 1129 components: @@ -128266,10 +140708,10 @@ entities: - type: Transform pos: 13.5,18.5 parent: 2 - - uid: 1318 + - uid: 1302 components: - type: Transform - pos: 14.5,13.5 + pos: 30.5,19.5 parent: 2 - uid: 1392 components: @@ -128281,15 +140723,15 @@ entities: - type: Transform pos: -14.5,18.5 parent: 2 - - uid: 1395 + - uid: 1397 components: - type: Transform - pos: -15.5,18.5 + pos: -12.5,18.5 parent: 2 - - uid: 1397 + - uid: 1412 components: - type: Transform - pos: -12.5,18.5 + pos: -6.5,-12.5 parent: 2 - uid: 1481 components: @@ -128321,11 +140763,6 @@ entities: - type: Transform pos: 49.5,-43.5 parent: 2 - - uid: 1665 - components: - - type: Transform - pos: 34.5,-2.5 - parent: 2 - uid: 1668 components: - type: Transform @@ -128336,15 +140773,20 @@ entities: - type: Transform pos: 31.5,-29.5 parent: 2 - - uid: 1699 + - uid: 1677 components: - type: Transform - pos: -25.5,-39.5 + pos: -42.5,-53.5 parent: 2 - - uid: 1708 + - uid: 1680 components: - type: Transform - pos: -31.5,-51.5 + pos: 23.5,-39.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 24.5,9.5 parent: 2 - uid: 1714 components: @@ -128356,16 +140798,32 @@ entities: - type: Transform pos: -21.5,-28.5 parent: 2 - - uid: 1760 + - uid: 1783 components: - type: Transform - pos: -42.5,-37.5 + pos: 30.5,16.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-44.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: -50.5,-50.5 parent: 2 - uid: 1869 components: - type: Transform pos: 43.5,-5.5 parent: 2 + - uid: 1893 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 - uid: 1901 components: - type: Transform @@ -128376,6 +140834,11 @@ entities: - type: Transform pos: -10.5,-5.5 parent: 2 + - uid: 2063 + components: + - type: Transform + pos: 15.5,-4.5 + parent: 2 - uid: 2072 components: - type: Transform @@ -128411,20 +140874,15 @@ entities: - type: Transform pos: 13.5,17.5 parent: 2 - - uid: 2179 - components: - - type: Transform - pos: 15.5,-49.5 - parent: 2 - - uid: 2205 + - uid: 2174 components: - type: Transform - pos: -12.5,-30.5 + pos: 23.5,-0.5 parent: 2 - - uid: 2206 + - uid: 2179 components: - type: Transform - pos: -6.5,-46.5 + pos: 15.5,-49.5 parent: 2 - uid: 2216 components: @@ -128441,6 +140899,11 @@ entities: - type: Transform pos: 44.5,-33.5 parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 2 - uid: 2307 components: - type: Transform @@ -128481,11 +140944,6 @@ entities: - type: Transform pos: -20.5,21.5 parent: 2 - - uid: 2431 - components: - - type: Transform - pos: -2.5,-46.5 - parent: 2 - uid: 2438 components: - type: Transform @@ -128501,21 +140959,6 @@ entities: - type: Transform pos: 12.5,-49.5 parent: 2 - - uid: 2544 - components: - - type: Transform - pos: 35.5,-5.5 - parent: 2 - - uid: 2569 - components: - - type: Transform - pos: -6.5,-56.5 - parent: 2 - - uid: 2584 - components: - - type: Transform - pos: -6.5,-55.5 - parent: 2 - uid: 2606 components: - type: Transform @@ -128526,26 +140969,16 @@ entities: - type: Transform pos: -6.5,-29.5 parent: 2 - - uid: 2680 + - uid: 2682 components: - type: Transform - pos: -3.5,-46.5 + pos: 23.5,-45.5 parent: 2 - uid: 2687 components: - type: Transform pos: 2.5,-32.5 parent: 2 - - uid: 2695 - components: - - type: Transform - pos: -31.5,-50.5 - parent: 2 - - uid: 2703 - components: - - type: Transform - pos: -0.5,-43.5 - parent: 2 - uid: 2710 components: - type: Transform @@ -128591,11 +141024,6 @@ entities: - type: Transform pos: -12.5,-16.5 parent: 2 - - uid: 2961 - components: - - type: Transform - pos: 17.5,-5.5 - parent: 2 - uid: 2983 components: - type: Transform @@ -128606,15 +141034,10 @@ entities: - type: Transform pos: -24.5,19.5 parent: 2 - - uid: 3033 - components: - - type: Transform - pos: -44.5,-44.5 - parent: 2 - - uid: 3058 + - uid: 3030 components: - type: Transform - pos: 12.5,-10.5 + pos: 1.5,-16.5 parent: 2 - uid: 3067 components: @@ -128646,11 +141069,6 @@ entities: - type: Transform pos: -18.5,-49.5 parent: 2 - - uid: 3099 - components: - - type: Transform - pos: 13.5,-10.5 - parent: 2 - uid: 3160 components: - type: Transform @@ -128661,21 +141079,11 @@ entities: - type: Transform pos: 61.5,-74.5 parent: 2 - - uid: 3172 - components: - - type: Transform - pos: -4.5,-46.5 - parent: 2 - uid: 3177 components: - type: Transform pos: -10.5,-33.5 parent: 2 - - uid: 3192 - components: - - type: Transform - pos: -31.5,-56.5 - parent: 2 - uid: 3207 components: - type: Transform @@ -128716,11 +141124,6 @@ entities: - type: Transform pos: -16.5,-28.5 parent: 2 - - uid: 3294 - components: - - type: Transform - pos: -5.5,-46.5 - parent: 2 - uid: 3298 components: - type: Transform @@ -128731,11 +141134,6 @@ entities: - type: Transform pos: -16.5,-31.5 parent: 2 - - uid: 3300 - components: - - type: Transform - pos: -17.5,-31.5 - parent: 2 - uid: 3302 components: - type: Transform @@ -128756,11 +141154,6 @@ entities: - type: Transform pos: -14.5,-36.5 parent: 2 - - uid: 3309 - components: - - type: Transform - pos: -16.5,-36.5 - parent: 2 - uid: 3310 components: - type: Transform @@ -128771,11 +141164,6 @@ entities: - type: Transform pos: -12.5,-34.5 parent: 2 - - uid: 3323 - components: - - type: Transform - pos: -18.5,-31.5 - parent: 2 - uid: 3324 components: - type: Transform @@ -128801,15 +141189,15 @@ entities: - type: Transform pos: -20.5,-21.5 parent: 2 - - uid: 3376 + - uid: 3355 components: - type: Transform - pos: 15.5,-13.5 + pos: 22.5,-17.5 parent: 2 - - uid: 3400 + - uid: 3404 components: - type: Transform - pos: 15.5,-9.5 + pos: 14.5,-7.5 parent: 2 - uid: 3409 components: @@ -128891,41 +141279,6 @@ entities: - type: Transform pos: -1.5,-42.5 parent: 2 - - uid: 3530 - components: - - type: Transform - pos: 1.5,-46.5 - parent: 2 - - uid: 3531 - components: - - type: Transform - pos: 0.5,-46.5 - parent: 2 - - uid: 3532 - components: - - type: Transform - pos: -0.5,-46.5 - parent: 2 - - uid: 3573 - components: - - type: Transform - pos: 20.5,9.5 - parent: 2 - - uid: 3597 - components: - - type: Transform - pos: 38.5,7.5 - parent: 2 - - uid: 3634 - components: - - type: Transform - pos: -6.5,-45.5 - parent: 2 - - uid: 3638 - components: - - type: Transform - pos: -1.5,-46.5 - parent: 2 - uid: 3663 components: - type: Transform @@ -128936,6 +141289,11 @@ entities: - type: Transform pos: 6.5,-37.5 parent: 2 + - uid: 3696 + components: + - type: Transform + pos: 15.5,-55.5 + parent: 2 - uid: 3729 components: - type: Transform @@ -128946,11 +141304,6 @@ entities: - type: Transform pos: 13.5,-40.5 parent: 2 - - uid: 3744 - components: - - type: Transform - pos: 14.5,-41.5 - parent: 2 - uid: 3750 components: - type: Transform @@ -128981,26 +141334,6 @@ entities: - type: Transform pos: 18.5,-34.5 parent: 2 - - uid: 3787 - components: - - type: Transform - pos: 18.5,-41.5 - parent: 2 - - uid: 3791 - components: - - type: Transform - pos: 6.5,-46.5 - parent: 2 - - uid: 3802 - components: - - type: Transform - pos: -31.5,-38.5 - parent: 2 - - uid: 3812 - components: - - type: Transform - pos: 23.5,-38.5 - parent: 2 - uid: 3813 components: - type: Transform @@ -129011,41 +141344,11 @@ entities: - type: Transform pos: 21.5,-38.5 parent: 2 - - uid: 3815 - components: - - type: Transform - pos: 21.5,-39.5 - parent: 2 - - uid: 3817 - components: - - type: Transform - pos: 21.5,-41.5 - parent: 2 - - uid: 3818 - components: - - type: Transform - pos: 20.5,-41.5 - parent: 2 - - uid: 3819 - components: - - type: Transform - pos: 19.5,-41.5 - parent: 2 - uid: 3834 components: - type: Transform pos: 12.5,-45.5 parent: 2 - - uid: 3838 - components: - - type: Transform - pos: 16.5,-45.5 - parent: 2 - - uid: 3839 - components: - - type: Transform - pos: 17.5,-45.5 - parent: 2 - uid: 3840 components: - type: Transform @@ -129081,20 +141384,15 @@ entities: - type: Transform pos: -11.5,-43.5 parent: 2 - - uid: 3874 - components: - - type: Transform - pos: -26.5,-37.5 - parent: 2 - - uid: 3947 + - uid: 3876 components: - type: Transform - pos: 20.5,6.5 + pos: -53.5,-56.5 parent: 2 - - uid: 3999 + - uid: 3983 components: - type: Transform - pos: -25.5,-24.5 + pos: -50.5,-53.5 parent: 2 - uid: 4004 components: @@ -129121,6 +141419,11 @@ entities: - type: Transform pos: -0.5,-30.5 parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 - uid: 4046 components: - type: Transform @@ -129131,20 +141434,15 @@ entities: - type: Transform pos: -21.5,-26.5 parent: 2 - - uid: 4104 - components: - - type: Transform - pos: -32.5,-39.5 - parent: 2 - - uid: 4109 + - uid: 4061 components: - type: Transform - pos: -34.5,-39.5 + pos: 29.5,-0.5 parent: 2 - - uid: 4141 + - uid: 4098 components: - type: Transform - pos: 8.5,-43.5 + pos: 22.5,8.5 parent: 2 - uid: 4173 components: @@ -129201,11 +141499,6 @@ entities: - type: Transform pos: 30.5,-40.5 parent: 2 - - uid: 4355 - components: - - type: Transform - pos: 2.5,-46.5 - parent: 2 - uid: 4441 components: - type: Transform @@ -129221,231 +141514,46 @@ entities: - type: Transform pos: 32.5,-39.5 parent: 2 - - uid: 4474 + - uid: 4451 components: - type: Transform - pos: 5.5,-46.5 + pos: 28.5,9.5 parent: 2 - uid: 4481 components: - type: Transform pos: 30.5,-44.5 parent: 2 - - uid: 4506 - components: - - type: Transform - pos: 35.5,-7.5 - parent: 2 - - uid: 4585 - components: - - type: Transform - pos: 4.5,-46.5 - parent: 2 - - uid: 4587 - components: - - type: Transform - pos: 8.5,-46.5 - parent: 2 - - uid: 4598 - components: - - type: Transform - pos: 35.5,-6.5 - parent: 2 - uid: 4642 components: - type: Transform pos: 8.5,-40.5 parent: 2 - - uid: 4664 - components: - - type: Transform - pos: 4.5,-43.5 - parent: 2 - - uid: 4672 - components: - - type: Transform - pos: -25.5,-21.5 - parent: 2 - - uid: 4683 - components: - - type: Transform - pos: -26.5,-24.5 - parent: 2 - - uid: 4689 - components: - - type: Transform - pos: 4.5,-45.5 - parent: 2 - - uid: 4690 - components: - - type: Transform - pos: -26.5,-35.5 - parent: 2 - - uid: 4691 - components: - - type: Transform - pos: -31.5,-32.5 - parent: 2 - - uid: 4692 - components: - - type: Transform - pos: 4.5,-41.5 - parent: 2 - - uid: 4693 - components: - - type: Transform - pos: 4.5,-39.5 - parent: 2 - - uid: 4700 - components: - - type: Transform - pos: -31.5,-27.5 - parent: 2 - uid: 4703 components: - type: Transform pos: 68.5,-66.5 parent: 2 - - uid: 4705 - components: - - type: Transform - pos: -27.5,-39.5 - parent: 2 - - uid: 4706 - components: - - type: Transform - pos: -28.5,-39.5 - parent: 2 - - uid: 4727 - components: - - type: Transform - pos: -32.5,-28.5 - parent: 2 - - uid: 4729 - components: - - type: Transform - pos: -33.5,-28.5 - parent: 2 - uid: 4737 components: - type: Transform pos: 61.5,-76.5 parent: 2 - - uid: 4740 - components: - - type: Transform - pos: -31.5,-28.5 - parent: 2 - - uid: 4746 - components: - - type: Transform - pos: -25.5,-25.5 - parent: 2 - - uid: 4747 - components: - - type: Transform - pos: -29.5,-28.5 - parent: 2 - - uid: 4750 - components: - - type: Transform - pos: 7.5,-46.5 - parent: 2 - - uid: 4757 - components: - - type: Transform - pos: -33.5,-27.5 - parent: 2 - - uid: 4758 - components: - - type: Transform - pos: -35.5,-35.5 - parent: 2 - - uid: 4768 - components: - - type: Transform - pos: -35.5,-33.5 - parent: 2 - - uid: 4770 - components: - - type: Transform - pos: -35.5,-38.5 - parent: 2 - - uid: 4780 - components: - - type: Transform - pos: -26.5,-28.5 - parent: 2 - - uid: 4783 - components: - - type: Transform - pos: -33.5,-25.5 - parent: 2 - - uid: 4784 - components: - - type: Transform - pos: -33.5,-26.5 - parent: 2 - - uid: 4795 - components: - - type: Transform - pos: -29.5,-27.5 - parent: 2 - - uid: 4800 - components: - - type: Transform - pos: -25.5,-28.5 - parent: 2 - - uid: 4807 - components: - - type: Transform - pos: -27.5,-24.5 - parent: 2 - - uid: 4808 - components: - - type: Transform - pos: -28.5,-24.5 - parent: 2 - - uid: 4809 - components: - - type: Transform - pos: -29.5,-24.5 - parent: 2 - uid: 4862 components: - type: Transform pos: 71.5,-68.5 parent: 2 - - uid: 4864 - components: - - type: Transform - pos: -6.5,-57.5 - parent: 2 - uid: 4871 components: - type: Transform pos: 8.5,-32.5 parent: 2 - - uid: 4874 - components: - - type: Transform - pos: 4.5,-37.5 - parent: 2 - - uid: 4908 - components: - - type: Transform - pos: -31.5,-24.5 - parent: 2 - uid: 4923 components: - type: Transform pos: 49.5,-37.5 parent: 2 - - uid: 4925 - components: - - type: Transform - pos: 5.5,-35.5 - parent: 2 - uid: 4932 components: - type: Transform @@ -129456,20 +141564,25 @@ entities: - type: Transform pos: 49.5,-38.5 parent: 2 - - uid: 4967 + - uid: 4951 components: - type: Transform - pos: -31.5,-23.5 + pos: -41.5,-33.5 parent: 2 - - uid: 4968 + - uid: 4998 components: - type: Transform - pos: -31.5,-22.5 + pos: -35.5,-56.5 parent: 2 - - uid: 4970 + - uid: 5027 components: - type: Transform - pos: -31.5,-20.5 + pos: -35.5,-55.5 + parent: 2 + - uid: 5029 + components: + - type: Transform + pos: 29.5,3.5 parent: 2 - uid: 5162 components: @@ -129486,6 +141599,16 @@ entities: - type: Transform pos: 7.5,-32.5 parent: 2 + - uid: 5187 + components: + - type: Transform + pos: -35.5,-57.5 + parent: 2 + - uid: 5241 + components: + - type: Transform + pos: -35.5,-53.5 + parent: 2 - uid: 5304 components: - type: Transform @@ -129496,10 +141619,10 @@ entities: - type: Transform pos: 35.5,5.5 parent: 2 - - uid: 5351 + - uid: 5413 components: - type: Transform - pos: 34.5,-5.5 + pos: 22.5,4.5 parent: 2 - uid: 5414 components: @@ -129511,10 +141634,11 @@ entities: - type: Transform pos: 11.5,21.5 parent: 2 - - uid: 5508 + - uid: 5425 components: - type: Transform - pos: -26.5,-38.5 + rot: -1.5707963267948966 rad + pos: 40.5,16.5 parent: 2 - uid: 5513 components: @@ -129531,6 +141655,11 @@ entities: - type: Transform pos: 49.5,-41.5 parent: 2 + - uid: 5580 + components: + - type: Transform + pos: -51.5,-49.5 + parent: 2 - uid: 5585 components: - type: Transform @@ -129561,20 +141690,20 @@ entities: - type: Transform pos: 26.5,-58.5 parent: 2 - - uid: 5657 + - uid: 5668 components: - type: Transform - pos: 26.5,-57.5 + pos: -50.5,-56.5 parent: 2 - - uid: 5691 + - uid: 5688 components: - type: Transform - pos: 26.5,-53.5 + pos: -46.5,-30.5 parent: 2 - - uid: 5708 + - uid: 5691 components: - type: Transform - pos: -26.5,-39.5 + pos: 26.5,-53.5 parent: 2 - uid: 5723 components: @@ -129616,11 +141745,6 @@ entities: - type: Transform pos: 33.5,-16.5 parent: 2 - - uid: 5774 - components: - - type: Transform - pos: -19.5,-31.5 - parent: 2 - uid: 5776 components: - type: Transform @@ -129671,11 +141795,6 @@ entities: - type: Transform pos: -20.5,-31.5 parent: 2 - - uid: 5807 - components: - - type: Transform - pos: 5.5,-43.5 - parent: 2 - uid: 5812 components: - type: Transform @@ -129686,6 +141805,11 @@ entities: - type: Transform pos: 44.5,-6.5 parent: 2 + - uid: 5826 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 - uid: 5830 components: - type: Transform @@ -129701,16 +141825,26 @@ entities: - type: Transform pos: 5.5,-40.5 parent: 2 - - uid: 5866 + - uid: 5875 components: - type: Transform - pos: 7.5,-40.5 + pos: 5.5,-41.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: 5.5,-46.5 parent: 2 - uid: 5885 components: - type: Transform pos: 39.5,1.5 parent: 2 + - uid: 5895 + components: + - type: Transform + pos: 7.5,-43.5 + parent: 2 - uid: 5906 components: - type: Transform @@ -129721,11 +141855,6 @@ entities: - type: Transform pos: 6.5,-29.5 parent: 2 - - uid: 5913 - components: - - type: Transform - pos: 17.5,-6.5 - parent: 2 - uid: 5915 components: - type: Transform @@ -129751,11 +141880,6 @@ entities: - type: Transform pos: 4.5,-33.5 parent: 2 - - uid: 5951 - components: - - type: Transform - pos: 20.5,-45.5 - parent: 2 - uid: 5953 components: - type: Transform @@ -129846,10 +141970,10 @@ entities: - type: Transform pos: 39.5,-9.5 parent: 2 - - uid: 6047 + - uid: 6060 components: - type: Transform - pos: 6.5,-43.5 + pos: 11.5,-2.5 parent: 2 - uid: 6069 components: @@ -129866,16 +141990,6 @@ entities: - type: Transform pos: 33.5,-13.5 parent: 2 - - uid: 6117 - components: - - type: Transform - pos: -25.5,-32.5 - parent: 2 - - uid: 6139 - components: - - type: Transform - pos: -35.5,-41.5 - parent: 2 - uid: 6152 components: - type: Transform @@ -129896,26 +142010,11 @@ entities: - type: Transform pos: 36.5,-0.5 parent: 2 - - uid: 6161 - components: - - type: Transform - pos: 37.5,-0.5 - parent: 2 - uid: 6184 components: - type: Transform pos: 38.5,-0.5 parent: 2 - - uid: 6185 - components: - - type: Transform - pos: 39.5,-0.5 - parent: 2 - - uid: 6186 - components: - - type: Transform - pos: 40.5,-0.5 - parent: 2 - uid: 6193 components: - type: Transform @@ -129926,16 +142025,6 @@ entities: - type: Transform pos: -12.5,-51.5 parent: 2 - - uid: 6221 - components: - - type: Transform - pos: -26.5,-32.5 - parent: 2 - - uid: 6224 - components: - - type: Transform - pos: -25.5,-35.5 - parent: 2 - uid: 6241 components: - type: Transform @@ -129951,14 +142040,15 @@ entities: - type: Transform pos: 49.5,-39.5 parent: 2 - - uid: 6299 + - uid: 6295 components: - type: Transform - pos: 20.5,-44.5 + pos: 6.5,-43.5 parent: 2 - - uid: 6301 + - uid: 6300 components: - type: Transform + rot: -1.5707963267948966 rad pos: 20.5,-42.5 parent: 2 - uid: 6339 @@ -129966,6 +142056,11 @@ entities: - type: Transform pos: 1.5,-30.5 parent: 2 + - uid: 6346 + components: + - type: Transform + pos: 8.5,-46.5 + parent: 2 - uid: 6356 components: - type: Transform @@ -129976,25 +142071,21 @@ entities: - type: Transform pos: -12.5,-49.5 parent: 2 - - uid: 6429 - components: - - type: Transform - pos: 12.5,-55.5 - parent: 2 - - uid: 6468 + - uid: 6365 components: - type: Transform - pos: -29.5,-39.5 + rot: -1.5707963267948966 rad + pos: 20.5,-44.5 parent: 2 - - uid: 6469 + - uid: 6429 components: - type: Transform - pos: -31.5,-39.5 + pos: 12.5,-55.5 parent: 2 - - uid: 6470 + - uid: 6494 components: - type: Transform - pos: -30.5,-39.5 + pos: 25.5,-2.5 parent: 2 - uid: 6495 components: @@ -130011,15 +142102,40 @@ entities: - type: Transform pos: -16.5,-49.5 parent: 2 - - uid: 6541 + - uid: 6517 components: - type: Transform - pos: 23.5,2.5 + pos: 3.5,-42.5 parent: 2 - - uid: 6659 + - uid: 6518 components: - type: Transform - pos: 22.5,-18.5 + pos: 3.5,-46.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 + - uid: 6561 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 6572 + components: + - type: Transform + pos: 17.5,-15.5 parent: 2 - uid: 6680 components: @@ -130056,76 +142172,71 @@ entities: - type: Transform pos: 37.5,-39.5 parent: 2 + - uid: 6840 + components: + - type: Transform + pos: 22.5,-42.5 + parent: 2 - uid: 6842 components: - type: Transform pos: 16.5,-50.5 parent: 2 - - uid: 6922 + - uid: 6929 components: - type: Transform - pos: 17.5,-9.5 + pos: -6.5,-15.5 parent: 2 - - uid: 6951 + - uid: 6974 components: - type: Transform - pos: 21.5,-16.5 + pos: 2.5,-34.5 parent: 2 - - uid: 6954 + - uid: 6988 components: - type: Transform - pos: 21.5,-17.5 + pos: 39.5,-10.5 parent: 2 - - uid: 6966 + - uid: 6992 components: - type: Transform - pos: 26.5,10.5 + pos: -39.5,-51.5 parent: 2 - - uid: 6974 + - uid: 7021 components: - type: Transform - pos: 2.5,-34.5 + pos: -38.5,-56.5 parent: 2 - - uid: 6988 + - uid: 7022 components: - type: Transform - pos: 39.5,-10.5 + pos: -36.5,-56.5 parent: 2 - - uid: 6994 + - uid: 7034 components: - type: Transform - pos: 17.5,-8.5 + pos: -37.5,-56.5 parent: 2 - uid: 7060 components: - type: Transform pos: 48.5,-14.5 parent: 2 - - uid: 7065 - components: - - type: Transform - pos: 29.5,-19.5 - parent: 2 - - uid: 7071 + - uid: 7077 components: - type: Transform - pos: 30.5,9.5 + pos: 48.5,-6.5 parent: 2 - - uid: 7077 + - uid: 7080 components: - type: Transform - pos: 48.5,-6.5 + pos: -42.5,-52.5 parent: 2 - uid: 7086 components: - type: Transform pos: 46.5,-4.5 parent: 2 - - uid: 7087 - components: - - type: Transform - pos: 46.5,-3.5 - parent: 2 - uid: 7098 components: - type: Transform @@ -130146,10 +142257,10 @@ entities: - type: Transform pos: 44.5,-9.5 parent: 2 - - uid: 7199 + - uid: 7174 components: - type: Transform - pos: -35.5,-52.5 + pos: 3.5,-45.5 parent: 2 - uid: 7216 components: @@ -130161,21 +142272,6 @@ entities: - type: Transform pos: 24.5,-18.5 parent: 2 - - uid: 7220 - components: - - type: Transform - pos: 26.5,-19.5 - parent: 2 - - uid: 7221 - components: - - type: Transform - pos: 27.5,-19.5 - parent: 2 - - uid: 7223 - components: - - type: Transform - pos: 25.5,-19.5 - parent: 2 - uid: 7224 components: - type: Transform @@ -130211,11 +142307,6 @@ entities: - type: Transform pos: 40.5,1.5 parent: 2 - - uid: 7286 - components: - - type: Transform - pos: 40.5,0.5 - parent: 2 - uid: 7293 components: - type: Transform @@ -130246,55 +142337,55 @@ entities: - type: Transform pos: 14.5,-52.5 parent: 2 - - uid: 7320 + - uid: 7330 components: - type: Transform - pos: 34.5,5.5 + pos: -39.5,-53.5 parent: 2 - uid: 7403 components: - type: Transform pos: 37.5,5.5 parent: 2 - - uid: 7439 + - uid: 7531 components: - type: Transform - pos: -34.5,-47.5 + pos: -17.5,-44.5 parent: 2 - - uid: 7442 + - uid: 7534 components: - type: Transform - pos: -33.5,-47.5 + pos: -17.5,-43.5 parent: 2 - - uid: 7469 + - uid: 7542 components: - type: Transform - pos: -37.5,-44.5 + pos: -11.5,-44.5 parent: 2 - - uid: 7531 + - uid: 7596 components: - type: Transform - pos: -17.5,-44.5 + pos: 1.5,-46.5 parent: 2 - - uid: 7534 + - uid: 7611 components: - type: Transform - pos: -17.5,-43.5 + pos: 12.5,-50.5 parent: 2 - - uid: 7542 + - uid: 7635 components: - type: Transform - pos: -11.5,-44.5 + pos: -39.5,-52.5 parent: 2 - - uid: 7611 + - uid: 7653 components: - type: Transform - pos: 12.5,-50.5 + pos: 21.5,-42.5 parent: 2 - - uid: 7618 + - uid: 7657 components: - type: Transform - pos: 13.5,-7.5 + pos: -8.5,-89.5 parent: 2 - uid: 7666 components: @@ -130306,6 +142397,11 @@ entities: - type: Transform pos: 34.5,8.5 parent: 2 + - uid: 7673 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 - uid: 7760 components: - type: Transform @@ -130321,100 +142417,15 @@ entities: - type: Transform pos: 10.5,27.5 parent: 2 - - uid: 7838 - components: - - type: Transform - pos: -2.5,-50.5 - parent: 2 - - uid: 7843 - components: - - type: Transform - pos: -31.5,-52.5 - parent: 2 - - uid: 7856 - components: - - type: Transform - pos: 9.5,-50.5 - parent: 2 - - uid: 8013 - components: - - type: Transform - pos: -25.5,-22.5 - parent: 2 - - uid: 8016 - components: - - type: Transform - pos: -38.5,-44.5 - parent: 2 - - uid: 8018 - components: - - type: Transform - pos: 5.5,-50.5 - parent: 2 - - uid: 8021 - components: - - type: Transform - pos: -37.5,-45.5 - parent: 2 - - uid: 8131 - components: - - type: Transform - pos: -49.5,-44.5 - parent: 2 - - uid: 8140 - components: - - type: Transform - pos: -38.5,-28.5 - parent: 2 - - uid: 8143 - components: - - type: Transform - pos: -39.5,-28.5 - parent: 2 - - uid: 8151 - components: - - type: Transform - pos: -40.5,-49.5 - parent: 2 - - uid: 8180 - components: - - type: Transform - pos: -40.5,-37.5 - parent: 2 - - uid: 8223 - components: - - type: Transform - pos: -36.5,-53.5 - parent: 2 - - uid: 8226 - components: - - type: Transform - pos: -32.5,-56.5 - parent: 2 - - uid: 8227 - components: - - type: Transform - pos: -34.5,-52.5 - parent: 2 - - uid: 8233 - components: - - type: Transform - pos: -37.5,-48.5 - parent: 2 - - uid: 8238 - components: - - type: Transform - pos: -38.5,-49.5 - parent: 2 - - uid: 8255 + - uid: 7869 components: - type: Transform - pos: -36.5,-55.5 + pos: 22.5,13.5 parent: 2 - - uid: 8259 + - uid: 7933 components: - type: Transform - pos: -33.5,-56.5 + pos: 22.5,-15.5 parent: 2 - uid: 8278 components: @@ -130436,6 +142447,11 @@ entities: - type: Transform pos: 46.5,-7.5 parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 20.5,-38.5 + parent: 2 - uid: 8386 components: - type: Transform @@ -130446,40 +142462,45 @@ entities: - type: Transform pos: 47.5,-6.5 parent: 2 - - uid: 8401 + - uid: 8421 components: - type: Transform - pos: 46.5,-9.5 + pos: 3.5,15.5 parent: 2 - - uid: 8413 + - uid: 8451 components: - type: Transform - pos: 30.5,12.5 + pos: -44.5,-56.5 parent: 2 - - uid: 8416 + - uid: 8466 components: - type: Transform - pos: 28.5,9.5 + pos: -3.5,-16.5 parent: 2 - - uid: 8418 + - uid: 8477 components: - type: Transform - pos: 29.5,9.5 + pos: 17.5,-11.5 parent: 2 - - uid: 8421 + - uid: 8503 components: - type: Transform - pos: 3.5,15.5 + pos: 18.5,4.5 parent: 2 - - uid: 8466 + - uid: 8526 components: - type: Transform - pos: -3.5,-16.5 + pos: 20.5,-12.5 parent: 2 - - uid: 8521 + - uid: 8542 components: - type: Transform - pos: 22.5,-19.5 + pos: 17.5,-12.5 + parent: 2 + - uid: 8555 + components: + - type: Transform + pos: -47.5,-49.5 parent: 2 - uid: 8559 components: @@ -130506,11 +142527,6 @@ entities: - type: Transform pos: -11.5,18.5 parent: 2 - - uid: 8853 - components: - - type: Transform - pos: 37.5,7.5 - parent: 2 - uid: 8886 components: - type: Transform @@ -130526,11 +142542,6 @@ entities: - type: Transform pos: 49.5,-26.5 parent: 2 - - uid: 8964 - components: - - type: Transform - pos: -6.5,-50.5 - parent: 2 - uid: 8984 components: - type: Transform @@ -130561,6 +142572,11 @@ entities: - type: Transform pos: 47.5,-27.5 parent: 2 + - uid: 9148 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 - uid: 9213 components: - type: Transform @@ -130571,315 +142587,336 @@ entities: - type: Transform pos: 47.5,-23.5 parent: 2 + - uid: 9287 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 - uid: 9306 components: - type: Transform pos: 47.5,-19.5 parent: 2 + - uid: 9310 + components: + - type: Transform + pos: -41.5,-51.5 + parent: 2 + - uid: 9316 + components: + - type: Transform + pos: 12.5,-60.5 + parent: 2 - uid: 9323 components: - type: Transform pos: 51.5,-19.5 parent: 2 - - uid: 9376 + - uid: 9367 components: - type: Transform - pos: 30.5,-1.5 + pos: -40.5,-51.5 parent: 2 - uid: 9379 components: - type: Transform - pos: 30.5,-0.5 + pos: 25.5,4.5 parent: 2 - - uid: 9380 + - uid: 9400 components: - type: Transform - pos: 30.5,0.5 + pos: 23.5,-59.5 parent: 2 - - uid: 9381 + - uid: 9407 components: - type: Transform - pos: 30.5,1.5 + pos: 22.5,-12.5 parent: 2 - - uid: 9387 + - uid: 9420 components: - type: Transform - pos: 30.5,3.5 + pos: 23.5,-58.5 parent: 2 - - uid: 9388 + - uid: 9448 components: - type: Transform - pos: 30.5,4.5 + pos: 19.5,-57.5 parent: 2 - - uid: 9400 + - uid: 9524 components: - type: Transform - pos: 23.5,-59.5 + pos: 36.5,-39.5 parent: 2 - - uid: 9403 + - uid: 9551 components: - type: Transform - pos: 29.5,-1.5 + pos: -46.5,-38.5 parent: 2 - - uid: 9420 + - uid: 9555 components: - type: Transform - pos: 23.5,-58.5 + pos: 25.5,9.5 parent: 2 - - uid: 9422 + - uid: 9628 components: - type: Transform - pos: 28.5,5.5 + pos: 2.5,-16.5 parent: 2 - - uid: 9424 + - uid: 9662 components: - type: Transform - pos: 29.5,5.5 + pos: 29.5,-2.5 parent: 2 - - uid: 9425 + - uid: 9668 components: - type: Transform - pos: 26.5,5.5 + pos: 17.5,1.5 parent: 2 - - uid: 9448 + - uid: 9675 components: - type: Transform - pos: 19.5,-57.5 + pos: 17.5,2.5 parent: 2 - - uid: 9522 + - uid: 9679 components: - type: Transform - pos: 25.5,-57.5 + pos: -37.5,-25.5 parent: 2 - - uid: 9524 + - uid: 9686 components: - type: Transform - pos: 36.5,-39.5 + pos: 17.5,0.5 parent: 2 - - uid: 9544 + - uid: 9687 components: - type: Transform - pos: 30.5,6.5 + pos: -35.5,-46.5 parent: 2 - - uid: 9545 + - uid: 9714 components: - type: Transform - pos: 29.5,7.5 + pos: -21.5,-53.5 parent: 2 - - uid: 9547 + - uid: 9715 components: - type: Transform - pos: 22.5,5.5 + pos: -21.5,-52.5 parent: 2 - - uid: 9549 + - uid: 9718 components: - type: Transform - pos: 22.5,7.5 + pos: -21.5,-51.5 parent: 2 - - uid: 9550 + - uid: 9837 components: - type: Transform - pos: 22.5,10.5 + pos: -18.5,-46.5 parent: 2 - - uid: 9555 + - uid: 9859 components: - type: Transform - pos: 25.5,9.5 + pos: 33.5,-5.5 parent: 2 - - uid: 9556 + - uid: 9995 components: - type: Transform - pos: 22.5,9.5 + pos: 65.5,-74.5 parent: 2 - - uid: 9587 + - uid: 10000 components: - type: Transform - pos: 30.5,7.5 + pos: 70.5,-76.5 parent: 2 - - uid: 9588 + - uid: 10054 components: - type: Transform - pos: 28.5,7.5 + pos: 18.5,9.5 parent: 2 - - uid: 9589 + - uid: 10059 components: - type: Transform - pos: 27.5,7.5 + pos: 19.5,9.5 parent: 2 - - uid: 9590 + - uid: 10082 components: - type: Transform - pos: 26.5,7.5 + pos: 16.5,-53.5 parent: 2 - - uid: 9591 + - uid: 10109 components: - type: Transform - pos: 25.5,7.5 + pos: 23.5,-41.5 parent: 2 - - uid: 9592 + - uid: 10119 components: - type: Transform - pos: 23.5,7.5 + pos: 12.5,-51.5 parent: 2 - - uid: 9627 + - uid: 10123 components: - type: Transform - pos: -43.5,-49.5 + pos: 2.5,-19.5 parent: 2 - - uid: 9628 + - uid: 10131 components: - type: Transform - pos: 17.5,5.5 + pos: -35.5,-44.5 parent: 2 - - uid: 9645 + - uid: 10132 components: - type: Transform - pos: -41.5,-49.5 + pos: -35.5,-45.5 parent: 2 - - uid: 9665 + - uid: 10135 components: - type: Transform - pos: -33.5,-42.5 + pos: 23.5,2.5 parent: 2 - - uid: 9666 + - uid: 10137 components: - type: Transform - pos: -30.5,-42.5 + pos: 23.5,1.5 parent: 2 - - uid: 9667 + - uid: 10187 components: - type: Transform - pos: -32.5,-42.5 + pos: 2.5,-15.5 parent: 2 - - uid: 9675 + - uid: 10196 components: - type: Transform - pos: -35.5,-39.5 + pos: -38.5,-25.5 parent: 2 - - uid: 9677 + - uid: 10256 components: - type: Transform - pos: -29.5,-42.5 + pos: 29.5,-4.5 parent: 2 - - uid: 9678 + - uid: 10419 components: - type: Transform - pos: -29.5,-41.5 + pos: -29.5,-7.5 parent: 2 - - uid: 9682 + - uid: 10454 components: - type: Transform - pos: -29.5,-45.5 + pos: 18.5,-12.5 parent: 2 - - uid: 9683 + - uid: 10463 components: - type: Transform - pos: -30.5,-45.5 + pos: -6.5,12.5 parent: 2 - - uid: 9687 + - uid: 10467 components: - type: Transform - pos: -35.5,-46.5 + pos: -50.5,-55.5 parent: 2 - - uid: 9714 + - uid: 10472 components: - type: Transform - pos: -21.5,-53.5 + pos: -50.5,-54.5 parent: 2 - - uid: 9715 + - uid: 10483 components: - type: Transform - pos: -21.5,-52.5 + pos: -52.5,-56.5 parent: 2 - - uid: 9718 + - uid: 10511 components: - type: Transform - pos: -21.5,-51.5 + pos: -37.5,-50.5 parent: 2 - - uid: 9837 + - uid: 10543 components: - type: Transform - pos: -18.5,-46.5 + pos: -5.5,-5.5 parent: 2 - - uid: 9928 + - uid: 10552 components: - type: Transform - pos: -34.5,-42.5 + pos: -6.5,-6.5 parent: 2 - - uid: 9995 + - uid: 10554 components: - type: Transform - pos: 65.5,-74.5 + pos: 23.5,0.5 parent: 2 - - uid: 10000 + - uid: 10610 components: - type: Transform - pos: 70.5,-76.5 + pos: -6.5,-9.5 parent: 2 - - uid: 10050 + - uid: 10611 components: - type: Transform - pos: -35.5,-48.5 + pos: -6.5,-8.5 parent: 2 - - uid: 10054 + - uid: 10612 components: - type: Transform - pos: 18.5,9.5 + pos: 15.5,-0.5 parent: 2 - - uid: 10059 + - uid: 10618 components: - type: Transform - pos: 19.5,9.5 + pos: 19.5,-5.5 parent: 2 - - uid: 10080 + - uid: 10622 components: - type: Transform - pos: 20.5,5.5 + pos: 0.5,-5.5 parent: 2 - - uid: 10082 + - uid: 10623 components: - type: Transform - pos: 16.5,-53.5 + pos: -6.5,-10.5 parent: 2 - - uid: 10119 + - uid: 10625 components: - type: Transform - pos: 12.5,-51.5 + pos: -4.5,-5.5 parent: 2 - - uid: 10129 + - uid: 10663 components: - type: Transform - pos: -35.5,-42.5 + pos: -36.5,-50.5 parent: 2 - - uid: 10130 + - uid: 10664 components: - type: Transform - pos: -35.5,-43.5 + pos: -39.5,-50.5 parent: 2 - - uid: 10131 + - uid: 10665 components: - type: Transform - pos: -35.5,-44.5 + pos: -38.5,-50.5 parent: 2 - - uid: 10132 + - uid: 10671 components: - type: Transform - pos: -35.5,-45.5 + pos: -18.5,-17.5 parent: 2 - - uid: 10463 + - uid: 10689 components: - type: Transform - pos: -6.5,12.5 + pos: -50.5,-49.5 parent: 2 - - uid: 10696 + - uid: 10690 components: - type: Transform - pos: 28.5,-13.5 + pos: -6.5,-5.5 parent: 2 - - uid: 10799 + - uid: 10707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-54.5 + parent: 2 + - uid: 10722 components: - type: Transform - pos: 18.5,-14.5 + pos: -42.5,-54.5 parent: 2 - uid: 10823 components: @@ -130961,11 +142998,6 @@ entities: - type: Transform pos: 70.5,-78.5 parent: 2 - - uid: 10967 - components: - - type: Transform - pos: 13.5,-57.5 - parent: 2 - uid: 10968 components: - type: Transform @@ -130976,16 +143008,81 @@ entities: - type: Transform pos: 12.5,-56.5 parent: 2 + - uid: 11078 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 11080 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 11104 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 + - uid: 11106 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 11115 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 2 + - uid: 11117 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 11161 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 - uid: 11205 components: - type: Transform pos: 12.5,-23.5 parent: 2 + - uid: 11212 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 11228 + components: + - type: Transform + pos: -15.5,18.5 + parent: 2 + - uid: 11248 + components: + - type: Transform + pos: -44.5,-55.5 + parent: 2 + - uid: 11295 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 - uid: 11306 components: - type: Transform pos: 16.5,-54.5 parent: 2 + - uid: 11341 + components: + - type: Transform + pos: -26.5,-37.5 + parent: 2 + - uid: 11435 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 - uid: 11503 components: - type: Transform @@ -131001,10 +143098,10 @@ entities: - type: Transform pos: 63.5,-80.5 parent: 2 - - uid: 11805 + - uid: 11722 components: - type: Transform - pos: -23.5,14.5 + pos: -45.5,-26.5 parent: 2 - uid: 11848 components: @@ -131026,20 +143123,70 @@ entities: - type: Transform pos: 48.5,-55.5 parent: 2 - - uid: 12123 + - uid: 11951 components: - type: Transform - pos: -31.5,-47.5 + pos: 28.5,14.5 + parent: 2 + - uid: 11997 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 12000 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - uid: 12038 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 12122 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 12125 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 + - uid: 12126 + components: + - type: Transform + pos: -40.5,-35.5 + parent: 2 + - uid: 12130 + components: + - type: Transform + pos: -40.5,-38.5 + parent: 2 + - uid: 12176 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 12187 + components: + - type: Transform + pos: -5.5,-58.5 parent: 2 - uid: 12199 components: - type: Transform pos: 44.5,-55.5 parent: 2 - - uid: 12424 + - uid: 12230 components: - type: Transform - pos: -35.5,-34.5 + pos: -46.5,-33.5 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: -32.5,-23.5 parent: 2 - uid: 12503 components: @@ -131051,35 +143198,160 @@ entities: - type: Transform pos: 13.5,21.5 parent: 2 - - uid: 12564 + - uid: 12514 components: - type: Transform - pos: -37.5,-47.5 + pos: -46.5,-35.5 parent: 2 - - uid: 12582 + - uid: 12515 components: - type: Transform - pos: -25.5,-36.5 + pos: -31.5,19.5 parent: 2 - - uid: 12588 + - uid: 12564 components: - type: Transform - pos: -25.5,-37.5 + pos: -48.5,-57.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + pos: -46.5,-26.5 parent: 2 - uid: 12600 components: - type: Transform pos: 41.5,-56.5 parent: 2 + - uid: 12619 + components: + - type: Transform + pos: 38.5,10.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 - uid: 12660 components: - type: Transform pos: 41.5,-61.5 parent: 2 - - uid: 13015 + - uid: 12680 components: - type: Transform - pos: 30.5,5.5 + pos: -46.5,-36.5 + parent: 2 + - uid: 12721 + components: + - type: Transform + pos: 8.5,-57.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: 11.5,-90.5 + parent: 2 + - uid: 12773 + components: + - type: Transform + pos: -56.5,-31.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + pos: 8.5,-90.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + pos: 8.5,-91.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + pos: 5.5,-90.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + pos: 5.5,-91.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + pos: 5.5,-88.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + pos: 8.5,-92.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + pos: -5.5,-91.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + pos: -3.5,-91.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + pos: -2.5,-88.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + pos: -5.5,-92.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: -6.5,-91.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + pos: -2.5,-96.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + pos: -7.5,-91.5 + parent: 2 + - uid: 12818 + components: + - type: Transform + pos: 0.5,-96.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + pos: 4.5,-88.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + pos: -56.5,-28.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + pos: 22.5,-16.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + pos: -51.5,-21.5 parent: 2 - uid: 13144 components: @@ -131096,6 +143368,36 @@ entities: - type: Transform pos: 50.5,-49.5 parent: 2 + - uid: 13153 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + pos: 28.5,-15.5 + parent: 2 + - uid: 13203 + components: + - type: Transform + pos: -48.5,-56.5 + parent: 2 + - uid: 13207 + components: + - type: Transform + pos: -32.5,-25.5 + parent: 2 - uid: 13209 components: - type: Transform @@ -131106,15 +143408,20 @@ entities: - type: Transform pos: 20.5,-59.5 parent: 2 - - uid: 13219 + - uid: 13212 components: - type: Transform - pos: 17.5,-57.5 + pos: -45.5,-55.5 parent: 2 - - uid: 13220 + - uid: 13215 + components: + - type: Transform + pos: 14.5,-12.5 + parent: 2 + - uid: 13219 components: - type: Transform - pos: 15.5,-14.5 + pos: 17.5,-57.5 parent: 2 - uid: 13222 components: @@ -131131,11 +143438,36 @@ entities: - type: Transform pos: 49.5,-61.5 parent: 2 + - uid: 13249 + components: + - type: Transform + pos: 26.5,4.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - uid: 13252 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 - uid: 13262 components: - type: Transform pos: 12.5,-27.5 parent: 2 + - uid: 13281 + components: + - type: Transform + pos: 5.5,-89.5 + parent: 2 - uid: 13304 components: - type: Transform @@ -131146,25 +143478,175 @@ entities: - type: Transform pos: 41.5,-58.5 parent: 2 + - uid: 13360 + components: + - type: Transform + pos: 28.5,-13.5 + parent: 2 + - uid: 13364 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 - uid: 13389 components: - type: Transform pos: 17.5,13.5 parent: 2 + - uid: 13395 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + pos: 27.5,-15.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: -44.5,-57.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + pos: 1.5,-42.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 13756 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 13757 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 13758 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 13801 + components: + - type: Transform + pos: 5.5,-45.5 + parent: 2 + - uid: 13805 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 13806 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 - uid: 13808 components: - type: Transform pos: 22.5,-57.5 parent: 2 - - uid: 14066 + - uid: 14136 components: - type: Transform - pos: -31.5,-37.5 + pos: 29.5,14.5 parent: 2 - - uid: 14324 + - uid: 14167 components: - type: Transform - pos: 19.5,-12.5 + pos: -36.5,-43.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 + - uid: 14175 + components: + - type: Transform + pos: -42.5,-47.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + pos: -41.5,-47.5 + parent: 2 + - uid: 14177 + components: + - type: Transform + pos: -40.5,-47.5 + parent: 2 + - uid: 14178 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 14179 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 14181 + components: + - type: Transform + pos: -39.5,-46.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: -39.5,-47.5 parent: 2 - uid: 14379 components: @@ -131211,15 +143693,15 @@ entities: - type: Transform pos: -41.5,-4.5 parent: 2 - - uid: 14501 + - uid: 14516 components: - type: Transform - pos: 2.5,-45.5 + pos: 45.5,-41.5 parent: 2 - - uid: 14516 + - uid: 14580 components: - type: Transform - pos: 45.5,-41.5 + pos: 16.5,-55.5 parent: 2 - uid: 14772 components: @@ -131231,185 +143713,255 @@ entities: - type: Transform pos: -28.5,3.5 parent: 2 - - uid: 14824 + - uid: 14853 components: - type: Transform - pos: 14.5,16.5 + pos: -22.5,-2.5 parent: 2 - - uid: 14839 + - uid: 15041 components: - type: Transform - pos: 13.5,-16.5 + pos: 2.5,-42.5 parent: 2 - - uid: 14841 + - uid: 15045 components: - type: Transform - pos: 12.5,-16.5 + pos: 12.5,-59.5 parent: 2 - - uid: 14842 + - uid: 15244 components: - type: Transform - pos: -6.5,-51.5 + pos: -47.5,-50.5 parent: 2 - - uid: 14845 + - uid: 15251 components: - type: Transform - pos: 15.5,-16.5 + pos: -36.5,-47.5 + parent: 2 + - uid: 15252 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + pos: -42.5,-51.5 + parent: 2 + - uid: 15308 + components: + - type: Transform + pos: -27.5,8.5 + parent: 2 + - uid: 15345 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 15648 + components: + - type: Transform + pos: -23.5,-54.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 15704 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 15712 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + pos: -47.5,-55.5 + parent: 2 + - uid: 15788 + components: + - type: Transform + pos: -44.5,-54.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 15880 + components: + - type: Transform + pos: 7.5,-46.5 parent: 2 - - uid: 14853 + - uid: 15903 components: - type: Transform - pos: -22.5,-2.5 + pos: 7.5,21.5 parent: 2 - - uid: 14873 + - uid: 15939 components: - type: Transform - pos: 9.5,-14.5 + pos: -23.5,13.5 parent: 2 - - uid: 14883 + - uid: 15947 components: - type: Transform - pos: 17.5,-20.5 + pos: 0.5,21.5 parent: 2 - - uid: 14884 + - uid: 16168 components: - type: Transform - pos: 17.5,-19.5 + pos: 30.5,13.5 parent: 2 - - uid: 14909 + - uid: 16169 components: - type: Transform - pos: 16.5,-20.5 + pos: 26.5,13.5 parent: 2 - - uid: 14920 + - uid: 16170 components: - type: Transform - pos: 18.5,-18.5 + pos: 8.5,-58.5 parent: 2 - - uid: 15011 + - uid: 16209 components: - type: Transform - pos: 13.5,-20.5 + pos: 68.5,-75.5 parent: 2 - - uid: 15174 + - uid: 16219 components: - type: Transform - pos: 12.5,-20.5 + pos: 54.5,-52.5 parent: 2 - - uid: 15264 + - uid: 16245 components: - type: Transform - pos: 13.5,16.5 + pos: 2.5,21.5 parent: 2 - - uid: 15308 + - uid: 16323 components: - type: Transform - pos: -27.5,8.5 + pos: 15.5,-12.5 parent: 2 - - uid: 15321 + - uid: 16530 components: - type: Transform - pos: 15.5,-20.5 + pos: 6.5,21.5 parent: 2 - - uid: 15345 + - uid: 16655 components: - type: Transform - pos: -24.5,22.5 + pos: 34.5,10.5 parent: 2 - - uid: 15353 + - uid: 16673 components: - type: Transform - pos: 18.5,-17.5 + pos: -24.5,-54.5 parent: 2 - - uid: 15369 + - uid: 16715 components: - type: Transform - pos: 19.5,-17.5 + pos: 1.5,21.5 parent: 2 - - uid: 15468 + - uid: 16899 components: - type: Transform - pos: 10.5,-14.5 + pos: -44.5,-53.5 parent: 2 - - uid: 15648 + - uid: 16911 components: - type: Transform - pos: -23.5,-54.5 + pos: -47.5,-51.5 parent: 2 - - uid: 15704 + - uid: 16912 components: - type: Transform - pos: -10.5,18.5 + pos: -51.5,-48.5 parent: 2 - - uid: 15712 + - uid: 16913 components: - type: Transform - pos: -0.5,21.5 + pos: -51.5,-47.5 parent: 2 - - uid: 15730 + - uid: 16920 components: - type: Transform - pos: 9.5,21.5 + pos: -48.5,-51.5 parent: 2 - - uid: 15815 + - uid: 16921 components: - type: Transform - pos: 8.5,21.5 + pos: -50.5,-51.5 parent: 2 - - uid: 15832 + - uid: 16923 components: - type: Transform - pos: 15.5,-8.5 + pos: -23.5,-17.5 parent: 2 - - uid: 15903 + - uid: 16924 components: - type: Transform - pos: 7.5,21.5 + pos: -48.5,-55.5 parent: 2 - - uid: 15939 + - uid: 16927 components: - type: Transform - pos: -23.5,13.5 + pos: -24.5,-17.5 parent: 2 - - uid: 15947 + - uid: 16928 components: - type: Transform - pos: 0.5,21.5 + pos: -19.5,-17.5 parent: 2 - - uid: 16209 + - uid: 16929 components: - type: Transform - pos: 68.5,-75.5 + pos: -20.5,-17.5 parent: 2 - - uid: 16219 + - uid: 16938 components: - type: Transform - pos: 54.5,-52.5 + pos: -46.5,-55.5 parent: 2 - - uid: 16245 + - uid: 16940 components: - type: Transform - pos: 2.5,21.5 + pos: -48.5,-52.5 parent: 2 - - uid: 16530 + - uid: 16947 components: - type: Transform - pos: 6.5,21.5 + pos: -21.5,-17.5 parent: 2 - - uid: 16673 + - uid: 16948 components: - type: Transform - pos: -24.5,-54.5 + pos: -39.5,-56.5 parent: 2 - - uid: 16715 + - uid: 16949 components: - type: Transform - pos: 1.5,21.5 + pos: -44.5,-52.5 parent: 2 - - uid: 16880 + - uid: 16953 components: - type: Transform - pos: -0.5,-45.5 + pos: -22.5,-17.5 parent: 2 - uid: 17011 components: @@ -131426,6 +143978,26 @@ entities: - type: Transform pos: -42.5,-4.5 parent: 2 + - uid: 17149 + components: + - type: Transform + pos: 19.5,-1.5 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 17153 + components: + - type: Transform + pos: -42.5,-56.5 + parent: 2 + - uid: 17188 + components: + - type: Transform + pos: -40.5,-56.5 + parent: 2 - uid: 17323 components: - type: Transform @@ -131436,11 +144008,6 @@ entities: - type: Transform pos: 39.5,10.5 parent: 2 - - uid: 17563 - components: - - type: Transform - pos: -28.5,-7.5 - parent: 2 - uid: 17720 components: - type: Transform @@ -131451,6 +144018,21 @@ entities: - type: Transform pos: 86.5,-22.5 parent: 2 + - uid: 17751 + components: + - type: Transform + pos: -45.5,-49.5 + parent: 2 + - uid: 17752 + components: + - type: Transform + pos: -46.5,-49.5 + parent: 2 + - uid: 17816 + components: + - type: Transform + pos: -33.5,19.5 + parent: 2 - uid: 17837 components: - type: Transform @@ -131556,15 +144138,70 @@ entities: - type: Transform pos: 41.5,10.5 parent: 2 + - uid: 18855 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 + - uid: 18856 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 - uid: 18863 components: - type: Transform pos: 46.5,-13.5 parent: 2 - - uid: 18970 + - uid: 19156 components: - type: Transform - pos: 38.5,5.5 + pos: 10.5,-90.5 + parent: 2 + - uid: 19157 + components: + - type: Transform + pos: 10.5,-91.5 + parent: 2 + - uid: 19187 + components: + - type: Transform + pos: -7.5,-90.5 + parent: 2 + - uid: 19205 + components: + - type: Transform + pos: -1.5,-88.5 + parent: 2 + - uid: 19231 + components: + - type: Transform + pos: 9.5,-91.5 + parent: 2 + - uid: 19236 + components: + - type: Transform + pos: 1.5,-88.5 + parent: 2 + - uid: 19262 + components: + - type: Transform + pos: 6.5,-91.5 + parent: 2 + - uid: 19265 + components: + - type: Transform + pos: -2.5,-97.5 + parent: 2 + - uid: 19273 + components: + - type: Transform + pos: -8.5,-90.5 + parent: 2 + - uid: 19895 + components: + - type: Transform + pos: 30.5,15.5 parent: 2 - uid: 20237 components: @@ -131586,78 +144223,178 @@ entities: - type: Transform pos: -21.5,-55.5 parent: 2 + - uid: 20255 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 20392 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - uid: 20715 + components: + - type: Transform + pos: 29.5,9.5 + parent: 2 - uid: 20768 components: - type: Transform pos: -6.5,-42.5 parent: 2 -- proto: WallSolidRust - entities: - - uid: 206 + - uid: 20787 components: - type: Transform - pos: 14.5,-7.5 + pos: 22.5,17.5 parent: 2 - - uid: 856 + - uid: 21426 components: - type: Transform - pos: -32.5,-52.5 + pos: 26.5,9.5 parent: 2 - - uid: 1711 + - uid: 21900 components: - type: Transform - pos: -31.5,-49.5 + rot: 1.5707963267948966 rad + pos: 20.5,4.5 parent: 2 - - uid: 2745 + - uid: 21967 components: - type: Transform - pos: 66.5,-40.5 + pos: 19.5,-2.5 parent: 2 - - uid: 3084 + - uid: 21997 components: - type: Transform - pos: 14.5,-10.5 + rot: -1.5707963267948966 rad + pos: -54.5,-52.5 parent: 2 - - uid: 3525 + - uid: 22002 components: - type: Transform - pos: 15.5,-7.5 + pos: 18.5,16.5 parent: 2 - - uid: 3586 + - uid: 22003 components: - type: Transform - pos: 16.5,-7.5 + rot: 1.5707963267948966 rad + pos: 14.5,-8.5 parent: 2 - - uid: 4867 + - uid: 22005 components: - type: Transform - pos: 70.5,-67.5 + pos: 17.5,20.5 parent: 2 - - uid: 4884 + - uid: 22028 components: - type: Transform - pos: 69.5,-67.5 + pos: 28.5,20.5 parent: 2 - - uid: 4961 + - uid: 22031 components: - type: Transform - pos: -32.5,-47.5 + pos: -25.5,-49.5 parent: 2 - - uid: 5058 + - uid: 22032 components: - type: Transform - pos: 2.5,-42.5 + pos: -26.5,-49.5 + parent: 2 + - uid: 22055 + components: + - type: Transform + pos: -34.5,15.5 + parent: 2 + - uid: 22078 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 22097 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 22098 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 22106 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 22112 + components: + - type: Transform + pos: 38.5,13.5 + parent: 2 + - uid: 22113 + components: + - type: Transform + pos: 39.5,13.5 + parent: 2 + - uid: 22120 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - uid: 22128 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 22132 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 2745 + components: + - type: Transform + pos: 66.5,-40.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-58.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: 70.5,-67.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: 69.5,-67.5 parent: 2 - uid: 5387 components: - type: Transform pos: 75.5,-40.5 parent: 2 + - uid: 5657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-59.5 + parent: 2 - uid: 6053 components: - type: Transform pos: 63.5,-74.5 parent: 2 + - uid: 6921 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 - uid: 7796 components: - type: Transform @@ -131668,26 +144405,52 @@ entities: - type: Transform pos: 16.5,-52.5 parent: 2 - - uid: 7987 + - uid: 9271 components: - type: Transform - pos: 13.5,-54.5 + pos: 12.5,-52.5 parent: 2 - - uid: 9271 + - uid: 9295 components: - type: Transform - pos: 12.5,-52.5 + rot: -1.5707963267948966 rad + pos: 14.5,-41.5 parent: 2 - - uid: 9557 + - uid: 9522 components: - type: Transform - pos: 17.5,-7.5 + rot: -1.5707963267948966 rad + pos: 48.5,-10.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-14.5 + parent: 2 + - uid: 9677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-35.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-46.5 parent: 2 - uid: 9708 components: - type: Transform pos: 33.5,-18.5 parent: 2 + - uid: 9862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,15.5 + parent: 2 - uid: 9896 components: - type: Transform @@ -131708,6 +144471,12 @@ entities: - type: Transform pos: 44.5,-32.5 parent: 2 + - uid: 9938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-58.5 + parent: 2 - uid: 9991 components: - type: Transform @@ -131738,6 +144507,30 @@ entities: - type: Transform pos: -9.5,-29.5 parent: 2 + - uid: 10061 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 + - uid: 10065 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-54.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-48.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 2 - uid: 10389 components: - type: Transform @@ -131748,6 +144541,12 @@ entities: - type: Transform pos: -10.5,-34.5 parent: 2 + - uid: 10571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 2 - uid: 10627 components: - type: Transform @@ -131776,7 +144575,8 @@ entities: - uid: 10706 components: - type: Transform - pos: -18.5,-36.5 + rot: -1.5707963267948966 rad + pos: -18.5,-31.5 parent: 2 - uid: 10711 components: @@ -131818,41 +144618,28 @@ entities: - type: Transform pos: 72.5,-75.5 parent: 2 - - uid: 10950 - components: - - type: Transform - pos: 20.5,7.5 - parent: 2 - - uid: 10976 - components: - - type: Transform - pos: 1.5,-42.5 - parent: 2 - - uid: 10987 + - uid: 10914 components: - type: Transform - pos: 0.5,-42.5 + rot: -1.5707963267948966 rad + pos: 20.5,9.5 parent: 2 - uid: 11001 components: - type: Transform pos: 23.5,-37.5 parent: 2 - - uid: 11006 + - uid: 11074 components: - type: Transform - pos: 21.5,-40.5 + rot: -1.5707963267948966 rad + pos: 23.5,-38.5 parent: 2 - uid: 11118 components: - type: Transform pos: 12.5,-48.5 parent: 2 - - uid: 11127 - components: - - type: Transform - pos: 12.5,-57.5 - parent: 2 - uid: 11133 components: - type: Transform @@ -131883,50 +144670,44 @@ entities: - type: Transform pos: 71.5,-59.5 parent: 2 - - uid: 11253 + - uid: 11287 components: - type: Transform - pos: 4.5,-40.5 + rot: -1.5707963267948966 rad + pos: 30.5,20.5 parent: 2 - - uid: 11275 + - uid: 11310 components: - type: Transform - pos: 15.5,-10.5 + pos: -29.5,-8.5 parent: 2 - uid: 11368 components: - type: Transform pos: 62.5,-76.5 parent: 2 - - uid: 11386 + - uid: 11439 components: - type: Transform - pos: 17.5,-17.5 + rot: -1.5707963267948966 rad + pos: 16.5,-45.5 parent: 2 - uid: 11523 components: - type: Transform pos: 63.5,-79.5 parent: 2 - - uid: 11577 - components: - - type: Transform - pos: -35.5,-32.5 - parent: 2 - - uid: 11578 - components: - - type: Transform - pos: -32.5,-24.5 - parent: 2 - - uid: 11582 + - uid: 11609 components: - type: Transform - pos: -35.5,-37.5 + rot: -1.5707963267948966 rad + pos: 23.5,-43.5 parent: 2 - - uid: 11632 + - uid: 11621 components: - type: Transform - pos: -33.5,-24.5 + rot: -1.5707963267948966 rad + pos: 21.5,11.5 parent: 2 - uid: 11634 components: @@ -131953,11 +144734,23 @@ entities: - type: Transform pos: 33.5,-14.5 parent: 2 + - uid: 11766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-35.5 + parent: 2 - uid: 11795 components: - type: Transform pos: 38.5,-8.5 parent: 2 + - uid: 11805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-57.5 + parent: 2 - uid: 11841 components: - type: Transform @@ -131971,7 +144764,8 @@ entities: - uid: 11931 components: - type: Transform - pos: 21.5,-45.5 + rot: -1.5707963267948966 rad + pos: -19.5,-31.5 parent: 2 - uid: 11932 components: @@ -131993,11 +144787,6 @@ entities: - type: Transform pos: 33.5,-15.5 parent: 2 - - uid: 11976 - components: - - type: Transform - pos: -35.5,-36.5 - parent: 2 - uid: 11985 components: - type: Transform @@ -132033,160 +144822,236 @@ entities: - type: Transform pos: 44.5,-8.5 parent: 2 - - uid: 12075 + - uid: 12116 components: - type: Transform - pos: 24.5,-19.5 + pos: 34.5,0.5 parent: 2 - - uid: 12106 + - uid: 12131 components: - type: Transform - pos: 28.5,-19.5 + pos: 13.5,-52.5 parent: 2 - - uid: 12113 + - uid: 12132 components: - type: Transform - pos: 22.5,-17.5 + rot: -1.5707963267948966 rad + pos: 7.5,-40.5 parent: 2 - - uid: 12116 + - uid: 12202 components: - type: Transform - pos: 34.5,0.5 + pos: 46.5,-6.5 parent: 2 - - uid: 12124 + - uid: 12203 components: - type: Transform - pos: -40.5,-44.5 + pos: 43.5,-8.5 parent: 2 - - uid: 12125 + - uid: 12206 components: - type: Transform - pos: -39.5,-44.5 + pos: -35.5,-50.5 parent: 2 - - uid: 12128 + - uid: 12290 components: - type: Transform - pos: -33.5,-52.5 + pos: 46.5,-26.5 parent: 2 - - uid: 12131 + - uid: 12307 components: - type: Transform - pos: 13.5,-52.5 + pos: 47.5,-26.5 parent: 2 - - uid: 12132 + - uid: 12360 components: - type: Transform - pos: -37.5,-46.5 + pos: 54.5,-55.5 parent: 2 - - uid: 12148 + - uid: 12361 components: - type: Transform - pos: -37.5,-49.5 + pos: -35.5,-49.5 parent: 2 - - uid: 12202 + - uid: 12363 components: - type: Transform - pos: 46.5,-6.5 + pos: -35.5,-47.5 parent: 2 - - uid: 12203 + - uid: 12500 components: - type: Transform - pos: 43.5,-8.5 + pos: 49.5,-55.5 parent: 2 - - uid: 12206 + - uid: 12502 components: - type: Transform - pos: -35.5,-50.5 + pos: 49.5,-56.5 parent: 2 - - uid: 12207 + - uid: 12541 components: - type: Transform - pos: 26.5,9.5 + rot: -1.5707963267948966 rad + pos: 6.5,-46.5 parent: 2 - - uid: 12238 + - uid: 12551 components: - type: Transform - pos: 27.5,9.5 + rot: -1.5707963267948966 rad + pos: 5.5,-43.5 parent: 2 - - uid: 12290 + - uid: 12603 components: - type: Transform - pos: 46.5,-26.5 + pos: 41.5,-52.5 parent: 2 - - uid: 12307 + - uid: 12628 components: - type: Transform - pos: 47.5,-26.5 + rot: -1.5707963267948966 rad + pos: 29.5,24.5 parent: 2 - - uid: 12322 + - uid: 12722 components: - type: Transform - pos: 22.5,6.5 + pos: -15.5,-26.5 parent: 2 - - uid: 12324 + - uid: 12735 components: - type: Transform - pos: 23.5,10.5 + rot: -1.5707963267948966 rad + pos: 37.5,-0.5 parent: 2 - - uid: 12358 + - uid: 12751 components: - type: Transform - pos: -42.5,-49.5 + rot: -1.5707963267948966 rad + pos: 39.5,-0.5 parent: 2 - - uid: 12360 + - uid: 12771 components: - type: Transform - pos: 54.5,-55.5 + rot: -1.5707963267948966 rad + pos: 40.5,-0.5 parent: 2 - - uid: 12361 + - uid: 12825 components: - type: Transform - pos: -35.5,-49.5 + rot: -1.5707963267948966 rad + pos: 8.5,-55.5 parent: 2 - - uid: 12362 + - uid: 12853 components: - type: Transform - pos: -30.5,-47.5 + rot: -1.5707963267948966 rad + pos: 46.5,-3.5 parent: 2 - - uid: 12363 + - uid: 13191 components: - type: Transform - pos: -35.5,-47.5 + rot: -1.5707963267948966 rad + pos: 3.5,-43.5 parent: 2 - - uid: 12500 + - uid: 13199 components: - type: Transform - pos: 49.5,-55.5 + rot: -1.5707963267948966 rad + pos: 40.5,0.5 parent: 2 - - uid: 12502 + - uid: 13221 components: - type: Transform - pos: 49.5,-56.5 + pos: 50.5,-50.5 parent: 2 - - uid: 12555 + - uid: 13268 components: - type: Transform - pos: -28.5,-8.5 + rot: -1.5707963267948966 rad + pos: 34.5,5.5 parent: 2 - - uid: 12603 + - uid: 13274 components: - type: Transform - pos: 41.5,-52.5 + rot: -1.5707963267948966 rad + pos: 46.5,-9.5 parent: 2 - - uid: 12722 + - uid: 13287 components: - type: Transform - pos: -15.5,-26.5 + rot: -1.5707963267948966 rad + pos: 23.5,4.5 parent: 2 - - uid: 13221 + - uid: 13289 components: - type: Transform - pos: 50.5,-50.5 + rot: -1.5707963267948966 rad + pos: 25.5,-57.5 parent: 2 - - uid: 13390 + - uid: 13392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,9.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-0.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,3.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 13782 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 13783 components: - type: Transform - pos: 14.5,-14.5 + pos: 15.5,-3.5 parent: 2 - uid: 13794 components: @@ -132198,6 +145063,12 @@ entities: - type: Transform pos: -11.5,21.5 parent: 2 + - uid: 13892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,16.5 + parent: 2 - uid: 14209 components: - type: Transform @@ -132208,6 +145079,12 @@ entities: - type: Transform pos: -6.5,-19.5 parent: 2 + - uid: 14348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,3.5 + parent: 2 - uid: 14479 components: - type: Transform @@ -132228,11 +145105,23 @@ entities: - type: Transform pos: 45.5,-40.5 parent: 2 + - uid: 14833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-42.5 + parent: 2 - uid: 15144 components: - type: Transform pos: -10.5,-15.5 parent: 2 + - uid: 15154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-44.5 + parent: 2 - uid: 15283 components: - type: Transform @@ -132248,11 +145137,6 @@ entities: - type: Transform pos: -0.5,-16.5 parent: 2 - - uid: 15406 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 2 - uid: 15462 components: - type: Transform @@ -132263,15 +145147,16 @@ entities: - type: Transform pos: 2.5,-29.5 parent: 2 - - uid: 15473 + - uid: 15486 components: - type: Transform - pos: 18.5,-12.5 + pos: -17.5,-26.5 parent: 2 - - uid: 15486 + - uid: 15606 components: - type: Transform - pos: -17.5,-26.5 + rot: -1.5707963267948966 rad + pos: 0.5,-45.5 parent: 2 - uid: 15663 components: @@ -132288,10 +145173,11 @@ entities: - type: Transform pos: 7.5,-26.5 parent: 2 - - uid: 15839 + - uid: 15878 components: - type: Transform - pos: -36.5,-52.5 + rot: -1.5707963267948966 rad + pos: 35.5,11.5 parent: 2 - uid: 15906 components: @@ -132318,6 +145204,24 @@ entities: - type: Transform pos: 68.5,-74.5 parent: 2 + - uid: 16704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-34.5 + parent: 2 + - uid: 16894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-23.5 + parent: 2 + - uid: 17073 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,10.5 + parent: 2 - uid: 17120 components: - type: Transform @@ -132343,25 +145247,16 @@ entities: - type: Transform pos: -27.5,-6.5 parent: 2 - - uid: 17625 - components: - - type: Transform - pos: 19.5,-16.5 - parent: 2 - - uid: 17638 - components: - - type: Transform - pos: 14.5,-16.5 - parent: 2 - - uid: 17648 + - uid: 17721 components: - type: Transform - pos: 16.5,-14.5 + pos: 85.5,-20.5 parent: 2 - - uid: 17721 + - uid: 18065 components: - type: Transform - pos: 85.5,-20.5 + rot: -1.5707963267948966 rad + pos: 34.5,16.5 parent: 2 - uid: 18190 components: @@ -132403,16 +145298,76 @@ entities: - type: Transform pos: 89.5,-28.5 parent: 2 + - uid: 18552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-34.5 + parent: 2 + - uid: 18622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-34.5 + parent: 2 - uid: 18967 components: - type: Transform pos: 38.5,4.5 parent: 2 + - uid: 18970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 - uid: 18974 components: - type: Transform pos: 39.5,4.5 parent: 2 + - uid: 19147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,16.5 + parent: 2 + - uid: 19222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 2 + - uid: 19246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - uid: 19257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-42.5 + parent: 2 + - uid: 19260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-45.5 + parent: 2 + - uid: 19266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-46.5 + parent: 2 + - uid: 19274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,5.5 + parent: 2 - uid: 19348 components: - type: Transform @@ -132423,6 +145378,170 @@ entities: - type: Transform pos: 67.5,-59.5 parent: 2 + - uid: 19916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-46.5 + parent: 2 + - uid: 19918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-61.5 + parent: 2 + - uid: 19919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-58.5 + parent: 2 + - uid: 20221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 2 + - uid: 20279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-45.5 + parent: 2 + - uid: 20767 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-25.5 + parent: 2 + - uid: 21223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-29.5 + parent: 2 + - uid: 21271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,16.5 + parent: 2 + - uid: 21297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-25.5 + parent: 2 + - uid: 21311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-25.5 + parent: 2 + - uid: 21312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-23.5 + parent: 2 + - uid: 21314 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-33.5 + parent: 2 + - uid: 21389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-34.5 + parent: 2 + - uid: 21395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-31.5 + parent: 2 + - uid: 21438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 2 + - uid: 21963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 2 + - uid: 21968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - uid: 21996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 2 + - uid: 22022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-45.5 + parent: 2 + - uid: 22099 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 22102 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 22103 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 22104 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 22105 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 22108 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 22109 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 22110 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 + - uid: 22115 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 22116 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 - proto: WardrobeAtmosphericsFilled entities: - uid: 20244 @@ -132463,13 +145582,6 @@ entities: - type: Transform pos: 39.5,-3.5 parent: 2 -- proto: WardrobeChemistryFilled - entities: - - uid: 12368 - components: - - type: Transform - pos: -29.5,-38.5 - parent: 2 - proto: WardrobeGreenFilled entities: - uid: 10903 @@ -132501,12 +145613,7 @@ entities: - type: Transform pos: -20.5,-11.5 parent: 2 - - uid: 8526 - components: - - type: Transform - pos: -30.5,-5.5 - parent: 2 - - uid: 14681 + - uid: 11789 components: - type: Transform pos: -29.5,-5.5 @@ -132527,10 +145634,10 @@ entities: parent: 2 - proto: WardrobeSecurityFilled entities: - - uid: 5352 + - uid: 12452 components: - type: Transform - pos: -21.5,16.5 + pos: -22.5,17.5 parent: 2 - proto: WardrobeYellowFilled entities: @@ -132602,25 +145709,20 @@ entities: - type: Transform pos: -1.5,12.5 parent: 2 - - uid: 5946 - components: - - type: Transform - pos: -12.5,-36.5 - parent: 2 - - uid: 7200 + - uid: 6102 components: - type: Transform - pos: 34.5,32.5 + pos: 33.5,-7.5 parent: 2 - uid: 9792 components: - type: Transform pos: -13.5,-51.5 parent: 2 - - uid: 10156 + - uid: 12782 components: - type: Transform - pos: -31.5,-44.5 + pos: -5.5,-62.5 parent: 2 - uid: 14082 components: @@ -132634,30 +145736,10 @@ entities: parent: 2 - proto: WaterTankFull entities: - - uid: 1651 - components: - - type: Transform - pos: 19.5,-10.5 - parent: 2 - - uid: 2603 - components: - - type: Transform - pos: 3.5,-17.5 - parent: 2 - - uid: 3447 - components: - - type: Transform - pos: -17.5,-35.5 - parent: 2 - - uid: 9202 - components: - - type: Transform - pos: -30.5,-41.5 - parent: 2 - - uid: 9551 + - uid: 6329 components: - type: Transform - pos: 23.5,6.5 + pos: 7.5,-55.5 parent: 2 - uid: 12255 components: @@ -132674,6 +145756,11 @@ entities: - type: Transform pos: -7.5,12.5 parent: 2 + - uid: 16939 + components: + - type: Transform + pos: -47.5,-54.5 + parent: 2 - uid: 17165 components: - type: Transform @@ -132684,6 +145771,16 @@ entities: - type: Transform pos: -6.5,25.5 parent: 2 + - uid: 22456 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 22710 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 - proto: WaterVaporCanister entities: - uid: 1458 @@ -132750,13 +145847,18 @@ entities: - uid: 4718 components: - type: Transform - pos: -5.419433,-10.3817625 + pos: -3.431983,-15.230706 parent: 2 - uid: 8867 components: - type: Transform pos: 48.698742,-4.357929 parent: 2 + - uid: 19270 + components: + - type: Transform + pos: 6.466244,-88.86231 + parent: 2 - proto: WelderIndustrialAdvanced entities: - uid: 17034 @@ -132766,40 +145868,45 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 1136 + - uid: 3088 components: - type: Transform - pos: 19.5,-11.5 + pos: 38.5,9.5 parent: 2 - - uid: 3088 + - uid: 5351 components: - type: Transform - pos: 38.5,9.5 + pos: 28.5,24.5 parent: 2 - - uid: 5802 + - uid: 10455 components: - type: Transform - pos: 1.5,-12.5 + pos: -5.5,-11.5 parent: 2 - uid: 12377 components: - type: Transform pos: 25.5,-49.5 parent: 2 - - uid: 12556 + - uid: 12738 components: - type: Transform - pos: -28.5,-58.5 + pos: -2.5,-58.5 parent: 2 - - uid: 17481 + - uid: 12819 components: - type: Transform - pos: -7.5,25.5 + pos: 7.5,-88.5 parent: 2 - - uid: 18907 + - uid: 15767 components: - type: Transform - pos: -34.5,-48.5 + pos: -46.5,-54.5 + parent: 2 + - uid: 17481 + components: + - type: Transform + pos: -7.5,25.5 parent: 2 - uid: 19283 components: @@ -132827,17 +145934,11 @@ entities: parent: 2 - proto: Windoor entities: - - uid: 3157 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-33.5 - parent: 2 - - uid: 3673 + - uid: 1796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-34.5 + rot: 3.141592653589793 rad + pos: -51.5,-51.5 parent: 2 - uid: 7524 components: @@ -132849,24 +145950,6 @@ entities: - type: Transform pos: -19.5,-43.5 parent: 2 - - uid: 11247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-53.5 - parent: 2 - - uid: 11248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-51.5 - parent: 2 - - uid: 13081 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-32.5 - parent: 2 - proto: WindoorChapelLocked entities: - uid: 5903 @@ -132935,6 +146018,26 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-23.5 parent: 2 + - uid: 4855 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 - uid: 7566 components: - type: Transform @@ -132957,10 +146060,11 @@ entities: linkedPorts: 7609: - DoorStatus: Close - - uid: 8224 + - uid: 12433 components: - type: Transform - pos: 20.5,-19.5 + rot: 1.5707963267948966 rad + pos: 18.5,17.5 parent: 2 - uid: 12602 components: @@ -133002,6 +146106,30 @@ entities: - type: Transform pos: 5.5,15.5 parent: 2 + - uid: 21759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 2 + - uid: 22306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-33.5 + parent: 2 + - uid: 22307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-33.5 + parent: 2 + - uid: 22311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-33.5 + parent: 2 - proto: WindoorSecureArmoryLocked entities: - uid: 3570 @@ -133048,59 +146176,57 @@ entities: parent: 2 - proto: WindoorSecureChemistryLocked entities: - - uid: 1312 + - uid: 144 components: - type: Transform - pos: -33.5,-32.5 + pos: -29.5,-33.5 parent: 2 - - uid: 3876 + - uid: 3361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,-36.5 + rot: 1.5707963267948966 rad + pos: -40.5,-36.5 parent: 2 - - uid: 6220 + - uid: 10414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-33.5 + pos: -27.5,-33.5 parent: 2 - - uid: 12874 + - uid: 11937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-34.5 + rot: 1.5707963267948966 rad + pos: -27.5,-36.5 parent: 2 -- proto: WindoorSecureCommandLocked - entities: - - uid: 4818 + - uid: 12508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-34.5 + pos: -28.5,-33.5 parent: 2 - - uid: 6341 + - uid: 22305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,1.5 + pos: -35.5,-34.5 parent: 2 - - uid: 6545 +- proto: WindoorSecureCommandLocked + entities: + - uid: 66 components: - type: Transform - pos: 24.5,2.5 + rot: 3.141592653589793 rad + pos: 27.5,-9.5 parent: 2 - - uid: 6964 + - uid: 4818 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-10.5 + rot: 1.5707963267948966 rad + pos: 28.5,-34.5 parent: 2 - - uid: 6996 + - uid: 7005 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,-10.5 + pos: 23.5,-9.5 parent: 2 - uid: 7606 components: @@ -133114,11 +146240,10 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,-12.5 parent: 2 - - uid: 12663 + - uid: 11497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-18.5 + pos: 9.5,-15.5 parent: 2 - uid: 16415 components: @@ -133172,11 +146297,28 @@ entities: - DoorStatus: Close - proto: WindoorSecureJanitorLocked entities: - - uid: 9598 + - uid: 5537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,6.5 + pos: 28.5,5.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - uid: 17460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - uid: 21885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,1.5 parent: 2 - proto: WindoorSecureKitchenLocked entities: @@ -133200,26 +146342,40 @@ entities: parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 8542 + - uid: 4822 components: - type: Transform - pos: -49.5,-28.5 + rot: 3.141592653589793 rad + pos: -35.5,-34.5 parent: 2 - - uid: 9277 + - uid: 8732 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-36.5 + parent: 2 + - uid: 21758 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - uid: 22137 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-32.5 + pos: -29.5,-26.5 parent: 2 - - uid: 12111 + - uid: 22150 components: - type: Transform - pos: -28.5,-28.5 + rot: 3.141592653589793 rad + pos: -27.5,-26.5 parent: 2 - - uid: 12112 + - uid: 22310 components: - type: Transform - pos: -27.5,-28.5 + rot: 3.141592653589793 rad + pos: -28.5,-26.5 parent: 2 - proto: WindoorSecureSalvageLocked entities: @@ -133291,30 +146447,36 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-11.5 parent: 2 - - uid: 18668 + - uid: 5020 components: - type: Transform - pos: -22.5,0.5 + rot: 1.5707963267948966 rad + pos: -28.5,-10.5 parent: 2 - - uid: 18916 + - uid: 13169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-10.5 + rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 18668 + components: + - type: Transform + pos: -22.5,0.5 parent: 2 - proto: WindoorServiceLocked entities: - - uid: 3986 + - uid: 6903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-36.5 + rot: -1.5707963267948966 rad + pos: 20.5,-39.5 parent: 2 - - uid: 18855 + - uid: 10924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-37.5 + rot: -1.5707963267948966 rad + pos: 20.5,-41.5 parent: 2 - proto: WindoorTheatreLocked entities: @@ -133332,10 +146494,10 @@ entities: parent: 2 - proto: Window entities: - - uid: 185 + - uid: 724 components: - type: Transform - pos: -34.5,-36.5 + pos: -36.5,-37.5 parent: 2 - uid: 2324 components: @@ -133372,11 +146534,6 @@ entities: - type: Transform pos: -17.5,-21.5 parent: 2 - - uid: 3423 - components: - - type: Transform - pos: -17.5,-36.5 - parent: 2 - uid: 3519 components: - type: Transform @@ -133407,11 +146564,6 @@ entities: - type: Transform pos: 13.5,-39.5 parent: 2 - - uid: 3747 - components: - - type: Transform - pos: 15.5,-41.5 - parent: 2 - uid: 3749 components: - type: Transform @@ -133437,21 +146589,31 @@ entities: - type: Transform pos: -21.5,-24.5 parent: 2 - - uid: 4661 + - uid: 5215 components: - type: Transform - pos: -32.5,-36.5 + pos: 16.5,-44.5 parent: 2 - - uid: 6311 + - uid: 7885 components: - type: Transform - pos: 19.5,-45.5 + pos: 17.5,-10.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: 17.5,-9.5 parent: 2 - uid: 8902 components: - type: Transform pos: 16.5,-23.5 parent: 2 + - uid: 9447 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 - uid: 9573 components: - type: Transform @@ -133467,6 +146629,11 @@ entities: - type: Transform pos: 13.5,-27.5 parent: 2 + - uid: 12070 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 - uid: 12197 components: - type: Transform @@ -133474,11 +146641,11 @@ entities: parent: 2 - proto: WindowDirectional entities: - - uid: 3985 + - uid: 339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-35.5 + rot: 3.141592653589793 rad + pos: -44.5,-29.5 parent: 2 - uid: 4198 components: @@ -133496,26 +146663,134 @@ entities: - type: Transform pos: 38.5,-26.5 parent: 2 - - uid: 6264 + - uid: 4607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-50.5 + pos: -30.5,-29.5 parent: 2 - - uid: 11245 + - uid: 4611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,-52.5 + pos: -26.5,-29.5 parent: 2 - - uid: 11246 + - uid: 5008 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 8470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-27.5 + parent: 2 + - uid: 9925 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-53.5 + pos: -45.5,-29.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-30.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-30.5 + parent: 2 + - uid: 10921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-40.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-30.5 + parent: 2 + - uid: 11334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 2 + - uid: 11940 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,-27.5 + parent: 2 + - uid: 22130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-51.5 parent: 2 - proto: WindowFrostedDirectional entities: + - uid: 3172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-51.5 + parent: 2 + - uid: 4311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-53.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-51.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-51.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-51.5 + parent: 2 - uid: 5600 components: - type: Transform @@ -133550,34 +146825,42 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-9.5 parent: 2 -- proto: WindowReinforcedDirectional - entities: - - uid: 341 + - uid: 10574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-52.5 + parent: 2 + - uid: 12723 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,-33.5 + pos: 4.5,-53.5 parent: 2 - - uid: 692 + - uid: 14965 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-11.5 + rot: -1.5707963267948966 rad + pos: 4.5,-52.5 parent: 2 - - uid: 1904 +- proto: WindowReinforcedDirectional + entities: + - uid: 38 components: - type: Transform - pos: -52.5,-28.5 + pos: -28.5,-8.5 parent: 2 - - uid: 2239 + - uid: 341 components: - type: Transform - pos: 21.5,-19.5 + rot: -1.5707963267948966 rad + pos: 30.5,-33.5 parent: 2 - - uid: 2257 + - uid: 2249 components: - type: Transform - pos: 19.5,-19.5 + rot: 3.141592653589793 rad + pos: 24.5,-9.5 parent: 2 - uid: 3098 components: @@ -133620,12 +146903,6 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-29.5 parent: 2 - - uid: 3544 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-44.5 - parent: 2 - uid: 3553 components: - type: Transform @@ -133716,69 +146993,17 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-35.5 parent: 2 - - uid: 4916 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-42.5 - parent: 2 - - uid: 4944 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-27.5 - parent: 2 - - uid: 4945 + - uid: 4777 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,-25.5 + pos: 10.5,-19.5 parent: 2 - - uid: 5187 + - uid: 4916 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,-29.5 - parent: 2 - - uid: 5198 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-32.5 - parent: 2 - - uid: 5203 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-32.5 - parent: 2 - - uid: 5209 - components: - - type: Transform - pos: -42.5,-42.5 - parent: 2 - - uid: 5227 - components: - - type: Transform - pos: -40.5,-42.5 - parent: 2 - - uid: 5233 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-41.5 - parent: 2 - - uid: 5241 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-41.5 - parent: 2 - - uid: 5242 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,-41.5 + pos: -3.5,-42.5 parent: 2 - uid: 5595 components: @@ -133791,51 +147016,22 @@ entities: - type: Transform pos: 29.5,-57.5 parent: 2 - - uid: 6338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-0.5 - parent: 2 - - uid: 6347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,0.5 - parent: 2 - uid: 6497 components: - type: Transform pos: -18.5,-54.5 parent: 2 - - uid: 6547 - components: - - type: Transform - pos: 25.5,2.5 - parent: 2 - - uid: 6912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,-10.5 - parent: 2 - - uid: 6963 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-10.5 - parent: 2 - - uid: 6965 + - uid: 6662 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-10.5 + pos: 25.5,-9.5 parent: 2 - - uid: 7346 + - uid: 7393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-41.5 + rot: -1.5707963267948966 rad + pos: 28.5,5.5 parent: 2 - uid: 7565 components: @@ -133858,40 +147054,32 @@ entities: rot: 3.141592653589793 rad pos: 48.5,-23.5 parent: 2 - - uid: 7968 - components: - - type: Transform - pos: -38.5,-42.5 - parent: 2 - - uid: 8024 + - uid: 7645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-41.5 + rot: 1.5707963267948966 rad + pos: -54.5,-21.5 parent: 2 - - uid: 8026 + - uid: 7920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-42.5 + pos: 19.5,-19.5 parent: 2 - - uid: 8083 + - uid: 8087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-42.5 + pos: 29.5,4.5 parent: 2 - - uid: 8270 + - uid: 8224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-24.5 + pos: 21.5,-19.5 parent: 2 - - uid: 9139 + - uid: 8350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-9.5 + rot: 3.141592653589793 rad + pos: 26.5,-9.5 parent: 2 - uid: 9252 components: @@ -133963,84 +147151,87 @@ entities: - type: Transform pos: -16.5,-54.5 parent: 2 - - uid: 11356 + - uid: 9968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-35.5 + rot: 1.5707963267948966 rad + pos: -28.5,-11.5 parent: 2 - - uid: 11826 + - uid: 11019 components: - type: Transform - pos: -51.5,-28.5 + pos: 8.5,-15.5 parent: 2 - - uid: 11903 + - uid: 11305 components: - type: Transform - pos: -50.5,-28.5 + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 parent: 2 - - uid: 11908 + - uid: 11356 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,-17.5 + pos: 30.5,-35.5 parent: 2 - - uid: 11953 + - uid: 11500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,12.5 + pos: 10.5,-15.5 parent: 2 - - uid: 11960 + - uid: 11618 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,11.5 + pos: -28.5,-9.5 parent: 2 - - uid: 14428 + - uid: 11953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-19.5 + rot: 1.5707963267948966 rad + pos: -28.5,12.5 parent: 2 - - uid: 15760 + - uid: 11960 components: - type: Transform - pos: -27.5,-8.5 + rot: 1.5707963267948966 rad + pos: -28.5,11.5 parent: 2 - - uid: 16034 + - uid: 12994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,-31.5 + rot: 3.141592653589793 rad + pos: -42.5,-22.5 parent: 2 - - uid: 16062 + - uid: 12996 components: - type: Transform - pos: -41.5,-42.5 + rot: 3.141592653589793 rad + pos: -43.5,-22.5 parent: 2 - - uid: 16063 + - uid: 12998 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-32.5 + pos: -44.5,-22.5 parent: 2 - - uid: 16095 + - uid: 12999 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-41.5 + pos: -45.5,-22.5 parent: 2 - - uid: 16096 + - uid: 13170 components: - type: Transform - pos: -39.5,-42.5 + rot: 1.5707963267948966 rad + pos: 10.5,-18.5 parent: 2 - - uid: 16097 + - uid: 13231 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-41.5 + rot: 1.5707963267948966 rad + pos: -54.5,-23.5 parent: 2 - uid: 16461 components: @@ -134048,12 +147239,6 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,-16.5 parent: 2 - - uid: 16475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-24.5 - parent: 2 - uid: 17452 components: - type: Transform @@ -134120,11 +147305,6 @@ entities: - type: Transform pos: 27.57422,-50.418713 parent: 2 - - uid: 17542 - components: - - type: Transform - pos: 14.701017,-2.216905 - parent: 2 - uid: 20660 components: - type: Transform @@ -134132,6 +147312,11 @@ entities: parent: 2 - proto: WoodDoor entities: + - uid: 4022 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 - uid: 5206 components: - type: Transform @@ -134147,10 +147332,10 @@ entities: - type: Transform pos: 38.5,0.5 parent: 2 - - uid: 15617 + - uid: 15254 components: - type: Transform - pos: -41.5,-37.5 + pos: -39.5,-54.5 parent: 2 - uid: 16197 components: @@ -134162,11 +147347,6 @@ entities: - type: Transform pos: 39.5,-13.5 parent: 2 - - uid: 20336 - components: - - type: Transform - pos: 40.5,10.5 - parent: 2 - proto: WoodenBench entities: - uid: 1319 @@ -134181,12 +147361,6 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,30.5 parent: 2 - - uid: 5377 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,32.5 - parent: 2 - uid: 6074 components: - type: Transform @@ -134235,6 +147409,12 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-16.5 parent: 2 + - uid: 12141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,32.5 + parent: 2 - proto: Wrench entities: - uid: 4063 @@ -134252,26 +147432,26 @@ entities: - type: Transform pos: 41.480793,-36.388645 parent: 2 - - uid: 15383 + - uid: 12677 components: - type: Transform - pos: -13.512281,-21.38337 + pos: -50.518612,-36.425438 parent: 2 - - uid: 18889 + - uid: 15383 components: - type: Transform - pos: -26.532364,-21.427582 + pos: -13.512281,-21.38337 parent: 2 - proto: Zipties entities: - uid: 6296 components: - type: Transform - pos: -27.437857,-7.60735 + pos: -28.469805,-8.400824 parent: 2 - uid: 16264 components: - type: Transform - pos: -27.48994,-7.388448 + pos: -28.5636,-8.140225 parent: 2 ... diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml index a033bfe6ba58..3d55e34adf14 100644 --- a/Resources/Maps/bagel.yml +++ b/Resources/Maps/bagel.yml @@ -732,7 +732,6 @@ entities: 3941: -5,17 3979: -56,13 3980: -54,13 - 4774: 6,-20 4869: -31,19 4870: -31,20 4871: -31,21 @@ -2272,22 +2271,6 @@ entities: 4866: 32,30 4867: 32,31 4868: 32,32 - - node: - color: '#DE3A3A96' - id: CheckerNESW - decals: - 4750: 6,-22 - 4751: 6,-21 - 4752: 6,-20 - 4753: 7,-20 - 4754: 8,-20 - 4755: 9,-20 - 4756: 9,-21 - 4757: 9,-22 - 4758: 8,-22 - 4759: 7,-22 - 4760: 7,-21 - 4761: 8,-21 - node: color: '#334E6DC8' id: CheckerNWSE @@ -2300,22 +2283,6 @@ entities: 620: -68,17 621: -69,17 622: -62,17 - - node: - color: '#43990996' - id: CheckerNWSE - decals: - 4762: 6,-22 - 4763: 6,-21 - 4764: 6,-20 - 4765: 7,-20 - 4766: 7,-21 - 4767: 7,-22 - 4768: 8,-22 - 4769: 8,-21 - 4770: 8,-20 - 4771: 9,-20 - 4772: 9,-21 - 4773: 9,-22 - node: color: '#52B4E996' id: CheckerNWSE @@ -2916,7 +2883,6 @@ entities: 3494: 8,14 3855: -11,-17 3856: -11,-14 - 4778: 9,-22 - node: color: '#FFFFFFFF' id: DirtLight @@ -3039,7 +3005,6 @@ entities: 830: -8,-25 835: -4,-24 836: -1,-25 - 893: 10,-23 895: -6,-23 896: -25,-23 897: -34,-23 @@ -3075,10 +3040,7 @@ entities: 1172: 5,8 1173: -7,9 1174: -8,8 - 1214: 5,-23 - 1215: 4,-23 1216: 7,-24 - 1217: 23,-23 1218: 18,-28 1219: 21,-35 1220: 19,-34 @@ -3260,12 +3222,6 @@ entities: 4665: 16,-18 4666: 16,-12 4667: 15,-21 - 4668: 16,-25 - 4669: 13,-25 - 4670: 12,-23 - 4775: 6,-22 - 4776: 9,-21 - 4777: 9,-20 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3353,7 +3309,6 @@ entities: 4630: -28,-19 4658: 17,-16 4659: 17,-15 - 4779: 6,-20 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -4133,23 +4088,6 @@ entities: 886: -1,-12 887: -1,-11 888: -1,-10 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale - decals: - 4685: 6,-23 - 4686: 7,-23 - 4687: 8,-23 - 4688: 9,-23 - 4689: 5,-23 - 4690: 4,-23 - 4691: 3,-23 - 4692: 10,-23 - 4693: 11,-23 - 4694: 12,-23 - 4695: 13,-23 - 4696: 14,-23 - 4697: 15,-23 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale @@ -4266,10 +4204,6 @@ entities: 1183: -17,19 1184: -17,20 1185: -17,21 - 1370: 6,-23 - 1371: 5,-23 - 1372: 4,-23 - 1373: 3,-23 1394: -4,10 1395: -5,10 1396: -6,10 @@ -4292,10 +4226,6 @@ entities: 1462: -24,-23 1463: -25,-23 1464: -26,-23 - 1468: 10,-23 - 1469: 11,-23 - 1471: 13,-23 - 1472: 14,-23 1487: 36,10 1488: 36,11 1489: 37,11 @@ -4316,7 +4246,6 @@ entities: 2567: 15,12 2568: 15,11 2569: 15,9 - 2572: 15,-23 2575: -17,-23 2600: 15,23 2601: 15,24 @@ -4370,7 +4299,17 @@ entities: 4235: 15,-10 4652: 15,-12 4654: 15,-11 - 4671: 12,-23 + 4924: 3,-23 + 4925: 4,-23 + 4926: 5,-23 + 4927: 6,-23 + 4928: 6,-22 + 4929: 6,-21 + 4930: 6,-20 + 4943: 13,-23 + 4944: 14,-23 + 4946: 15,-23 + 4947: 7,-20 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale @@ -4439,18 +4378,6 @@ entities: 662: -17,-6 698: -18,1 699: -18,2 - 4813: 29,-23 - 4814: 28,-23 - 4815: 27,-23 - 4816: 26,-23 - 4817: 25,-23 - 4818: 24,-23 - 4819: 23,-23 - 4820: 22,-23 - 4821: 21,-23 - 4822: 20,-23 - 4823: 19,-23 - 4824: 18,-23 - node: color: '#EFCC4196' id: QuarterTileOverlayGreyscale @@ -4494,26 +4421,6 @@ entities: 3886: -29,30 3887: -30,30 3888: -31,30 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale180 - decals: - 4718: 17,-25 - 4720: 19,-25 - 4721: 20,-25 - 4723: 21,-25 - 4724: 22,-25 - 4725: 23,-25 - 4726: 24,-25 - 4727: 25,-25 - 4728: 26,-25 - 4729: 27,-25 - 4730: 28,-25 - 4731: 29,-25 - 4732: 30,-25 - 4733: 31,-25 - 4734: 32,-25 - 4826: 18,-25 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale180 @@ -4565,6 +4472,9 @@ entities: 3556: 35,-25 3557: 34,-25 3558: 33,-25 + 4967: 30,-25 + 4968: 31,-25 + 4969: 32,-25 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -4639,20 +4549,6 @@ entities: 2648: 2,-78 2649: 2,-77 2650: 2,-76 - 3559: 32,-25 - 3560: 31,-25 - 3561: 30,-25 - 3562: 29,-25 - 3563: 28,-25 - 3564: 27,-25 - 3565: 26,-25 - 3566: 25,-25 - 3567: 23,-25 - 3568: 24,-25 - 3569: 22,-25 - 3570: 21,-25 - 3571: 20,-25 - 3572: 19,-25 4080: 17,-3 4081: 17,-3 4082: 17,-4 @@ -4684,6 +4580,18 @@ entities: 4612: 55,30 4613: 55,29 4614: 55,28 + 4955: 17,-25 + 4956: 18,-25 + 4957: 19,-25 + 4958: 20,-25 + 4959: 21,-25 + 4960: 22,-25 + 4961: 23,-25 + 4962: 24,-25 + 4963: 25,-25 + 4964: 26,-25 + 4965: 27,-25 + 4966: 28,-25 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale180 @@ -4714,16 +4622,6 @@ entities: 4470: 36,50 4521: 44,20 4522: 45,20 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 4792: 14,-25 - 4793: 13,-25 - 4794: 12,-25 - 4795: 11,-25 - 4796: 10,-25 - 4797: 9,-25 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale180 @@ -4757,17 +4655,6 @@ entities: 610: -74,16 611: -73,16 612: -72,16 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale270 - decals: - 4711: 9,-25 - 4712: 10,-25 - 4713: 11,-25 - 4714: 12,-25 - 4715: 13,-25 - 4716: 14,-25 - 4717: 15,-25 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale270 @@ -4969,6 +4856,13 @@ entities: 4621: 53,34 4622: 53,35 4623: 53,36 + 4948: 9,-25 + 4949: 10,-25 + 4950: 11,-25 + 4951: 12,-25 + 4952: 13,-25 + 4953: 14,-25 + 4954: 15,-25 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale270 @@ -4992,21 +4886,6 @@ entities: decals: 696: -18,-1 697: -18,0 - 4798: 18,-25 - 4799: 19,-25 - 4800: 20,-25 - 4801: 21,-25 - 4802: 22,-25 - 4803: 23,-25 - 4804: 24,-25 - 4805: 25,-25 - 4806: 26,-25 - 4807: 27,-25 - 4808: 28,-25 - 4809: 29,-25 - 4810: 30,-25 - 4811: 31,-25 - 4812: 32,-25 - node: color: '#EFB3414A' id: QuarterTileOverlayGreyscale270 @@ -5051,23 +4930,6 @@ entities: 874: 1,-19 875: 1,-20 876: 1,-21 - - node: - color: '#43990996' - id: QuarterTileOverlayGreyscale90 - decals: - 4698: 17,-23 - 4700: 19,-23 - 4701: 20,-23 - 4702: 21,-23 - 4703: 22,-23 - 4704: 23,-23 - 4705: 24,-23 - 4706: 25,-23 - 4707: 26,-23 - 4708: 27,-23 - 4709: 28,-23 - 4710: 29,-23 - 4825: 18,-23 - node: color: '#52B4E92E' id: QuarterTileOverlayGreyscale90 @@ -5199,17 +5061,6 @@ entities: 1427: -34,25 1428: -33,25 1473: 30,-23 - 1474: 29,-23 - 1475: 28,-23 - 1476: 27,-23 - 1477: 26,-23 - 1478: 25,-23 - 1479: 24,-23 - 1480: 23,-23 - 1481: 22,-23 - 1482: 21,-23 - 1483: 20,-23 - 1484: 19,-23 1491: -15,1 1492: -15,0 1493: -14,0 @@ -5248,7 +5099,6 @@ entities: 2557: 17,12 2558: 17,11 2570: 17,9 - 2574: 17,-23 2577: -18,-23 2578: -15,-23 2579: -15,-22 @@ -5296,6 +5146,26 @@ entities: 4655: 17,-14 4656: 17,-13 4657: 17,-10 + 4933: 8,-20 + 4934: 8,-20 + 4935: 9,-20 + 4936: 9,-21 + 4937: 9,-22 + 4938: 9,-23 + 4939: 10,-23 + 4940: 11,-23 + 4970: 29,-23 + 4971: 28,-23 + 4972: 27,-23 + 4973: 26,-23 + 4974: 25,-23 + 4975: 24,-23 + 4976: 23,-23 + 4977: 22,-23 + 4978: 21,-23 + 4979: 20,-23 + 4980: 19,-23 + 4981: 18,-23 - node: color: '#D4D4D437' id: QuarterTileOverlayGreyscale90 @@ -5355,18 +5225,6 @@ entities: 1635: -8,-15 1636: -8,-14 1637: -8,-13 - 4780: 3,-23 - 4781: 4,-23 - 4782: 5,-23 - 4783: 6,-23 - 4784: 7,-23 - 4785: 8,-23 - 4786: 9,-23 - 4787: 10,-23 - 4788: 11,-23 - 4789: 12,-23 - 4790: 13,-23 - 4791: 14,-23 - node: color: '#EFB34160' id: QuarterTileOverlayGreyscale90 @@ -6143,10 +6001,10 @@ entities: 4103: -18,7 4211: -17,32 4243: 38,23 - 4828: 18,-25 4881: -1,24 4882: 0,24 4883: 1,24 + 4983: 18,-25 - node: color: '#DE3A3A96' id: WarnLineS @@ -6282,10 +6140,10 @@ entities: 4187: 57,3 4213: -17,34 4244: 38,25 - 4827: 18,-23 4888: -1,24 4889: 0,24 4890: 1,24 + 4982: 18,-23 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -8383,7 +8241,7 @@ entities: 1: 39312 -12,8: 4: 12 - 6: 3072 + 5: 3072 -11,5: 0: 63351 -11,6: @@ -8392,7 +8250,7 @@ entities: -11,8: 4: 1 1: 17476 - 6: 256 + 5: 256 -11,7: 1: 17484 -10,5: @@ -8490,10 +8348,10 @@ entities: 0: 255 1: 57344 -8,11: - 5: 816 + 6: 816 1: 34952 -9,11: - 5: 2176 + 6: 2176 1: 8738 -8,12: 1: 34959 @@ -8513,7 +8371,7 @@ entities: -6,11: 0: 4095 -6,12: - 5: 61166 + 6: 61166 -5,9: 0: 65528 -5,10: @@ -8521,7 +8379,7 @@ entities: -5,11: 0: 36863 -5,12: - 5: 30515 + 6: 30515 0: 12 -4,9: 0: 65528 @@ -8531,7 +8389,7 @@ entities: 0: 4095 -4,12: 0: 1 - 5: 65518 + 6: 65518 -4,13: 1: 61680 -5,13: @@ -8545,7 +8403,7 @@ entities: -5,15: 1: 17487 -3,12: - 5: 13107 + 6: 13107 1: 34944 -3,13: 1: 47792 @@ -8611,7 +8469,7 @@ entities: 1: 61713 -12,9: 0: 16 - 5: 3084 + 6: 3084 -13,9: 1: 39305 -13,10: @@ -8621,18 +8479,18 @@ entities: 0: 12544 -12,10: 3: 12 - 5: 3072 + 6: 3072 -12,11: - 5: 12 + 6: 12 -11,9: - 5: 257 + 6: 257 1: 17476 -11,10: 3: 1 - 5: 256 + 6: 256 1: 17476 -11,11: - 5: 1 + 6: 1 1: 17476 -11,12: 1: 17487 @@ -8686,7 +8544,7 @@ entities: 1: 15 -13,12: 1: 34952 - 6: 48 + 5: 48 4: 12288 -12,13: 1: 61455 @@ -8720,11 +8578,11 @@ entities: 1: 62671 -7,14: 1: 244 - 5: 57344 + 6: 57344 0: 1024 -7,15: 1: 61440 - 5: 238 + 6: 238 0: 1024 -7,16: 1: 65524 @@ -8783,7 +8641,7 @@ entities: -14,12: 0: 1 1: 8738 - 6: 128 + 5: 128 4: 32768 -17,12: 0: 52232 @@ -9392,7 +9250,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 + - 6666.982 - 0 - 0 - 0 @@ -9407,7 +9265,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 + - 0 - 0 - 0 - 0 @@ -9755,6 +9613,22 @@ entities: parent: 19510 - type: InstantAction container: 19510 +- proto: ActionToggleLight + entities: + - uid: 4547 + components: + - type: Transform + parent: 18456 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 18456 + - uid: 13684 + components: + - type: Transform + parent: 18476 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 18476 - proto: AirAlarm entities: - uid: 249 @@ -15711,6 +15585,11 @@ entities: - type: Transform pos: -40.5,-10.5 parent: 60 + - uid: 18801 + components: + - type: Transform + pos: -0.5,17.5 + parent: 60 - proto: BananaPhoneInstrument entities: - uid: 21478 @@ -17108,7 +16987,7 @@ entities: - uid: 16092 components: - type: Transform - pos: 0.97444147,20.461615 + pos: 0.43422604,17.607504 parent: 60 - proto: BoxMouthSwab entities: @@ -17311,6 +17190,11 @@ entities: parent: 60 - proto: ButtonFrameCaution entities: + - uid: 666 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 60 - uid: 4723 components: - type: Transform @@ -17454,11 +17338,6 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-21.5 parent: 60 - - uid: 25395 - components: - - type: Transform - pos: -8.5,-2.5 - parent: 60 - proto: ButtonFrameGrey entities: - uid: 19839 @@ -49566,6 +49445,13 @@ entities: - type: Transform pos: 23.743336,21.526909 parent: 60 +- proto: CaptainIDCard + entities: + - uid: 60213 + components: + - type: Transform + pos: 238.36444,73.83216 + parent: 943 - proto: CarbonDioxideCanister entities: - uid: 15245 @@ -49747,26 +49633,6 @@ entities: - type: Transform pos: -23.5,16.5 parent: 60 - - uid: 23652 - components: - - type: Transform - pos: 8.5,-21.5 - parent: 60 - - uid: 23653 - components: - - type: Transform - pos: 7.5,-20.5 - parent: 60 - - uid: 23914 - components: - - type: Transform - pos: 7.5,-21.5 - parent: 60 - - uid: 23915 - components: - - type: Transform - pos: 8.5,-20.5 - parent: 60 - uid: 24171 components: - type: Transform @@ -49946,31 +49812,6 @@ entities: parent: 60 - proto: CarpetGreen entities: - - uid: 666 - components: - - type: Transform - pos: 20.5,-27.5 - parent: 60 - - uid: 2278 - components: - - type: Transform - pos: 19.5,-26.5 - parent: 60 - - uid: 2569 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 60 - - uid: 2584 - components: - - type: Transform - pos: 19.5,-27.5 - parent: 60 - - uid: 3156 - components: - - type: Transform - pos: 21.5,-26.5 - parent: 60 - uid: 4195 components: - type: Transform @@ -50318,11 +50159,6 @@ entities: - type: Transform pos: 52.5,-44.5 parent: 60 - - uid: 23892 - components: - - type: Transform - pos: 21.5,-27.5 - parent: 60 - proto: CarpetOrange entities: - uid: 1071 @@ -57065,18 +56901,6 @@ entities: rot: 1.5707963267948966 rad pos: -0.5,20.5 parent: 60 - - uid: 15698 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,19.5 - parent: 60 - - uid: 15702 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,19.5 - parent: 60 - uid: 15703 components: - type: Transform @@ -60615,46 +60439,6 @@ entities: - type: Transform pos: -15.664602,-30.50866 parent: 60 - - uid: 23905 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23906 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23907 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23908 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23909 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23910 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23911 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - - uid: 23912 - components: - - type: Transform - pos: -27.341524,-2.4224424 - parent: 60 - proto: ClothingHeadHatSkub entities: - uid: 6791 @@ -60712,8 +60496,7 @@ entities: - uid: 6584 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.3543596,15.57648 + pos: 2.287873,17.693514 parent: 60 - uid: 9612 components: @@ -60723,8 +60506,7 @@ entities: - uid: 13716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5262346,15.435855 + pos: 2.448494,17.568514 parent: 60 - uid: 21464 components: @@ -60852,7 +60634,7 @@ entities: - uid: 16082 components: - type: Transform - pos: 1.4378321,20.761402 + pos: 1.3649788,21.025267 parent: 60 - proto: ClothingHeadsetMedicalScience entities: @@ -61348,48 +61130,6 @@ entities: - type: Transform pos: 22.509872,-51.419544 parent: 60 -- proto: ClothingOuterSanta - entities: - - uid: 23897 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23898 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23899 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23900 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23901 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23902 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23903 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - - uid: 23904 - components: - - type: Transform - pos: -27.591524,-2.2661924 - parent: 60 - proto: ClothingOuterSkub entities: - uid: 6793 @@ -63743,11 +63483,6 @@ entities: - type: Transform pos: -16.5,-29.5 parent: 60 - - uid: 23919 - components: - - type: Transform - pos: 20.5,-26.5 - parent: 60 - proto: DefaultStationBeacon entities: - uid: 20983 @@ -73033,11 +72768,6 @@ entities: - type: Transform pos: -7.5,-2.5 parent: 60 - - uid: 23894 - components: - - type: Transform - pos: 18.5,-26.5 - parent: 60 - proto: Flare entities: - uid: 9525 @@ -73082,13 +72812,41 @@ entities: - uid: 18456 components: - type: Transform - pos: 1.5308173,20.376057 + pos: 0.76574916,21.115711 parent: 60 + - type: HandheldLight + toggleActionEntity: 4547 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 4547 + - type: ActionsContainer - uid: 18476 components: - type: Transform - pos: 1.6245673,20.188557 + pos: 0.68762416,21.240711 parent: 60 + - type: HandheldLight + toggleActionEntity: 13684 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 13684 + - type: ActionsContainer - uid: 18702 components: - type: Transform @@ -73946,13 +73704,6 @@ entities: - type: Transform pos: -65.522354,23.506481 parent: 60 -- proto: FloraTreeChristmas02 - entities: - - uid: 23913 - components: - - type: Transform - pos: 7.9998736,-21.48742 - parent: 60 - proto: FoodApple entities: - uid: 7496 @@ -74188,12 +73939,12 @@ entities: - uid: 16093 components: - type: Transform - pos: 0.49396247,20.925829 + pos: 0.5013861,20.773125 parent: 60 - uid: 16094 components: - type: Transform - pos: 0.6231174,20.88675 + pos: 0.7201361,20.6325 parent: 60 - proto: FoodPlateSmall entities: @@ -110836,11 +110587,6 @@ entities: - type: Transform pos: -61.5,15.5 parent: 60 - - uid: 18801 - components: - - type: Transform - pos: 0.52521247,19.644579 - parent: 60 - proto: JetpackMiniFilled entities: - uid: 4647 @@ -113052,7 +112798,7 @@ entities: - uid: 16090 components: - type: Transform - pos: 1.0003321,21.120777 + pos: 0.83625203,17.623129 parent: 60 - uid: 17912 components: @@ -113994,7 +113740,7 @@ entities: - uid: 16988 components: - type: Transform - pos: 0.57978624,20.080126 + pos: 1.6429996,20.509642 parent: 60 - uid: 17387 components: @@ -115894,11 +115640,6 @@ entities: - type: Transform pos: 36.5,-13.5 parent: 60 - - uid: 857 - components: - - type: Transform - pos: 0.5,20.5 - parent: 60 - uid: 1620 components: - type: Transform @@ -115966,6 +115707,11 @@ entities: rot: 3.141592653589793 rad pos: 7.5,15.5 parent: 60 + - uid: 15698 + components: + - type: Transform + pos: 3.5,17.5 + parent: 60 - uid: 16987 components: - type: Transform @@ -119257,23 +119003,6 @@ entities: parent: 60 - type: ApcPowerReceiver powerLoad: 0 -- proto: PresentRandom - entities: - - uid: 23920 - components: - - type: Transform - pos: 19.509592,-26.607985 - parent: 60 - - uid: 23921 - components: - - type: Transform - pos: 19.650217,-27.232985 - parent: 60 - - uid: 23922 - components: - - type: Transform - pos: 21.337717,-26.654861 - parent: 60 - proto: Protolathe entities: - uid: 7081 @@ -119290,11 +119019,6 @@ entities: parent: 60 - proto: Rack entities: - - uid: 536 - components: - - type: Transform - pos: 5.5,13.5 - parent: 60 - uid: 958 components: - type: Transform @@ -119565,6 +119289,11 @@ entities: - type: Transform pos: -27.5,32.5 parent: 60 + - uid: 15695 + components: + - type: Transform + pos: 5.5,13.5 + parent: 60 - uid: 16065 components: - type: Transform @@ -119719,26 +119448,6 @@ entities: - type: Transform pos: 24.630735,-0.3057616 parent: 60 - - uid: 16085 - components: - - type: Transform - pos: 1.2244415,19.742865 - parent: 60 - - uid: 16086 - components: - - type: Transform - pos: 1.4275665,19.899115 - parent: 60 - - uid: 16087 - components: - - type: Transform - pos: 1.6463165,19.742865 - parent: 60 - - uid: 16088 - components: - - type: Transform - pos: 1.4275665,19.555365 - parent: 60 - uid: 19150 components: - type: Transform @@ -126380,6 +126089,16 @@ entities: - type: Transform pos: -27.5,32.5 parent: 60 + - uid: 15702 + components: + - type: Transform + pos: 1.5009258,17.567764 + parent: 60 + - uid: 16085 + components: + - type: Transform + pos: 1.5009258,17.567764 + parent: 60 - uid: 17024 components: - type: Transform @@ -132733,25 +132452,25 @@ entities: parent: 60 - proto: SpawnPointTechnicalAssistant entities: - - uid: 4547 + - uid: 7562 components: - type: Transform - pos: -0.5,19.5 + pos: 2.5,21.5 parent: 60 - - uid: 7562 + - uid: 16086 components: - type: Transform - pos: 2.5,21.5 + pos: -0.5,20.5 parent: 60 - - uid: 17297 + - uid: 16087 components: - type: Transform - pos: 2.5,20.5 + pos: -0.5,21.5 parent: 60 - - uid: 17386 + - uid: 17297 components: - type: Transform - pos: 2.5,19.5 + pos: 2.5,20.5 parent: 60 - proto: SpawnPointWarden entities: @@ -136017,6 +135736,11 @@ entities: - type: Transform pos: 55.5,-8.5 parent: 60 + - uid: 536 + components: + - type: Transform + pos: 0.5,17.5 + parent: 60 - uid: 730 components: - type: Transform @@ -136032,6 +135756,11 @@ entities: - type: Transform pos: 39.5,-10.5 parent: 60 + - uid: 857 + components: + - type: Transform + pos: 1.5,17.5 + parent: 60 - uid: 948 components: - type: Transform @@ -136673,11 +136402,6 @@ entities: - type: Transform pos: 1.5,20.5 parent: 60 - - uid: 15695 - components: - - type: Transform - pos: 0.5,19.5 - parent: 60 - uid: 15696 components: - type: Transform @@ -136691,7 +136415,7 @@ entities: - uid: 15700 components: - type: Transform - pos: 1.5,19.5 + pos: 2.5,17.5 parent: 60 - uid: 15701 components: @@ -136718,6 +136442,11 @@ entities: - type: Transform pos: 42.5,-1.5 parent: 60 + - uid: 16088 + components: + - type: Transform + pos: 3.5,17.5 + parent: 60 - uid: 16410 components: - type: Transform @@ -137146,13 +136875,6 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,21.5 parent: 60 -- proto: TableFancyGreen - entities: - - uid: 23896 - components: - - type: Transform - pos: -27.5,-2.5 - parent: 60 - proto: TableGlass entities: - uid: 123 @@ -138761,15 +138483,15 @@ entities: - type: Transform pos: 14.490113,-48.331394 parent: 60 - - uid: 13684 + - uid: 15378 components: - type: Transform - pos: 5.4793596,13.51398 + pos: -18.570131,32.730915 parent: 60 - - uid: 15378 + - uid: 17386 components: - type: Transform - pos: -18.570131,32.730915 + pos: 5.501162,13.623979 parent: 60 - uid: 19151 components: diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml index e90d712a350f..55945392201c 100644 --- a/Resources/Maps/box.yml +++ b/Resources/Maps/box.yml @@ -5,6 +5,7 @@ tilemap: 0: Space 7: FloorAsteroidSand 8: FloorAsteroidSandDug + 9: FloorAstroGrass 13: FloorAstroIce 4: FloorAstroSnow 14: FloorBar @@ -30,6 +31,8 @@ tilemap: 64: FloorMetalDiamond 65: FloorMime 2: FloorMono + 6: FloorMowedAstroGrass + 5: FloorRGlass 77: FloorReinforced 78: FloorReinforcedHardened 79: FloorRockVault @@ -81,119 +84,119 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: WQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACIQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAEQAAAAAAWQAAAAACEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAHQAAAAABHQAAAAADWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAABeQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAHQAAAAABHQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAABAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAD + tiles: WQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADIQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAEQAAAAAAWQAAAAABEQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAACeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAD version: 6 0,0: ind: 0,0 - tiles: WQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAADWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAABdgAAAAADdgAAAAADeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAFAAAAAAA + tiles: WQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAFAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAADEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAAAdgAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACBAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADEQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAABEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAD version: 6 -1,0: ind: -1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAdgAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAdgAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAAD version: 6 1,-1: ind: 1,-1 - tiles: WQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAABdgAAAAADBAAAAAAABAAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAWQAAAAABeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAADBAAAAAAABAAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABWQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAdgAAAAABdgAAAAACdgAAAAACWQAAAAAAeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAAD + tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAWQAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAACBQAAAAACBQAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACBQAAAAACBQAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABWQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADWQAAAAAAeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAB version: 6 -2,-1: ind: -2,-1 - tiles: WQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAD + tiles: WQAAAAABWQAAAAACWQAAAAABeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: WQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAdgAAAAACdgAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAC + tiles: WQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAABWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAABWQAAAAACbAAAAAABbAAAAAABbAAAAAABbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAWQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAADWQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAACWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADbAAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAWQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADHQAAAAADHQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAbAAAAAABHQAAAAADHQAAAAABeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACbAAAAAACHQAAAAAAHQAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAACbAAAAAABHQAAAAACHQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAAC + tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAADWQAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAABbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAABWQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABbAAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAADWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAHQAAAAADHQAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABbAAAAAABHQAAAAACHQAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABbAAAAAADHQAAAAADHQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAbAAAAAABHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAAB version: 6 0,-2: ind: 0,-2 - tiles: WQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABdgAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAABHQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABdgAAAAADHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADHQAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACHQAAAAACHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACLAAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAABdgAAAAADHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADLQAAAAACHQAAAAABHQAAAAAAHQAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAAD + tiles: WQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAABHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACdgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACLAAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACHQAAAAADLQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: WQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABBAAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACBAAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADBAAAAAAAWQAAAAACeQAAAAAAHQAAAAAAdgAAAAABdgAAAAADdgAAAAABHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAABAAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAABdgAAAAAAdgAAAAACHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADHQAAAAADdgAAAAAAdgAAAAADdgAAAAABHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAABHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAABHQAAAAADLQAAAAAAHQAAAAACLQAAAAAD + tiles: WQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADBgAAAAAAWQAAAAADeQAAAAAAHQAAAAAAdgAAAAACdgAAAAADdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABBgAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAABdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAABgAAAAAAWQAAAAADeQAAAAAAHQAAAAAAdgAAAAADdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACBgAAAAAAWQAAAAADeQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAABHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAABdgAAAAADdgAAAAADdgAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAABdgAAAAADdgAAAAABdgAAAAACHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABLQAAAAABHQAAAAAALQAAAAAC version: 6 -2,0: ind: -2,0 - tiles: HQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAaAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAACeQAAAAAAaAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAACAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAD + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC version: 6 0,-3: ind: 0,-3 - tiles: WQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAdwAAAAAAdgAAAAADdgAAAAACdgAAAAACdwAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAdwAAAAABdgAAAAADdgAAAAAAdgAAAAABdwAAAAACaQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAAB + tiles: WQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdwAAAAADdgAAAAADdgAAAAACdgAAAAACdwAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAdwAAAAAAdgAAAAABdgAAAAAAdgAAAAACdwAAAAABaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdQAAAAACdQAAAAADdQAAAAABdQAAAAACdQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAdQAAAAACdQAAAAABdQAAAAABdQAAAAAAdQAAAAACWQAAAAABLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAACeQAAAAAAaQAAAAAAdQAAAAAAdQAAAAABdQAAAAAAdQAAAAAAdQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAADWQAAAAACWQAAAAAAaQAAAAAAeQAAAAAAJgAAAAADJgAAAAABdQAAAAADJgAAAAACJgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAABbAAAAAABWQAAAAABWQAAAAAAWQAAAAADHQAAAAABeQAAAAAAJgAAAAABJgAAAAADdQAAAAACJgAAAAADJgAAAAAAeQAAAAAAUgAAAAABLAAAAAAALAAAAAAAeQAAAAAAbAAAAAADWQAAAAAAWQAAAAACWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAaQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAHQAAAAADHQAAAAABbAAAAAAAHQAAAAACHQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAACWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABbAAAAAADHQAAAAABHQAAAAACeQAAAAAAUgAAAAADLAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAWQAAAAACWQAAAAAB version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAADgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAADgAAAAABDgAAAAABDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAADDgAAAAAADgAAAAAADgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAACDgAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAAQAAAAAEAQAAAAABAQAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAFWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAQAAAAABAQAAAAABAQAAAAAFWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAAQAAAAAAAQAAAAADAQAAAAAFWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAEFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADAQAAAAACAQAAAAABAQAAAAAEFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAQAAAAAFAQAAAAAEAQAAAAAFFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAAQAAAAAFAQAAAAACAQAAAAAD + tiles: eQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAADgAAAAABDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAABDgAAAAABDgAAAAABDgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAACDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAACAQAAAAAAAQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABAQAAAAAAAQAAAAADAQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAQAAAAABAQAAAAADAQAAAAAFWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAQAAAAACAQAAAAAAAQAAAAABFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABAQAAAAADAQAAAAAFAQAAAAADFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAAFFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAE version: 6 0,1: ind: 0,1 - tiles: WQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAC + tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAC version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAUAAAAAAAUAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA + tiles: eQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAABAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAABdgAAAAABHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAABHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: HQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAAALAAAAAAALAAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABWQAAAAABTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAACdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAALwAAAAAAHQAAAAABLwAAAAAA + tiles: HQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABLAAAAAAALAAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAHQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAACQAAAAABHQAAAAABCQAAAAAB version: 6 0,2: ind: 0,2 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABHQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAABWQAAAAACWQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAALwAAAAAAHQAAAAACLwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADCQAAAAACHQAAAAAACQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: WQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,1: ind: 2,1 - tiles: AQAAAAADAQAAAAACAQAAAAAFAQAAAAAEAQAAAAABAQAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA + tiles: AQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA version: 6 2,0: ind: 2,0 - tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAABAQAAAAAEAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAFAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAABAQAAAAACAQAAAAADAQAAAAAFAQAAAAAEAQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAAFAQAAAAAAAQAAAAADAQAAAAACAQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAAFAQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAAEAQAAAAAAAQAAAAAEAQAAAAAEAQAAAAACAQAAAAAEeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAABAQAAAAACAQAAAAAEAQAAAAAFAQAAAAAFWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAABAQAAAAAEAQAAAAADAQAAAAAEAQAAAAAAAQAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA + tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAFAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAADAQAAAAAFAQAAAAAFAQAAAAADAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAAFWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFAQAAAAAEAQAAAAAAAQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAAFAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAACAQAAAAAFAQAAAAACAQAAAAAEAQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAABAQAAAAACAQAAAAAFAQAAAAACAQAAAAAFAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABdgAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA version: 6 0,3: ind: 0,3 - tiles: HQAAAAABHQAAAAAALwAAAAAAHQAAAAAALwAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAADHQAAAAACCQAAAAACHQAAAAAACQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: eQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAEQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA version: 6 -3,1: ind: -3,1 - tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADeQAAAAAAdgAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 @@ -201,15 +204,15 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: WQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,0: ind: -6,0 @@ -217,23 +220,23 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB version: 6 -4,-1: ind: -4,-1 - tiles: WQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAJgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAC + tiles: WQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAD version: 6 -3,-1: ind: -3,-1 - tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAHQAAAAADeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAA + tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAD version: 6 3,0: ind: 3,0 - tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAABUgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAACUgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: eQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAACWQAAAAACeQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABdgAAAAABXAAAAAADXAAAAAACXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAACXAAAAAADWQAAAAABHQAAAAABWQAAAAABWQAAAAAAHQAAAAAAHQAAAAAAWQAAAAAAHQAAAAADXAAAAAACXAAAAAADXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABXAAAAAACWQAAAAABHQAAAAAAWQAAAAACWQAAAAADHQAAAAACHQAAAAAAWQAAAAACeQAAAAAAXAAAAAADXAAAAAADXAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAACWQAAAAABHQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADLwAAAAAALwAAAAAALwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAA + tiles: eQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAdgAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAACWQAAAAACHQAAAAACWQAAAAADWQAAAAACHQAAAAABHQAAAAACWQAAAAACHQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACWQAAAAACHQAAAAACWQAAAAAAWQAAAAACHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADWQAAAAADHQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACCQAAAAAACQAAAAACCQAAAAADOgAAAAAAOgAAAAAAOgAAAAAA version: 6 3,1: ind: 3,1 @@ -241,11 +244,11 @@ entities: version: 6 4,1: ind: 4,1 - tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAACCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,0: ind: 5,0 @@ -253,11 +256,11 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAWQAAAAAAHQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAADWQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAADdgAAAAADWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACWQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAACWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,-2: ind: -4,-2 @@ -265,7 +268,7 @@ entities: version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAdgAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAdgAAAAABdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAdgAAAAADdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAABdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAB version: 6 -3,-3: ind: -3,-3 @@ -273,71 +276,71 @@ entities: version: 6 -2,-4: ind: -2,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAABEQAAAAAAHQAAAAACHQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACHQAAAAADHQAAAAABEQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABHQAAAAADHQAAAAADEQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAHQAAAAACHQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAHQAAAAADHQAAAAACEQAAAAAAHQAAAAABHQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAC + tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAAAEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACHQAAAAABHQAAAAABEQAAAAAAHQAAAAACHQAAAAABEQAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAABHQAAAAACEQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACHQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAACEQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADHQAAAAABHQAAAAADEQAAAAAAHQAAAAABHQAAAAABEQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAACEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC version: 6 0,-4: ind: 0,-4 - tiles: eQAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAADeQAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: eQAAAAAAaQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABbAAAAAACbAAAAAABbAAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAABbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADeQAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAACWQAAAAAAWQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAACeQAAAAAAXAAAAAABXAAAAAABXAAAAAADXAAAAAADWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAXAAAAAABXAAAAAACXAAAAAACXAAAAAAA + tiles: eQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADeQAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAABWQAAAAADWQAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAAD version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAABbAAAAAABbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAACbAAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAACaQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADaQAAAAAAHQAAAAACaQAAAAAAHQAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAABaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAD + tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAACaQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAADaQAAAAAAHQAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAC version: 6 2,-4: ind: 2,-4 - tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADLwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABCQAAAAAACQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAAAHQAAAAACHQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAACHQAAAAACHQAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABWQAAAAABWQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAWQAAAAABbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAADHQAAAAACaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADaQAAAAAAbAAAAAADbAAAAAAAbAAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAABbAAAAAACbAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAABbAAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAWQAAAAAAEQAAAAAAHQAAAAAAWQAAAAAAbAAAAAADbAAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABWQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAWQAAAAAAEQAAAAAAHQAAAAABWQAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAA + tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAADbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAAAWQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADaQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAACHQAAAAACaQAAAAAAbAAAAAACbAAAAAABbAAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAACbAAAAAABbAAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAWQAAAAADEQAAAAAAHQAAAAAAWQAAAAAAbAAAAAACbAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAWQAAAAABEQAAAAAAHQAAAAADWQAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: eQAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAHQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABWQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACWQAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: eQAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADbAAAAAABbAAAAAADbAAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAACWQAAAAACeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAADbAAAAAADWQAAAAADeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAA + tiles: eQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAADWQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAABbAAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABEwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAACWQAAAAAAbAAAAAADWQAAAAABbAAAAAACWQAAAAADbAAAAAAAWQAAAAADbAAAAAABWQAAAAADbAAAAAAAWQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAADdgAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACHQAAAAABWQAAAAADHQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAACeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAEeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAABWQAAAAAAbAAAAAACWQAAAAABbAAAAAACWQAAAAADbAAAAAAAWQAAAAACbAAAAAABWQAAAAACbAAAAAAAWQAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABHQAAAAAAWQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAABeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA + tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-4: ind: 5,-4 - tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAB + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAC version: 6 4,-1: ind: 4,-1 - tiles: WQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABHQAAAAADHQAAAAACHQAAAAACWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAABHQAAAAADHQAAAAABHQAAAAAAWQAAAAABWQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAACWQAAAAADWQAAAAACHQAAAAABHQAAAAABHQAAAAACWQAAAAAAWQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAABHQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAHQAAAAACHQAAAAACHQAAAAADWQAAAAABWQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADWQAAAAABWQAAAAACHQAAAAABHQAAAAADHQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAABHQAAAAADWQAAAAABWQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAADHQAAAAABWQAAAAABWQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAABHQAAAAACHQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-5: ind: 4,-5 @@ -349,7 +352,7 @@ entities: version: 6 3,-5: ind: 3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA version: 6 2,-5: ind: 2,-5 @@ -365,11 +368,11 @@ entities: version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAagAAAAABagAAAAADagAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAADagAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAC version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAADAwAAAAACAwAAAAABeQAAAAAAWQAAAAADWQAAAAACDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAADAwAAAAABAwAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAAwAAAAACAwAAAAABeQAAAAAAWQAAAAAAWQAAAAAADgAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAAwAAAAADAwAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAADAwAAAAADAwAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAADgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADHQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -377,11 +380,11 @@ entities: version: 6 -3,-5: ind: -3,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAA version: 6 0,-6: ind: 0,-6 @@ -393,11 +396,11 @@ entities: version: 6 1,-6: ind: 1,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAACeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-7: ind: 2,-7 @@ -409,11 +412,11 @@ entities: version: 6 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADHQAAAAABHQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAA version: 6 1,-8: ind: 1,-8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAD version: 6 -2,-6: ind: -2,-6 @@ -441,7 +444,7 @@ entities: version: 6 -1,3: ind: -1,3 - tiles: dgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAALwAAAAAAHQAAAAABLwAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAACeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: dgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAACQAAAAABHQAAAAABCQAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 @@ -700,6 +703,13 @@ entities: 3639: 60,-51 3640: 59,-51 3642: 57,-51 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Bot + decals: + 4276: -14,-27 + 4277: -14,-25 - node: color: '#FFFFFFFF' id: BotGreyscale @@ -826,11 +836,11 @@ entities: 3582: 0,36 3583: 1,36 3584: 2,36 - 4242: -27,-70 - 4246: -23,-70 - 4276: -26,-70 - 4277: -24,-70 - 4281: -25,-70 + 5957: -27,-70 + 5958: -26,-70 + 5959: -25,-70 + 5960: -24,-70 + 5961: -23,-70 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1698,6 +1708,7 @@ entities: id: Caution decals: 1680: 66,-22 + 2436: 31,-34 2615: 9,-74 - node: color: '#3B393B85' @@ -1787,25 +1798,6 @@ entities: 3373: 49,1 3374: 49,0 3375: 49,-1 - 4057: -44,3 - 4058: -43,3 - 4059: -42,3 - 4060: -41,3 - 4061: 5,23 - 4062: 5,24 - 4073: -3,20 - 4074: -2,20 - 4075: -1,20 - 4076: 0,20 - 4077: 1,20 - 4078: -1,19 - 4079: -1,17 - 4080: -1,16 - 4116: 33,-12 - 4138: 51,-9 - 4176: 46,-12 - 4182: 79,-16 - 4183: 75,-6 - node: color: '#D381C996' id: CheckerNESW @@ -2050,27 +2042,6 @@ entities: 1243: 1,-50 1244: 1,-49 1245: 1,-48 - - node: - color: '#DE3A3A96' - id: CheckerNWSE - decals: - 4053: -44,3 - 4054: -43,3 - 4055: -42,3 - 4056: -41,3 - 4063: 5,23 - 4064: 5,24 - 4065: -1,20 - 4066: 0,20 - 4067: 1,20 - 4068: -2,20 - 4069: -3,20 - 4070: -1,19 - 4071: -1,17 - 4072: -1,16 - 4150: 40,-12 - 4174: 49,-12 - 4175: 76,-16 - node: color: '#EFB34196' id: CheckerNWSE @@ -2086,6 +2057,7 @@ entities: 2553: 6,-47 2554: 5,-47 - node: + zIndex: 1 color: '#FFFFFFFF' id: Delivery decals: @@ -2220,7 +2192,6 @@ entities: 3842: 18,-15 3843: 18,-14 3844: 18,-13 - 3845: 5,-3 3846: 41,-15 3847: 41,-14 3848: 41,-13 @@ -2252,14 +2223,15 @@ entities: 3990: 7,20 3991: 7,19 3992: 0,18 - 3993: -1,18 3994: -2,18 3995: -16,19 3996: -16,20 + 4242: 5,-3 + 4489: -1,18 - node: cleanable: True zIndex: 5 - color: '#FFFFFF7F' + color: '#FFFFFF28' id: Dirt decals: 205: -33,-11 @@ -2347,6 +2319,31 @@ entities: 3631: 55,-49 3632: 57,-45 3633: 58,-46 + 4844: 54,-37 + 4845: 55,-37 + 4846: 56,-37 + 4847: 54,-36 + 4968: 60,2 + 5012: 39,-3 + 5013: 39,0 + 5014: 36,-1 + 5065: 18,6 + 5074: -29,-4 + 5121: -41,1 + 5230: 19,-33 + 5231: 21,-33 + 5239: 24,-33 + 5303: 46,-48 + 5304: 45,-48 + 5305: 46,-47 + 5306: 45,-45 + 5307: 44,-45 + 5374: 37,-19 + 5375: 38,-17 + 5395: 35,-67 + 5755: -59,-18 + 5756: -60,-18 + 5757: -60,-19 - node: cleanable: True zIndex: 5 @@ -2386,6 +2383,451 @@ entities: 3682: -47,-17 3683: -47,-16 3684: -46,-14 + 4505: 0,0 + 4731: 29,-8 + 4732: 29,-7 + 4733: 31,-6 + 4734: 24,-14 + 4736: 20,-13 + 4737: 25,-13 + 4738: 27,-13 + 4739: 30,-14 + 4740: 26,-15 + 4741: 31,-15 + 4742: 34,-13 + 4743: 31,-13 + 4744: 36,-12 + 4745: 34,-12 + 4746: 36,-12 + 4747: 38,-12 + 4748: 40,-12 + 4869: 76,-41 + 4870: 77,-45 + 4871: 71,-46 + 4896: 53,-23 + 4897: 55,-24 + 4898: 53,-24 + 4899: 55,-20 + 4900: 58,-17 + 4901: 66,-18 + 4902: 67,-20 + 4903: 70,-19 + 4904: 70,-16 + 4952: 72,5 + 4953: 70,5 + 4954: 69,5 + 4955: 69,5 + 4956: 66,5 + 4957: 62,6 + 4958: 60,6 + 4959: 64,6 + 4960: 64,5 + 4961: 59,5 + 4962: 61,1 + 4963: 60,1 + 4964: 61,2 + 4965: 61,-1 + 4966: 60,-1 + 4967: 60,2 + 5001: 34,-6 + 5002: 34,-7 + 5003: 37,-2 + 5004: 37,-2 + 5005: 37,-1 + 5006: 36,-1 + 5007: 39,-1 + 5008: 40,-2 + 5009: 40,-3 + 5010: 39,-3 + 5011: 39,0 + 5047: 22,-17 + 5048: 22,-21 + 5066: 16,6 + 5067: 17,7 + 5068: 11,6 + 5069: 12,2 + 5070: -4,1 + 5071: -6,4 + 5072: -6,7 + 5073: 18,1 + 5075: -25,-1 + 5076: -31,-2 + 5077: -36,-2 + 5078: -41,-7 + 5079: -45,-7 + 5080: -46,-7 + 5081: -44,-12 + 5082: -42,-13 + 5083: -40,-9 + 5084: -39,-7 + 5159: -64,3 + 5232: 19,-33 + 5233: 21,-33 + 5234: 21,-34 + 5255: 25,-30 + 5256: 26,-30 + 5257: 26,-29 + 5308: 44,-46 + 5309: 43,-45 + 5310: 44,-45 + 5311: 45,-46 + 5312: 46,-45 + 5313: 46,-46 + 5314: 46,-47 + 5315: 45,-47 + 5316: 44,-48 + 5317: 43,-48 + 5318: 43,-47 + 5319: 44,-47 + 5320: 44,-46 + 5321: 46,-48 + 5322: 45,-48 + 5376: 42,-18 + 5377: 41,-20 + 5378: 37,-20 + 5379: 37,-19 + 5380: 38,-20 + 5381: 38,-19 + 5382: 38,-18 + 5383: 37,-17 + 5384: 46,-19 + 5385: 45,-21 + 5386: 48,-23 + 5387: 48,-24 + 5388: 44,-23 + 5389: 44,-24 + 5390: 48,-21 + 5391: 42,-25 + 5396: 32,-65 + 5397: 33,-64 + 5398: 35,-63 + 5399: 33,-63 + 5400: 36,-66 + 5401: 36,-68 + 5402: 35,-69 + 5403: 36,-70 + 5404: 34,-70 + 5405: 32,-68 + 5406: 32,-67 + 5407: 38,-66 + 5408: 40,-67 + 5409: 41,-67 + 5410: 39,-69 + 5411: 41,-69 + 5412: 42,-69 + 5413: 44,-69 + 5414: 46,-69 + 5415: 46,-67 + 5416: 45,-69 + 5417: 47,-67 + 5418: 46,-65 + 5419: 40,-66 + 5420: 40,-64 + 5421: 34,-62 + 5422: 33,-60 + 5423: 32,-60 + 5424: 34,-60 + 5425: 35,-61 + 5426: 35,-61 + 5427: 38,-61 + 5428: 39,-61 + 5429: 41,-59 + 5430: 49,-66 + 5431: 47,-66 + 5432: 46,-70 + 5433: 47,-69 + 5434: 46,-73 + 5435: 44,-73 + 5436: 42,-74 + 5437: 42,-74 + 5438: 40,-73 + 5439: 40,-72 + 5440: 39,-71 + 5441: 45,-71 + 5442: 46,-71 + 5443: 42,-73 + 5444: 42,-73 + 5445: 44,-71 + 5446: 46,-75 + 5447: 45,-74 + 5448: 52,-62 + 5449: 55,-63 + 5450: 55,-63 + 5451: 56,-63 + 5452: 61,-63 + 5453: 60,-63 + 5454: 65,-63 + 5455: 68,-62 + 5456: 66,-67 + 5457: 66,-68 + 5458: 65,-70 + 5459: 63,-71 + 5460: 64,-72 + 5461: 69,-69 + 5462: 71,-69 + 5463: 72,-66 + 5464: 70,-67 + 5465: 68,-67 + 5466: 71,-63 + 5467: 69,-63 + 5468: 67,-62 + 5469: 69,-60 + 5470: 70,-63 + 5471: 74,-65 + 5472: 77,-64 + 5473: 77,-62 + 5474: 76,-62 + 5475: 79,-59 + 5476: 78,-59 + 5477: 76,-58 + 5478: 80,-57 + 5479: 80,-58 + 5480: 80,-61 + 5481: 80,-64 + 5482: 81,-66 + 5483: 82,-62 + 5484: 82,-60 + 5485: 84,-58 + 5486: 85,-59 + 5487: 84,-59 + 5488: 85,-57 + 5489: 84,-56 + 5490: 81,-56 + 5491: 82,-55 + 5492: 83,-52 + 5493: 85,-53 + 5494: 85,-51 + 5495: 83,-51 + 5496: 85,-53 + 5497: 78,-54 + 5498: 74,-54 + 5499: 61,-53 + 5500: 59,-53 + 5501: 56,-53 + 5502: 58,-51 + 5503: 61,-51 + 5504: 62,-52 + 5505: 58,-49 + 5506: 57,-48 + 5507: 58,-46 + 5508: 60,-45 + 5509: 55,-48 + 5510: 55,-46 + 5511: 53,-44 + 5512: 52,-45 + 5513: 55,-47 + 5514: 63,-48 + 5515: 63,-47 + 5516: 62,-44 + 5517: 79,-47 + 5518: 79,-46 + 5519: 85,-41 + 5520: 84,-41 + 5521: 86,-43 + 5522: 85,-43 + 5523: 81,-42 + 5524: 80,-41 + 5525: 80,-40 + 5526: 84,-39 + 5527: 86,-39 + 5528: 85,-36 + 5529: 84,-37 + 5530: 82,-38 + 5531: 80,-37 + 5532: 80,-36 + 5533: 82,-36 + 5534: 80,-34 + 5535: 81,-33 + 5536: 84,-33 + 5537: 84,-32 + 5538: 86,-31 + 5539: 88,-31 + 5540: 88,-30 + 5541: 89,-32 + 5542: 90,-31 + 5543: 90,-29 + 5544: 90,-26 + 5545: 89,-24 + 5546: 88,-24 + 5547: 88,-27 + 5548: 85,-29 + 5549: 86,-26 + 5550: 86,-23 + 5551: 84,-24 + 5552: 84,-27 + 5553: 84,-29 + 5554: 84,-31 + 5555: 86,-22 + 5556: 83,-22 + 5557: 79,-22 + 5558: 77,-22 + 5559: 64,6 + 5560: 61,6 + 5561: 61,8 + 5562: 67,9 + 5563: 69,9 + 5564: 68,9 + 5565: 71,8 + 5566: 68,10 + 5567: 68,10 + 5568: 70,14 + 5569: 68,14 + 5570: 66,14 + 5571: 73,10 + 5572: 75,8 + 5573: 72,8 + 5574: 55,6 + 5575: 55,8 + 5576: 59,12 + 5577: 56,12 + 5578: 53,5 + 5579: 50,5 + 5580: 51,7 + 5581: 48,7 + 5582: 46,6 + 5583: 46,5 + 5584: 46,9 + 5585: 45,11 + 5586: 47,11 + 5587: 50,11 + 5588: 52,11 + 5589: 54,11 + 5590: 52,14 + 5591: 49,16 + 5592: 50,17 + 5593: 48,15 + 5594: 51,15 + 5595: 55,16 + 5596: 55,17 + 5597: 55,19 + 5598: 58,19 + 5599: 57,16 + 5600: 57,14 + 5601: 65,16 + 5602: 66,16 + 5603: 66,18 + 5604: 65,19 + 5605: 68,18 + 5606: 68,18 + 5607: 65,21 + 5608: 65,22 + 5609: 65,23 + 5610: 66,14 + 5611: 45,0 + 5612: 45,-1 + 5613: 49,0 + 5614: 41,2 + 5615: 39,2 + 5616: 37,2 + 5617: 45,2 + 5618: 26,6 + 5619: 26,8 + 5620: 23,18 + 5621: 20,17 + 5622: 20,18 + 5623: 18,18 + 5624: 20,19 + 5625: 20,21 + 5626: 20,23 + 5627: 20,24 + 5628: 21,25 + 5629: 20,27 + 5630: 20,30 + 5631: 24,28 + 5632: 24,28 + 5633: 23,26 + 5634: 25,28 + 5635: 26,26 + 5636: 21,32 + 5637: 23,32 + 5638: 25,34 + 5639: 18,33 + 5640: 14,35 + 5641: 12,32 + 5642: 7,31 + 5643: 2,31 + 5644: -2,31 + 5645: 1,36 + 5646: -2,36 + 5647: -2,37 + 5648: 0,38 + 5649: 4,38 + 5650: 4,36 + 5651: 6,36 + 5652: 7,36 + 5653: 9,35 + 5654: 9,38 + 5655: 9,41 + 5656: 24,37 + 5657: 22,37 + 5658: 23,39 + 5659: 25,34 + 5696: -62,7 + 5697: -59,7 + 5698: -57,8 + 5699: -56,10 + 5700: -55,10 + 5701: -59,10 + 5702: -60,11 + 5703: -63,12 + 5704: -63,13 + 5705: -60,15 + 5706: -60,17 + 5707: -58,19 + 5708: -54,18 + 5709: -54,17 + 5710: -52,15 + 5711: -52,14 + 5712: -51,18 + 5713: -51,18 + 5714: -47,18 + 5715: -48,16 + 5716: -48,15 + 5717: -46,20 + 5718: -46,22 + 5719: -44,21 + 5720: -44,21 + 5721: -38,21 + 5722: -38,21 + 5723: -34,20 + 5724: -35,19 + 5725: -38,12 + 5726: -36,12 + 5727: -34,12 + 5728: -35,11 + 5729: -36,11 + 5730: -33,11 + 5731: -42,9 + 5732: -42,10 + 5733: -42,11 + 5734: -52,-14 + 5735: -52,-12 + 5736: -53,-12 + 5737: -47,-15 + 5738: -46,-17 + 5739: -49,-15 + 5740: -46,-11 + 5741: -46,-13 + 5742: -44,-17 + 5743: -43,-15 + 5744: -42,-15 + 5745: -59,-18 + 5746: -60,-18 + 5747: -60,-19 + 5748: -59,-19 + 5749: -58,-20 + 5750: -59,-20 + 5751: -58,-21 + 5752: -57,-20 + 5753: -57,-20 + 5754: -60,-20 + 5817: -8,-38 + 5818: -7,-39 + 5819: -4,-36 + 5947: -26,-70 + 5948: -27,-69 + 5949: -25,-66 + 5950: -23,-67 - node: cleanable: True zIndex: 5 @@ -2398,6 +2840,10 @@ entities: 2911: 3,-66 3594: 51,-56 3595: 51,-48 + 4777: 43,-7 + 4905: 68,-16 + 5235: 18,-34 + 5820: -2,-36 - node: cleanable: True zIndex: 5 @@ -2444,10 +2890,8 @@ entities: 1022: -55,-3 1023: -57,1 1024: -64,2 - 1025: -47,-1 1026: -46,1 1027: -45,2 - 1028: -39,-1 1029: -38,-2 1030: -3,0 1031: -2,1 @@ -2456,7 +2900,6 @@ entities: 1034: -1,10 1035: 16,-12 1036: 19,-14 - 1037: 31,-13 1038: 44,-15 1039: 49,-14 1041: 71,-14 @@ -2658,6 +3101,546 @@ entities: 3692: -44,-13 3693: -44,-12 3694: -42,-13 + 4506: -2,0 + 4507: -2,1 + 4508: -1,1 + 4509: 0,-1 + 4510: 1,-1 + 4511: 2,-1 + 4512: -4,-1 + 4513: -5,-2 + 4514: -5,-3 + 4515: -2,-3 + 4516: 0,-3 + 4517: -9,-2 + 4518: -11,-2 + 4519: -11,-3 + 4520: -14,-3 + 4521: -14,-2 + 4522: -16,-1 + 4749: 33,-15 + 4750: 36,-15 + 4751: 39,-14 + 4752: 36,-13 + 4753: 31,-18 + 4754: 26,-20 + 4755: 35,-20 + 4756: 39,-14 + 4757: 43,-13 + 4758: 43,-15 + 4759: 45,-13 + 4760: 45,-15 + 4761: 46,-13 + 4762: 46,-12 + 4763: 48,-12 + 4764: 49,-12 + 4765: 43,-12 + 4766: 43,-12 + 4767: 44,-10 + 4768: 42,-10 + 4769: 46,-9 + 4770: 47,-9 + 4771: 47,-7 + 4772: 47,-5 + 4773: 45,-5 + 4774: 43,-5 + 4775: 44,-6 + 4776: 44,-8 + 4785: 52,-11 + 4786: 51,-11 + 4787: 52,-10 + 4788: 52,-15 + 4789: 48,-15 + 4790: 49,-13 + 4791: 58,-13 + 4792: 61,-13 + 4793: 63,-13 + 4794: 61,-15 + 4795: 58,-15 + 4796: 62,-16 + 4797: 64,-16 + 4798: 66,-15 + 4799: 65,-13 + 4800: 61,-19 + 4801: 62,-22 + 4802: 60,-22 + 4803: 58,-22 + 4804: 66,-26 + 4805: 67,-27 + 4806: 66,-28 + 4807: 71,-24 + 4808: 72,-23 + 4809: 73,-21 + 4810: 70,-21 + 4811: 70,-20 + 4812: 77,-25 + 4813: 79,-25 + 4814: 81,-25 + 4815: 77,-26 + 4816: 82,-25 + 4817: 72,-27 + 4818: 70,-29 + 4819: 70,-31 + 4820: 73,-31 + 4821: 67,-31 + 4822: 65,-33 + 4823: 67,-34 + 4824: 65,-35 + 4825: 67,-37 + 4826: 70,-37 + 4827: 73,-37 + 4828: 74,-35 + 4829: 73,-35 + 4830: 66,-39 + 4831: 65,-41 + 4832: 67,-41 + 4833: 66,-42 + 4834: 62,-41 + 4835: 61,-40 + 4836: 58,-42 + 4837: 57,-41 + 4838: 55,-41 + 4839: 53,-42 + 4840: 51,-41 + 4841: 56,-38 + 4842: 54,-38 + 4843: 51,-38 + 4848: 54,-36 + 4849: 57,-37 + 4850: 54,-37 + 4851: 55,-41 + 4852: 67,-47 + 4853: 65,-47 + 4854: 66,-53 + 4855: 69,-52 + 4856: 70,-53 + 4857: 71,-52 + 4858: 73,-54 + 4859: 77,-54 + 4860: 80,-53 + 4861: 73,-57 + 4862: 74,-58 + 4863: 78,-47 + 4864: 74,-47 + 4865: 77,-46 + 4866: 78,-45 + 4867: 76,-45 + 4868: 72,-45 + 4924: 78,-14 + 4925: 77,-15 + 4926: 79,-15 + 4927: 80,-14 + 4928: 80,-12 + 4929: 77,-13 + 4930: 76,-12 + 4931: 76,-10 + 4932: 77,-9 + 4933: 77,-8 + 4934: 78,-7 + 4935: 81,-7 + 4936: 81,-8 + 4937: 81,-12 + 4938: 75,-10 + 4939: 75,-7 + 4940: 66,-8 + 4941: 65,-7 + 4942: 65,-4 + 4943: 69,-3 + 4944: 68,-3 + 4945: 69,-2 + 4946: 69,0 + 4947: 71,1 + 4948: 72,2 + 4949: 70,3 + 4950: 69,3 + 4951: 68,1 + 4969: 60,1 + 4970: 61,-1 + 4971: 65,-1 + 4972: 71,-2 + 4973: 72,-2 + 4974: 74,-2 + 4975: 74,-4 + 4976: 77,-4 + 4977: 80,-4 + 4978: 80,-3 + 4979: 78,-3 + 4980: 76,-9 + 4981: 81,-10 + 4982: 78,-13 + 4983: 71,-14 + 4984: 66,-14 + 4985: 61,-15 + 4986: 59,-13 + 4987: 56,-13 + 4988: 54,-12 + 4989: 52,-10 + 4990: 51,-11 + 4991: 50,-14 + 4992: 47,-13 + 4993: 44,-14 + 4994: 45,-13 + 4995: 39,-14 + 4996: 38,-12 + 4997: 35,-12 + 4998: 34,-10 + 4999: 34,-9 + 5000: 34,-8 + 5049: 20,-14 + 5050: 13,-8 + 5051: 13,-2 + 5052: 7,-2 + 5053: 11,1 + 5054: 11,2 + 5055: 12,3 + 5056: 11,4 + 5057: 12,5 + 5058: 14,3 + 5059: 16,3 + 5060: 18,3 + 5061: 18,1 + 5062: 18,6 + 5063: 18,7 + 5064: 15,7 + 5085: -46,-8 + 5086: -47,-8 + 5087: -47,-7 + 5088: -47,-6 + 5089: -46,-6 + 5090: -40,-6 + 5091: -41,-6 + 5092: -41,-7 + 5093: -40,-7 + 5094: -40,-8 + 5095: -41,-8 + 5096: -42,-12 + 5097: -42,-9 + 5098: -44,-9 + 5099: -43,-8 + 5100: -43,-7 + 5101: -43,-6 + 5102: -44,-5 + 5103: -43,-3 + 5104: -46,-3 + 5105: -48,-3 + 5106: -51,-3 + 5107: -51,-1 + 5108: -48,-1 + 5109: -44,-1 + 5110: -41,-1 + 5111: -39,-2 + 5112: -43,-3 + 5113: -45,2 + 5114: -45,3 + 5115: -43,4 + 5116: -41,4 + 5117: -40,3 + 5118: -44,3 + 5119: -43,3 + 5120: -41,3 + 5123: -46,4 + 5124: -39,3 + 5125: -41,3 + 5126: -41,2 + 5127: -55,-3 + 5128: -55,-1 + 5129: -55,-4 + 5130: -56,-5 + 5131: -58,-5 + 5132: -61,-5 + 5133: -64,-4 + 5134: -65,-3 + 5135: -65,-1 + 5136: -65,0 + 5137: -65,2 + 5138: -65,3 + 5139: -64,5 + 5140: -64,3 + 5141: -64,1 + 5142: -62,0 + 5143: -61,1 + 5144: -60,1 + 5145: -58,0 + 5146: -56,1 + 5147: -55,0 + 5148: -55,-2 + 5149: -68,-5 + 5150: -71,-5 + 5151: -75,-5 + 5152: -77,-5 + 5153: -65,9 + 5154: -68,9 + 5155: -72,10 + 5156: -74,9 + 5157: -77,9 + 5158: -79,9 + 5160: -64,2 + 5161: -65,2 + 5162: -65,3 + 5163: -65,4 + 5164: -64,4 + 5165: -59,4 + 5166: -60,4 + 5167: -61,4 + 5168: -62,4 + 5169: -57,4 + 5170: -59,-6 + 5171: -52,-8 + 5172: -37,-13 + 5173: -38,-12 + 5174: -37,-11 + 5175: -42,-13 + 5176: -42,-11 + 5177: -42,-10 + 5178: -41,-9 + 5179: -21,-18 + 5180: -18,-20 + 5181: -16,-20 + 5182: -14,-26 + 5183: -14,-24 + 5184: -18,-25 + 5185: -21,-25 + 5186: -21,-27 + 5187: -23,-27 + 5188: -21,-28 + 5189: -22,-25 + 5190: -22,-24 + 5205: 7,-54 + 5206: 4,-54 + 5207: 4,-53 + 5208: 8,-54 + 5209: 8,-56 + 5210: 4,-58 + 5211: -1,-55 + 5212: -2,-54 + 5213: 6,-48 + 5214: 3,-48 + 5215: 5,-43 + 5216: 4,-43 + 5217: 5,-42 + 5218: 6,-42 + 5219: 1,-42 + 5220: 0,-37 + 5221: 3,-36 + 5222: 7,-36 + 5223: 7,-35 + 5224: 12,-34 + 5225: 12,-35 + 5226: 13,-32 + 5227: 19,-36 + 5228: 21,-36 + 5229: 24,-35 + 5236: 19,-34 + 5237: 22,-34 + 5238: 18,-35 + 5258: 25,-29 + 5259: 27,-29 + 5260: 27,-30 + 5261: 27,-31 + 5262: 26,-31 + 5263: 24,-31 + 5264: 29,-29 + 5265: 29,-30 + 5266: 31,-29 + 5267: 33,-29 + 5268: 32,-30 + 5269: 31,-31 + 5270: 35,-31 + 5271: 35,-29 + 5272: 35,-32 + 5273: 38,-32 + 5274: 40,-32 + 5275: 41,-33 + 5276: 41,-34 + 5277: 40,-36 + 5278: 40,-39 + 5279: 40,-40 + 5280: 40,-43 + 5281: 40,-44 + 5282: 41,-46 + 5283: 39,-49 + 5284: 41,-51 + 5285: 40,-53 + 5286: 36,-53 + 5287: 35,-53 + 5288: 36,-54 + 5289: 35,-55 + 5290: 40,-58 + 5291: 39,-60 + 5292: 43,-56 + 5293: 45,-57 + 5294: 43,-59 + 5295: 47,-60 + 5296: 47,-60 + 5297: 43,-60 + 5298: 45,-54 + 5299: 43,-54 + 5300: 43,-48 + 5301: 46,-48 + 5302: 46,-46 + 5323: 43,-46 + 5324: 43,-47 + 5325: 45,-46 + 5326: 40,-45 + 5327: 39,-45 + 5328: 40,-43 + 5329: 41,-42 + 5330: 44,-40 + 5331: 43,-40 + 5332: 44,-36 + 5333: 47,-36 + 5334: 44,-35 + 5335: 47,-34 + 5336: 44,-34 + 5337: 46,-33 + 5338: 45,-32 + 5339: 45,-32 + 5340: 46,-30 + 5341: 43,-30 + 5342: 46,-29 + 5343: 42,-29 + 5344: 39,-28 + 5345: 39,-27 + 5346: 46,-28 + 5347: 45,-26 + 5348: 45,-25 + 5349: 45,-24 + 5350: 42,-24 + 5351: 41,-24 + 5352: 38,-23 + 5353: 37,-23 + 5354: 36,-24 + 5355: 34,-24 + 5356: 33,-25 + 5357: 29,-25 + 5358: 25,-24 + 5359: 25,-22 + 5362: 26,-29 + 5363: 29,-29 + 5364: 32,-29 + 5365: 31,-30 + 5366: 19,-27 + 5367: 26,-21 + 5368: 29,-17 + 5369: 35,-18 + 5370: 38,-20 + 5371: 39,-20 + 5372: 39,-18 + 5373: 38,-18 + 5392: 41,-25 + 5393: 42,-24 + 5394: 37,-25 + 5660: 23,37 + 5661: 22,38 + 5662: 24,38 + 5663: 24,38 + 5664: 24,39 + 5665: 22,39 + 5666: 22,34 + 5667: 24,34 + 5668: 25,34 + 5669: 25,33 + 5670: -20,20 + 5671: -20,24 + 5672: -21,13 + 5673: -22,13 + 5674: -25,7 + 5675: -25,9 + 5676: -22,9 + 5677: -19,9 + 5678: -18,8 + 5679: -18,6 + 5680: -18,4 + 5681: -25,5 + 5682: -25,6 + 5683: -31,3 + 5684: -32,3 + 5685: -33,3 + 5686: -32,1 + 5687: -34,-1 + 5688: -39,2 + 5689: -44,2 + 5690: -52,4 + 5691: -53,7 + 5692: -55,8 + 5693: -55,6 + 5694: -57,8 + 5695: -60,8 + 5758: -60,-19 + 5759: -60,-18 + 5760: -59,-18 + 5761: -59,-19 + 5762: -57,-20 + 5763: -57,-20 + 5764: -57,-21 + 5765: -64,-16 + 5766: -67,-16 + 5767: -70,-15 + 5768: -74,-16 + 5769: -77,-15 + 5770: -54,-19 + 5771: -55,-17 + 5772: -56,-17 + 5773: -52,-17 + 5774: -52,-19 + 5775: -42,-24 + 5776: -41,-24 + 5777: -42,-24 + 5778: -38,-19 + 5779: -37,-19 + 5780: -39,-16 + 5781: -37,-16 + 5782: -37,-16 + 5783: -27,-7 + 5784: -29,-7 + 5785: -23,-8 + 5786: -21,-8 + 5787: -20,-7 + 5788: -22,-7 + 5789: -23,-6 + 5790: -21,-7 + 5791: -18,-11 + 5792: -18,-12 + 5793: -19,-14 + 5794: -21,-17 + 5795: -23,-17 + 5796: -22,-19 + 5797: -22,-14 + 5798: -25,-13 + 5799: -25,-12 + 5800: -24,-10 + 5801: -21,-11 + 5802: -22,-11 + 5803: -24,-13 + 5804: -24,-19 + 5805: -26,-20 + 5806: -21,-26 + 5807: -17,-28 + 5808: -17,-27 + 5809: -16,-25 + 5810: -15,-27 + 5811: -18,-31 + 5812: -20,-32 + 5813: -21,-32 + 5814: -13,-37 + 5815: -9,-37 + 5816: -7,-38 + 5821: -4,-44 + 5822: -4,-43 + 5823: -6,-42 + 5824: -11,-48 + 5825: -15,-48 + 5826: -17,-53 + 5827: -16,-53 + 5828: -24,-53 + 5829: -27,-54 + 5830: -27,-55 + 5951: -24,-71 + 5952: -24,-70 + 5953: -25,-70 + 5954: -25,-71 + 5955: -27,-67 + 5956: -33,-66 - node: cleanable: True zIndex: 5 @@ -2743,8 +3726,448 @@ entities: 3678: -48,-11 3695: -43,-12 3696: -42,-10 - 3697: -46,-7 3698: -40,-9 + 4523: -18,-2 + 4524: -17,-3 + 4525: -18,-4 + 4526: -16,-5 + 4527: -18,-6 + 4528: -15,-9 + 4529: -17,-9 + 4530: -18,-9 + 4531: -18,-12 + 4532: -17,-12 + 4533: -16,-11 + 4534: -17,-17 + 4535: -18,-17 + 4536: -16,-19 + 4537: -18,-21 + 4538: -17,-23 + 4539: -15,-28 + 4540: -14,-27 + 4541: -14,-25 + 4542: -17,-27 + 4543: -18,-28 + 4544: -16,-29 + 4545: -17,-30 + 4546: -17,-31 + 4547: -15,-32 + 4548: -14,-30 + 4549: -12,-31 + 4550: -12,-32 + 4551: -9,-32 + 4552: -7,-30 + 4553: -6,-31 + 4554: -5,-32 + 4555: -4,-31 + 4556: -2,-31 + 4557: 0,-31 + 4558: 2,-31 + 4559: 4,-31 + 4560: 3,-30 + 4561: 1,-31 + 4562: 5,-32 + 4563: 5,-34 + 4564: 4,-35 + 4565: 6,-35 + 4566: 4,-36 + 4567: 3,-36 + 4568: 6,-36 + 4569: 6,-31 + 4570: 7,-31 + 4571: 8,-30 + 4572: 8,-32 + 4573: 10,-32 + 4574: 10,-31 + 4575: 12,-30 + 4576: 13,-31 + 4577: 14,-32 + 4578: 14,-30 + 4579: 16,-30 + 4580: 15,-29 + 4581: 16,-29 + 4582: 15,-28 + 4583: 15,-28 + 4584: 16,-27 + 4585: 14,-27 + 4586: 15,-26 + 4587: 16,-22 + 4588: 14,-22 + 4589: 16,-22 + 4590: 15,-21 + 4591: 15,-18 + 4592: 15,-18 + 4593: 16,-16 + 4594: 15,-16 + 4595: 19,-14 + 4596: 22,-14 + 4597: 24,-14 + 4598: 24,-13 + 4599: 26,-13 + 4600: 29,-13 + 4601: 19,-13 + 4602: 14,-8 + 4603: 14,-6 + 4604: 16,-5 + 4605: 15,-3 + 4606: 12,-1 + 4607: 9,-2 + 4608: 8,-1 + 4609: 7,-1 + 4610: 7,-3 + 4611: 3,-2 + 4612: 3,-2 + 4613: 0,4 + 4614: -2,4 + 4615: 0,6 + 4616: -2,7 + 4617: 0,8 + 4618: -1,15 + 4619: -1,18 + 4620: -1,20 + 4621: -3,20 + 4622: 1,20 + 4623: -4,19 + 4624: -9,20 + 4625: -11,19 + 4626: -14,19 + 4627: -18,20 + 4628: -14,19 + 4629: -3,20 + 4630: 1,21 + 4631: 3,20 + 4632: 6,22 + 4633: 6,24 + 4634: 4,24 + 4635: 5,23 + 4636: 5,24 + 4637: 1,23 + 4638: 5,27 + 4639: 1,27 + 4640: -1,26 + 4641: 0,27 + 4642: -2,27 + 4643: -4,27 + 4644: 1,28 + 4645: 4,27 + 4646: 7,27 + 4647: 9,26 + 4648: 9,26 + 4649: 10,27 + 4650: 2,31 + 4651: 0,31 + 4652: 0,32 + 4653: -1,32 + 4654: -5,30 + 4655: -6,32 + 4656: -9,32 + 4657: -5,27 + 4658: -8,27 + 4659: -12,26 + 4660: -5,32 + 4661: -6,35 + 4662: -8,35 + 4663: -7,37 + 4664: -5,39 + 4665: -7,39 + 4666: -8,43 + 4667: -11,43 + 4668: -14,43 + 4669: -13,45 + 4670: -9,45 + 4671: -8,47 + 4672: -9,48 + 4673: -9,49 + 4674: -14,47 + 4675: -19,46 + 4676: -18,44 + 4677: -18,43 + 4678: -14,43 + 4679: -11,43 + 4680: -11,45 + 4681: -14,45 + 4682: -7,43 + 4683: -5,43 + 4684: -6,45 + 4685: -5,47 + 4686: -2,49 + 4687: 0,49 + 4688: 0,48 + 4689: -7,51 + 4690: -10,51 + 4691: -9,52 + 4692: -1,28 + 4693: 10,19 + 4694: 8,15 + 4695: 8,15 + 4696: 9,14 + 4697: 8,12 + 4698: 10,11 + 4699: 11,9 + 4700: 12,8 + 4701: 9,8 + 4702: 11,10 + 4703: 16,10 + 4704: 17,12 + 4705: 15,12 + 4706: 16,10 + 4707: 20,9 + 4708: 20,8 + 4709: 23,10 + 4710: 21,11 + 4711: 23,12 + 4712: 21,12 + 4713: 19,13 + 4714: 20,14 + 4715: 23,15 + 4716: 26,14 + 4717: 27,12 + 4718: 25,10 + 4719: 27,9 + 4720: 24,8 + 4721: 25,6 + 4722: 24,5 + 4723: 25,3 + 4724: 29,-8 + 4725: 29,-7 + 4726: 29,-6 + 4727: 30,-5 + 4728: 30,-6 + 4729: 30,-8 + 4730: 31,-8 + 4778: 47,-8 + 4779: 48,-7 + 4780: 48,-6 + 4781: 42,-6 + 4782: 42,-7 + 4783: 47,-7 + 4784: 52,-11 + 4872: 71,-47 + 4873: 76,-45 + 4874: 79,-46 + 4875: 78,-36 + 4876: 78,-34 + 4877: 76,-34 + 4878: 76,-36 + 4879: 77,-36 + 4880: 67,-35 + 4881: 65,-32 + 4882: 67,-29 + 4883: 65,-28 + 4884: 67,-23 + 4885: 65,-23 + 4886: 65,-24 + 4887: 66,-24 + 4888: 63,-23 + 4889: 62,-22 + 4890: 57,-25 + 4891: 56,-24 + 4892: 53,-24 + 4893: 52,-24 + 4894: 52,-25 + 4895: 53,-25 + 4906: 71,-14 + 4907: 72,-13 + 4908: 77,-11 + 4909: 78,-10 + 4910: 78,-9 + 4911: 78,-8 + 4912: 76,-8 + 4913: 77,-7 + 4914: 81,-7 + 4915: 82,-8 + 4916: 82,-10 + 4917: 81,-11 + 4918: 81,-12 + 4919: 79,-12 + 4920: 79,-14 + 4921: 78,-15 + 4922: 76,-15 + 4923: 76,-14 + 5015: 39,-3 + 5016: 39,-2 + 5017: 39,0 + 5018: 37,-1 + 5019: 36,-1 + 5020: 35,-2 + 5021: 40,-6 + 5022: 40,-8 + 5023: 39,-8 + 5024: 39,-9 + 5025: 35,-9 + 5026: 34,-10 + 5027: 33,-10 + 5028: 33,-8 + 5029: 33,-7 + 5030: 35,-7 + 5031: 28,-21 + 5032: 29,-21 + 5033: 21,-18 + 5034: 22,-18 + 5035: 22,-19 + 5036: 21,-20 + 5037: 21,-22 + 5038: 20,-23 + 5039: 19,-23 + 5040: 18,-23 + 5041: 18,-22 + 5042: 19,-19 + 5043: 18,-19 + 5044: 18,-18 + 5045: 18,-17 + 5046: 19,-17 + 5122: -43,4 + 5191: -20,-27 + 5192: -20,-28 + 5193: -21,-28 + 5194: -13,-32 + 5195: -2,-33 + 5196: 0,-39 + 5197: -1,-39 + 5198: 0,-41 + 5199: -2,-44 + 5200: 0,-47 + 5201: -2,-50 + 5202: -1,-53 + 5203: -3,-56 + 5204: -3,-54 + 5240: 24,-33 + 5241: 26,-33 + 5242: 26,-34 + 5243: 26,-36 + 5244: 25,-37 + 5245: 24,-36 + 5246: 31,-34 + 5247: 29,-34 + 5248: 31,-36 + 5249: 33,-34 + 5250: 32,-28 + 5251: 30,-28 + 5252: 30,-29 + 5253: 30,-30 + 5254: 31,-30 + 5831: -26,-55 + 5832: -27,-55 + 5833: -26,-56 + 5834: -23,-56 + 5835: -32,-55 + 5836: -35,-55 + 5837: -32,-57 + 5838: -32,-58 + 5839: -32,-60 + 5840: -34,-63 + 5841: -35,-63 + 5842: -33,-65 + 5843: -33,-65 + 5844: -33,-61 + 5845: -34,-61 + 5846: -34,-58 + 5847: -35,-58 + 5848: -34,-60 + 5849: -38,-61 + 5850: -39,-61 + 5851: -39,-55 + 5852: -39,-56 + 5853: -37,-57 + 5854: -37,-51 + 5855: -38,-50 + 5856: -36,-50 + 5857: -40,-51 + 5858: -40,-50 + 5859: -33,-50 + 5860: -34,-51 + 5861: -34,-51 + 5862: -23,-57 + 5863: -23,-59 + 5864: -25,-59 + 5865: -27,-59 + 5866: -26,-71 + 5867: -24,-71 + 5868: -20,-70 + 5869: -17,-70 + 5870: -21,-73 + 5871: -15,-74 + 5872: -14,-74 + 5873: -17,-76 + 5874: -13,-77 + 5875: -12,-74 + 5876: -15,-74 + 5877: -13,-77 + 5878: -7,-75 + 5879: -6,-75 + 5880: -7,-74 + 5881: -3,-75 + 5882: -3,-77 + 5883: -2,-79 + 5884: 1,-79 + 5885: 1,-76 + 5886: 2,-75 + 5887: 4,-75 + 5888: 8,-74 + 5889: 8,-75 + 5890: 5,-70 + 5891: 0,-70 + 5892: -4,-70 + 5893: 3,-67 + 5894: 5,-67 + 5895: 6,-68 + 5896: 2,-63 + 5897: 6,-61 + 5898: -2,-65 + 5899: -5,-65 + 5900: -8,-64 + 5901: -4,-63 + 5902: -5,-65 + 5903: -7,-66 + 5904: 8,-75 + 5905: 6,-75 + 5906: 5,-75 + 5907: 13,-79 + 5908: 16,-80 + 5909: 19,-79 + 5910: 19,-75 + 5911: 16,-73 + 5912: 14,-75 + 5913: 15,-79 + 5914: 17,-75 + 5915: 16,-74 + 5916: 20,-75 + 5917: 25,-75 + 5918: 26,-73 + 5919: 26,-70 + 5920: 26,-67 + 5921: 26,-64 + 5922: 26,-61 + 5923: 24,-61 + 5924: 20,-60 + 5925: 20,-57 + 5926: 16,-56 + 5927: 14,-58 + 5928: 18,-56 + 5929: 20,-52 + 5930: 18,-48 + 5931: 14,-47 + 5932: 14,-49 + 5933: 20,-47 + 5934: 20,-44 + 5935: 17,-44 + 5936: 13,-44 + 5937: 13,-42 + 5938: 5,-43 + 5939: 3,-42 + 5940: 36,-47 + 5941: 36,-49 + 5942: 35,-52 + 5943: 34,-55 + 5944: 40,-60 + 5945: 35,-67 + 5946: 5,-67 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 4282: -15.008517,-25.49172 - node: color: '#FFFFFFFF' id: Flowersbr3 @@ -2755,6 +4178,30 @@ entities: id: Flowerspv2 decals: 1141: 43.154446,-52.983627 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 4281: -14.945987,-24.626535 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 4280: -15.018939,-26.388176 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 4278: -14.96683,-24.094915 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 4279: -14.987674,-27.024033 - node: color: '#FFFFFFFF' id: Flowersy3 @@ -2916,23 +4363,13 @@ entities: id: Grassb5 decals: 1146: 42.85757,-51.827377 - - node: - color: '#FFFFFFFF' - id: Grassc1 - decals: - 4241: -14.906778,-26.99565 - - node: - color: '#FFFFFFFF' - id: Grassc4 - decals: - 4240: -14.990112,-23.983139 - node: color: '#FFFFFFFF' id: Grassd1 decals: 1138: 46.57632,-52.483627 3344: 42,0 - 4238: -14.990112,-24.54603 + 4283: -14.9564085,-24.074068 - node: color: '#FFFFFFFF' id: Grassd2 @@ -2945,6 +4382,7 @@ entities: decals: 1438: 2,48 3345: 43,0 + 4285: -15.008517,-25.637653 - node: color: '#FFFFFFFF' id: Grasse1 @@ -2954,7 +4392,7 @@ entities: 1437: 2,47 1439: -3,48 3341: 43,-1 - 4239: -15.031778,-26.047073 + 4284: -14.96683,-24.939253 - node: color: '#FFFFFFFF' id: Grasse2 @@ -2966,6 +4404,7 @@ entities: 1435: -1,48 1451: -1,47 3342: 42,-1 + 4287: -14.987674,-26.90937 - node: color: '#FFFFFFFF' id: Grasse3 @@ -2975,6 +4414,7 @@ entities: 1433: 4,48 1436: -3,47 3340: 44,-1 + 4286: -15.008517,-26.263088 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -3007,6 +4447,11 @@ entities: 2972: 21,-35 2973: 18,-35 2974: 19,-35 + - node: + color: '#79150096' + id: HalfTileOverlayGreyscale + decals: + 4487: 23,-13 - node: color: '#9D9D97FF' id: HalfTileOverlayGreyscale @@ -3025,6 +4470,10 @@ entities: 976: 35,-52 977: 36,-52 2066: -3,28 + 4422: 46,-12 + 4423: 47,-12 + 4424: 48,-12 + 4425: 49,-12 - node: color: '#A4610696' id: HalfTileOverlayGreyscale @@ -3061,6 +4510,11 @@ entities: 3141: 5,-34 3142: 4,-34 3143: 3,-34 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 4495: 79,-11 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale @@ -3216,6 +4670,11 @@ entities: 3149: 5,-37 3627: 56,-42 3628: 58,-42 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 4496: 79,-7 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3342,6 +4801,11 @@ entities: 1731: 63,-41 3144: 2,-35 3145: 2,-36 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 4493: 80,-9 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3384,6 +4848,15 @@ entities: 87: -8,-26 542: -16,-28 543: -16,-23 + - node: + zIndex: 1 + color: '#334E6DC8' + id: HalfTileOverlayGreyscale90 + decals: + 4272: -16,-24 + 4273: -16,-25 + 4274: -16,-26 + 4275: -16,-27 - node: color: '#52B4E931' id: HalfTileOverlayGreyscale90 @@ -3457,6 +4930,11 @@ entities: 1730: 51,-41 3138: 7,-36 3139: 7,-35 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 4494: 78,-9 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -3540,6 +5018,15 @@ entities: 2017: 27,-90 2018: 27,-91 2023: 31,-91 + - node: + zIndex: 1 + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 4260: 14,-7 + 4261: 14,-6 + 4262: 14,-5 + 4263: 14,-4 - node: color: '#5299B43A' id: QuarterTileOverlayGreyscale @@ -3585,18 +5072,17 @@ entities: 2285: -79,10 2429: 35,-35 - node: - color: '#9D9D97FF' + color: '#79150096' id: QuarterTileOverlayGreyscale decals: - 818: 63,-27 + 4474: 19,-13 + 4475: 20,-13 + 4478: 21,-13 - node: - color: '#9FED5896' + color: '#9D9D97FF' id: QuarterTileOverlayGreyscale decals: - 3771: 14,-4 - 3772: 14,-5 - 3773: 14,-6 - 3774: 14,-7 + 818: 63,-27 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale @@ -3623,12 +5109,10 @@ entities: color: '#D4D4D428' id: QuarterTileOverlayGreyscale decals: - 1762: 14,-5 1771: -3,1 1772: -4,1 1773: -4,0 1774: -4,-1 - 1775: -5,-1 1776: -6,-1 1777: -8,-1 1778: -9,-1 @@ -3641,24 +5125,8 @@ entities: 1798: -2,5 1799: -2,4 1800: -2,3 - 1933: 19,-13 - 1934: 20,-13 - 1935: 21,-13 - 1936: 23,-13 - 1937: 22,-13 - 1938: 24,-13 - 1939: 25,-13 - 1940: 26,-13 - 1941: 27,-13 - 1942: 28,-13 - 1943: 29,-13 - 1944: 30,-13 - 1945: 31,-13 - 1946: 32,-13 1947: 73,-13 - 1955: 65,-13 1965: 55,-13 - 1966: 54,-13 1967: -21,-1 1968: -22,-1 1969: -23,-1 @@ -3669,10 +5137,6 @@ entities: 1974: -27,-1 1975: -30,-1 1976: -31,-1 - 1983: -40,-1 - 1984: -41,-1 - 1987: -48,-1 - 1988: -49,-1 1992: -62,1 1993: -61,1 1994: -60,1 @@ -3715,9 +5179,55 @@ entities: 3100: -47,-8 3102: -47,-6 3103: -46,-6 - 3104: -45,-6 - 3105: -44,-6 - 3106: -43,-6 + 4291: -45,-6 + 4292: -44,-6 + 4293: -47,-7 + 4294: -47,-8 + 4303: -65,1 + 4304: -65,0 + 4305: -65,-1 + 4306: -65,-2 + 4307: -65,-3 + 4308: -52,-1 + 4309: -51,-1 + 4310: -50,-1 + 4311: -49,-1 + 4312: -48,-1 + 4313: -47,-1 + 4314: -46,-1 + 4315: -45,-1 + 4316: -44,-1 + 4317: -43,-1 + 4318: -42,-1 + 4319: -41,-1 + 4320: -40,-1 + 4321: -39,-1 + 4322: -38,-1 + 4323: -37,-1 + 4364: -22,-1 + 4377: -5,-1 + 4381: 75,-8 + 4382: 75,-7 + 4383: 75,-6 + 4384: 76,-6 + 4401: 76,-16 + 4492: 80,-8 + 4501: 51,-12 + 4502: 51,-11 + 4503: 51,-10 + 4504: 52,-9 + - node: + color: '#D4D4D496' + id: QuarterTileOverlayGreyscale + decals: + 4466: 33,-12 + 4467: 34,-12 + 4468: 35,-12 + 4469: 36,-12 + 4470: 37,-12 + 4471: 38,-12 + 4472: 39,-12 + 4473: 40,-12 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -3768,111 +5278,6 @@ entities: 1100: 57,-21 2098: 15,31 2100: 15,33 - 3812: 19,-13 - 3813: 20,-13 - 3814: 21,-13 - 3815: 22,-13 - 3816: 23,-13 - 3817: 24,-13 - 3818: 25,-13 - 3819: 26,-13 - 3820: 27,-13 - 3821: 28,-13 - 3822: 29,-13 - 3823: 30,-13 - 3824: 31,-13 - 3825: 32,-13 - 3865: 79,-11 - 3866: 80,-11 - 3867: 80,-10 - 3868: 80,-9 - 3869: 80,-8 - 3902: 56,-13 - 3903: 57,-13 - 3904: 58,-13 - 3905: 59,-13 - 3906: 60,-13 - 3907: 61,-13 - 3908: 62,-13 - 3909: 63,-13 - 3910: 64,-13 - 3911: 65,-13 - 3912: 66,-13 - 3913: 67,-13 - 3914: 68,-13 - 3915: 69,-13 - 3916: 70,-13 - 3917: 71,-13 - 3918: 72,-13 - 3919: -47,-1 - 3920: -46,-1 - 3921: -45,-1 - 3922: -44,-1 - 3923: -43,-1 - 3924: -42,-1 - 3925: -41,-1 - 3926: -40,-1 - 3927: -39,-1 - 3928: -38,-1 - 3929: -37,-1 - 3968: -48,-1 - 3969: -49,-1 - 4006: -52,-1 - 4007: -51,-1 - 4008: -50,-1 - 4009: -41,-9 - 4010: -42,-9 - 4011: -43,-9 - 4012: -44,-9 - 4019: -41,-7 - 4020: -41,-8 - 4043: -65,-3 - 4044: -65,-2 - 4045: -65,-1 - 4046: -65,0 - 4047: -65,1 - 4048: -65,2 - 4049: -65,3 - 4050: -65,4 - 4051: -65,5 - 4052: -65,6 - 4142: 33,-13 - 4143: 33,-12 - 4144: 34,-12 - 4145: 35,-12 - 4146: 36,-12 - 4147: 37,-12 - 4148: 38,-12 - 4149: 39,-12 - 4151: 42,-13 - 4152: 43,-13 - 4153: 44,-13 - 4154: 45,-13 - 4155: 46,-13 - 4156: 46,-12 - 4157: 47,-12 - 4158: 48,-12 - 4160: 50,-13 - 4161: 51,-13 - 4162: 51,-12 - 4163: 51,-11 - 4164: 51,-10 - 4165: 51,-9 - 4166: 52,-9 - 4167: 53,-9 - 4168: 54,-13 - 4197: 75,-9 - 4198: 75,-8 - 4199: 75,-7 - 4200: 75,-6 - 4201: 76,-6 - 4202: 77,-6 - 4203: 78,-6 - 4204: 79,-6 - 4205: 80,-6 - 4206: 75,-10 - 4207: 75,-11 - 4208: 75,-12 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -3940,7 +5345,6 @@ entities: 530: -13,-10 531: -14,-10 532: -15,-10 - 546: -16,-27 547: -16,-22 548: -16,-19 549: -16,-18 @@ -3964,6 +5368,19 @@ entities: 2059: -3,-9 2060: -2,-9 3738: -16,-11 + - node: + zIndex: 1 + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale180 + decals: + 4264: 13,-3 + 4265: 12,-3 + 4266: 11,-3 + 4267: 10,-3 + 4268: 9,-3 + 4269: 8,-3 + 4270: 7,-3 + 4271: 6,-3 - node: color: '#474F52FF' id: QuarterTileOverlayGreyscale180 @@ -4041,54 +5458,6 @@ entities: decals: 3136: 3,-32 3137: 2,-32 - 3739: -6,-3 - 3740: -5,-3 - 3741: -4,-3 - 3742: -3,-3 - 3743: -2,-3 - 3744: -1,-3 - 3745: 0,-3 - 3746: 1,-3 - 3747: 2,-3 - 3748: 3,-3 - 3749: 4,-3 - 3750: -8,-3 - 3751: -9,-3 - 3752: -10,-3 - 3753: -11,-3 - 3754: -12,-3 - 3755: -13,-3 - 3756: -14,-3 - 3757: -15,-3 - 3758: -16,-3 - 3759: -16,-4 - 3760: -16,-5 - 3761: -16,-6 - 3762: -16,-7 - 3763: 6,-3 - 3764: 7,-3 - 3765: 8,-3 - 3766: 9,-3 - 3767: 10,-3 - 3768: 11,-3 - 3769: 12,-3 - 3770: 13,-3 - 3941: -47,-3 - 3942: -46,-3 - 3943: -45,-3 - 3944: -44,-3 - 3945: -43,-3 - 3946: -42,-3 - 3947: -41,-3 - 3948: -40,-3 - 3949: -39,-3 - 3950: -38,-3 - 3951: -37,-3 - 3965: -48,-3 - 3966: -49,-3 - 4003: -50,-3 - 4004: -51,-3 - 4005: -52,-3 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -4124,7 +5493,6 @@ entities: id: QuarterTileOverlayGreyscale180 decals: 1055: 59,-27 - 1755: 8,-3 2001: -54,1 2002: -54,0 2124: 16,-15 @@ -4141,6 +5509,23 @@ entities: 2179: 7,-32 2780: 27,8 2781: 27,9 + 4340: -35,-3 + 4341: -34,-3 + 4342: -33,-3 + 4343: -32,-3 + 4372: 0,-3 + 4373: 1,-3 + 4374: 2,-3 + 4375: 3,-3 + 4376: 4,-3 + 4394: 80,-14 + 4395: 79,-15 + 4396: 79,-16 + 4397: 78,-16 + 4398: 77,-16 + 4399: 76,-16 + 4400: 75,-15 + 4500: 78,-10 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -4180,36 +5565,6 @@ entities: 624: 6,19 625: 15,37 626: 16,37 - 3870: 79,-7 - 3871: 78,-7 - 3872: 78,-8 - 3873: 78,-9 - 3874: 78,-10 - 3875: 82,-11 - 3876: 82,-10 - 3877: 82,-9 - 3878: 82,-8 - 3879: 82,-7 - 4013: -45,-8 - 4014: -45,-7 - 4015: -45,-6 - 4016: -44,-6 - 4017: -43,-6 - 4018: -42,-6 - 4169: 53,-12 - 4170: 53,-11 - 4171: 53,-10 - 4172: 53,-9 - 4209: 79,-16 - 4210: 78,-16 - 4211: 77,-16 - 4212: 79,-15 - 4213: 79,-14 - 4214: 80,-14 - 4218: 82,-13 - 4219: -16,-24 - 4220: -16,-25 - 4221: -16,-26 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale180 @@ -4273,6 +5628,19 @@ entities: 2049: 2,-9 2050: 1,-9 2051: 0,-9 + - node: + zIndex: 1 + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale270 + decals: + 4247: -15,-3 + 4248: -14,-3 + 4249: -13,-3 + 4250: -12,-3 + 4251: -11,-3 + 4252: -10,-3 + 4253: -9,-3 + 4254: -8,-3 - node: color: '#5299B43A' id: QuarterTileOverlayGreyscale270 @@ -4358,40 +5726,6 @@ entities: 734: 38,-57 3135: 7,-32 3393: 8,-32 - 3859: 79,-7 - 3860: 80,-7 - 3861: 80,-8 - 3862: 80,-9 - 3863: 80,-10 - 4027: -41,-8 - 4028: -41,-7 - 4029: -41,-6 - 4030: -42,-6 - 4031: -43,-6 - 4032: -44,-6 - 4033: -65,6 - 4034: -65,5 - 4035: -65,4 - 4036: -65,2 - 4037: -65,3 - 4038: -65,1 - 4039: -65,0 - 4040: -65,-1 - 4041: -65,-2 - 4042: -65,-3 - 4139: 51,-12 - 4140: 51,-11 - 4141: 51,-10 - 4178: 76,-16 - 4179: 77,-16 - 4180: 78,-16 - 4184: 75,-12 - 4185: 75,-11 - 4188: 75,-10 - 4189: 75,-9 - 4190: 75,-8 - 4191: 75,-7 - 4216: 80,-14 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -4474,9 +5808,6 @@ entities: 2174: -3,-32 2175: -2,-32 2178: 2,-32 - 2337: 51,-12 - 2338: 51,-11 - 2339: 51,-10 2782: 23,8 2783: 22,8 2784: 21,8 @@ -4486,6 +5817,48 @@ entities: 3386: 14,-27 3387: 14,-26 3388: 14,-25 + 4295: -45,-9 + 4296: -44,-10 + 4297: -43,-10 + 4298: -41,-10 + 4299: -65,3 + 4300: -65,4 + 4301: -65,5 + 4302: -65,6 + 4324: -37,-3 + 4325: -38,-3 + 4326: -39,-3 + 4327: -40,-3 + 4328: -41,-3 + 4329: -42,-3 + 4330: -43,-3 + 4331: -44,-3 + 4332: -45,-3 + 4333: -46,-3 + 4334: -47,-3 + 4335: -48,-3 + 4336: -49,-3 + 4337: -50,-3 + 4338: -51,-3 + 4339: -52,-3 + 4356: -30,-3 + 4357: -29,-4 + 4358: -28,-4 + 4359: -27,-4 + 4360: -26,-4 + 4361: -25,-4 + 4362: -24,-4 + 4363: -23,-4 + 4365: -22,-4 + 4366: -21,-4 + 4367: -6,-3 + 4368: -5,-3 + 4369: -4,-3 + 4370: -3,-3 + 4371: -2,-3 + 4379: 75,-12 + 4380: 75,-11 + 4499: 80,-10 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -4514,7 +5887,6 @@ entities: 599: -6,19 600: -5,19 601: -4,19 - 602: -3,19 603: -2,19 627: 13,37 628: 12,37 @@ -4523,54 +5895,7 @@ entities: 631: 8,35 632: 9,35 2097: 15,32 - 3779: -15,-3 - 3780: -14,-3 - 3781: -13,-3 - 3782: -12,-3 - 3783: -11,-3 - 3784: -10,-3 - 3785: -9,-3 - 3786: -8,-3 - 3787: -6,-3 - 3788: -5,-3 - 3789: -4,-3 - 3790: -3,-3 - 3791: -2,-3 - 3792: -1,-3 - 3793: 0,-3 - 3794: 1,-3 - 3795: 2,-3 - 3796: 3,-3 - 3797: 4,-3 - 3798: 6,-3 - 3799: 7,-3 - 3800: 8,-3 - 3801: 9,-3 - 3802: 10,-3 - 3803: 11,-3 - 3804: 12,-3 - 3805: 13,-3 - 3806: 14,-3 - 3807: 14,-4 - 3808: 14,-5 - 3809: 14,-6 - 3810: 14,-7 - 3930: -47,-3 - 3931: -46,-3 - 3932: -45,-3 - 3933: -44,-3 - 3934: -43,-3 - 3935: -42,-3 - 3936: -41,-3 - 3937: -40,-3 - 3938: -39,-3 - 3939: -38,-3 - 3940: -37,-3 - 3967: -48,-3 - 3970: -49,-3 - 3997: -50,-3 - 3998: -51,-3 - 3999: -52,-3 + 4488: -3,19 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -4611,7 +5936,6 @@ entities: 533: -13,-8 534: -14,-8 535: -15,-8 - 544: -16,-24 545: -16,-29 814: -9,-30 815: -8,-30 @@ -4619,6 +5943,15 @@ entities: 2015: 29,-90 2016: 29,-91 2028: 25,-91 + - node: + zIndex: 1 + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 4243: -16,-7 + 4244: -16,-6 + 4245: -16,-5 + 4246: -16,-4 - node: color: '#5299B43A' id: QuarterTileOverlayGreyscale90 @@ -4642,6 +5975,18 @@ entities: 1567: 36,-23 1624: 25,-19 2422: 36,-35 + - node: + color: '#79150096' + id: QuarterTileOverlayGreyscale90 + decals: + 4479: 32,-13 + 4480: 31,-13 + 4481: 30,-13 + 4482: 29,-13 + 4483: 28,-13 + 4484: 27,-13 + 4485: 26,-13 + 4486: 25,-13 - node: color: '#9D9D97FF' id: QuarterTileOverlayGreyscale90 @@ -4651,103 +5996,14 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 3827: 32,-13 - 3828: 31,-13 - 3829: 30,-13 - 3830: 29,-13 - 3831: 28,-13 - 3832: 27,-13 - 3833: 26,-13 - 3834: 25,-13 - 3835: 24,-13 - 3836: 23,-13 - 3837: 22,-13 - 3838: 21,-13 - 3839: 20,-13 - 3840: 19,-13 - 3855: 78,-11 - 3856: 78,-10 - 3857: 78,-9 - 3858: 78,-8 - 3864: 79,-11 - 3880: 82,-11 - 3881: 82,-10 - 3882: 82,-9 - 3883: 82,-8 - 3884: 82,-7 - 3885: 72,-13 - 3886: 71,-13 - 3887: 70,-13 - 3888: 69,-13 - 3889: 68,-13 - 3890: 67,-13 - 3891: 66,-13 - 3892: 65,-13 - 3893: 64,-13 - 3894: 63,-13 - 3895: 61,-13 - 3896: 62,-13 - 3897: 60,-13 - 3898: 59,-13 - 3899: 58,-13 - 3900: 57,-13 - 3901: 56,-13 - 3952: -47,-1 - 3953: -46,-1 - 3954: -45,-1 - 3955: -44,-1 - 3956: -43,-1 - 3957: -42,-1 - 3958: -41,-1 - 3959: -40,-1 - 3960: -39,-1 - 3961: -38,-1 - 3962: -37,-1 - 3963: -48,-1 - 3964: -49,-1 - 4000: -50,-1 - 4001: -51,-1 - 4002: -52,-1 - 4021: -45,-8 - 4022: -45,-7 - 4023: -45,-9 - 4024: -44,-9 - 4025: -43,-9 - 4026: -42,-9 - 4099: 42,-13 - 4100: 43,-13 - 4101: 44,-13 - 4102: 45,-13 - 4117: 34,-12 - 4118: 35,-12 - 4119: 36,-12 - 4120: 37,-12 - 4121: 38,-12 - 4122: 39,-12 - 4123: 40,-12 - 4124: 40,-13 - 4125: 47,-12 - 4126: 48,-12 - 4128: 49,-13 - 4129: 50,-13 - 4130: 53,-13 - 4131: 54,-13 - 4132: 53,-12 - 4133: 53,-11 - 4134: 53,-10 - 4135: 53,-9 - 4136: 52,-9 - 4177: 49,-12 - 4192: 76,-6 - 4193: 77,-6 - 4194: 78,-6 - 4195: 79,-6 - 4196: 80,-6 - 4215: 79,-15 - 4217: 82,-13 - 4222: -16,-27 - 4223: -16,-26 - 4224: -16,-25 + 4458: 40,-12 + 4459: 39,-12 + 4460: 38,-12 + 4461: 37,-12 + 4462: 36,-12 + 4463: 35,-12 + 4464: 34,-12 + 4465: 33,-12 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -4779,7 +6035,6 @@ entities: id: QuarterTileOverlayGreyscale90 decals: 1765: 4,-1 - 1766: 3,-1 1767: 2,-1 1768: 2,0 1769: 2,1 @@ -4819,11 +6074,7 @@ entities: 1977: -33,-1 1978: -34,-1 1979: -35,-1 - 1980: -37,-1 1981: -36,-1 - 1982: -38,-1 - 1985: -43,-1 - 1986: -44,-1 2012: -54,-6 2013: -54,-5 2014: -54,-4 @@ -4859,13 +6110,6 @@ entities: 2209: 9,4 2210: 9,5 2211: 9,6 - 2333: 48,-12 - 2342: 52,-9 - 2343: 53,-9 - 2345: 45,-13 - 2346: 44,-13 - 2347: 43,-13 - 2348: 42,-13 2776: 25,15 2777: 26,15 2778: 27,15 @@ -4884,8 +6128,6 @@ entities: 2799: 9,15 2800: 9,16 2801: 9,17 - 3107: -42,-6 - 3108: -41,-6 3109: -40,-6 3110: -40,-6 3111: -39,-6 @@ -4899,6 +6141,19 @@ entities: 3700: -38,-10 3701: -38,-9 3702: -38,-11 + 4288: -41,-6 + 4290: -42,-6 + 4378: 3,-1 + 4385: 78,-6 + 4386: 79,-6 + 4387: 80,-6 + 4388: 82,-7 + 4389: 82,-8 + 4390: 82,-9 + 4391: 82,-10 + 4392: 82,-11 + 4393: 82,-13 + 4497: 78,-8 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 @@ -4929,6 +6184,26 @@ entities: 1889: -65,10 2282: -78,10 2283: -79,10 + 4402: 72,-13 + 4403: 71,-13 + 4404: 70,-13 + 4405: 69,-13 + 4406: 68,-13 + 4407: 67,-13 + 4408: 66,-13 + 4409: 65,-13 + 4410: 64,-13 + 4411: 63,-13 + 4412: 62,-13 + 4413: 61,-13 + 4414: 60,-13 + 4415: 59,-13 + 4416: 58,-13 + 4417: 57,-13 + 4418: 56,-13 + 4419: 54,-13 + 4420: 53,-12 + 4421: 53,-11 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -4962,10 +6237,6 @@ entities: 616: 0,17 1101: 59,-18 2101: 13,31 - 3775: -16,-7 - 3776: -16,-6 - 3777: -16,-5 - 3778: -16,-4 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale90 @@ -5403,7 +6674,12 @@ entities: 2314: -73,-4 3093: 13,-77 3512: -13,-63 - 4264: -27,-70 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 5975: -27,-70 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -5418,7 +6694,12 @@ entities: 2313: -76,-4 3092: 17,-77 3511: -11,-63 - 4263: -23,-70 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 5974: -23,-70 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -5429,7 +6710,12 @@ entities: 2041: 22,-90 2317: -73,8 3091: 13,-75 - 4254: -27,-66 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 5977: -27,-66 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW @@ -5446,7 +6732,12 @@ entities: 2316: -76,8 3094: 17,-75 3699: -38,-10 - 4259: -23,-66 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 5976: -23,-66 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleN @@ -5499,9 +6790,14 @@ entities: 3089: 13,-76 3510: -13,-62 3514: 23,18 - 4251: -27,-67 - 4252: -27,-68 - 4253: -27,-69 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineE + decals: + 5962: -27,-69 + 5963: -27,-68 + 5964: -27,-67 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5765,9 +7061,14 @@ entities: 3086: 14,-75 3087: 15,-75 3088: 16,-75 - 4255: -26,-66 - 4258: -24,-66 - 4280: -25,-66 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineN + decals: + 5968: -26,-66 + 5969: -25,-66 + 5970: -24,-66 - node: color: '#FFFFFFFF' id: WarnLineS @@ -5834,9 +7135,14 @@ entities: 3568: -11,35 3569: -11,36 3703: -38,-11 - 4260: -23,-67 - 4261: -23,-68 - 4262: -23,-69 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineS + decals: + 5965: -23,-69 + 5966: -23,-68 + 5967: -23,-67 - node: color: '#FFFFFFFF' id: WarnLineW @@ -5917,9 +7223,14 @@ entities: 3084: 15,-77 3085: 16,-77 3508: -12,-63 - 4278: -26,-70 - 4279: -24,-70 - 4282: -25,-70 + - node: + zIndex: 1 + color: '#FFFFFFFF' + id: WarnLineW + decals: + 5971: -26,-70 + 5972: -25,-70 + 5973: -24,-70 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -6065,70 +7376,6 @@ entities: 3498: -8,-24 3499: -8,-23 3500: -8,-22 - - node: - color: '#FFFFFFFF' - id: bushsnowa1 - decals: - 4231: -15.073445,-24.441792 - - node: - color: '#FFFFFFFF' - id: bushsnowa3 - decals: - 4234: -15.177612,-26.12004 - - node: - color: '#FFFFFFFF' - id: bushsnowb1 - decals: - 4235: -14.771362,-26.286823 - - node: - color: '#FFFFFFFF' - id: bushsnowb2 - decals: - 4232: -14.813028,-24.775356 - 4236: -15.052612,-26.391062 - 4237: -15.115112,-25.348671 - - node: - color: '#FFFFFFFF' - id: bushsnowb3 - decals: - 4233: -15.146362,-25.119345 - - node: - angle: -4.71238898038469 rad - color: '#FFFFFFFF' - id: grasssnow - decals: - 3686: 2.9827948,-1.004494 - 3687: -5.0156083,-0.99618006 - - node: - color: '#FFFFFFFF' - id: grasssnow07 - decals: - 4230: -14.917195,-26.536997 - - node: - color: '#FFFFFFFF' - id: grasssnow08 - decals: - 4229: -15.031778,-26.30767 - - node: - color: '#FFFFFFFF' - id: grasssnow10 - decals: - 4228: -14.938028,-24.775356 - - node: - color: '#FFFFFFFF' - id: grasssnowa3 - decals: - 4227: -14.969278,-25.69266 - - node: - color: '#FFFFFFFF' - id: grasssnowc1 - decals: - 4225: -14.938028,-26.933105 - - node: - color: '#FFFFFFFF' - id: grasssnowc3 - decals: - 4226: -14.948445,-24.003988 - node: color: '#A4610606' id: splatter @@ -6381,7 +7628,7 @@ entities: 0: 61423 8,-1: 0: 12320 - 4: 34944 + 2: 34944 -8,-4: 0: 30583 -8,-5: @@ -6732,7 +7979,7 @@ entities: 0: 30583 6,-12: 1: 4369 - 2: 204 + 4: 204 3: 49152 6,-11: 1: 61713 @@ -6741,10 +7988,10 @@ entities: 0: 29424 6,-13: 1: 4369 - 2: 49152 + 4: 49152 3: 204 7,-12: - 2: 17 + 4: 17 3: 4096 1: 17476 7,-11: @@ -6753,7 +8000,7 @@ entities: 7,-10: 0: 61680 7,-13: - 2: 4096 + 4: 4096 1: 17476 3: 17 8,-12: @@ -6791,7 +8038,7 @@ entities: 1: 8704 8,0: 0: 63523 - 4: 8 + 2: 8 8,1: 0: 61440 8,2: @@ -7071,24 +8318,24 @@ entities: 1: 35064 0: 771 9,0: - 4: 15 + 2: 15 0: 65296 9,1: 0: 47232 9,2: 0: 48955 9,-1: - 4: 65520 + 2: 65520 0: 1 10,0: - 4: 1 + 2: 1 0: 65292 10,1: 0: 56789 10,2: 0: 64961 10,-1: - 4: 4368 + 2: 4368 0: 57548 11,0: 0: 30543 @@ -8925,13 +10172,13 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 + temperature: 235 moles: + - 21.824879 + - 82.10312 - 0 - 0 - 0 - - 6666.982 - - 0 - 0 - 0 - 0 @@ -8955,13 +10202,13 @@ entities: - 0 - 0 - volume: 2500 - temperature: 235 + temperature: 293.15 moles: - - 21.824879 - - 82.10312 - 0 - 0 - 0 + - 6666.982 + - 0 - 0 - 0 - 0 @@ -11922,7 +13169,7 @@ entities: pos: 24.5,16.5 parent: 8364 - type: Door - secondsUntilStateChange: -35533.973 + secondsUntilStateChange: -37852.17 state: Opening - type: DeviceLinkSource lastSignals: @@ -69115,58 +70362,6 @@ entities: - type: Transform pos: 42.526115,-2.6703405 parent: 8364 -- proto: ClothingHeadHatSantahat - entities: - - uid: 16209 - components: - - type: Transform - pos: 23.479437,42.06343 - parent: 8364 - - uid: 27935 - components: - - type: Transform - pos: 6.358707,35.83203 - parent: 8364 - - uid: 27936 - components: - - type: Transform - pos: 7.838608,35.8216 - parent: 8364 - - uid: 27937 - components: - - type: Transform - pos: 6.327441,35.52973 - parent: 8364 - - uid: 27938 - components: - - type: Transform - pos: 6.3170195,40.752113 - parent: 8364 - - uid: 27941 - components: - - type: Transform - pos: 16.497793,34.50699 - parent: 8364 - - uid: 27943 - components: - - type: Transform - pos: 4.7231474,33.682045 - parent: 8364 - - uid: 27945 - components: - - type: Transform - pos: 5.5495176,37.48842 - parent: 8364 - - uid: 27947 - components: - - type: Transform - pos: 13.0167885,39.623337 - parent: 8364 - - uid: 27974 - components: - - type: Transform - pos: -1.4000072,-5.011914 - parent: 8364 - proto: ClothingHeadHatTophat entities: - uid: 6988 @@ -69691,53 +70886,6 @@ entities: - type: Transform pos: 47.72615,-72.416794 parent: 8364 -- proto: ClothingOuterSanta - entities: - - uid: 27932 - components: - - type: Transform - pos: 6.8381114,35.769485 - parent: 8364 - - uid: 27933 - components: - - type: Transform - pos: 7.1820316,35.779907 - parent: 8364 - - uid: 27934 - components: - - type: Transform - pos: 6.994439,35.759064 - parent: 8364 - - uid: 27939 - components: - - type: Transform - pos: 6.4837685,40.59575 - parent: 8364 - - uid: 27940 - components: - - type: Transform - pos: 16.47695,34.204697 - parent: 8364 - - uid: 27942 - components: - - type: Transform - pos: 4.2958517,33.702896 - parent: 8364 - - uid: 27944 - components: - - type: Transform - pos: 5.5078306,37.571808 - parent: 8364 - - uid: 27946 - components: - - type: Transform - pos: 12.995945,39.717148 - parent: 8364 - - uid: 27973 - components: - - type: Transform - pos: -1.493803,-5.3037834 - parent: 8364 - proto: ClothingOuterSuitFire entities: - uid: 8635 @@ -85219,7 +86367,7 @@ entities: pos: -34.5,-14.5 parent: 8364 - type: Door - secondsUntilStateChange: -29722.51 + secondsUntilStateChange: -32040.709 state: Closing - uid: 15010 components: @@ -85712,7 +86860,7 @@ entities: pos: -4.5,-71.5 parent: 8364 - type: Door - secondsUntilStateChange: -21470.24 + secondsUntilStateChange: -23788.44 state: Closing - proto: Fireplace entities: @@ -86592,25 +87740,6 @@ entities: - type: Transform pos: 34.5,12.5 parent: 8364 -- proto: FloraTreeChristmas01 - entities: - - uid: 27948 - components: - - type: Transform - pos: -4.5619984,-0.48297754 - parent: 8364 - - uid: 27949 - components: - - type: Transform - pos: 3.4940813,-0.44128227 - parent: 8364 -- proto: FloraTreeChristmas02 - entities: - - uid: 27955 - components: - - type: Transform - pos: 23.93768,-6.3922496 - parent: 8364 - proto: FoodBanana entities: - uid: 6983 @@ -132904,270 +134033,6 @@ entities: parent: 8364 - type: ApcPowerReceiver powerLoad: 0 -- proto: PresentRandom - entities: - - uid: 21486 - components: - - type: Transform - pos: -54.504784,15.508425 - parent: 8364 - - uid: 27922 - components: - - type: Transform - pos: -0.49470747,-86.45126 - parent: 8364 - - uid: 27923 - components: - - type: Transform - pos: -34.4738,21.467957 - parent: 8364 - - uid: 27924 - components: - - type: Transform - pos: -30.520926,5.542141 - parent: 8364 - - uid: 27925 - components: - - type: Transform - pos: -31.469313,6.4490204 - parent: 8364 - - uid: 27926 - components: - - type: Transform - pos: -32.542763,5.5734124 - parent: 8364 - - uid: 27927 - components: - - type: Transform - pos: -10.9682865,17.654972 - parent: 8364 - - uid: 27928 - components: - - type: Transform - pos: -4.533206,15.455529 - parent: 8364 - - uid: 27929 - components: - - type: Transform - pos: -1.7443311,30.747675 - parent: 8364 - - uid: 27930 - components: - - type: Transform - pos: 16.479553,32.771088 - parent: 8364 - - uid: 27931 - components: - - type: Transform - pos: 13.49891,40.480362 - parent: 8364 - - uid: 27952 - components: - - type: Transform - pos: -5.265177,-0.6308181 - parent: 8364 - - uid: 27953 - components: - - type: Transform - pos: 3.0306053,-0.7559052 - parent: 8364 - - uid: 27954 - components: - - type: Transform - pos: -4.0666656,-0.7890227 - parent: 8364 - - uid: 27958 - components: - - type: Transform - pos: 22.963808,-6.725461 - parent: 8364 - - uid: 27959 - components: - - type: Transform - pos: 25.058596,-5.182723 - parent: 8364 - - uid: 27960 - components: - - type: Transform - pos: 32.503265,0.5198436 - parent: 8364 - - uid: 27961 - components: - - type: Transform - pos: 22.53134,3.5313096 - parent: 8364 - - uid: 27962 - components: - - type: Transform - pos: 22.447966,5.511852 - parent: 8364 - - uid: 27963 - components: - - type: Transform - pos: 16.499254,3.47919 - parent: 8364 - - uid: 27964 - components: - - type: Transform - pos: 20.503527,-21.487644 - parent: 8364 - - uid: 27965 - components: - - type: Transform - pos: 31.480825,-36.348404 - parent: 8364 - - uid: 27966 - components: - - type: Transform - pos: 36.913406,-40.32521 - parent: 8364 - - uid: 27975 - components: - - type: Transform - pos: 9.498493,-13.259819 - parent: 8364 - - uid: 27976 - components: - - type: Transform - pos: 2.4861767,-35.38526 - parent: 8364 - - uid: 27977 - components: - - type: Transform - pos: 12.474101,-36.469345 - parent: 8364 - - uid: 27978 - components: - - type: Transform - pos: 80.45666,-45.398308 - parent: 8364 - - uid: 27979 - components: - - type: Transform - pos: 69.48871,-34.98652 - parent: 8364 - - uid: 27980 - components: - - type: Transform - pos: 62.51061,-7.3934164 - parent: 8364 - - uid: 27981 - components: - - type: Transform - pos: 64.48113,0.57479143 - parent: 8364 - - uid: 27982 - components: - - type: Transform - pos: 50.484615,16.468405 - parent: 8364 - - uid: 27983 - components: - - type: Transform - pos: 86.52836,-53.49038 - parent: 8364 - - uid: 27984 - components: - - type: Transform - pos: -4.484927,-62.871216 - parent: 8364 - - uid: 27985 - components: - - type: Transform - pos: -25.009478,-53.96871 - parent: 8364 - - uid: 27986 - components: - - type: Transform - pos: -10.81077,-27.308935 - parent: 8364 - - uid: 27987 - components: - - type: Transform - pos: -12.467842,-22.511818 - parent: 8364 - - uid: 27988 - components: - - type: Transform - pos: -33.589916,-27.340237 - parent: 8364 - - uid: 27989 - components: - - type: Transform - pos: -32.51471,-14.456967 - parent: 8364 - - uid: 27990 - components: - - type: Transform - pos: -48.52473,-10.569237 - parent: 8364 - - uid: 27991 - components: - - type: Transform - pos: -60.55439,-1.4672434 - parent: 8364 - - uid: 27992 - components: - - type: Transform - pos: 25.485146,18.46381 - parent: 8364 - - uid: 27993 - components: - - type: Transform - pos: 46.464687,-4.5213356 - parent: 8364 - - uid: 27994 - components: - - type: Transform - pos: 37.468975,-6.501878 - parent: 8364 - - uid: 27995 - components: - - type: Transform - pos: 28.470734,-110.599205 - parent: 8364 - - uid: 28021 - components: - - type: Transform - pos: -39.508694,1.5123675 - parent: 8364 - - uid: 28069 - components: - - type: Transform - pos: 68.485176,-66.456276 - parent: 8364 - - uid: 28070 - components: - - type: Transform - pos: -25.506132,-34.44175 - parent: 8364 -- proto: PresentRandomCoal - entities: - - uid: 27950 - components: - - type: Transform - pos: -3.764432,0.02581346 - parent: 8364 - - uid: 27951 - components: - - type: Transform - pos: 4.2812257,-0.64131606 - parent: 8364 - - uid: 27956 - components: - - type: Transform - pos: 22.70326,-5.73519 - parent: 8364 - - uid: 27957 - components: - - type: Transform - pos: 25.089863,-6.527406 - parent: 8364 - - uid: 28024 - components: - - type: Transform - pos: 2.4670389,22.582647 - parent: 8364 - proto: Protolathe entities: - uid: 17802 @@ -148090,17 +148955,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Main Hall Sci - - uid: 21348 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 8364 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Shower Room - uid: 21349 components: - type: Transform diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml index d1e13e552c3e..fa2e49577dee 100644 --- a/Resources/Maps/cog.yml +++ b/Resources/Maps/cog.yml @@ -2,49 +2,49 @@ meta: format: 6 postmapinit: false tilemap: - 46: Space - 79: FloorArcadeBlue2 - 64: FloorAsteroidSandDug - 63: FloorAsteroidSandUnvariantized - 68: FloorAstroGrass - 49: FloorAstroIce - 48: FloorAstroSnow - 71: FloorBar - 41: FloorBlueCircuit - 83: FloorBoxing - 61: FloorBrokenWood - 87: FloorCarpetClown - 60: FloorClown - 88: FloorConcreteSmooth - 45: FloorDark - 59: FloorDarkMono - 77: FloorDesert - 54: FloorFreezer - 75: FloorGlass - 78: FloorGold - 50: FloorGreenCircuit - 84: FloorHydro - 65: FloorKitchen - 67: FloorLino - 86: FloorMime - 55: FloorMowedAstroGrass - 76: FloorPlanetDirt - 51: FloorRGlass - 62: FloorReinforced - 44: FloorSteel - 85: FloorSteelCheckerLight - 70: FloorSteelDamaged - 53: FloorSteelDirty - 72: FloorSteelMono - 47: FloorTechMaint - 52: FloorTechMaint2 - 73: FloorTechMaint3 - 58: FloorWhite - 69: FloorWhiteMini - 80: FloorWhiteMono - 56: FloorWood - 43: Lattice - 42: Plating + 5: Space + 35: FloorArcadeBlue2 + 22: FloorAsteroidSandDug + 21: FloorAsteroidSandUnvariantized + 25: FloorAstroGrass + 8: FloorAstroIce + 7: FloorAstroSnow + 28: FloorBar + 0: FloorBlueCircuit + 37: FloorBoxing + 19: FloorBrokenWood + 57: FloorCarpetClown + 18: FloorClown + 66: FloorConcreteSmooth + 4: FloorDark + 17: FloorDarkMono + 33: FloorDesert + 13: FloorFreezer + 31: FloorGlass + 34: FloorGold + 9: FloorGreenCircuit + 38: FloorHydro + 23: FloorKitchen + 24: FloorLino + 40: FloorMime + 14: FloorMowedAstroGrass + 32: FloorPlanetDirt + 10: FloorRGlass + 20: FloorReinforced + 3: FloorSteel + 39: FloorSteelCheckerLight + 27: FloorSteelDamaged + 12: FloorSteelDirty + 29: FloorSteelMono + 6: FloorTechMaint + 11: FloorTechMaint2 + 30: FloorTechMaint3 + 16: FloorWhite + 26: FloorWhiteMini + 36: FloorWhiteMono + 15: FloorWood + 2: Lattice + 1: Plating entities: - proto: "" entities: @@ -72,391 +72,391 @@ entities: chunks: 0,0: ind: 0,0 - tiles: KQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AAAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -1,0: ind: -1,0 - tiles: LAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKgAAAAAALQAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKQAAAAAAKgAAAAAALQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAAAAAAAAAQAAAAAABAAAAAADAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAAAAAAAAAQAAAAAABAAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: LAAAAAABLAAAAAAAKgAAAAAAMAAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAABKgAAAAAAMAAAAAAAMAAAAAAIMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAACLAAAAAABLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAABLAAAAAADLAAAAAABKgAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAABLAAAAAABKgAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALQAAAAADMwAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAACMwAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAABMwAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAA + tiles: AwAAAAAAAwAAAAABAQAAAAAABwAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAACQAAAAAACQAAAAAAAwAAAAADAwAAAAAAAQAAAAAABwAAAAAABwAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACCQAAAAAACQAAAAAAAwAAAAAAAwAAAAACAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAABAwAAAAAAAwAAAAABAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAABAwAAAAACAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAABAwAAAAADAwAAAAADAQAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABBAAAAAADCgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAACgAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAACgAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: MgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: CQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: LAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABNQAAAAAALwAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACDAAAAAAABgAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAQAAAAAADAAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAABLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAABOAAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAAAKgAAAAAALAAAAAACLAAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABBQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABBQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAADAwAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAADBQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAACBQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: KgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADOgAAAAAAOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAACOgAAAAACKgAAAAAALwAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACOgAAAAABOgAAAAABOgAAAAABOgAAAAACOgAAAAACLAAAAAACLAAAAAAAMwAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAC + tiles: AQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAQAAAAAAEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAEAAAAAABEAAAAAAAEAAAAAABAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADEAAAAAABEAAAAAABEAAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAABAQAAAAAABgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAABAwAAAAACAwAAAAACCgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAQAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAD version: 6 -2,0: ind: -2,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAAAOAAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAAALQAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAADLAAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABMgAAAAAALQAAAAABMgAAAAAAOwAAAAADOwAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAB + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAAADwAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABCQAAAAAACQAAAAAACQAAAAAABAAAAAABAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACCQAAAAAABAAAAAABCQAAAAAAEQAAAAAAEQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADCQAAAAAACQAAAAAACQAAAAAABAAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAC version: 6 -3,0: ind: -3,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAOAAAAAADPQAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAAADwAAAAACEwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAACOgAAAAAAKgAAAAAAOgAAAAADOgAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAAAOgAAAAACOgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAADKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAADOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAACKgAAAAAALAAAAAABLAAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAPQAAAAADOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAACAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAABAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAACAQAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAACEwAAAAABDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: OgAAAAABOgAAAAADOgAAAAADOgAAAAABOgAAAAACMwAAAAACOgAAAAADMwAAAAACOgAAAAAAOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAABOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAABOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAADKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAA + tiles: EAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACCgAAAAACEAAAAAAACgAAAAABEAAAAAACEAAAAAACEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAAAAQAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAACAQAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAABAQAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAADAQAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAADEAAAAAAAAQAAAAAAEAAAAAABEAAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: LAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAACLwAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAAAOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAOgAAAAADOgAAAAAAOgAAAAACOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAABOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAADOAAAAAABOAAAAAABOgAAAAABOgAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAADOAAAAAADOAAAAAACOgAAAAACOgAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADOgAAAAACOgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAOAAAAAABOAAAAAADOgAAAAAAOgAAAAAA + tiles: AwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADAQAAAAAAEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAQAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAAABgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAACAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAADEAAAAAAAEAAAAAACAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAAADwAAAAAAEAAAAAAAEAAAAAACAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAAAEAAAAAACEAAAAAACAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAADEAAAAAAAEAAAAAABAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAADwAAAAABDwAAAAAAEAAAAAABEAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: KgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAACOgAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA + tiles: AQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAADPQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAEKgAAAAAAKgAAAAAAPQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: BQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABEwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAGAQAAAAAAAQAAAAAAEwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: LgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: BQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAKgAAAAAANgAAAAAAKgAAAAAANgAAAAAANgAAAAAAQQAAAAAAKgAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAQQAAAAAALAAAAAADKgAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAAPwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAFwAAAAAAAQAAAAAAFwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAFwAAAAAAAwAAAAABAQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAQQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAKgAAAAAALAAAAAABQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAOgAAAAAAOgAAAAADOgAAAAACQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAABKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADKgAAAAAAOgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAACLwAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAABAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAAAQAAAAAAEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAAAAQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAADEAAAAAABBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBgAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAACAQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAD version: 6 -1,-4: ind: -1,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACOgAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACNwAAAAAANwAAAAAAKgAAAAAARAAAAAABRAAAAAACRAAAAAADRAAAAAABOgAAAAACOgAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAARAAAAAACKgAAAAAARAAAAAACRAAAAAADRAAAAAADRAAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAARAAAAAADNwAAAAAAKgAAAAAARAAAAAACRAAAAAABRAAAAAACRAAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAARAAAAAAANwAAAAAARAAAAAADRAAAAAADKgAAAAAARAAAAAACRAAAAAADRAAAAAACRAAAAAADOgAAAAAAOgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAARAAAAAADRAAAAAABRAAAAAAARAAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAANwAAAAAARAAAAAABNwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAAOgAAAAADOgAAAAABOgAAAAABMwAAAAADOgAAAAABMwAAAAADOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABMwAAAAACOgAAAAABMwAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADMwAAAAADOgAAAAABMwAAAAADOgAAAAABOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAABEAAAAAABAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADDgAAAAAADgAAAAAAAQAAAAAAGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABEAAAAAACEAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAAGQAAAAACAQAAAAAAGQAAAAADGQAAAAACGQAAAAACGQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAGQAAAAADDgAAAAAAAQAAAAAAGQAAAAADGQAAAAABGQAAAAABGQAAAAACEAAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAGQAAAAAADgAAAAAAGQAAAAABGQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABEAAAAAACEAAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAGQAAAAADGQAAAAABGQAAAAACGQAAAAADEAAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAADgAAAAAAGQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAABAQAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAADEAAAAAADAQAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAABAQAAAAAAEAAAAAABEAAAAAABEAAAAAADCgAAAAAAEAAAAAADCgAAAAADEAAAAAAAEAAAAAACEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAADAQAAAAAAEAAAAAADEAAAAAADEAAAAAAACgAAAAADEAAAAAACCgAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAEAAAAAABEAAAAAACCgAAAAADEAAAAAABCgAAAAADEAAAAAACEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADRAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACRAAAAAAALAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAACOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADGQAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAGQAAAAAAGQAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACGQAAAAACAwAAAAADGQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAAEAAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: OgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAABOgAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAAOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALgAAAAAAOgAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABKgAAAAAANwAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAANwAAAAAA + tiles: EAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABQAAAAAAEAAAAAADEAAAAAADEAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAABQAAAAAAEAAAAAADEAAAAAADAQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABQAAAAAAEAAAAAAAEAAAAAACAQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAADEAAAAAADEAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAABQAAAAAAEAAAAAACEAAAAAABAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACEAAAAAADEAAAAAACAQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAABDwAAAAACAQAAAAAADgAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAADAQAAAAAADgAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAAAAQAAAAAADgAAAAAAEAAAAAAAAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAADgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: NwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABMAAAAAAAMAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAD + tiles: DgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAB version: 6 1,-1: ind: 1,-1 - tiles: LAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAC + tiles: AwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAA version: 6 1,0: ind: 1,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAALAAAAAABKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAAAQAAAAAABgAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACwAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAABgAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: LAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAALAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLwAAAAAALwAAAAAALwAAAAAAKgAAAAAANQAAAAAAKgAAAAAARgAAAAAERgAAAAAANQAAAAAAKgAAAAAAOAAAAAABOAAAAAACRQAAAAAARQAAAAABKgAAAAAALQAAAAACLwAAAAAAKQAAAAAALwAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABNQAAAAAALAAAAAAAKgAAAAAAOAAAAAACOAAAAAABKgAAAAAARQAAAAABKgAAAAAALQAAAAADLwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAAALAAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALQAAAAADLQAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAABLAAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADKgAAAAAALQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAARgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAA + tiles: AwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAGwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACAQAAAAAAAwAAAAAAAwAAAAABDAAAAAAADAAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAADAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAADAAAAAAAAQAAAAAADwAAAAABDwAAAAACGgAAAAAAGgAAAAAAAQAAAAAABAAAAAADBgAAAAAAAAAAAAAABgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAADDAAAAAAAAwAAAAACAQAAAAAADwAAAAADDwAAAAAAAQAAAAAAGgAAAAABAQAAAAAABAAAAAABBgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAGAAAAAAAGAAAAAAADwAAAAABAwAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAGAAAAAAAGAAAAAAADwAAAAADAQAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADAQAAAAAABAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAAAwAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAAAQAAAAAABAAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADGwAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAADAAAAAAADAAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAA version: 6 2,0: ind: 2,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAARgAAAAAENQAAAAAANQAAAAAARgAAAAAENQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAAALQAAAAACLwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAARgAAAAABNQAAAAAALAAAAAADKgAAAAAALAAAAAACNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAARgAAAAAARgAAAAAAKgAAAAAARgAAAAAANQAAAAAARgAAAAAANQAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAANQAAAAAARgAAAAAEKgAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAELAAAAAABNQAAAAAANQAAAAAANQAAAAAAKgAAAAAARgAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAADRgAAAAACKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAGwAAAAAEDAAAAAAADAAAAAAAGwAAAAACDAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAGwAAAAADAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABAAAAAABBAAAAAACBgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBgAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAGwAAAAAADAAAAAAAAwAAAAABAQAAAAAAAwAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAGwAAAAAAGwAAAAABAQAAAAAAGwAAAAABDAAAAAAAGwAAAAADDAAAAAAADAAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAADAAAAAAAGwAAAAACAQAAAAAADAAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAEAwAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAGwAAAAAEAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAADDAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAACGwAAAAABAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAARwAAAAAARwAAAAADRwAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAABLAAAAAADKgAAAAAALAAAAAACLAAAAAADSAAAAAACSAAAAAADSAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAABRwAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAABSAAAAAADMwAAAAADSAAAAAACLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAACSAAAAAACSAAAAAADSAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABRgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABNQAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABKgAAAAAARgAAAAAEKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAAANQAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAANQAAAAAAKgAAAAAARgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAABKgAAAAAANQAAAAAALAAAAAABLAAAAAADRgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAACRgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAALAAAAAABLAAAAAAD + tiles: AQAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAADHAAAAAADHAAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADHQAAAAAAHQAAAAADHQAAAAACAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAABHAAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABHQAAAAACCgAAAAADHQAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAAAHQAAAAADHQAAAAAAHQAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADGwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAABDAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAGwAAAAAEAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAACDAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAABAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAABAQAAAAAADAAAAAAAAQAAAAAAGwAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAQAAAAAADAAAAAAAAwAAAAACAwAAAAAAGwAAAAADAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAGwAAAAABDAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAQAAAAAADAAAAAAAAwAAAAADGwAAAAAADAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAD version: 6 1,-3: ind: 1,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAB + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAD version: 6 2,-3: ind: 2,-3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAACLwAAAAAALAAAAAABLAAAAAADKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAABAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAADAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAACBgAAAAAAAwAAAAAAAwAAAAACAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAACHAAAAAACHAAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAQAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAARgAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAGwAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAABAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAALQAAAAABSwAAAAABSwAAAAACLQAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALQAAAAAASwAAAAAASwAAAAAALQAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAQAAAAAABAAAAAAAHwAAAAAAHwAAAAACBAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAABAAAAAACHwAAAAAAHwAAAAAABAAAAAABAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAADLAAAAAABOAAAAAABOAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAOAAAAAADOAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLAAAAAACLAAAAAAAKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLQAAAAACLQAAAAABMwAAAAACLQAAAAADLAAAAAADLAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADLQAAAAACMwAAAAADLQAAAAADLQAAAAADLAAAAAACLAAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABNQAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAACAwAAAAACDwAAAAACDwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADwAAAAAADwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAADAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAADwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAABDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACAwAAAAAAAwAAAAABAQAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBAAAAAADBAAAAAABCgAAAAABBAAAAAABAwAAAAACAwAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAABAwAAAAABBAAAAAABCgAAAAADBAAAAAACBAAAAAACAwAAAAABAwAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABDAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAACAwAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAD + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAD version: 6 5,-3: ind: 5,-3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: LAAAAAADLAAAAAACKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AwAAAAAAAwAAAAACAQAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: KgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 1,1: ind: 1,1 - tiles: KgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADPQAAAAAGLAAAAAADKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAA + tiles: AQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAAEDwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAEwAAAAABDwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAABDwAAAAACEwAAAAAFAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAADwAAAAAAAQAAAAAADwAAAAACAQAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAACAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA version: 6 0,1: ind: 0,1 - tiles: KgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAADRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAACRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAADTAAAAAABTAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAAATAAAAAADTAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAABRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAADRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA + tiles: AQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAACGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAABGQAAAAAAGQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAGQAAAAACGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAACIAAAAAAAIAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAABIAAAAAABIAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAABGQAAAAADGQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAACGQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAACDwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAA version: 6 -3,1: ind: -3,1 - tiles: KwAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAACKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAABLQAAAAADLQAAAAABKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAAMwAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AgAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBQAAAAAABQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACAwAAAAADAwAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAABCgAAAAACCgAAAAACCgAAAAACCgAAAAABCgAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADCgAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: LAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAABKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAAFKgAAAAAALAAAAAADLAAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAABTQAAAAAFKgAAAAAALAAAAAABLAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAADKgAAAAAALAAAAAAALAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADTQAAAAABTQAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAAMwAAAAABMwAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAACMwAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAADLQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAB + tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAADIQAAAAAFAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAFIQAAAAADAQAAAAAAAwAAAAAAAwAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAACIQAAAAACAQAAAAAAAwAAAAADAwAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAEIQAAAAAEAQAAAAAAAwAAAAADAwAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADIQAAAAAFIQAAAAADAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAEAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABCgAAAAAACgAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACCgAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAQAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAA version: 6 -1,1: ind: -1,1 - tiles: LAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAPgAAAAAALAAAAAACLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAACRAAAAAABRAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAADRAAAAAAARAAAAAAARAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAADRAAAAAACTAAAAAACTAAAAAAATAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABTAAAAAADTAAAAAAATAAAAAABTAAAAAADTAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAABTAAAAAABTAAAAAACTAAAAAABTAAAAAAATAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACTAAAAAABTAAAAAACTAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAAARAAAAAADRAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAAA + tiles: AwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAQAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAACGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAACGQAAAAABGQAAAAAAGQAAAAAAGQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAIAAAAAABIAAAAAACIAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAIAAAAAACIAAAAAACIAAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADGQAAAAACGQAAAAABGQAAAAACGQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAABGQAAAAABGQAAAAAAGQAAAAACGQAAAAAD version: 6 -4,1: ind: -4,1 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAABLQAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAAALQAAAAACLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAACKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAABLAAAAAADLAAAAAADLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAAALAAAAAADLAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACKgAAAAAALAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAAALAAAAAACLAAAAAAB + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAIgAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAEAAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACAQAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABAwAAAAABAwAAAAADAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADAQAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABAwAAAAAAAwAAAAAB version: 6 -3,2: ind: -3,2 - tiles: LAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAABKgAAAAAAOAAAAAACOAAAAAADOAAAAAABOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAADQwAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAACQwAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAA + tiles: AwAAAAAAAwAAAAABAQAAAAAAAQAAAAAADwAAAAAADwAAAAADDwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABGAAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAAAGAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAOAAAAAAD + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACAQAAAAAAAQAAAAAADwAAAAAC version: 6 -1,2: ind: -1,2 - tiles: LAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AwAAAAADAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 0,2: ind: 0,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAABUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAAAUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABOAAAAAADKgAAAAAAOgAAAAABOgAAAAABUAAAAAABUAAAAAADUAAAAAABUAAAAAACUAAAAAACUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAAAOgAAAAABUAAAAAADUAAAAAABUAAAAAABUAAAAAABUAAAAAABUAAAAAACOgAAAAAAOgAAAAABKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAABOgAAAAABUAAAAAADUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAACOgAAAAADOgAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAABOgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAACOAAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAB + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAADwAAAAACDwAAAAAADwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAEAAAAAABEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADAQAAAAAADwAAAAADDwAAAAAADwAAAAACDwAAAAACAQAAAAAAEAAAAAACEAAAAAADJAAAAAABJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAACEAAAAAACEAAAAAACAQAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAADAQAAAAAAEAAAAAAAEAAAAAADJAAAAAAAJAAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACEAAAAAACEAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAEAAAAAABEAAAAAADJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAADJAAAAAABEAAAAAAAEAAAAAADAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAEAAAAAACEAAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAABJAAAAAADJAAAAAAAEAAAAAADEAAAAAABAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAADJQAAAAADJQAAAAADJQAAAAACJQAAAAABJQAAAAAB version: 6 2,1: ind: 2,1 - tiles: LAAAAAAANQAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLwAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACRgAAAAADLAAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALwAAAAAAKgAAAAAASQAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAANQAAAAAALAAAAAABKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAANQAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAANQAAAAAALAAAAAACRgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAACLQAAAAACKgAAAAAALQAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAABQwAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADKgAAAAAAKgAAAAAA + tiles: AwAAAAADDAAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACBgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAADAAAAAAAAQAAAAAABgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAGwAAAAABAwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABgAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAADAAAAAAAAwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAADAAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAABGwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABAQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADAQAAAAAAAQAAAAAAGAAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAADAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAQAAAAAABAAAAAABGAAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABAQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADGAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADAQAAAAAAAQAAAAAA version: 6 3,0: ind: 3,0 - tiles: KgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLAAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAABLQAAAAADKgAAAAAALAAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAABLAAAAAABKgAAAAAAKQAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAABLAAAAAADKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABAwAAAAABAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACAwAAAAADAQAAAAAAAAAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAADBAAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAwAAAAABAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAADBAAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 3,1: ind: 3,1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARgAAAAABLAAAAAACLAAAAAACRgAAAAABNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAANQAAAAAARgAAAAADNQAAAAAARgAAAAAARgAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGwAAAAAAAwAAAAABAwAAAAABGwAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAADAAAAAAAGwAAAAADDAAAAAAAGwAAAAABGwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABAQAAAAAABAAAAAABBAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 3,2: ind: 3,2 - tiles: KgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAA + tiles: AQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAD version: 6 2,2: ind: 2,2 - tiles: QwAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAALAAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAB + tiles: GAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAwAAAAABGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAA version: 6 1,2: ind: 1,2 - tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAADKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAALAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABLQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAA + tiles: BQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAABAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAACAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAADAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAADAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAACAQAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAACAwAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAACBAAAAAADBAAAAAABBAAAAAACAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAQAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAB version: 6 4,2: ind: 4,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAVAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAVAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALQAAAAADKgAAAAAANwAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAJgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJgAAAAAAAwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAACAQAAAAAADgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAA version: 6 4,3: ind: 4,3 - tiles: LAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKwAAAAAALAAAAAACLAAAAAABLAAAAAABLwAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAARAAAAAADKgAAAAAANwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAATAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAATAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAGQAAAAACAQAAAAAADgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAIAAAAAABAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 5,2: ind: 5,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 5,3: ind: 5,3 - tiles: LgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 3,3: ind: 3,3 - tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAACKgAAAAAARAAAAAADRAAAAAABRAAAAAACOAAAAAACOAAAAAACLwAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAAAOAAAAAABOAAAAAAAOAAAAAAARAAAAAADRAAAAAADRAAAAAACTAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADTAAAAAABTAAAAAAATAAAAAACOAAAAAAAOAAAAAABOAAAAAACTAAAAAACTAAAAAADTAAAAAAATAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADTAAAAAAATAAAAAABTAAAAAABOAAAAAADOAAAAAAAOAAAAAACTAAAAAADTAAAAAADTAAAAAACTAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAARAAAAAAARAAAAAAARAAAAAADOAAAAAADOAAAAAACOAAAAAACRAAAAAAARAAAAAAARAAAAAAARAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAACOAAAAAABOAAAAAACOAAAAAABRAAAAAACRAAAAAAARAAAAAABRAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAARAAAAAAARAAAAAADRAAAAAACOAAAAAABOAAAAAACOAAAAAADRAAAAAAARAAAAAADRAAAAAADRAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAA + tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAGQAAAAADGQAAAAACGQAAAAACDwAAAAABDwAAAAACBgAAAAAAGQAAAAACGQAAAAADGQAAAAADGQAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAGQAAAAABGQAAAAADGQAAAAAADwAAAAACDwAAAAABDwAAAAACGQAAAAADGQAAAAACGQAAAAACIAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABIAAAAAAAIAAAAAACIAAAAAABDwAAAAADDwAAAAAADwAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABIAAAAAACIAAAAAADIAAAAAACDwAAAAADDwAAAAACDwAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAGQAAAAAAGQAAAAADGQAAAAACDwAAAAACDwAAAAADDwAAAAACGQAAAAABGQAAAAADGQAAAAADGQAAAAACAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAGQAAAAADGQAAAAAAGQAAAAACDwAAAAABDwAAAAADDwAAAAAAGQAAAAAAGQAAAAABGQAAAAACGQAAAAADAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAGQAAAAAAGQAAAAADGQAAAAADDwAAAAABDwAAAAABDwAAAAADGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAA version: 6 2,3: ind: 2,3 - tiles: KgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACQwAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAQwAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADQwAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADVQAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALwAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADVQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAAALQAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABVQAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACVQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAACVQAAAAABKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAADSQAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADNAAAAAAAKgAAAAAASQAAAAADKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAASQAAAAACKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACKgAAAAAA + tiles: AQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACGAAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABGAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADGAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABJwAAAAACAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAAAQAAAAAABgAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACJwAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACJwAAAAACAQAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAJwAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAACAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAACJwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAADHgAAAAABCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAADCwAAAAAAAQAAAAAAHgAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAHgAAAAABAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAQAAAAAA version: 6 1,3: ind: 1,3 - tiles: KgAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABLQAAAAADLQAAAAACRwAAAAADKgAAAAAALQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAOAAAAAAAOAAAAAABQwAAAAAAKgAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADKgAAAAAALQAAAAADLQAAAAAALQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAACKgAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALwAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAAKgAAAAAANAAAAAAA + tiles: AQAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAABAAAAAAABAAAAAABHAAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAAABAAAAAADBAAAAAACBAAAAAABAQAAAAAADwAAAAADDwAAAAABGAAAAAAAAQAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAADAQAAAAAABAAAAAABBAAAAAADBAAAAAABAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAADAQAAAAAABAAAAAADBAAAAAAABAAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAADAQAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAJwAAAAADJwAAAAAAJwAAAAADJwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAADJwAAAAADJwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAABgAAAAAAJwAAAAACJwAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAJwAAAAABJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAADJwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAQAAAAAAJwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAAAJwAAAAACJwAAAAABAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAJwAAAAADJwAAAAABJwAAAAABJwAAAAADJwAAAAACJwAAAAACJwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAJwAAAAACJwAAAAADJwAAAAAAJwAAAAABJwAAAAADJwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAAAQAAAAAACwAAAAAA version: 6 0,3: ind: 0,3 - tiles: TwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABOAAAAAACOAAAAAADOAAAAAAAOAAAAAABOAAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAABOAAAAAAAOAAAAAABOAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAVwAAAAAAKgAAAAAAOAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAOAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAADLwAAAAAAKgAAAAAANAAAAAAASQAAAAADNAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: IwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAACJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAADJQAAAAACJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAABJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAABJQAAAAADJQAAAAACJQAAAAADJQAAAAACJQAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAADCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAADDwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAKAAAAAAAEgAAAAAAOQAAAAAAAQAAAAAADwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAKAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAOQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAADBgAAAAAAAQAAAAAACwAAAAAAHgAAAAACCwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: OAAAAAAAOAAAAAADOAAAAAADOAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACOAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAASQAAAAACKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAASQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAAAVQAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAABVQAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAVQAAAAACVQAAAAADVQAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAVQAAAAADVQAAAAADVQAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAA + tiles: DwAAAAACDwAAAAABDwAAAAAADwAAAAACAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAQAAAAAAHgAAAAABAQAAAAAAAQAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAJwAAAAABJwAAAAABJwAAAAACAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAJwAAAAABJwAAAAABJwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAJwAAAAACJwAAAAAAJwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAABJwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAA version: 6 3,4: ind: 3,4 - tiles: KgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 2,4: ind: 2,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAA version: 6 1,4: ind: 1,4 - tiles: LAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABNQAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA + tiles: AwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADDAAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAA version: 6 4,4: ind: 4,4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 0,4: ind: 0,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAANQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAADAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAA version: 6 -1,4: ind: -1,4 - tiles: LAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAABSQAAAAACSQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADLAAAAAAAKgAAAAAANAAAAAAANAAAAAAASQAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACLAAAAAABOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAABOAAAAAABOAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAADOAAAAAAAOAAAAAACOAAAAAABOAAAAAABOAAAAAAAOAAAAAABOAAAAAABOAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABOAAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAACOAAAAAAAOAAAAAACOAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACOAAAAAABOAAAAAAAOAAAAAACOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAABOAAAAAACOAAAAAADOAAAAAADOAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAAAOAAAAAABOAAAAAADOAAAAAADOAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAHgAAAAADHgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAwAAAAABAQAAAAAACwAAAAAACwAAAAAAHgAAAAADCwAAAAAAHgAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAAAAwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAADDwAAAAACDwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAACAwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAADAwAAAAABAQAAAAAAAgAAAAAABQAAAAAADwAAAAADDwAAAAACDwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAADAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 0,5: ind: 0,5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 1,5: ind: 1,5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 -4,2: ind: -4,2 - tiles: LgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAABLQAAAAABLAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACLAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKQAAAAAALQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAACAwAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAA version: 6 -5,2: ind: -5,2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -4,3: ind: -4,3 - tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAB + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEwAAAAADDwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAACEwAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAADEwAAAAAEEwAAAAAFDwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABDwAAAAADEwAAAAAGDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAACDwAAAAABDwAAAAACDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAACEwAAAAAAEwAAAAAGDwAAAAABAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAEwAAAAACDwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAC version: 6 -3,3: ind: -3,3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAADLwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAADLQAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALwAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAUAAAAAABOgAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADLAAAAAAAMwAAAAAALAAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAALQAAAAACKgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABAQAAAAAABAAAAAADBAAAAAADBAAAAAADAQAAAAAAAwAAAAADAwAAAAABAwAAAAAABgAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACAQAAAAAABAAAAAABBAAAAAADBAAAAAABAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAADAQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAABgAAAAAAEAAAAAACEAAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAJAAAAAACEAAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAADAwAAAAABCgAAAAAAAwAAAAADAQAAAAAABAAAAAAABAAAAAADBAAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAABAAAAAABAQAAAAAA version: 6 -5,3: ind: -5,3 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 -2,3: ind: -2,3 - tiles: LwAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAOAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABNgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAALwAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAABKgAAAAAALAAAAAAD + tiles: BgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAHgAAAAADCwAAAAAAAQAAAAAADwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABDQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAEAAAAAAAEAAAAAABAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAQAAAAAABgAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAAC version: 6 -4,4: ind: -4,4 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAABWAAAAAABWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAACWAAAAAADWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADQgAAAAABQgAAAAADQgAAAAACQgAAAAABQgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAADQgAAAAAAQgAAAAAAQgAAAAADQgAAAAADQgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABQgAAAAABQgAAAAACQgAAAAADQgAAAAADQgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADQgAAAAABQgAAAAAAQgAAAAADQgAAAAADQgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABQgAAAAAAQgAAAAABQgAAAAAAQgAAAAAAQgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACQgAAAAAAQgAAAAAAQgAAAAABQgAAAAAAQgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 -3,4: ind: -3,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAAALQAAAAABLQAAAAABLQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAACLAAAAAAAWAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAATgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAA + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAABQgAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAABAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAQgAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACIgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAA version: 6 -2,4: ind: -2,4 - tiles: KgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACCwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 4,0: ind: 4,0 - tiles: KwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAABPQAAAAAAKgAAAAAAKgAAAAAAPQAAAAADOAAAAAABKgAAAAAALQAAAAABLQAAAAABKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAFKgAAAAAAKgAAAAAAOAAAAAABPQAAAAAFOAAAAAABOAAAAAAAOAAAAAAAPQAAAAAEKgAAAAAALQAAAAACMwAAAAABLQAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAGPQAAAAADKgAAAAAAPQAAAAACKgAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAAADwAAAAABEwAAAAABAQAAAAAAAQAAAAAAEwAAAAABDwAAAAACAQAAAAAABAAAAAACBAAAAAACAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAABAQAAAAAAAQAAAAAADwAAAAACEwAAAAAGDwAAAAABDwAAAAADDwAAAAADEwAAAAABAQAAAAAABAAAAAADCgAAAAABBAAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAABAQAAAAAAAQAAAAAADwAAAAABEwAAAAAGEwAAAAAEAQAAAAAAEwAAAAABAQAAAAAABAAAAAAABAAAAAABBAAAAAABBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 3,5: ind: 3,5 - tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 2,5: ind: 2,5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAABAAAAAACAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 -2,-5: ind: -2,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAACBAAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -3,5: ind: -3,5 - tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 -2,5: ind: -2,5 - tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: BQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -5742,6 +5742,8 @@ entities: 9045: 3,-19 9046: 4,-19 9069: 29,-9 + 10292: 21,-26 + 10293: 22,-26 - node: zIndex: 1 color: '#EFB34196' @@ -9222,12 +9224,6 @@ entities: id: grasssnow decals: 4352: -46.01974,-50.080185 - - node: - color: '#FFFFFFFF' - id: grasssnow - decals: - 10162: 21.08367,-26.059422 - 10163: 21.882736,-26.075739 - node: cleanable: True color: '#8600003C' @@ -15493,7 +15489,7 @@ entities: pos: 26.5,17.5 parent: 12 - type: Door - secondsUntilStateChange: -9854.435 + secondsUntilStateChange: -10061.324 state: Opening - type: DeviceLinkSink invokeCounter: 1 @@ -78117,18 +78113,6 @@ entities: - type: Transform pos: 0.5,-66.5 parent: 12 - - uid: 31688 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.408453,-26.829342 - parent: 12 - - uid: 31689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 22.06586,-28.196033 - parent: 12 - uid: 32101 components: - type: Transform @@ -80479,46 +80463,6 @@ entities: - type: Transform pos: -15.479212,51.570213 parent: 12 -- proto: ClothingHeadHatSantahat - entities: - - uid: 31656 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -22.599323,38.502403 - parent: 12 - - uid: 31657 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -41.818073,40.566353 - parent: 12 - - uid: 31669 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -36.450703,42.555126 - parent: 12 - - uid: 31670 - components: - - type: Transform - pos: -29.275808,38.740208 - parent: 12 - - uid: 31672 - components: - - type: Transform - pos: -37.561886,53.522655 - parent: 12 - - uid: 31673 - components: - - type: Transform - pos: 23.223015,-26.438202 - parent: 12 - - uid: 31674 - components: - - type: Transform - pos: 21.975492,-27.778383 - parent: 12 - proto: ClothingHeadHatSurgcapBlue entities: - uid: 5726 @@ -81085,37 +81029,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ClothingOuterSanta - entities: - - uid: 31654 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -21.505573,38.6744 - parent: 12 - - uid: 31655 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -41.474323,40.472534 - parent: 12 - - uid: 31667 - components: - - type: Transform - rot: -25.132741228718352 rad - pos: -31.513205,38.489803 - parent: 12 - - uid: 31668 - components: - - type: Transform - rot: -6.217248937900877E-15 rad - pos: -39.52883,36.55096 - parent: 12 - - uid: 31671 - components: - - type: Transform - pos: -37.341736,53.412502 - parent: 12 - proto: ClothingOuterStraightjacket entities: - uid: 19275 @@ -81833,12 +81746,6 @@ entities: - type: Transform pos: -2.5,-66.5 parent: 12 - - uid: 31690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-28.5 - parent: 12 - uid: 31793 components: - type: Transform @@ -96343,13 +96250,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: DrinkGlassWhite - entities: - - uid: 31687 - components: - - type: Transform - pos: 24.274195,-28.126541 - parent: 12 - proto: DrinkGoldenCup entities: - uid: 10942 @@ -102542,7 +102442,7 @@ entities: - uid: 26214 components: - type: Transform - pos: -32.480057,41.497932 + pos: -31.438684,38.510014 parent: 12 - proto: FlashlightLantern entities: @@ -103054,13 +102954,6 @@ entities: - type: Transform pos: -7.8905973,-55.743637 parent: 12 -- proto: FloraTreeChristmas02 - entities: - - uid: 28861 - components: - - type: Transform - pos: 22,-26 - parent: 12 - proto: FloraTreeLarge entities: - uid: 10941 @@ -103172,20 +103065,6 @@ entities: - type: Transform pos: -53.30888,54.409172 parent: 12 -- proto: FoodBakedCookie - entities: - - uid: 31677 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 24.602898,-28.325752 - parent: 12 - - uid: 31678 - components: - - type: Transform - rot: -6.283185307179586 rad - pos: 24.44549,-28.571293 - parent: 12 - proto: FoodBanana entities: - uid: 4201 @@ -103379,13 +103258,6 @@ entities: - type: Transform pos: 10.45153,-49.457336 parent: 12 -- proto: FoodCakeChristmas - entities: - - uid: 22173 - components: - - type: Transform - pos: 21.240437,-26.565382 - parent: 12 - proto: FoodCakeSuppermatterSlice entities: - uid: 15371 @@ -103628,11 +103500,6 @@ entities: - type: Transform pos: 64.56665,50.71139 parent: 12 - - uid: 31653 - components: - - type: Transform - pos: 21.224129,-26.540905 - parent: 12 - proto: FoodPlatePlastic entities: - uid: 31121 @@ -149225,6 +149092,24 @@ entities: - type: Transform pos: -41.5,36.5 parent: 12 + - 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: LockerMedicalFilled entities: - uid: 2502 @@ -149370,11 +149255,47 @@ entities: - type: Transform pos: -44.5,38.5 parent: 12 + - 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: 20846 components: - type: Transform pos: -44.5,39.5 parent: 12 + - 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: 20847 components: - type: Transform @@ -152516,7 +152437,7 @@ entities: - uid: 21610 components: - type: Transform - pos: -22.35333,41.503937 + pos: -21.469933,38.63325 parent: 12 - uid: 23585 components: @@ -158322,11 +158243,6 @@ entities: - type: Transform pos: -8.5,-66.5 parent: 12 - - uid: 31660 - components: - - type: Transform - pos: -41.5,40.5 - parent: 12 - uid: 31661 components: - type: Transform @@ -179240,11 +179156,6 @@ entities: - type: Transform pos: -14.5,73.5 parent: 12 - - uid: 31686 - components: - - type: Transform - pos: 24.5,-28.5 - parent: 12 - proto: TargetClown entities: - uid: 22647 diff --git a/Resources/Maps/core.yml b/Resources/Maps/core.yml index 43c51cf388a1..f46228bba9dc 100644 --- a/Resources/Maps/core.yml +++ b/Resources/Maps/core.yml @@ -77,211 +77,211 @@ entities: version: 6 -1,0: ind: -1,0 - tiles: DQAAAAAADQAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAAADQAAAAACFwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAACDQAAAAACFwAAAAACCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAADDQAAAAACFwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAAEAAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAEAAAAAADFAAAAAACFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAEAAAAAACFAAAAAAAFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAEAAAAAAAFAAAAAABFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADDwAAAAAADwAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACCAAAAAAA + tiles: DQAAAAADDQAAAAABFwAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAABDQAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAACDQAAAAACFwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAAEAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAEAAAAAADFAAAAAAAFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAEAAAAAACFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAEAAAAAAAFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAACDwAAAAACDwAAAAABDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: DAAAAAAADAAAAAAADwAAAAABCAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAACFwAAAAACDwAAAAAADwAAAAADGAAAAAABDAAAAAAADAAAAAAADwAAAAABGAAAAAABFwAAAAADFwAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADwAAAAADGAAAAAABFwAAAAABFwAAAAAAFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADwAAAAADCAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAACCAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA + tiles: DAAAAAAADAAAAAAADwAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAACFwAAAAADDwAAAAADDwAAAAADGAAAAAAADAAAAAAADAAAAAAADwAAAAADGAAAAAABFwAAAAABFwAAAAACFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADwAAAAADGAAAAAADFwAAAAADFwAAAAACFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADwAAAAABCAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: CAAAAAAACAAAAAAAEAAAAAABEAAAAAADDwAAAAAAGAAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAAADwAAAAADCAAAAAAADwAAAAADDAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAADwAAAAACCAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAADDwAAAAABGAAAAAADDwAAAAADDAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAAFwAAAAACFwAAAAAAFwAAAAABDwAAAAABFwAAAAACDwAAAAABDwAAAAACGAAAAAAADwAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABEAAAAAABCAAAAAAADwAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHAAAAAAAHAAAAAAACAAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAFAAAAAADFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAFAAAAAAAFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAFAAAAAADFAAAAAACFAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAACAAAAAAAEAAAAAAAEAAAAAABDwAAAAABGAAAAAACDwAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAADDwAAAAABDwAAAAADCAAAAAAADwAAAAAADAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAADDwAAAAACCAAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAADDwAAAAACDwAAAAADGAAAAAADDwAAAAAADAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAACCAAAAAAAFwAAAAABFwAAAAACFwAAAAADDwAAAAADFwAAAAABDwAAAAAADwAAAAABGAAAAAAADwAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAEAAAAAACCAAAAAAADwAAAAABDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHAAAAAAAHAAAAAAACAAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAFAAAAAAAFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAFAAAAAACFAAAAAADFAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAFAAAAAACFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAADDQAAAAABFwAAAAABCAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: DwAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAABGAAAAAABDwAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAAAGAAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAADGAAAAAADGAAAAAADGAAAAAACGAAAAAABGAAAAAADIAAAAAABIAAAAAABGAAAAAAAIAAAAAABIAAAAAACGAAAAAACDwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAABDwAAAAADGAAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAAADwAAAAAAEAAAAAADCAAAAAAAEAAAAAACCAAAAAAADwAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAADwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAACCAAAAAAADAAAAAAACAAAAAAADwAAAAACCAAAAAAAGAAAAAABGAAAAAABDwAAAAABDwAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAABGAAAAAACGAAAAAADDwAAAAABDwAAAAABCAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAAGAAAAAADGAAAAAADDwAAAAACFwAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABDwAAAAADIAAAAAAAIAAAAAADIAAAAAAADwAAAAACDwAAAAABIAAAAAADCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABFwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABFwAAAAAADwAAAAACFwAAAAADFwAAAAACFwAAAAABCAAAAAAAFwAAAAABFwAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAACCAAAAAAADwAAAAADDwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACDwAAAAACCAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAAEAAAAAADEAAAAAADDwAAAAAAGAAAAAADDwAAAAACDwAAAAADDwAAAAADDwAAAAAADwAAAAADDwAAAAACDwAAAAACCAAAAAAADwAAAAADDwAAAAAB + tiles: DwAAAAACDwAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAACDwAAAAABGAAAAAABDwAAAAACDwAAAAADDwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAADDwAAAAAAGAAAAAAAGAAAAAACGAAAAAADGAAAAAACGAAAAAADGAAAAAACGAAAAAACGAAAAAACGAAAAAACGAAAAAABIAAAAAAAIAAAAAAAGAAAAAADIAAAAAAAIAAAAAACGAAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAACDwAAAAADDwAAAAADGAAAAAABDwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAAAEAAAAAAACAAAAAAAEAAAAAABCAAAAAAADwAAAAABCAAAAAAADwAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAABCAAAAAAADAAAAAAACAAAAAAADwAAAAABCAAAAAAAGAAAAAAAGAAAAAACDwAAAAAADwAAAAADCAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAAAGAAAAAAAGAAAAAAADwAAAAACDwAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAAGAAAAAADGAAAAAAADwAAAAACFwAAAAADCAAAAAAAEAAAAAADEAAAAAABEAAAAAACHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAACEAAAAAADDwAAAAADDwAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAACHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAABDwAAAAADIAAAAAACIAAAAAAAIAAAAAADDwAAAAABDwAAAAABIAAAAAADCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAADFwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAADCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABFwAAAAAADwAAAAABFwAAAAAAFwAAAAACFwAAAAAACAAAAAAAFwAAAAACFwAAAAABCAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAABCAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAABDwAAAAACDwAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABDwAAAAADCAAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAABDwAAAAACCAAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAAEAAAAAAAEAAAAAAADwAAAAACGAAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAAACAAAAAAADwAAAAACDwAAAAAB version: 6 0,-2: ind: 0,-2 - tiles: GAAAAAACGAAAAAABDwAAAAAADwAAAAAAGAAAAAABDwAAAAAADwAAAAADDwAAAAACGAAAAAADDwAAAAADGAAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAABDwAAAAABIAAAAAAAIAAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAABGAAAAAABGAAAAAACGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAACDwAAAAACGAAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAABDwAAAAACCAAAAAAAEAAAAAADFwAAAAACFwAAAAADFwAAAAABFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAAADwAAAAADCAAAAAAAEAAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAFwAAAAAAFAAAAAACCAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADFwAAAAACCAAAAAAAEAAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACFAAAAAAAFAAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAAACAAAAAAAEAAAAAADFwAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAAFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAACFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABGAAAAAACDwAAAAABEAAAAAACCAAAAAAAEAAAAAACFwAAAAAAFwAAAAADFwAAAAADFwAAAAACDwAAAAADDwAAAAADFwAAAAADCAAAAAAAFwAAAAABGAAAAAADGAAAAAACGAAAAAABDwAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAIAAAAAABIAAAAAAAFwAAAAACCAAAAAAAGAAAAAAAGAAAAAABGAAAAAABGAAAAAACDwAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABDwAAAAAADwAAAAADDwAAAAADGAAAAAABGAAAAAACGAAAAAADGAAAAAACGAAAAAABDwAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAADDwAAAAACDwAAAAADGAAAAAAADwAAAAADDwAAAAADDwAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAADGAAAAAADDwAAAAACEAAAAAABEAAAAAABCAAAAAAAEAAAAAACDwAAAAACDwAAAAACGAAAAAABEAAAAAABEAAAAAABEAAAAAACCAAAAAAAGAAAAAABGAAAAAACGAAAAAADGAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAABGAAAAAADDwAAAAADCAAAAAAAFwAAAAACFwAAAAACFwAAAAACDwAAAAADDwAAAAACGAAAAAAADwAAAAABDwAAAAAADwAAAAADCAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAADCAAAAAAAFwAAAAAAEAAAAAAAEAAAAAAADwAAAAACDwAAAAADGAAAAAAADwAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAFwAAAAABEAAAAAACEAAAAAADDwAAAAABDwAAAAAAGAAAAAAB + tiles: GAAAAAACGAAAAAAADwAAAAACDwAAAAABGAAAAAABDwAAAAADDwAAAAAADwAAAAABGAAAAAACDwAAAAABGAAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAADIAAAAAADIAAAAAACGAAAAAADGAAAAAACGAAAAAAAGAAAAAADGAAAAAABGAAAAAABGAAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAAAGAAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAABDwAAAAAACAAAAAAAEAAAAAADFwAAAAADFwAAAAADFwAAAAACFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAADDwAAAAADCAAAAAAAEAAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAFwAAAAADFAAAAAABCAAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAFwAAAAACCAAAAAAAEAAAAAAAFwAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABFAAAAAABFAAAAAABCAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADCAAAAAAAEAAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAAFAAAAAADFAAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAAAFwAAAAADFwAAAAAAFwAAAAABFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABGAAAAAABDwAAAAADEAAAAAACCAAAAAAAEAAAAAAAFwAAAAACFwAAAAADFwAAAAAAFwAAAAACDwAAAAABDwAAAAABFwAAAAAACAAAAAAAFwAAAAACGAAAAAABGAAAAAAAGAAAAAADDwAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAAIAAAAAADIAAAAAAAFwAAAAADCAAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAACDwAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACDwAAAAAADwAAAAAADwAAAAAAGAAAAAAAGAAAAAABGAAAAAAAGAAAAAABGAAAAAADDwAAAAABEAAAAAABEAAAAAAAEAAAAAABEAAAAAACDwAAAAAADwAAAAACGAAAAAACDwAAAAABDwAAAAAADwAAAAAACAAAAAAAGAAAAAACGAAAAAACGAAAAAACGAAAAAAADwAAAAABEAAAAAABEAAAAAADCAAAAAAAEAAAAAACDwAAAAADDwAAAAADGAAAAAAAEAAAAAACEAAAAAABEAAAAAAACAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAADGAAAAAACGAAAAAADDwAAAAAACAAAAAAAFwAAAAACFwAAAAACFwAAAAADDwAAAAADDwAAAAAAGAAAAAACDwAAAAADDwAAAAADDwAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAABDwAAAAADDwAAAAADCAAAAAAAFwAAAAADEAAAAAADEAAAAAADDwAAAAABDwAAAAAAGAAAAAADDwAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAFwAAAAABEAAAAAACEAAAAAADDwAAAAABDwAAAAABGAAAAAAC version: 6 1,-2: ind: 1,-2 - tiles: DwAAAAABDwAAAAABGAAAAAADDwAAAAADGAAAAAADDwAAAAACCAAAAAAAEAAAAAACGAAAAAAAGAAAAAAAGAAAAAABGAAAAAACGAAAAAAAEAAAAAADCAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAACCAAAAAAAEAAAAAADGAAAAAADGAAAAAACGAAAAAACGAAAAAABGAAAAAABEAAAAAACCAAAAAAAEAAAAAACFwAAAAADEAAAAAABCAAAAAAADwAAAAADGAAAAAAADwAAAAAACAAAAAAAEAAAAAAAGAAAAAACGAAAAAADGAAAAAABDwAAAAADGAAAAAABEAAAAAAAEAAAAAACEAAAAAACFwAAAAACEAAAAAAACAAAAAAADwAAAAABGAAAAAACDwAAAAACCAAAAAAAEAAAAAACGAAAAAACGAAAAAADGAAAAAABGAAAAAAAGAAAAAAAEAAAAAABCAAAAAAAEAAAAAADFwAAAAADEAAAAAAACAAAAAAAGAAAAAACGAAAAAACGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABFwAAAAADEAAAAAABCAAAAAAADwAAAAABGAAAAAADDwAAAAABFwAAAAACDwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAACDwAAAAADDwAAAAACCAAAAAAACAAAAAAAFwAAAAAAEAAAAAABCAAAAAAADwAAAAABGAAAAAADGAAAAAADGAAAAAABGAAAAAABGAAAAAACGAAAAAAAGAAAAAACGAAAAAABGAAAAAADDwAAAAABCAAAAAAAEAAAAAABFwAAAAADEAAAAAADCAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADGAAAAAADDwAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAAACAAAAAAADwAAAAACCAAAAAAAIQAAAAAAIQAAAAAADwAAAAADGAAAAAADDwAAAAAACAAAAAAADwAAAAABCAAAAAAAEAAAAAAAEAAAAAAADwAAAAACDwAAAAABDwAAAAAACAAAAAAADwAAAAABCAAAAAAAIQAAAAAAIQAAAAAADwAAAAABGAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAAACAAAAAAAIQAAAAAAIQAAAAAADwAAAAADGAAAAAABDwAAAAADCAAAAAAADwAAAAABCAAAAAAAEAAAAAACFwAAAAACDwAAAAABDwAAAAADDwAAAAAACAAAAAAAEAAAAAAACAAAAAAAIQAAAAAAIQAAAAAADwAAAAABGAAAAAAADwAAAAADGAAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAADGAAAAAACGAAAAAABGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAAGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAA + tiles: DwAAAAACDwAAAAACGAAAAAACDwAAAAAAGAAAAAADDwAAAAAACAAAAAAAEAAAAAACGAAAAAABGAAAAAABGAAAAAABGAAAAAAAGAAAAAAAEAAAAAADCAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAADDwAAAAABCAAAAAAAEAAAAAABGAAAAAACGAAAAAACGAAAAAADGAAAAAACGAAAAAACEAAAAAADCAAAAAAAEAAAAAAAFwAAAAABEAAAAAACCAAAAAAADwAAAAACGAAAAAABDwAAAAACCAAAAAAAEAAAAAAAGAAAAAABGAAAAAADGAAAAAABDwAAAAABGAAAAAAAEAAAAAACEAAAAAACEAAAAAADFwAAAAAAEAAAAAADCAAAAAAADwAAAAAAGAAAAAADDwAAAAAACAAAAAAAEAAAAAACGAAAAAABGAAAAAAAGAAAAAABGAAAAAACGAAAAAADEAAAAAADCAAAAAAAEAAAAAAAFwAAAAADEAAAAAACCAAAAAAAGAAAAAABGAAAAAABGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAFwAAAAABEAAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAAAFwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAADCAAAAAAACAAAAAAAFwAAAAAAEAAAAAACCAAAAAAADwAAAAADGAAAAAABGAAAAAACGAAAAAAAGAAAAAADGAAAAAABGAAAAAAAGAAAAAAAGAAAAAADGAAAAAADDwAAAAACCAAAAAAAEAAAAAADFwAAAAAAEAAAAAADCAAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAABGAAAAAADDwAAAAABCAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAADCAAAAAAADwAAAAADCAAAAAAAIQAAAAAAIQAAAAAADwAAAAABGAAAAAAADwAAAAADCAAAAAAADwAAAAAACAAAAAAAEAAAAAAAEAAAAAADDwAAAAACDwAAAAACDwAAAAADCAAAAAAADwAAAAACCAAAAAAAIQAAAAAAIQAAAAAADwAAAAACGAAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADDwAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAACCAAAAAAAIQAAAAAAIQAAAAAADwAAAAABGAAAAAAADwAAAAACCAAAAAAADwAAAAADCAAAAAAAEAAAAAACFwAAAAABDwAAAAADDwAAAAADDwAAAAABCAAAAAAAEAAAAAAACAAAAAAAIQAAAAAAIQAAAAAADwAAAAACGAAAAAABDwAAAAAAGAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAACGAAAAAAAGAAAAAAAGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAABCAAAAAAADwAAAAABDwAAAAABDwAAAAACGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAD + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAC version: 6 -2,-2: ind: -2,-2 - tiles: IgAAAAAADwAAAAABFAAAAAABFAAAAAACDwAAAAACCAAAAAAAFwAAAAACDwAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAADGAAAAAAADwAAAAABDwAAAAADDwAAAAADIgAAAAACDwAAAAACFAAAAAADFAAAAAADDwAAAAABCAAAAAAADwAAAAADIAAAAAACIAAAAAABGAAAAAACIAAAAAACGAAAAAAAGAAAAAABGAAAAAAAGAAAAAAAGAAAAAABIgAAAAABDwAAAAABFAAAAAACFAAAAAACDwAAAAACCAAAAAAADwAAAAADIAAAAAADDwAAAAACDwAAAAADDwAAAAABDwAAAAAAGAAAAAACDwAAAAABDwAAAAACDwAAAAABIgAAAAAADwAAAAAAFAAAAAACFAAAAAAADwAAAAAAGAAAAAADDwAAAAAAGAAAAAACDwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADIgAAAAADDwAAAAACFAAAAAACFAAAAAABDwAAAAACGAAAAAADDwAAAAACIAAAAAADDwAAAAABDwAAAAAAGAAAAAABEAAAAAACEAAAAAAALwAAAAACLwAAAAACLwAAAAAAIgAAAAADDwAAAAAAFAAAAAAAFAAAAAAADwAAAAABCAAAAAAADwAAAAAAIAAAAAACDwAAAAACDwAAAAACGAAAAAAAEAAAAAADEAAAAAAAIAAAAAACIAAAAAAAIAAAAAABDwAAAAABDwAAAAABJwAAAAABJwAAAAAADwAAAAACCAAAAAAADwAAAAABGAAAAAABDwAAAAACDwAAAAAAGAAAAAABEAAAAAABEAAAAAAALwAAAAACLwAAAAADLwAAAAABJwAAAAAAJwAAAAADJwAAAAACJwAAAAAADwAAAAADCAAAAAAADwAAAAAAGAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAADGAAAAAACDwAAAAABCAAAAAAALQAAAAAALQAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAAAGAAAAAADCAAAAAAACAAAAAAAFAAAAAADCAAAAAAAFAAAAAADCAAAAAAACAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAAAGAAAAAADDwAAAAADCAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAABCAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAADCAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAAACAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAABGAAAAAABDwAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAACCAAAAAAAKQAAAAAACAAAAAAALAAAAAAALAAAAAAALAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABCAAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAACCAAAAAAACAAAAAAA + tiles: IgAAAAADDwAAAAADFAAAAAACFAAAAAABDwAAAAAACAAAAAAAFwAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAACDwAAAAADGAAAAAACDwAAAAAADwAAAAAADwAAAAADIgAAAAABDwAAAAACFAAAAAAAFAAAAAADDwAAAAACCAAAAAAADwAAAAACIAAAAAADIAAAAAABGAAAAAADIAAAAAADGAAAAAAAGAAAAAADGAAAAAABGAAAAAAAGAAAAAABIgAAAAACDwAAAAADFAAAAAACFAAAAAABDwAAAAACCAAAAAAADwAAAAACIAAAAAACDwAAAAABDwAAAAADDwAAAAABDwAAAAADGAAAAAABDwAAAAAADwAAAAABDwAAAAACIgAAAAAADwAAAAAAFAAAAAABFAAAAAABDwAAAAACGAAAAAACDwAAAAAAGAAAAAABDwAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAACIgAAAAABDwAAAAAAFAAAAAABFAAAAAAADwAAAAACGAAAAAABDwAAAAADIAAAAAACDwAAAAAADwAAAAAAGAAAAAAAEAAAAAAAEAAAAAACLwAAAAACLwAAAAABLwAAAAADIgAAAAAADwAAAAABFAAAAAADFAAAAAAADwAAAAABCAAAAAAADwAAAAACIAAAAAAADwAAAAADDwAAAAAAGAAAAAACEAAAAAAAEAAAAAADIAAAAAAAIAAAAAAAIAAAAAAADwAAAAACDwAAAAABJwAAAAAAJwAAAAACDwAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAADDwAAAAACGAAAAAACEAAAAAADEAAAAAABLwAAAAACLwAAAAADLwAAAAAAJwAAAAADJwAAAAAAJwAAAAADJwAAAAABDwAAAAABCAAAAAAADwAAAAACGAAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAABCAAAAAAALQAAAAAALQAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAAADwAAAAABGAAAAAABDwAAAAADCAAAAAAALQAAAAAALQAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAABGAAAAAACCAAAAAAACAAAAAAAFAAAAAACCAAAAAAAFAAAAAAACAAAAAAACAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAABCAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACCAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAAAGAAAAAADDwAAAAACCAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAAACAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABCAAAAAAAKQAAAAAACAAAAAAALAAAAAAALAAAAAAALAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABCAAAAAAACAAAAAAADwAAAAADGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAACCAAAAAAACAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: FAAAAAACFAAAAAADFAAAAAADFAAAAAACFAAAAAAAGAAAAAADDwAAAAABGAAAAAAADwAAAAAACAAAAAAAFAAAAAABFAAAAAACFAAAAAACNAAAAAAANAAAAAAACAAAAAAAIAAAAAABIAAAAAABJwAAAAADIAAAAAACIAAAAAABGAAAAAABDwAAAAACGAAAAAADDwAAAAADCAAAAAAAFAAAAAACFAAAAAADFAAAAAABNAAAAAADNAAAAAAADAAAAAAAIAAAAAABIAAAAAABJwAAAAAAIAAAAAADIAAAAAACGAAAAAAADwAAAAADGAAAAAAADwAAAAACCAAAAAAAFAAAAAABFAAAAAADFAAAAAADNAAAAAABNAAAAAAACAAAAAAAFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAAAGAAAAAABDwAAAAAAGAAAAAABDwAAAAABCAAAAAAAFAAAAAADFAAAAAABFAAAAAABNAAAAAABNAAAAAADCAAAAAAAJwAAAAADCAAAAAAACAAAAAAAJwAAAAACCAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAAGAAAAAADCAAAAAAANAAAAAAANAAAAAACNAAAAAADCAAAAAAADwAAAAABGAAAAAAADwAAAAABDwAAAAACCAAAAAAAEAAAAAABEAAAAAACEAAAAAACLQAAAAAACAAAAAAAGAAAAAACCAAAAAAAJwAAAAABJwAAAAACJwAAAAADCAAAAAAADwAAAAAAGAAAAAADGAAAAAAADwAAAAACCAAAAAAAEAAAAAAAEAAAAAADEAAAAAABLQAAAAAALQAAAAAADwAAAAAACAAAAAAAJwAAAAAAJwAAAAABJwAAAAAACAAAAAAADwAAAAACDwAAAAAAGAAAAAAADwAAAAACCAAAAAAAEAAAAAACEAAAAAACEAAAAAADLQAAAAAALQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAADGAAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAACGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAMgAAAAAAMgAAAAABFwAAAAADMgAAAAABMgAAAAABMgAAAAABMgAAAAACDwAAAAABDwAAAAADDwAAAAABGAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAABFAAAAAABEAAAAAABEAAAAAADMgAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAACDwAAAAAADwAAAAADDwAAAAACGAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAABFAAAAAADEAAAAAACEAAAAAACMgAAAAABEAAAAAAAEAAAAAADEAAAAAABEAAAAAAADwAAAAABDwAAAAABDwAAAAABGAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADEAAAAAAAEAAAAAACMgAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAADwAAAAADDwAAAAACDwAAAAAAGAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAACCAAAAAAADwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAADGAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAAD + tiles: FAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAABGAAAAAACDwAAAAADGAAAAAAADwAAAAACCAAAAAAAFAAAAAADFAAAAAAAFAAAAAAANAAAAAADNAAAAAAACAAAAAAAIAAAAAAAIAAAAAACJwAAAAACIAAAAAACIAAAAAABGAAAAAADDwAAAAADGAAAAAABDwAAAAACCAAAAAAAFAAAAAABFAAAAAAAFAAAAAAANAAAAAADNAAAAAADDAAAAAAAIAAAAAABIAAAAAADJwAAAAABIAAAAAABIAAAAAACGAAAAAAADwAAAAABGAAAAAABDwAAAAACCAAAAAAAFAAAAAADFAAAAAACFAAAAAABNAAAAAABNAAAAAADCAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAAAGAAAAAACDwAAAAACGAAAAAADDwAAAAABCAAAAAAAFAAAAAACFAAAAAACFAAAAAABNAAAAAACNAAAAAABCAAAAAAAJwAAAAADCAAAAAAACAAAAAAAJwAAAAACCAAAAAAACAAAAAAAGAAAAAAAGAAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAAGAAAAAACCAAAAAAANAAAAAACNAAAAAADNAAAAAABCAAAAAAADwAAAAABGAAAAAADDwAAAAACDwAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAACLQAAAAAACAAAAAAAGAAAAAACCAAAAAAAJwAAAAABJwAAAAADJwAAAAACCAAAAAAADwAAAAABGAAAAAADGAAAAAAADwAAAAACCAAAAAAAEAAAAAABEAAAAAAAEAAAAAACLQAAAAAALQAAAAAADwAAAAADCAAAAAAAJwAAAAADJwAAAAADJwAAAAADCAAAAAAADwAAAAADDwAAAAACGAAAAAABDwAAAAABCAAAAAAAEAAAAAACEAAAAAAAEAAAAAACLQAAAAAALQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAADGAAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAAAGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAMgAAAAADMgAAAAAAFwAAAAAAMgAAAAADMgAAAAABMgAAAAAAMgAAAAADDwAAAAABDwAAAAADDwAAAAAAGAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAAAFAAAAAABEAAAAAACEAAAAAABMgAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAAADwAAAAAADwAAAAAADwAAAAADGAAAAAADFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAACEAAAAAAAEAAAAAABMgAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACDwAAAAABDwAAAAAADwAAAAABGAAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAABEAAAAAADEAAAAAADMgAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAADDwAAAAACDwAAAAACDwAAAAAAGAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAACCAAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAACGAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAA version: 6 1,0: ind: 1,0 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAADGAAAAAAAGAAAAAADGAAAAAADIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAABDwAAAAADDwAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAABGAAAAAACDwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAADIAAAAAADIAAAAAABGAAAAAAAGAAAAAABNQAAAAAANQAAAAAANQAAAAAAGAAAAAADGAAAAAACGAAAAAABGAAAAAADGAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAACIAAAAAACDwAAAAAADwAAAAAADwAAAAADFwAAAAACFwAAAAACFwAAAAADDwAAAAABDwAAAAADGAAAAAADDwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAADCAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAABGAAAAAACCAAAAAAAFwAAAAABFwAAAAACFwAAAAABDwAAAAAADwAAAAACDwAAAAAACAAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAACCAAAAAAAFwAAAAABFwAAAAABFwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAACCAAAAAAAFwAAAAABFwAAAAACFwAAAAACDwAAAAACDwAAAAABDwAAAAADCAAAAAAADwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAADDwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAADCAAAAAAADwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAADGAAAAAADGAAAAAACCAAAAAAAGAAAAAABGAAAAAABDwAAAAACDwAAAAABCAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAACGAAAAAACGAAAAAAANgAAAAABGAAAAAAAGAAAAAABDwAAAAACDwAAAAAACAAAAAAADwAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAAAGAAAAAACGAAAAAACDwAAAAACGAAAAAADGAAAAAABDwAAAAADDwAAAAACCAAAAAAADwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACDwAAAAABGAAAAAABGAAAAAAADwAAAAACGAAAAAACGAAAAAABDwAAAAADDwAAAAABCAAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAADGAAAAAAAGAAAAAACCAAAAAAAGAAAAAACGAAAAAACDwAAAAACDwAAAAAACAAAAAAADwAAAAADDwAAAAAC + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAADGAAAAAACGAAAAAADIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAAAGAAAAAAADwAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAAAIAAAAAACIAAAAAABGAAAAAACGAAAAAADNQAAAAAANQAAAAAANQAAAAAAGAAAAAAAGAAAAAABGAAAAAABGAAAAAABGAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAAAIAAAAAACDwAAAAADDwAAAAABDwAAAAADFwAAAAAAFwAAAAAAFwAAAAAADwAAAAABDwAAAAAAGAAAAAACDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAACCAAAAAAACAAAAAAAGAAAAAACGAAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAACGAAAAAAACAAAAAAAFwAAAAABFwAAAAADFwAAAAAADwAAAAAADwAAAAACDwAAAAACCAAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAABCAAAAAAAFwAAAAADFwAAAAADFwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAACDwAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAABCAAAAAAAFwAAAAAAFwAAAAABFwAAAAACDwAAAAACDwAAAAACDwAAAAACCAAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAABDwAAAAADDwAAAAACDwAAAAADDwAAAAACDwAAAAAADwAAAAACDwAAAAADCAAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAACGAAAAAADGAAAAAAACAAAAAAAGAAAAAADGAAAAAAADwAAAAADDwAAAAACCAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAADGAAAAAADGAAAAAADNgAAAAABGAAAAAABGAAAAAAADwAAAAAADwAAAAADCAAAAAAADwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAABDwAAAAABGAAAAAAAGAAAAAABDwAAAAABGAAAAAABGAAAAAAADwAAAAACDwAAAAACCAAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAAAGAAAAAADGAAAAAAADwAAAAAAGAAAAAABGAAAAAACDwAAAAADDwAAAAADCAAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAADGAAAAAADGAAAAAABCAAAAAAAGAAAAAABGAAAAAADDwAAAAAADwAAAAACCAAAAAAADwAAAAAADwAAAAAC version: 6 2,-2: ind: 2,-2 - tiles: EAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACCAAAAAAAEAAAAAABFwAAAAADFwAAAAADNwAAAAAAEAAAAAABFAAAAAABFAAAAAABFAAAAAACEAAAAAABCAAAAAAAEwAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAADFwAAAAADEAAAAAAAEAAAAAABEAAAAAACFwAAAAACEAAAAAABFAAAAAADFAAAAAAAFAAAAAABEAAAAAADFwAAAAABEwAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAADCAAAAAAAFwAAAAACFwAAAAACFwAAAAABNwAAAAAAEAAAAAADFAAAAAADFAAAAAAAFAAAAAABEAAAAAACCAAAAAAAEwAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAFAAAAAADFAAAAAABFAAAAAADEAAAAAADCAAAAAAAEwAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAABCAAAAAAAFAAAAAAAFAAAAAABFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABDwAAAAACFAAAAAABFAAAAAAAFAAAAAADCAAAAAAAEAAAAAABEAAAAAADEAAAAAABDwAAAAAADwAAAAADFAAAAAACFwAAAAAACAAAAAAAEAAAAAACDwAAAAADDwAAAAACDwAAAAADFAAAAAABFAAAAAABFAAAAAACEAAAAAABEAAAAAADEAAAAAABEAAAAAABDwAAAAACDwAAAAAADwAAAAAADwAAAAACCAAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAADCAAAAAAAFwAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAACDwAAAAACDwAAAAACDwAAAAACDwAAAAABCAAAAAAADwAAAAADDwAAAAACDwAAAAABCAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAACCAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAADGAAAAAACDwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAABGAAAAAACDwAAAAABIAAAAAADIAAAAAABGAAAAAAAIAAAAAAAIAAAAAABGAAAAAABGAAAAAABIAAAAAAAGAAAAAADIAAAAAACIAAAAAAAIAAAAAAAGAAAAAACIAAAAAAAGAAAAAABGAAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAABGAAAAAAADwAAAAADDwAAAAACDwAAAAACGAAAAAACDwAAAAAADwAAAAAADwAAAAADGAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAACCAAAAAAADwAAAAADGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAA + tiles: EAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAABCAAAAAAAEAAAAAABFwAAAAADFwAAAAABNwAAAAAAEAAAAAAAFAAAAAACFAAAAAADFAAAAAAAEAAAAAABCAAAAAAAEwAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACFwAAAAACEAAAAAABEAAAAAAAEAAAAAADFwAAAAAAEAAAAAABFAAAAAACFAAAAAAAFAAAAAACEAAAAAABFwAAAAADEwAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAACCAAAAAAAFwAAAAAAFwAAAAADFwAAAAADNwAAAAAAEAAAAAAAFAAAAAAAFAAAAAABFAAAAAACEAAAAAAACAAAAAAAEwAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAFAAAAAABFAAAAAAAFAAAAAACEAAAAAADCAAAAAAAEwAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAACCAAAAAAAFAAAAAACFAAAAAABFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAACDwAAAAAAFAAAAAACFAAAAAABFAAAAAACCAAAAAAAEAAAAAAAEAAAAAACEAAAAAACDwAAAAABDwAAAAAAFAAAAAACFwAAAAADCAAAAAAAEAAAAAACDwAAAAACDwAAAAABDwAAAAACFAAAAAACFAAAAAACFAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAADCAAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAADCAAAAAAAFwAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAABDwAAAAAADwAAAAABDwAAAAABDwAAAAADCAAAAAAADwAAAAABDwAAAAADDwAAAAAACAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAACDwAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAAAGAAAAAADDwAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAAAGAAAAAAADwAAAAABIAAAAAADIAAAAAAAGAAAAAAAIAAAAAABIAAAAAACGAAAAAADGAAAAAABIAAAAAAAGAAAAAADIAAAAAAAIAAAAAACIAAAAAAAGAAAAAACIAAAAAAAGAAAAAAAGAAAAAACDwAAAAACDwAAAAACDwAAAAACDwAAAAADDwAAAAADDwAAAAABGAAAAAACDwAAAAABDwAAAAABDwAAAAABGAAAAAACDwAAAAADDwAAAAACDwAAAAACGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADCAAAAAAADwAAAAAAGAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: BgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAADDwAAAAACDwAAAAADGAAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAADCAAAAAAAPQAAAAACPQAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAACCAAAAAAAPQAAAAACPQAAAAABPgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAACCAAAAAAADwAAAAADGAAAAAADDwAAAAABCAAAAAAAPQAAAAAAPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAACDwAAAAAAGAAAAAAADwAAAAACCAAAAAAAPQAAAAACPQAAAAACPgAAAAABFwAAAAADFwAAAAAAFwAAAAAACAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACAAAAAAADwAAAAABIAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAADFwAAAAAACAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACAAAAAAADwAAAAADIAAAAAABDwAAAAACCAAAAAAAPQAAAAAAPQAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAACCAAAAAAAGAAAAAABGAAAAAABGAAAAAABGAAAAAABCAAAAAAADwAAAAACGAAAAAADDwAAAAAACAAAAAAAPQAAAAADPQAAAAADPgAAAAAA + tiles: BgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAABGAAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAOQAAAAAAOQAAAAAAOQAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADCAAAAAAADwAAAAABGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAACGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAACGAAAAAAAGAAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAGAAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAABCAAAAAAAPQAAAAABPQAAAAADCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACDwAAAAABCAAAAAAAPQAAAAACPQAAAAAAPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAADCAAAAAAADwAAAAACGAAAAAABDwAAAAAACAAAAAAAPQAAAAADPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAAADwAAAAACDwAAAAABGAAAAAADDwAAAAAACAAAAAAAPQAAAAABPQAAAAABPgAAAAADFwAAAAAAFwAAAAAAFwAAAAABCAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACAAAAAAADwAAAAABIAAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAADFwAAAAACCAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACAAAAAAADwAAAAAAIAAAAAABDwAAAAACCAAAAAAAPQAAAAAAPQAAAAABCAAAAAAAEAAAAAAAEAAAAAACEAAAAAADCAAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAADCAAAAAAADwAAAAAAGAAAAAAADwAAAAABCAAAAAAAPQAAAAADPQAAAAACPgAAAAAB version: 6 -2,0: ind: -2,0 - tiles: GAAAAAADGAAAAAACGAAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAACDwAAAAADDwAAAAACGAAAAAADFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAADGAAAAAAAGAAAAAAAMgAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAADDwAAAAABDwAAAAABDwAAAAAAGAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAABGAAAAAAAGAAAAAAAMgAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAACDwAAAAACDwAAAAACGAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAACGAAAAAABGAAAAAADGAAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAACGAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAADNAAAAAACNAAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAABIQAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAAADwAAAAABDwAAAAAADwAAAAABEAAAAAAANAAAAAADIQAAAAAAIQAAAAAAIQAAAAAADwAAAAABDwAAAAABDwAAAAAAIQAAAAAAFAAAAAADEAAAAAABEAAAAAAAEAAAAAABCAAAAAAAFwAAAAACEAAAAAACEAAAAAAANAAAAAADIQAAAAAAIQAAAAAAIQAAAAAADwAAAAACDwAAAAAADwAAAAACIQAAAAAAFAAAAAACFwAAAAACFwAAAAAAFwAAAAACCAAAAAAAFwAAAAADEAAAAAACEAAAAAAANAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAADDwAAAAADDwAAAAAAIQAAAAAAFAAAAAADFwAAAAAAFwAAAAADFwAAAAADCAAAAAAAFwAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACGAAAAAABGAAAAAABGAAAAAABGAAAAAADGAAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAAADwAAAAADGAAAAAACGAAAAAAAGAAAAAACGAAAAAADGAAAAAACGAAAAAACGAAAAAADGAAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAACGAAAAAABCAAAAAAACAAAAAAARAAAAAADRAAAAAAAFwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAABGAAAAAAADwAAAAACDwAAAAABDwAAAAABGAAAAAACDwAAAAAARAAAAAADRAAAAAAARAAAAAABRAAAAAABRAAAAAADRAAAAAABEwAAAAAAEwAAAAAAPwAAAAADGAAAAAACGAAAAAAAPwAAAAABCAAAAAAADwAAAAABGAAAAAADDwAAAAACCAAAAAAAFwAAAAABRAAAAAABRAAAAAAARAAAAAABRAAAAAACCAAAAAAAEwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAPwAAAAACDwAAAAABDwAAAAAAGAAAAAADDwAAAAAADwAAAAABRgAAAAABRgAAAAAARgAAAAABRgAAAAABRgAAAAACCAAAAAAAEwAAAAAADwAAAAADDwAAAAABQQAAAAAAPwAAAAAADwAAAAADDwAAAAACGAAAAAABDwAAAAAADwAAAAABRgAAAAADRgAAAAAARgAAAAAARgAAAAAARgAAAAADCAAAAAAAEwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAADCAAAAAAARgAAAAADRgAAAAAARgAAAAACRgAAAAAARgAAAAACCAAAAAAACAAAAAAA + tiles: GAAAAAABGAAAAAAAGAAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAABDwAAAAABDwAAAAABDwAAAAABGAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAADGAAAAAAAGAAAAAABMgAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAABDwAAAAAADwAAAAADDwAAAAACGAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAAAGAAAAAACGAAAAAABMgAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAABGAAAAAACFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAADGAAAAAABGAAAAAABGAAAAAABDwAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAAAGAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAACNAAAAAADNAAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAAADwAAAAABIQAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAADDwAAAAADDwAAAAAADwAAAAACEAAAAAAANAAAAAADIQAAAAAAIQAAAAAAIQAAAAAADwAAAAABDwAAAAACDwAAAAABIQAAAAAAFAAAAAACEAAAAAADEAAAAAACEAAAAAADCAAAAAAAFwAAAAABEAAAAAADEAAAAAACNAAAAAABIQAAAAAAIQAAAAAAIQAAAAAADwAAAAACDwAAAAABDwAAAAADIQAAAAAAFAAAAAAAFwAAAAADFwAAAAACFwAAAAADCAAAAAAAFwAAAAACEAAAAAAAEAAAAAABNAAAAAADIQAAAAAAIQAAAAAAIQAAAAAADwAAAAACDwAAAAAADwAAAAABIQAAAAAAFAAAAAAAFwAAAAACFwAAAAABFwAAAAABCAAAAAAAFwAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAACGAAAAAACGAAAAAADGAAAAAACGAAAAAACGAAAAAACGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAAADwAAAAADGAAAAAABGAAAAAAAGAAAAAADGAAAAAAAGAAAAAADGAAAAAADGAAAAAADGAAAAAABDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAABGAAAAAABCAAAAAAACAAAAAAARAAAAAAARAAAAAACFwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAAGAAAAAACDwAAAAAADwAAAAAADwAAAAAAGAAAAAABDwAAAAACRAAAAAAARAAAAAACRAAAAAACRAAAAAAARAAAAAAARAAAAAADEwAAAAAAEwAAAAAAPwAAAAADGAAAAAABGAAAAAADPwAAAAADCAAAAAAADwAAAAADGAAAAAACDwAAAAAACAAAAAAAFwAAAAABRAAAAAACRAAAAAACRAAAAAAARAAAAAACCAAAAAAAEwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAPwAAAAAADwAAAAACDwAAAAACGAAAAAADDwAAAAABDwAAAAADRgAAAAADRgAAAAACRgAAAAAARgAAAAABRgAAAAADCAAAAAAAEwAAAAAADwAAAAABDwAAAAAAQQAAAAAAPwAAAAAADwAAAAADDwAAAAABGAAAAAADDwAAAAADDwAAAAACRgAAAAAARgAAAAABRgAAAAAARgAAAAAARgAAAAAACAAAAAAAEwAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAFwAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAADCAAAAAAARgAAAAADRgAAAAADRgAAAAABRgAAAAADRgAAAAACCAAAAAAACAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: NQAAAAAACAAAAAAAFwAAAAABFwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAAFwAAAAABFwAAAAADFwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAABNQAAAAAANQAAAAAAFwAAAAACFwAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAFwAAAAAAFwAAAAACCAAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAFwAAAAABFwAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAADAAAAAAADAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAAFwAAAAAAFwAAAAABNQAAAAAANQAAAAAAFwAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAADFwAAAAABFwAAAAAAFwAAAAABFwAAAAABCAAAAAAAEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADEAAAAAAAEAAAAAABEAAAAAABEAAAAAACCAAAAAAAEAAAAAACEAAAAAABCAAAAAAAFwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAADEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAFwAAAAADFwAAAAADFwAAAAADFwAAAAACFwAAAAACCAAAAAAADAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFwAAAAADFwAAAAACFwAAAAABFwAAAAACCAAAAAAAEAAAAAAAEAAAAAADCAAAAAAAFwAAAAABCAAAAAAADwAAAAABCAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADDwAAAAACDwAAAAABGAAAAAACDwAAAAAADwAAAAAADwAAAAADCAAAAAAAEAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAADEAAAAAAACAAAAAAAEAAAAAACIAAAAAABGAAAAAAAGAAAAAADGAAAAAADGAAAAAAADwAAAAADCAAAAAAAEAAAAAABGAAAAAABGAAAAAADGAAAAAAAGAAAAAADGAAAAAADEAAAAAACCAAAAAAAEAAAAAAA + tiles: NQAAAAAACAAAAAAAFwAAAAADFwAAAAABCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAAFwAAAAABFwAAAAABFwAAAAADCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAACNQAAAAAANQAAAAAAFwAAAAAAFwAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAABEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAFwAAAAACFwAAAAADCAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAFwAAAAACFwAAAAACCAAAAAAACAAAAAAAEAAAAAABCAAAAAAADAAAAAAADAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAAANQAAAAAANQAAAAAAFwAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAADFwAAAAABFwAAAAABFwAAAAABFwAAAAABCAAAAAAAEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAACCAAAAAAAEAAAAAACEAAAAAADCAAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAACEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACFwAAAAAAFwAAAAAAFwAAAAABFwAAAAAAFwAAAAADCAAAAAAADAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAACFwAAAAAAFwAAAAABFwAAAAAAFwAAAAABCAAAAAAAEAAAAAABEAAAAAAACAAAAAAAFwAAAAADCAAAAAAADwAAAAACCAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACDwAAAAACDwAAAAACGAAAAAADDwAAAAABDwAAAAADDwAAAAABCAAAAAAAEAAAAAADGAAAAAABGAAAAAADGAAAAAACGAAAAAACGAAAAAACEAAAAAABCAAAAAAAEAAAAAAAIAAAAAAAGAAAAAADGAAAAAAAGAAAAAAAGAAAAAAADwAAAAACCAAAAAAAEAAAAAABGAAAAAAAGAAAAAACGAAAAAADGAAAAAABGAAAAAADEAAAAAAACAAAAAAAEAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: BgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAABCAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABCAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAACCAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAAFwAAAAABFwAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAAGAAAAAACGAAAAAABFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABGAAAAAACGAAAAAADFwAAAAABCAAAAAAADwAAAAABDwAAAAACEAAAAAADEAAAAAABEAAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACFwAAAAAAFwAAAAACFwAAAAABCAAAAAAACAAAAAAADAAAAAAAEAAAAAAAEAAAAAADEAAAAAABFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAABGAAAAAACDwAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAACCAAAAAAACAAAAAAADwAAAAAACAAAAAAADwAAAAABGAAAAAADGAAAAAACGAAAAAACGAAAAAACIAAAAAABGAAAAAACIAAAAAABGAAAAAAA + tiles: BgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAABCAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAACCAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACFwAAAAABFwAAAAADFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADGAAAAAACGAAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACGAAAAAABGAAAAAABFwAAAAADCAAAAAAADwAAAAACDwAAAAADEAAAAAADEAAAAAABEAAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAADFwAAAAAAFwAAAAADFwAAAAACCAAAAAAACAAAAAAADAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAADGAAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAACDwAAAAABCAAAAAAACAAAAAAADwAAAAAACAAAAAAADwAAAAABGAAAAAABGAAAAAAAGAAAAAACGAAAAAACIAAAAAACGAAAAAAAIAAAAAAAGAAAAAAA version: 6 1,1: ind: 1,1 - tiles: CAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAABGAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAAAFwAAAAACDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACDwAAAAADCAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAADGAAAAAADDwAAAAACDwAAAAABGAAAAAABDwAAAAADCAAAAAAADwAAAAAAGAAAAAADGAAAAAAAGAAAAAACDwAAAAADGAAAAAACGAAAAAAAGAAAAAACDwAAAAADGAAAAAADGAAAAAACGAAAAAABGAAAAAADGAAAAAAADwAAAAAACAAAAAAADwAAAAACGAAAAAADGAAAAAAAGAAAAAADDwAAAAACGAAAAAACGAAAAAACGAAAAAABDwAAAAAADwAAAAADGAAAAAABDwAAAAADDwAAAAAADwAAAAABFwAAAAADCAAAAAAADwAAAAACGAAAAAACGAAAAAAAGAAAAAADDwAAAAADGAAAAAAAGAAAAAAAGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAACDwAAAAAAPQAAAAAASAAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADSAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAACCAAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAADDwAAAAABFwAAAAACDwAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAABDwAAAAADCAAAAAAADwAAAAADDwAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAABDwAAAAABGAAAAAACDwAAAAADDwAAAAACGAAAAAAADwAAAAADCAAAAAAADwAAAAACGAAAAAAAGAAAAAADGAAAAAAADwAAAAABGAAAAAADGAAAAAAAGAAAAAACDwAAAAABGAAAAAACGAAAAAACGAAAAAACGAAAAAACGAAAAAAADwAAAAACCAAAAAAADwAAAAABGAAAAAAAGAAAAAADGAAAAAACDwAAAAABGAAAAAABGAAAAAADGAAAAAACDwAAAAADDwAAAAABGAAAAAADDwAAAAADDwAAAAABDwAAAAACFwAAAAADCAAAAAAADwAAAAAAGAAAAAABGAAAAAACGAAAAAAADwAAAAAAGAAAAAAAGAAAAAAAGAAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAABDwAAAAADDwAAAAABDwAAAAAADwAAAAABDwAAAAADPQAAAAABSAAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAAASAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,1: ind: 0,1 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAABGAAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAAAGAAAAAADGAAAAAADGAAAAAAAGAAAAAACGAAAAAABGAAAAAADGAAAAAADGAAAAAABGAAAAAACGAAAAAACGAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAADGAAAAAADDwAAAAABDwAAAAACDwAAAAACGAAAAAADDwAAAAADDwAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAACDwAAAAACDwAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAADwAAAAADDwAAAAAADwAAAAAAEAAAAAACEAAAAAADEAAAAAACCAAAAAAADAAAAAAACAAAAAAAPQAAAAABPgAAAAADPgAAAAACPQAAAAACSAAAAAAASAAAAAACSAAAAAACDwAAAAADDwAAAAACDwAAAAABEAAAAAADEAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADPgAAAAACPgAAAAACPQAAAAADSAAAAAAASAAAAAACSAAAAAABCAAAAAAADwAAAAACDwAAAAACEAAAAAABEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASAAAAAAASAAAAAABSAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPQAAAAADPQAAAAACCAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAGAAAAAABCAAAAAAAFwAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAABGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAASQAAAAAAPgAAAAABPgAAAAACGAAAAAAACAAAAAAAFwAAAAAAEAAAAAACGQAAAAAAGQAAAAAAEAAAAAADGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAAEwAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAABGAAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAAADwAAAAAADwAAAAACDwAAAAADDwAAAAADGAAAAAACGAAAAAABGAAAAAABGAAAAAABGAAAAAAAGAAAAAABGAAAAAACGAAAAAAAGAAAAAABGAAAAAAAGAAAAAADGAAAAAACGAAAAAADGAAAAAABGAAAAAACGAAAAAADDwAAAAABDwAAAAADDwAAAAABGAAAAAADDwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAADDwAAAAAADwAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAADwAAAAADDwAAAAAADwAAAAACEAAAAAABEAAAAAACEAAAAAADCAAAAAAADAAAAAAACAAAAAAAPQAAAAAAPgAAAAAAPgAAAAACPQAAAAABSAAAAAABSAAAAAADSAAAAAAADwAAAAACDwAAAAAADwAAAAACEAAAAAACEAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAAPQAAAAAAPgAAAAADPgAAAAABPQAAAAABSAAAAAACSAAAAAAASAAAAAACCAAAAAAADwAAAAADDwAAAAAAEAAAAAABEAAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASAAAAAAASAAAAAACSAAAAAABCAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPQAAAAADPQAAAAABCAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAGAAAAAACCAAAAAAAFwAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAASQAAAAACPgAAAAABPgAAAAAAGAAAAAADCAAAAAAAFwAAAAAAEAAAAAADGQAAAAAAGQAAAAAAEAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAAEwAAAAAA version: 6 -1,1: ind: -1,1 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAADDwAAAAABDwAAAAAADwAAAAABGAAAAAACDwAAAAADDwAAAAADDwAAAAABDwAAAAADDwAAAAABDwAAAAACDwAAAAABDwAAAAADGAAAAAACGAAAAAABGAAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAABGAAAAAAAGAAAAAADGAAAAAADIAAAAAACIAAAAAAAGAAAAAABIAAAAAADIAAAAAACGAAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAACDwAAAAABGAAAAAADDwAAAAADDwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAABDwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABCAAAAAAADwAAAAADDwAAAAACDwAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADCAAAAAAADwAAAAABDwAAAAAADwAAAAABCAAAAAAADwAAAAACEAAAAAABEAAAAAACDwAAAAACDwAAAAADDwAAAAACDwAAAAADCAAAAAAADwAAAAACDwAAAAADDwAAAAADCAAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAADwAAAAADEAAAAAABEAAAAAAADwAAAAACCAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAADwAAAAADFwAAAAABFwAAAAAADwAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAABCAAAAAAAEAAAAAAAIAAAAAADIAAAAAACEAAAAAACIAAAAAABIAAAAAADIAAAAAABEAAAAAABIAAAAAAAIAAAAAABEAAAAAADDwAAAAADDwAAAAAADwAAAAADDwAAAAACFwAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAAAFwAAAAABFwAAAAACCAAAAAAADwAAAAAADwAAAAABDwAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAACDwAAAAAAGAAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAADGAAAAAADGAAAAAADGAAAAAADGAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAACGAAAAAADIAAAAAADIAAAAAADGAAAAAAAIAAAAAADIAAAAAAAGAAAAAACDwAAAAADDwAAAAABDwAAAAADDwAAAAACDwAAAAABDwAAAAADDwAAAAAAGAAAAAADDwAAAAACDwAAAAACDwAAAAACDwAAAAADDwAAAAABDwAAAAADDwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADCAAAAAAADwAAAAAADwAAAAABDwAAAAADCAAAAAAADwAAAAABDwAAAAACDwAAAAADCAAAAAAADwAAAAAADwAAAAAADwAAAAABCAAAAAAADwAAAAAAEAAAAAABEAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAACCAAAAAAADwAAAAADDwAAAAADDwAAAAABCAAAAAAADwAAAAADEAAAAAABEAAAAAACDwAAAAADCAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAADwAAAAADFwAAAAAAFwAAAAAADwAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACCAAAAAAACAAAAAAAEAAAAAACEAAAAAADCAAAAAAAEAAAAAAAIAAAAAABIAAAAAACEAAAAAABIAAAAAABIAAAAAAAIAAAAAACEAAAAAAAIAAAAAABIAAAAAADEAAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAAAFwAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAADDwAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAABCAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAAADwAAAAADFwAAAAADFwAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAAA version: 6 -2,1: ind: -2,1 - tiles: PwAAAAAAPwAAAAACPwAAAAABFwAAAAACCAAAAAAADwAAAAADGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAGAAAAAACCAAAAAAADwAAAAACGAAAAAADDwAAAAABJwAAAAAAJwAAAAACJwAAAAABJwAAAAADJwAAAAADJwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAACMgAAAAACMgAAAAADMgAAAAAAMgAAAAACMgAAAAADMgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAADGAAAAAAAGAAAAAADGAAAAAABGAAAAAADGAAAAAADGAAAAAAAGAAAAAADGAAAAAABGAAAAAACGAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAAGAAAAAADMgAAAAADMgAAAAACMgAAAAACMgAAAAABMgAAAAADMgAAAAADGAAAAAACGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACFwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAAAJwAAAAAADwAAAAABGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAACCAAAAAAAFAAAAAAAFAAAAAADFAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAACDAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACFwAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAAACAAAAAAAFAAAAAADFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAADFwAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABFwAAAAAAEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAB + tiles: PwAAAAADPwAAAAADPwAAAAADFwAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAGAAAAAABCAAAAAAADwAAAAACGAAAAAACDwAAAAABJwAAAAACJwAAAAABJwAAAAADJwAAAAABJwAAAAAAJwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAACMgAAAAACMgAAAAACMgAAAAACMgAAAAADMgAAAAABMgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAACDwAAAAADGAAAAAADGAAAAAABGAAAAAACGAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAABGAAAAAADCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACGAAAAAABMgAAAAAAMgAAAAADMgAAAAABMgAAAAACMgAAAAAAMgAAAAACGAAAAAACGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABFwAAAAADJwAAAAABJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADJwAAAAADDwAAAAAAGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAAACAAAAAAAFAAAAAABFAAAAAADFAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAADDAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACFwAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAAFAAAAAACFAAAAAACCAAAAAAAFAAAAAADFAAAAAAAFAAAAAACCAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACFwAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAAAFwAAAAADEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAD version: 6 -1,-3: ind: -1,-3 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADSgAAAAABCAAAAAAASgAAAAABDwAAAAADCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASgAAAAACCAAAAAAACAAAAAAASgAAAAACSgAAAAABCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAASQAAAAABOQAAAAAAOQAAAAAASgAAAAADDwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAASQAAAAAASQAAAAAACAAAAAAASQAAAAAASQAAAAACCAAAAAAACAAAAAAACAAAAAAASQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAASQAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAACGAAAAAACCAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAAGAAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAD + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAADCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASgAAAAABDwAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAASQAAAAABCAAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASQAAAAACSgAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAASQAAAAAASQAAAAABCAAAAAAASQAAAAAASQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAASQAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAABGAAAAAACCAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAACCAAAAAAAGAAAAAABGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAGAAAAAADGAAAAAABGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADFwAAAAACFwAAAAACFwAAAAADFwAAAAACFwAAAAABFwAAAAABFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAAAFwAAAAAAFwAAAAACFwAAAAACFwAAAAAAFwAAAAACFwAAAAACFwAAAAABFwAAAAAAFwAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAACFwAAAAACFwAAAAACFwAAAAADFwAAAAADFwAAAAADFwAAAAAAFwAAAAAAFwAAAAACFwAAAAABLwAAAAACLwAAAAACLwAAAAADLwAAAAAALwAAAAAALwAAAAABLwAAAAACLwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAACFwAAAAAAFwAAAAACFwAAAAABLwAAAAAALwAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACLwAAAAABLwAAAAABFwAAAAADFwAAAAADFwAAAAABLwAAAAAALwAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAAALwAAAAABLwAAAAABFwAAAAABEAAAAAACEAAAAAABFwAAAAAAFwAAAAADEAAAAAABEAAAAAACFwAAAAABFwAAAAABFwAAAAAAFwAAAAADFwAAAAACEAAAAAACEAAAAAACFwAAAAABFwAAAAADEAAAAAADEAAAAAACEAAAAAAALwAAAAAAFwAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAADFwAAAAACFwAAAAAAFwAAAAADFwAAAAABFwAAAAACFwAAAAACLwAAAAADEAAAAAAD + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACFwAAAAAAFwAAAAACFwAAAAADFwAAAAABFwAAAAAAFwAAAAAAFwAAAAABFwAAAAABFwAAAAAAFwAAAAABFwAAAAADFwAAAAABFwAAAAACFwAAAAABFwAAAAADFwAAAAABFwAAAAABFwAAAAACFwAAAAAAFwAAAAACFwAAAAACFwAAAAADFwAAAAABFwAAAAADFwAAAAABFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAABFwAAAAAAFwAAAAACFwAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAADLwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAAAFwAAAAACFwAAAAAAFwAAAAAALwAAAAAALwAAAAACEAAAAAACEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAAALwAAAAADLwAAAAACFwAAAAAAFwAAAAAAFwAAAAABLwAAAAADLwAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAADLwAAAAABLwAAAAADFwAAAAACEAAAAAABEAAAAAABFwAAAAADFwAAAAAAEAAAAAAAEAAAAAAAFwAAAAADFwAAAAAAFwAAAAAAFwAAAAACFwAAAAACEAAAAAACEAAAAAABFwAAAAADFwAAAAAAEAAAAAAAEAAAAAAAEAAAAAABLwAAAAABFwAAAAACFwAAAAABFwAAAAACFwAAAAAAFwAAAAADFwAAAAAAFwAAAAACFwAAAAADFwAAAAABFwAAAAAAFwAAAAABLwAAAAADEAAAAAAD version: 6 3,-2: ind: 3,-2 - tiles: EAAAAAABEAAAAAADCAAAAAAAEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAADwAAAAAAEAAAAAAAEAAAAAACCAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACEAAAAAAAEAAAAAABCAAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAEAAAAAABEAAAAAADCAAAAAAADwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAADwAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACDwAAAAAAEAAAAAAAEAAAAAAACAAAAAAADwAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAADwAAAAACDwAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAADDwAAAAACDwAAAAAADwAAAAABCAAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAACDwAAAAAAGAAAAAACDwAAAAADDwAAAAADDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAACDwAAAAABGAAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAABFwAAAAACCAAAAAAADwAAAAADIAAAAAABIAAAAAACGAAAAAACIAAAAAADIAAAAAACGAAAAAADGAAAAAACGAAAAAADGAAAAAADGAAAAAABGAAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAABDwAAAAABDwAAAAABDwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAAADwAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAAADwAAAAACCAAAAAAADwAAAAAC + tiles: EAAAAAACEAAAAAAACAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAADEAAAAAABEAAAAAADCAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAABEAAAAAAAEAAAAAACCAAAAAAADwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAEAAAAAAAEAAAAAAACAAAAAAADwAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAADwAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAADwAAAAAAEAAAAAAAEAAAAAABCAAAAAAADwAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABDwAAAAADDwAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAABDwAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAACDwAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAACGAAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAACGAAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAACFwAAAAABCAAAAAAACAAAAAAACAAAAAAAGAAAAAADCAAAAAAADwAAAAADDwAAAAABDwAAAAADDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAABFwAAAAAACAAAAAAADwAAAAACIAAAAAACIAAAAAAAGAAAAAACIAAAAAAAIAAAAAADGAAAAAABGAAAAAADGAAAAAABGAAAAAADGAAAAAADGAAAAAADDwAAAAABDwAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAADCAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAADDwAAAAACCAAAAAAADwAAAAAB version: 6 3,-3: ind: 3,-3 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAACSwAAAAAASwAAAAAATAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAHCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAADSwAAAAAASwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAHSwAAAAAASwAAAAAAFwAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAACCAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAAFwAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAADCAAAAAAAEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAUAAAAAAADAAAAAAAFwAAAAADFwAAAAAAEAAAAAAAEAAAAAADEAAAAAACCAAAAAAAEAAAAAABEAAAAAABTQAAAAAATQAAAAAATQAAAAAACAAAAAAACAAAAAAAUAAAAAAACAAAAAAAUAAAAAADFwAAAAAAFwAAAAACCAAAAAAAEAAAAAACEAAAAAABCAAAAAAAEAAAAAADEAAAAAAATQAAAAAAEAAAAAABTQAAAAAACAAAAAAACAAAAAAADAAAAAAAUAAAAAADDAAAAAAAEAAAAAABEAAAAAAACAAAAAAAEAAAAAACEAAAAAABCAAAAAAAEAAAAAABEAAAAAADTQAAAAAATQAAAAAATQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADCAAAAAAAEAAAAAACEAAAAAABCAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAAB + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAFTAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAABSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAESwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAFwAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAACCAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAADSwAAAAAASwAAAAAASwAAAAAAUQAAAAAAFwAAAAABFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAADCAAAAAAAEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAUAAAAAABDAAAAAAAFwAAAAACFwAAAAADEAAAAAAAEAAAAAABEAAAAAADCAAAAAAAEAAAAAAAEAAAAAABTQAAAAAATQAAAAAATQAAAAAACAAAAAAACAAAAAAAUAAAAAABCAAAAAAAUAAAAAABFwAAAAABFwAAAAACCAAAAAAAEAAAAAADEAAAAAABCAAAAAAAEAAAAAACEAAAAAAATQAAAAAAEAAAAAABTQAAAAAACAAAAAAACAAAAAAADAAAAAAAUAAAAAABDAAAAAAAEAAAAAAAEAAAAAAACAAAAAAAEAAAAAACEAAAAAABCAAAAAAAEAAAAAADEAAAAAACTQAAAAAATQAAAAAATQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABCAAAAAAAEAAAAAABEAAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAABgAAAAAAFAAAAAABUgAAAAAFFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAUgAAAAACSQAAAAAAUgAAAAAAFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAACFwAAAAAACAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADJwAAAAADJwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAADwAAAAABJwAAAAAACAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAAACAAAAAAACAAAAAAANAAAAAADNAAAAAACCAAAAAAAFAAAAAADFAAAAAADFAAAAAACJwAAAAABJwAAAAAAJwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAACJwAAAAABCAAAAAAACAAAAAAANAAAAAAANAAAAAAACAAAAAAAFAAAAAAAFAAAAAADFAAAAAABJwAAAAACJwAAAAABJwAAAAAAJwAAAAABJwAAAAADJwAAAAABJwAAAAABJwAAAAABCAAAAAAACAAAAAAANAAAAAADNAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABJwAAAAADJwAAAAACJwAAAAABJwAAAAAAJwAAAAACJwAAAAAAJwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAABFwAAAAACCAAAAAAACAAAAAAAJwAAAAAAJwAAAAACJwAAAAACJwAAAAACDwAAAAACCAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAADCAAAAAAADAAAAAAADwAAAAACDwAAAAABJwAAAAADJwAAAAAADwAAAAACCAAAAAAACAAAAAAADwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAC + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAABgAAAAAAFAAAAAACUgAAAAAGFAAAAAAAFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAUgAAAAADSQAAAAABUgAAAAAEFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAFwAAAAABCAAAAAAAFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAJwAAAAADJwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAACCAAAAAAACAAAAAAADwAAAAAAJwAAAAADCAAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAABCAAAAAAACAAAAAAANAAAAAADNAAAAAAACAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABJwAAAAADJwAAAAACJwAAAAACJwAAAAACJwAAAAACJwAAAAADJwAAAAACJwAAAAACCAAAAAAACAAAAAAANAAAAAACNAAAAAAACAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAJwAAAAADJwAAAAADJwAAAAADJwAAAAADJwAAAAABJwAAAAACJwAAAAABJwAAAAADCAAAAAAACAAAAAAANAAAAAAANAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAADJwAAAAAAJwAAAAADJwAAAAACJwAAAAACJwAAAAAAJwAAAAABJwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFwAAAAACCAAAAAAACAAAAAAAJwAAAAADJwAAAAADJwAAAAAAJwAAAAACDwAAAAABCAAAAAAADwAAAAABDwAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAABDwAAAAACDwAAAAACCAAAAAAADAAAAAAADwAAAAAADwAAAAADJwAAAAADJwAAAAADDwAAAAABCAAAAAAACAAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAB version: 6 -3,-1: ind: -3,-1 - tiles: EAAAAAAACAAAAAAANAAAAAACNAAAAAAANAAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAIAAAAAADIAAAAAAAJwAAAAADIAAAAAADIAAAAAAAJwAAAAACEAAAAAAACAAAAAAAEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAIAAAAAABIAAAAAAAJwAAAAACIAAAAAACIAAAAAADJwAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAAACAAAAAAACAAAAAAAJwAAAAAAJwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAABUwAAAAADCAAAAAAANAAAAAABNAAAAAACNAAAAAABCAAAAAAAGAAAAAACJwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAUwAAAAABUwAAAAACCAAAAAAAJwAAAAAAJwAAAAABJwAAAAADCAAAAAAAGAAAAAAAJwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAABUwAAAAADCAAAAAAAJwAAAAACJwAAAAADJwAAAAACCAAAAAAADwAAAAACDwAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAADCAAAAAAADwAAAAACDwAAAAABCAAAAAAAMgAAAAAAMgAAAAADMgAAAAAAMgAAAAADMgAAAAAAFwAAAAACMgAAAAADMgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAAACAAAAAAAMgAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAABMgAAAAABEAAAAAACEAAAAAABFwAAAAADFwAAAAACFwAAAAABFwAAAAAAFwAAAAACDwAAAAACDwAAAAADCAAAAAAAMgAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADMgAAAAACEAAAAAADEAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAABDwAAAAADCAAAAAAAMgAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAADMgAAAAABEAAAAAABEAAAAAAAFwAAAAADFwAAAAABFwAAAAACFwAAAAAAFwAAAAACDwAAAAABDwAAAAADCAAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAA + tiles: EAAAAAADCAAAAAAANAAAAAACNAAAAAADNAAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABIAAAAAAAIAAAAAADJwAAAAAAIAAAAAABIAAAAAABJwAAAAADEAAAAAADCAAAAAAAEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAADIAAAAAABIAAAAAACJwAAAAACIAAAAAACIAAAAAAAJwAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAACCAAAAAAACAAAAAAAJwAAAAABJwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAAAUwAAAAAACAAAAAAANAAAAAADNAAAAAAANAAAAAACCAAAAAAAGAAAAAABJwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAUwAAAAACUwAAAAADCAAAAAAAJwAAAAADJwAAAAABJwAAAAADCAAAAAAAGAAAAAAAJwAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAADUwAAAAADCAAAAAAAJwAAAAABJwAAAAACJwAAAAADCAAAAAAADwAAAAACDwAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAACCAAAAAAADwAAAAACDwAAAAABCAAAAAAAMgAAAAAAMgAAAAAAMgAAAAACMgAAAAABMgAAAAACFwAAAAABMgAAAAACMgAAAAACDwAAAAABDwAAAAABDwAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAADCAAAAAAAMgAAAAADEAAAAAACEAAAAAAAEAAAAAACEAAAAAABMgAAAAADEAAAAAADEAAAAAACFwAAAAABFwAAAAAAFwAAAAAAFwAAAAACFwAAAAAADwAAAAABDwAAAAABCAAAAAAAMgAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAABMgAAAAABEAAAAAAAEAAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAAADwAAAAABCAAAAAAAMgAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAAAMgAAAAAAEAAAAAADEAAAAAADFwAAAAABFwAAAAADFwAAAAACFwAAAAABFwAAAAABDwAAAAADDwAAAAADCAAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAAD version: 6 -3,0: ind: -3,0 - tiles: UwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAADwAAAAABGAAAAAACGAAAAAABDwAAAAAADwAAAAABGAAAAAABGAAAAAAAGAAAAAADGAAAAAADGAAAAAAADwAAAAADIAAAAAADIAAAAAAAGAAAAAACIAAAAAADIAAAAAACGAAAAAADGAAAAAACGAAAAAAADwAAAAAADwAAAAACMgAAAAADGAAAAAABGAAAAAABGAAAAAAAMgAAAAAAGAAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAABDwAAAAADGAAAAAABGAAAAAADDwAAAAABDwAAAAAAMgAAAAABGAAAAAABGAAAAAABGAAAAAADMgAAAAADGAAAAAABFwAAAAACFwAAAAABFwAAAAABFwAAAAAAFwAAAAACDwAAAAAADwAAAAACCAAAAAAADwAAAAAADwAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAADGAAAAAABGAAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAADDwAAAAADCAAAAAAADwAAAAAADwAAAAADDwAAAAAANAAAAAACNAAAAAACNAAAAAAANAAAAAAANAAAAAAAFwAAAAACFwAAAAADFwAAAAAAFwAAAAACFwAAAAABDwAAAAADDwAAAAACCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAABCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANAAAAAACEAAAAAAAEAAAAAABEAAAAAAAEAAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAADCAAAAAAADwAAAAADDwAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAFwAAAAADFwAAAAABFwAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAEAAAAAACEAAAAAABEAAAAAADDAAAAAAACAAAAAAACAAAAAAANAAAAAACNAAAAAAANAAAAAACCAAAAAAAGAAAAAAAGAAAAAAAGAAAAAABVAAAAAAAFwAAAAAAFwAAAAAAEAAAAAACEAAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAANAAAAAAANAAAAAAANAAAAAADCAAAAAAAGAAAAAAAGAAAAAAAGAAAAAACVAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAAPwAAAAACQQAAAAAAQQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADPwAAAAADQQAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPwAAAAADQQAAAAAAQQAAAAAA + tiles: UwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACDwAAAAADGAAAAAAAGAAAAAACDwAAAAABDwAAAAACGAAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAADDwAAAAACIAAAAAADIAAAAAACGAAAAAAAIAAAAAAAIAAAAAABGAAAAAACGAAAAAADGAAAAAADDwAAAAACDwAAAAADMgAAAAADGAAAAAAAGAAAAAADGAAAAAAAMgAAAAAAGAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAADwAAAAACGAAAAAADGAAAAAACDwAAAAAADwAAAAAAMgAAAAADGAAAAAABGAAAAAADGAAAAAABMgAAAAAAGAAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAABFwAAAAACDwAAAAAADwAAAAAACAAAAAAADwAAAAADDwAAAAACGAAAAAAAGAAAAAADGAAAAAAAGAAAAAADGAAAAAABGAAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAADDwAAAAACCAAAAAAADwAAAAACDwAAAAADDwAAAAADNAAAAAADNAAAAAABNAAAAAADNAAAAAACNAAAAAADFwAAAAAAFwAAAAADFwAAAAADFwAAAAACFwAAAAACDwAAAAADDwAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABDwAAAAACDwAAAAACDwAAAAACDwAAAAADDwAAAAABDwAAAAABDwAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANAAAAAADEAAAAAABEAAAAAADEAAAAAAAEAAAAAACDwAAAAADDwAAAAABDwAAAAADDwAAAAABCAAAAAAADwAAAAACDwAAAAABCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAANAAAAAADEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAFwAAAAADFwAAAAABFwAAAAADFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAEAAAAAABEAAAAAABEAAAAAACDAAAAAAACAAAAAAACAAAAAAANAAAAAABNAAAAAADNAAAAAAACAAAAAAAGAAAAAADGAAAAAABGAAAAAABVAAAAAAAFwAAAAAAFwAAAAAAEAAAAAABEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAANAAAAAADNAAAAAACNAAAAAACCAAAAAAAGAAAAAACGAAAAAACGAAAAAABVAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAABCAAAAAAAPwAAAAACQQAAAAAAQQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAAAPwAAAAADQQAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAASQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPwAAAAACQQAAAAAAQQAAAAAA version: 6 -3,1: ind: -3,1 - tiles: CQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAACGAAAAAABCQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAABCQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAABCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAVQAAAAABCAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAAVQAAAAADVgAAAAAAVQAAAAADCAAAAAAABgAAAAAABgAAAAAACAAAAAAAFAAAAAACCAAAAAAAFAAAAAACFAAAAAABFAAAAAABCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAVQAAAAADCAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAASQAAAAAAUgAAAAAGSQAAAAAAFAAAAAACFAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAAASQAAAAABUgAAAAABFAAAAAACCAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAABgAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAACFAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAAASQAAAAAASQAAAAABSQAAAAAAUgAAAAAFCAAAAAAAFAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAUgAAAAAGCAAAAAAASQAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAACUgAAAAACFAAAAAAAFAAAAAACCAAAAAAAFAAAAAABFAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAASQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAABCQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAABGAAAAAADCQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAADCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAABCAAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAABFwAAAAAAEAAAAAABCAAAAAAABgAAAAAABgAAAAAACAAAAAAAFAAAAAADCAAAAAAAFAAAAAABFAAAAAADFAAAAAACCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAASQAAAAACUgAAAAACSQAAAAACFAAAAAACFAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAABSQAAAAABUgAAAAADFAAAAAADCAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAABgAAAAAASQAAAAAASQAAAAACSQAAAAABSQAAAAAASQAAAAACFAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAAASQAAAAACSQAAAAACSQAAAAACUgAAAAAFCAAAAAAAFAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAUgAAAAAACAAAAAAASQAAAAACFAAAAAABFAAAAAACFAAAAAADFAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAACUgAAAAACFAAAAAADFAAAAAAACAAAAAAAFAAAAAABFAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: GAAAAAADGAAAAAABGAAAAAAAGAAAAAAADwAAAAACDwAAAAAACAAAAAAADwAAAAACFAAAAAAAFAAAAAACDwAAAAACIgAAAAACIgAAAAABIgAAAAAAIgAAAAAAIgAAAAAACAAAAAAACAAAAAAAFwAAAAAAGAAAAAADDwAAAAADDwAAAAABCAAAAAAADwAAAAADFAAAAAABFAAAAAAADwAAAAADIgAAAAAAIgAAAAADIgAAAAACIgAAAAACIgAAAAAAIQAAAAAAIQAAAAAAFwAAAAABGAAAAAABDwAAAAADDwAAAAACCAAAAAAADwAAAAAAFAAAAAAAFAAAAAAADwAAAAABIgAAAAACIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAABIQAAAAAAIQAAAAAAFwAAAAABGAAAAAABGAAAAAADDwAAAAACGAAAAAACDwAAAAAAFAAAAAACFAAAAAABDwAAAAABIgAAAAABIgAAAAADIgAAAAABIgAAAAADIgAAAAADIQAAAAAAIQAAAAAAFwAAAAAAGAAAAAADGAAAAAABDwAAAAAAGAAAAAADDwAAAAADFAAAAAADFAAAAAACDwAAAAABIgAAAAAAIgAAAAADIgAAAAACIgAAAAADIgAAAAADIQAAAAAAIQAAAAAAFwAAAAACGAAAAAABDwAAAAACDwAAAAADCAAAAAAADwAAAAABFAAAAAADFAAAAAACDwAAAAAAIgAAAAABIgAAAAADIgAAAAAAIgAAAAACIgAAAAABCAAAAAAACAAAAAAAFwAAAAABGAAAAAAADwAAAAADDwAAAAACCAAAAAAADwAAAAACJwAAAAACJwAAAAADDwAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAADGAAAAAACGAAAAAACGAAAAAAAGAAAAAACDwAAAAABDwAAAAADCAAAAAAADwAAAAABJwAAAAABJwAAAAADJwAAAAADJwAAAAACJwAAAAAAJwAAAAACJwAAAAADJwAAAAABGAAAAAACGAAAAAAADwAAAAAADwAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAADDwAAAAACDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADDwAAAAABDwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAAADwAAAAADDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAABFAAAAAAAVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAADFAAAAAACVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAACFAAAAAABVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAABCAAAAAAANAAAAAABNAAAAAACNAAAAAABCAAAAAAACAAAAAAACAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAACCAAAAAAANAAAAAABNAAAAAACNAAAAAADCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABCAAAAAAACAAAAAAACAAAAAAAJwAAAAAAJwAAAAAA + tiles: GAAAAAABGAAAAAAAGAAAAAAAGAAAAAACDwAAAAACDwAAAAADCAAAAAAADwAAAAACFAAAAAAAFAAAAAABDwAAAAAAIgAAAAABIgAAAAADIgAAAAABIgAAAAADIgAAAAACCAAAAAAACAAAAAAAFwAAAAAAGAAAAAACDwAAAAAADwAAAAACCAAAAAAADwAAAAABFAAAAAACFAAAAAACDwAAAAAAIgAAAAADIgAAAAABIgAAAAACIgAAAAABIgAAAAADIQAAAAAAIQAAAAAAFwAAAAACGAAAAAABDwAAAAACDwAAAAAACAAAAAAADwAAAAABFAAAAAABFAAAAAAADwAAAAADIgAAAAAAIgAAAAADIgAAAAAAIgAAAAAAIgAAAAAAIQAAAAAAIQAAAAAAFwAAAAADGAAAAAABGAAAAAABDwAAAAACGAAAAAACDwAAAAAAFAAAAAAAFAAAAAABDwAAAAABIgAAAAADIgAAAAAAIgAAAAADIgAAAAADIgAAAAADIQAAAAAAIQAAAAAAFwAAAAAAGAAAAAAAGAAAAAADDwAAAAACGAAAAAABDwAAAAACFAAAAAADFAAAAAACDwAAAAADIgAAAAADIgAAAAADIgAAAAADIgAAAAABIgAAAAADIQAAAAAAIQAAAAAAFwAAAAADGAAAAAACDwAAAAACDwAAAAAACAAAAAAADwAAAAAAFAAAAAACFAAAAAADDwAAAAACIgAAAAABIgAAAAACIgAAAAABIgAAAAABIgAAAAADCAAAAAAACAAAAAAAFwAAAAABGAAAAAAADwAAAAAADwAAAAAACAAAAAAADwAAAAACJwAAAAAAJwAAAAADDwAAAAABDwAAAAACDwAAAAABDwAAAAABDwAAAAAADwAAAAAAGAAAAAACGAAAAAAAGAAAAAABGAAAAAABDwAAAAACDwAAAAAACAAAAAAADwAAAAAAJwAAAAAAJwAAAAAAJwAAAAACJwAAAAAAJwAAAAABJwAAAAADJwAAAAABJwAAAAACGAAAAAABGAAAAAACDwAAAAADDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAABDwAAAAACDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAAADwAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAAADwAAAAADDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAABFAAAAAAAVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAAFAAAAAACFAAAAAADFAAAAAAAVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAADFAAAAAADVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAADCAAAAAAANAAAAAADNAAAAAAANAAAAAABCAAAAAAACAAAAAAACAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAACCAAAAAAANAAAAAABNAAAAAACNAAAAAACCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAACCAAAAAAACAAAAAAACAAAAAAAJwAAAAAAJwAAAAAC version: 6 -3,-3: ind: -3,-3 - tiles: DwAAAAADDwAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAACDwAAAAACGAAAAAADDwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAHCQAAAAAABgAAAAAACQAAAAAAIAAAAAACIAAAAAAAGAAAAAACIAAAAAACIAAAAAABGAAAAAAAGAAAAAACGAAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAAFwAAAAADFwAAAAADEAAAAAAAEAAAAAAACAAAAAAAFAAAAAABGAAAAAADGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAADEAAAAAABEAAAAAABCAAAAAAAFAAAAAACGAAAAAACDwAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAAAEAAAAAAAEAAAAAAACAAAAAAAFAAAAAACIAAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOQAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAAADwAAAAACCAAAAAAASwAAAAAASwAAAAALSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAACCAAAAAAASwAAAAACSwAAAAAASwAAAAABSwAAAAAASwAAAAAFSwAAAAAASwAAAAAJCAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAADDwAAAAABIAAAAAADDwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAASwAAAAALCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABDwAAAAABGAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAANAAAAAADIAAAAAADDwAAAAADDwAAAAABDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAANAAAAAADIAAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANAAAAAAAGAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACJwAAAAAAJwAAAAABJwAAAAAAJwAAAAAAJwAAAAACJwAAAAAAJwAAAAAAJwAAAAABGAAAAAACDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABJwAAAAADJwAAAAADDwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAABDwAAAAAC + tiles: DwAAAAADDwAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAACGAAAAAAADwAAAAABCAAAAAAASwAAAAAMSwAAAAAHSwAAAAAICQAAAAAABgAAAAAACQAAAAAAIAAAAAADIAAAAAAAGAAAAAAAIAAAAAAAIAAAAAADGAAAAAABGAAAAAABGAAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAABCAAAAAAAFwAAAAADFwAAAAACEAAAAAAAEAAAAAACCAAAAAAAFAAAAAAAGAAAAAADGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAABEAAAAAAAEAAAAAACCAAAAAAAFAAAAAAAGAAAAAABDwAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABEAAAAAADEAAAAAADCAAAAAAAFAAAAAACIAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOQAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAACDwAAAAADCAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAADSwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAAADwAAAAABCAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAABDwAAAAACCAAAAAAASwAAAAAASwAAAAAHSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAAADwAAAAABIAAAAAACDwAAAAACCAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABDwAAAAACGAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANAAAAAABIAAAAAABDwAAAAAADwAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAANAAAAAACIAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANAAAAAABGAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACJwAAAAADJwAAAAABJwAAAAAAJwAAAAABJwAAAAABJwAAAAADJwAAAAAAJwAAAAABGAAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABJwAAAAACJwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAACDwAAAAACDwAAAAAC version: 6 -4,0: ind: -4,0 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAADDwAAAAADDwAAAAAAUwAAAAABUwAAAAACUwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAAAGAAAAAAAIAAAAAABIAAAAAABGAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAADDwAAAAADDwAAAAABUwAAAAACUwAAAAAAUwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAAAFwAAAAADFwAAAAAAFwAAAAADFwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAADDwAAAAADDwAAAAABIQAAAAAAIQAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAADDwAAAAACFwAAAAABFwAAAAAAFwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAADDwAAAAABDwAAAAABDwAAAAACDwAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAADwAAAAAADwAAAAABDwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAAEAAAAAABEAAAAAAAEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAACAAAAAAAFwAAAAAAFwAAAAAAFwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAVAAAAAAAVAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAAAFwAAAAADFwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAABGAAAAAADDwAAAAACDwAAAAAAUwAAAAADUwAAAAACUwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAACGAAAAAADGAAAAAABIAAAAAACIAAAAAABGAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAABGAAAAAACDwAAAAADDwAAAAAAUwAAAAAAUwAAAAADUwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAADFwAAAAADFwAAAAAAFwAAAAADFwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAAADwAAAAADDwAAAAACIQAAAAAAIQAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAABDwAAAAADFwAAAAAAFwAAAAAAFwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADDwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAACCAAAAAAADwAAAAABDwAAAAACDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAABCAAAAAAAEAAAAAAAEAAAAAACEAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAACCAAAAAAAFwAAAAABFwAAAAACFwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADVAAAAAAAVAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAADFwAAAAAAFwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABIAAAAAAADwAAAAACCAAAAAAAEAAAAAADEAAAAAACEAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAACDwAAAAABCAAAAAAAEAAAAAAAEAAAAAACEAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABIAAAAAABDwAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADIAAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAAADwAAAAABDwAAAAADDAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAACDwAAAAACCAAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAADDwAAAAABCAAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAABCAAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAADDwAAAAAAFwAAAAADFwAAAAADFwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADDwAAAAADDwAAAAADIQAAAAAAIQAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAAAFwAAAAAAFwAAAAABFwAAAAACFwAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABIAAAAAABDwAAAAACCAAAAAAAEAAAAAABEAAAAAABEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADIAAAAAAADwAAAAADCAAAAAAAEAAAAAACEAAAAAADEAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAADDwAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADIAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABIAAAAAAADwAAAAAADwAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAADDwAAAAADCAAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABIAAAAAAADwAAAAABCAAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAADCAAAAAAANwAAAAAANwAAAAAANwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAACGAAAAAACCAAAAAAADwAAAAAADwAAAAADDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAADDwAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAABDwAAAAAAFwAAAAACFwAAAAACFwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAABDwAAAAADDwAAAAADIQAAAAAAIQAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAACFwAAAAABFwAAAAACFwAAAAAAFwAAAAAD version: 6 -4,-2: ind: -4,-2 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACGAAAAAADGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAACCAAAAAAADwAAAAABGAAAAAACFwAAAAAAIQAAAAAADAAAAAAACAAAAAAAFwAAAAAAEAAAAAAAEAAAAAAAEAAAAAACCAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAADCAAAAAAADwAAAAAAGAAAAAACFwAAAAADIQAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAACFAAAAAADEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAADEAAAAAADCAAAAAAADwAAAAACGAAAAAABFwAAAAAAIQAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAADFAAAAAABEAAAAAABCAAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAABCAAAAAAADwAAAAACGAAAAAABFwAAAAAAIQAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAADFAAAAAADEAAAAAACCAAAAAAAGAAAAAAAGAAAAAAAGAAAAAADGAAAAAAAGAAAAAAADwAAAAAAGAAAAAABFwAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAABCAAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAADGAAAAAABDwAAAAACGAAAAAACGAAAAAABGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAACGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAACGAAAAAADCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAACGAAAAAACCAAAAAAACAAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACGAAAAAACGAAAAAAAGAAAAAABGAAAAAADGAAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAADCQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAAGAAAAAABGAAAAAAAGAAAAAADCAAAAAAACAAAAAAADwAAAAACDwAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADGAAAAAAADwAAAAACCAAAAAAADwAAAAADDwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAACCAAAAAAADwAAAAADDwAAAAACDwAAAAAC + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACGAAAAAABGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAACCAAAAAAADwAAAAACGAAAAAAAFwAAAAAAIQAAAAAADAAAAAAACAAAAAAAFwAAAAABEAAAAAABEAAAAAABEAAAAAADCAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACCAAAAAAADwAAAAABGAAAAAAAFwAAAAADIQAAAAAACAAAAAAACAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAAACAAAAAAADwAAAAACGAAAAAABFwAAAAAAIQAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAABFAAAAAADEAAAAAABCAAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAAACAAAAAAADwAAAAABGAAAAAABFwAAAAABIQAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAABFAAAAAABEAAAAAACCAAAAAAAGAAAAAAAGAAAAAACGAAAAAACGAAAAAAAGAAAAAABDwAAAAAAGAAAAAAAFwAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAADGAAAAAAAGAAAAAAADwAAAAAAGAAAAAACGAAAAAACGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAACCAAAAAAADwAAAAACDwAAAAAADwAAAAAAGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAADGAAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAABGAAAAAABCAAAAAAACAAAAAAADwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAABGAAAAAAAGAAAAAADGAAAAAADGAAAAAABGAAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAADwAAAAADGAAAAAAADwAAAAABDwAAAAADDwAAAAABDwAAAAABDwAAAAADCQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAAAGAAAAAADCAAAAAAACAAAAAAADwAAAAACDwAAAAACCQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAACCAAAAAAADwAAAAACDwAAAAACDwAAAAAC version: 6 -4,-3: ind: -4,-3 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAACDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAABGAAAAAADGAAAAAABGAAAAAAAIAAAAAAAIAAAAAABGAAAAAAAIAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAACDwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABCQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADCQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADCQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAADSgAAAAABDwAAAAADDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADDwAAAAACBgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAAASgAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADBgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACSgAAAAABSgAAAAABDwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADSgAAAAAESgAAAAAASgAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAADDwAAAAABDwAAAAABDwAAAAABDwAAAAADDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAACGAAAAAABGAAAAAACGAAAAAAAIAAAAAADIAAAAAACGAAAAAADIAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAADDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACCQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAADDwAAAAACSgAAAAABDwAAAAACDwAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAABSgAAAAAEDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABSgAAAAAESgAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACSgAAAAACSgAAAAABSgAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAD version: 6 2,0: ind: 2,0 - tiles: EAAAAAAAEAAAAAAAEAAAAAABCAAAAAAAGAAAAAAAGAAAAAABGAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAABGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABDwAAAAAAGAAAAAAADwAAAAAAPQAAAAADPQAAAAACPQAAAAACCAAAAAAADwAAAAAADwAAAAADDwAAAAAAFwAAAAAADwAAAAAADwAAAAABDwAAAAAAGAAAAAAADwAAAAADDwAAAAACIAAAAAAADwAAAAABPQAAAAABPQAAAAACPQAAAAADCAAAAAAAGAAAAAAAGAAAAAAAGAAAAAACGAAAAAABIAAAAAACIAAAAAABGAAAAAAAGAAAAAADGAAAAAABIAAAAAADIAAAAAABDwAAAAABPQAAAAADPQAAAAAAGAAAAAADCAAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAABGAAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAACPQAAAAADPQAAAAABPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPgAAAAAAPgAAAAADPgAAAAAAPgAAAAAAPgAAAAABPgAAAAADCAAAAAAADwAAAAABDwAAAAACDwAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAACCAAAAAAADwAAAAACCAAAAAAAPgAAAAADPgAAAAADPgAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAAPQAAAAADPQAAAAABPgAAAAACPgAAAAABPgAAAAABPgAAAAACPgAAAAAAPQAAAAACDwAAAAACDwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAPQAAAAAAPQAAAAADIAAAAAACPgAAAAACPQAAAAABPgAAAAADIAAAAAACPQAAAAACDwAAAAADDwAAAAACDwAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPgAAAAADPgAAAAACPgAAAAABPgAAAAABPgAAAAABPQAAAAAADwAAAAADDwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAACCAAAAAAACAAAAAAACAAAAAAAPgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABSAAAAAABPQAAAAACPQAAAAADPQAAAAADSAAAAAABPQAAAAACCAAAAAAADwAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAACCAAAAAAACAAAAAAACAAAAAAAPQAAAAABSAAAAAADPQAAAAAAPQAAAAACPQAAAAACSAAAAAADFwAAAAADDwAAAAACDwAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAACPgAAAAAAPgAAAAAAPgAAAAACPgAAAAABPgAAAAAAPgAAAAABCAAAAAAADwAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACFwAAAAADEAAAAAADFwAAAAACCAAAAAAADwAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAADFwAAAAAAGQAAAAAAGQAAAAAA + tiles: EAAAAAACEAAAAAADEAAAAAADCAAAAAAAGAAAAAADGAAAAAABGAAAAAABCAAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAADwAAAAACGAAAAAAADwAAAAAAPQAAAAACPQAAAAABPQAAAAACCAAAAAAADwAAAAABDwAAAAAADwAAAAABFwAAAAADDwAAAAACDwAAAAACDwAAAAADGAAAAAABDwAAAAABDwAAAAABIAAAAAACDwAAAAABPQAAAAADPQAAAAABPQAAAAAACAAAAAAAGAAAAAACGAAAAAAAGAAAAAABGAAAAAACIAAAAAAAIAAAAAABGAAAAAAAGAAAAAABGAAAAAACIAAAAAAAIAAAAAABDwAAAAADPQAAAAACPQAAAAABGAAAAAABCAAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAAAGAAAAAACDwAAAAACDwAAAAABDwAAAAADDwAAAAADPQAAAAACPQAAAAADPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPgAAAAADPgAAAAAAPgAAAAADPgAAAAABPgAAAAAAPgAAAAABCAAAAAAADwAAAAAADwAAAAAADwAAAAABCAAAAAAADAAAAAAACAAAAAAADwAAAAACCAAAAAAADwAAAAADCAAAAAAAPgAAAAAAPgAAAAABPgAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAAPQAAAAAAPQAAAAACPgAAAAAAPgAAAAADPgAAAAAAPgAAAAAAPgAAAAACPQAAAAAADwAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAPQAAAAACPQAAAAAAIAAAAAADPgAAAAACPQAAAAACPgAAAAADIAAAAAACPQAAAAAADwAAAAACDwAAAAADDwAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPgAAAAACPgAAAAACPgAAAAABPgAAAAADPgAAAAADPQAAAAADDwAAAAABDwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAACCAAAAAAACAAAAAAACAAAAAAAPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABSAAAAAAAPQAAAAACPQAAAAABPQAAAAABSAAAAAABPQAAAAADCAAAAAAADwAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAAPQAAAAABSAAAAAADPQAAAAABPQAAAAADPQAAAAACSAAAAAAAFwAAAAACDwAAAAAADwAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAAPQAAAAADPgAAAAAAPgAAAAADPgAAAAABPgAAAAAAPgAAAAADPgAAAAADCAAAAAAADwAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAABFwAAAAAAEAAAAAADFwAAAAAACAAAAAAADwAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAACFwAAAAACGQAAAAAAGQAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAACAAAAAAASQAAAAAASQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAACAAAAAAASQAAAAABSQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,2: ind: 0,2 - tiles: CAAAAAAACAAAAAAAGQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAEAAAAAAAEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAABCAAAAAAASAAAAAADSAAAAAAAPQAAAAABCAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAACCAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABCAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAACCAAAAAAAEAAAAAAAEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAADEAAAAAAAEAAAAAABEAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAADEAAAAAABEAAAAAACEAAAAAACCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACEAAAAAADEAAAAAAAEAAAAAACCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAACAAAAAAAGQAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAEAAAAAADEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAABCAAAAAAASAAAAAABSAAAAAADPQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAADCAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAACCAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAAEAAAAAACEAAAAAACEAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABEAAAAAADEAAAAAABEAAAAAADCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACEAAAAAABEAAAAAABEAAAAAABCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: EAAAAAACEAAAAAAANAAAAAAANAAAAAACNAAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAACFwAAAAAAFwAAAAACCAAAAAAADwAAAAABDwAAAAABDwAAAAACCAAAAAAAEAAAAAADNAAAAAADNAAAAAADNAAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAAADwAAAAACEAAAAAADEAAAAAADCAAAAAAAEAAAAAABEAAAAAAAEAAAAAABCAAAAAAAEAAAAAADNAAAAAACNAAAAAACNAAAAAACDwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAABEAAAAAADEAAAAAABCAAAAAAAEAAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAEAAAAAADDwAAAAABCAAAAAAADAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAAAEAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAEAAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADSAAAAAADSAAAAAACCAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADSQAAAAAAEAAAAAADEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAADCAAAAAAAFwAAAAABFwAAAAACFwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACCAAAAAAADwAAAAABDwAAAAABDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAADwAAAAACCAAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAACEAAAAAACDwAAAAABDwAAAAACDwAAAAACDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAAADwAAAAADDwAAAAABDwAAAAADDwAAAAAC + tiles: EAAAAAACEAAAAAABNAAAAAABNAAAAAAANAAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAABFwAAAAABFwAAAAABCAAAAAAADwAAAAAADwAAAAACDwAAAAADCAAAAAAAEAAAAAABNAAAAAABNAAAAAAANAAAAAABDwAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAAAEAAAAAACEAAAAAACCAAAAAAAEAAAAAACEAAAAAADEAAAAAABCAAAAAAAEAAAAAACNAAAAAACNAAAAAABNAAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAAEAAAAAADEAAAAAABCAAAAAAAEAAAAAADEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACEAAAAAABDwAAAAACCAAAAAAADAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADEAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAEAAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAAASAAAAAAASAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAACSQAAAAACEAAAAAADEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAACCAAAAAAAFwAAAAABFwAAAAAAFwAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAACCAAAAAAADwAAAAABDwAAAAABDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAADwAAAAABCAAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAAADwAAAAACDwAAAAAADwAAAAABDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAAD version: 6 -2,2: ind: -2,2 - tiles: BgAAAAAABgAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACDwAAAAADCAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAAACAAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAABCAAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAADDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAADCQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAEAAAAAABCQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAA + tiles: BgAAAAAABgAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACDwAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAADCAAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAABCAAAAAAADwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAADDwAAAAACDwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAABDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAACCQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAEAAAAAACCQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAA version: 6 -1,3: ind: -1,3 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAABFwAAAAAADwAAAAABDwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAABDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAADwAAAAADEAAAAAADEAAAAAACDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAADFwAAAAACDwAAAAABDwAAAAADDwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAADwAAAAACEAAAAAABEAAAAAADDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,3: ind: 0,3 - tiles: DwAAAAAAEAAAAAADEAAAAAAAFwAAAAACCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAABCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAABCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACEAAAAAACEAAAAAABDwAAAAADCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAADEAAAAAAAEAAAAAACCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: DwAAAAABEAAAAAAAEAAAAAABFwAAAAACCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAABCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABEAAAAAACEAAAAAADDwAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAAEAAAAAAAEAAAAAABCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 2,1: ind: 2,1 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAADFwAAAAABGQAAAAAAGQAAAAAACAAAAAAAFwAAAAAAEAAAAAABEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACIAAAAAADIAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAEAAAAAAAIAAAAAACIAAAAAABEAAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAACGAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAWAAAAAAAWAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAACFwAAAAACGQAAAAAAGQAAAAAACAAAAAAAFwAAAAACEAAAAAAAEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABIAAAAAADIAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABEAAAAAACIAAAAAADIAAAAAADEAAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAABGAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAWAAAAAAAWAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAABCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 3,0: ind: 3,0 - tiles: CAAAAAAAPQAAAAACPQAAAAACPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAADPgAAAAAACAAAAAAAPQAAAAADPQAAAAACPQAAAAACPgAAAAADPQAAAAADPgAAAAABCAAAAAAAPgAAAAACPgAAAAACPQAAAAABPQAAAAABPQAAAAACCAAAAAAAPgAAAAACPQAAAAAAPQAAAAADPQAAAAACPQAAAAACPQAAAAAAPgAAAAADPQAAAAAAPgAAAAAAPgAAAAABPgAAAAABPgAAAAABPQAAAAAAPQAAAAADPQAAAAACPQAAAAADPQAAAAAAPQAAAAAAPgAAAAADPgAAAAADPgAAAAABPQAAAAADPgAAAAAAPQAAAAAAPgAAAAADPgAAAAADPgAAAAADPgAAAAAAPQAAAAACPQAAAAADPQAAAAABCAAAAAAAPgAAAAADPQAAAAADPQAAAAABPQAAAAAAPQAAAAACPQAAAAABPgAAAAACPQAAAAACPgAAAAABCAAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAAPQAAAAABCAAAAAAAPgAAAAABPgAAAAAACAAAAAAAPQAAAAABPQAAAAAAPQAAAAACPgAAAAADPQAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAACPQAAAAAAPgAAAAAACAAAAAAAPgAAAAADPgAAAAADPgAAAAADPgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPgAAAAADPQAAAAACPgAAAAADPgAAAAABPgAAAAAAPQAAAAAAPQAAAAABPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADPQAAAAACPQAAAAAAPgAAAAAACAAAAAAAPgAAAAACPQAAAAADPQAAAAADPQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAPQAAAAACPgAAAAABPQAAAAADPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADCAAAAAAAPgAAAAAAPQAAAAACPgAAAAACCAAAAAAAFwAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAABFAAAAAADFAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAAPgAAAAABPQAAAAACPgAAAAAAPgAAAAADPgAAAAACEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAAFAAAAAABFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPQAAAAABPgAAAAABCAAAAAAAPgAAAAABEAAAAAACEAAAAAADEAAAAAADCAAAAAAAFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPgAAAAAAPQAAAAABPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADPQAAAAADPQAAAAACPQAAAAADPgAAAAABPgAAAAADPgAAAAABPQAAAAADPgAAAAADPgAAAAAAPgAAAAADPgAAAAAAPgAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAACPQAAAAADPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAPQAAAAADPQAAAAADPQAAAAACPgAAAAACCAAAAAAACAAAAAAA + tiles: CAAAAAAAPQAAAAACPQAAAAADPQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPgAAAAABCAAAAAAAPQAAAAADPQAAAAADPQAAAAADPgAAAAAAPQAAAAAAPgAAAAAACAAAAAAAPgAAAAABPgAAAAACPQAAAAAAPQAAAAAAPQAAAAACCAAAAAAAPgAAAAAAPQAAAAABPQAAAAAAPQAAAAACPQAAAAABPQAAAAAAPgAAAAADPQAAAAAAPgAAAAAAPgAAAAACPgAAAAABPgAAAAADPQAAAAACPQAAAAADPQAAAAACPQAAAAADPQAAAAACPQAAAAAAPgAAAAABPgAAAAABPgAAAAAAPQAAAAAAPgAAAAADPQAAAAABPgAAAAACPgAAAAADPgAAAAADPgAAAAAAPQAAAAAAPQAAAAAAPQAAAAADCAAAAAAAPgAAAAABPQAAAAAAPQAAAAADPQAAAAACPQAAAAAAPQAAAAACPgAAAAAAPQAAAAACPgAAAAACCAAAAAAAPgAAAAADPgAAAAADPQAAAAACPQAAAAACPQAAAAABCAAAAAAAPgAAAAACPgAAAAAACAAAAAAAPQAAAAABPQAAAAADPQAAAAABPgAAAAACPQAAAAABFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAADPQAAAAAAPgAAAAADCAAAAAAAPgAAAAADPgAAAAADPgAAAAADPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPgAAAAADPQAAAAADPgAAAAACPgAAAAAAPgAAAAACPQAAAAACPQAAAAADPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADPQAAAAABPQAAAAADPgAAAAADCAAAAAAAPgAAAAACPQAAAAADPQAAAAAAPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABPQAAAAABPgAAAAAAPQAAAAABPgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABCAAAAAAAPgAAAAABPQAAAAAAPgAAAAAACAAAAAAAFwAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAFAAAAAACFAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAAPgAAAAADPQAAAAADPgAAAAADPgAAAAAAPgAAAAADEAAAAAADEAAAAAABEAAAAAABCAAAAAAAFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPQAAAAACPgAAAAACCAAAAAAAPgAAAAACEAAAAAACEAAAAAADEAAAAAACCAAAAAAAFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAACPQAAAAABPQAAAAABPQAAAAABPgAAAAABPgAAAAADPgAAAAADPQAAAAACPgAAAAABPgAAAAACPgAAAAABPgAAAAABPgAAAAABCAAAAAAACAAAAAAACAAAAAAAPQAAAAACPQAAAAAAPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAPQAAAAABPQAAAAADPQAAAAACPgAAAAACCAAAAAAACAAAAAAA version: 6 3,1: ind: 3,1 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPQAAAAACPQAAAAACPQAAAAADPgAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPgAAAAABPgAAAAAAPgAAAAADPgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAWgAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAASgAAAAABWQAAAAAADwAAAAACDwAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAWAAAAAAACAAAAAAADwAAAAACDwAAAAACSgAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABCAAAAAAAFAAAAAADFAAAAAABCAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABCAAAAAAAFAAAAAAAFAAAAAADCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAAAFAAAAAABFAAAAAADCAAAAAAAFAAAAAADFAAAAAABCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAADPQAAAAAAPQAAAAACPQAAAAABPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPgAAAAABPgAAAAABPgAAAAABPgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAWgAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAASgAAAAACWQAAAAAADwAAAAAADwAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAWAAAAAAACAAAAAAADwAAAAACDwAAAAACSgAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAACAAAAAAAFAAAAAABFAAAAAADCAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAACAAAAAAAFAAAAAACFAAAAAADCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAABFAAAAAACFAAAAAAACAAAAAAAFAAAAAAAFAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: CQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAADFwAAAAABFwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAABFwAAAAABFwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAFwAAAAAAFwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAADFwAAAAADFwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAACFwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAAFwAAAAACFwAAAAAAFwAAAAABCAAAAAAAEAAAAAADEAAAAAADEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAABFwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAACGAAAAAABDwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAAIAAAAAADDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAACIAAAAAAADwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAADIAAAAAADDwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAAAGAAAAAABGAAAAAADCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAA + tiles: CQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAACFwAAAAACFwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAABEAAAAAADEAAAAAADEAAAAAACEAAAAAABFwAAAAACFwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAACFwAAAAACFwAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAADFwAAAAABFwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAABEAAAAAABEAAAAAABEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAAAEAAAAAABEAAAAAACFwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAAFwAAAAADFwAAAAABFwAAAAABCAAAAAAAEAAAAAADEAAAAAACEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAABFwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAABGAAAAAAADwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAAIAAAAAABDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAACIAAAAAAADwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAACIAAAAAADDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAAAGAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAAAFwAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAAAFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAABFwAAAAABCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAACEAAAAAACEAAAAAADEAAAAAACEAAAAAACFwAAAAABCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAADFwAAAAACEAAAAAACEAAAAAACEAAAAAACEAAAAAADFwAAAAACCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAADFwAAAAACCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAAACAAAAAAAFwAAAAADFwAAAAADFwAAAAADCAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAACFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABGAAAAAABDwAAAAADCAAAAAAADwAAAAADDwAAAAADCAAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADIAAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAIAAAAAAADwAAAAADCAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAACDwAAAAADCAAAAAAASwAAAAAASwAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAAACAAAAAAASwAAAAAASwAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAACFwAAAAACCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAAAFwAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACFwAAAAADCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAAAFwAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAFwAAAAADCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAADFwAAAAADCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAADFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAFwAAAAADCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAADFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAADEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAABCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABCAAAAAAAFwAAAAACFwAAAAAAFwAAAAABCAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAADFwAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACGAAAAAABDwAAAAACCAAAAAAADwAAAAACDwAAAAABCAAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAIAAAAAADDwAAAAABDwAAAAACDwAAAAADDwAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAIAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABIAAAAAAADwAAAAAACAAAAAAASwAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAADCAAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAAACAAAAAAASwAAAAADSwAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAADEAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAAAFwAAAAABCAAAAAAACQAAAAAABgAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAADFwAAAAABCAAAAAAACQAAAAAABgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAABCAAAAAAACAAAAAAADwAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAAFwAAAAACDwAAAAABDwAAAAACDwAAAAACDwAAAAADCAAAAAAADwAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAACDwAAAAACCAAAAAAADwAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAABDwAAAAACDwAAAAADDwAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAACDwAAAAAACAAAAAAADwAAAAABFwAAAAABFwAAAAACFwAAAAABFwAAAAAAFwAAAAACFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAACFwAAAAAAFwAAAAADFwAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPQAAAAADPQAAAAAAPQAAAAAAPgAAAAAACAAAAAAAPQAAAAABPQAAAAACCAAAAAAAPgAAAAACPgAAAAACPgAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAAPgAAAAABPgAAAAABPQAAAAACPgAAAAAAPgAAAAADPgAAAAABPQAAAAABPQAAAAADCAAAAAAAPgAAAAACPQAAAAAAPQAAAAACPQAAAAABPgAAAAADCAAAAAAACAAAAAAAPgAAAAABPgAAAAAAPQAAAAABPgAAAAACPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAACPQAAAAACPQAAAAABPQAAAAADPgAAAAACCAAAAAAACAAAAAAAPgAAAAADPQAAAAAAPQAAAAABPQAAAAAAPgAAAAAAPgAAAAABPQAAAAAAPgAAAAADPgAAAAACPgAAAAABGAAAAAABGAAAAAADGAAAAAABPgAAAAABCAAAAAAACAAAAAAAPgAAAAAAPgAAAAABPQAAAAACPgAAAAAAPgAAAAAAPgAAAAADPQAAAAADPgAAAAAAPgAAAAADPgAAAAABGAAAAAADGAAAAAAAGAAAAAACPgAAAAAACAAAAAAACAAAAAAAPgAAAAACPgAAAAACPQAAAAACPgAAAAACPgAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPQAAAAABPQAAAAABPQAAAAABPgAAAAADCAAAAAAAPQAAAAACPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPQAAAAABPQAAAAADPQAAAAAAPgAAAAADPgAAAAACPQAAAAAAPQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAACAAAAAAACAAAAAAADwAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAAFwAAAAADDwAAAAADDwAAAAABDwAAAAABDwAAAAABCAAAAAAADwAAAAACEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAACCAAAAAAADwAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAADwAAAAAACAAAAAAADwAAAAACFwAAAAABFwAAAAACFwAAAAADFwAAAAAAFwAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAACFwAAAAABFwAAAAADFwAAAAACFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAABPQAAAAADPQAAAAACPQAAAAAAPgAAAAAACAAAAAAAPQAAAAABPQAAAAABCAAAAAAAPgAAAAACPgAAAAADPgAAAAADPgAAAAAAPgAAAAABCAAAAAAACAAAAAAAPgAAAAADPgAAAAAAPQAAAAACPgAAAAADPgAAAAACPgAAAAAAPQAAAAAAPQAAAAADCAAAAAAAPgAAAAAAPQAAAAAAPQAAAAAAPQAAAAABPgAAAAACCAAAAAAACAAAAAAAPgAAAAACPgAAAAACPQAAAAAAPgAAAAACPgAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAACPQAAAAACPQAAAAAAPQAAAAADPgAAAAABCAAAAAAACAAAAAAAPgAAAAADPQAAAAABPQAAAAABPQAAAAAAPgAAAAABPgAAAAAAPQAAAAACPgAAAAACPgAAAAAAPgAAAAADGAAAAAACGAAAAAABGAAAAAAAPgAAAAAACAAAAAAACAAAAAAAPgAAAAAAPgAAAAABPQAAAAAAPgAAAAAAPgAAAAABPgAAAAADPQAAAAADPgAAAAABPgAAAAABPgAAAAADGAAAAAAAGAAAAAACGAAAAAABPgAAAAADCAAAAAAACAAAAAAAPgAAAAADPgAAAAABPQAAAAACPgAAAAAAPgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAACPQAAAAACPQAAAAAAPQAAAAABPgAAAAAACAAAAAAAPQAAAAACPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAAAPQAAAAADPQAAAAACPQAAAAACPgAAAAACPgAAAAAAPQAAAAAAPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 4,0: ind: 4,0 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABDwAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABDwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAADCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABDwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: DwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACNQAAAAAANQAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAADCAAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAACGAAAAAACCAAAAAAADwAAAAADNQAAAAAADwAAAAACDwAAAAACDwAAAAABCAAAAAAACAAAAAAAIAAAAAADDwAAAAADCAAAAAAAGAAAAAACGAAAAAACGAAAAAADGAAAAAACGAAAAAACCAAAAAAADwAAAAACNQAAAAAADwAAAAADDwAAAAACDwAAAAACCAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAADGAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAABCAAAAAAADAAAAAAADAAAAAAADwAAAAADDwAAAAADDwAAAAADCAAAAAAACAAAAAAADwAAAAACDwAAAAAACAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAACCAAAAAAADAAAAAAADAAAAAAANQAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACDwAAAAABDwAAAAADDwAAAAABGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAADAAAAAAADAAAAAAADAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAADAAAAAAADAAAAAAADAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: DwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAAIAAAAAACDwAAAAADCAAAAAAAGAAAAAAAGAAAAAADGAAAAAADGAAAAAABGAAAAAAACAAAAAAADwAAAAABNQAAAAAADwAAAAADDwAAAAABDwAAAAADCAAAAAAACAAAAAAAIAAAAAABDwAAAAACCAAAAAAAGAAAAAABGAAAAAABGAAAAAADGAAAAAACGAAAAAACCAAAAAAADwAAAAAANQAAAAAADwAAAAACDwAAAAAADwAAAAABCAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAACGAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAADCAAAAAAADAAAAAAADAAAAAAADwAAAAABDwAAAAAADwAAAAACCAAAAAAACAAAAAAADwAAAAACDwAAAAACCAAAAAAAGAAAAAADGAAAAAABGAAAAAACGAAAAAACGAAAAAADCAAAAAAADAAAAAAADAAAAAAANQAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABDwAAAAABDwAAAAABDwAAAAABGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAADAAAAAAADAAAAAAADAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAADAAAAAAADAAAAAAADAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAANQAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAANQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 4,1: ind: 4,1 - tiles: CAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASQAAAAAACAAAAAAASQAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAASQAAAAAASQAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASQAAAAABCAAAAAAASQAAAAABDAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAASQAAAAAASQAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAACFwAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADFwAAAAABFwAAAAADFwAAAAABDwAAAAABDwAAAAACDwAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAFwAAAAACEAAAAAACDwAAAAACDwAAAAAADwAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAADAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABDwAAAAACDwAAAAADDwAAAAABCAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFAAAAAADFAAAAAADFAAAAAAADwAAAAACDwAAAAABDwAAAAACCAAAAAAAGAAAAAADDwAAAAACFAAAAAACFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFAAAAAAAFAAAAAABFAAAAAABDwAAAAABDwAAAAABFwAAAAAACAAAAAAAGAAAAAABDwAAAAABFAAAAAAAFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFAAAAAADFAAAAAABFAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAAGAAAAAADDwAAAAABFwAAAAABFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAACFAAAAAACFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAADNQAAAAAADwAAAAACDwAAAAACDwAAAAACCAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAADNQAAAAAADwAAAAACDwAAAAACDwAAAAADCAAAAAAACAAAAAAAIAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAABNQAAAAAADwAAAAAADwAAAAAADwAAAAAACAAAAAAACAAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADFwAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABFwAAAAABFwAAAAACFwAAAAACDwAAAAAADwAAAAADDwAAAAABCAAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABFwAAAAAAEAAAAAADDwAAAAACDwAAAAADDwAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAADAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABDwAAAAACDwAAAAABDwAAAAADCAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFAAAAAAAFAAAAAAAFAAAAAABDwAAAAACDwAAAAAADwAAAAAACAAAAAAAGAAAAAACDwAAAAACFAAAAAABFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFAAAAAABFAAAAAABFAAAAAAADwAAAAABDwAAAAADFwAAAAACCAAAAAAAGAAAAAACDwAAAAAAFAAAAAABFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFAAAAAACFAAAAAACFAAAAAACCAAAAAAADwAAAAAACAAAAAAACAAAAAAAGAAAAAACDwAAAAABFwAAAAABFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAACDwAAAAABFAAAAAADFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAABDwAAAAABDwAAAAABDwAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAADDwAAAAAADwAAAAACNQAAAAAADwAAAAAADwAAAAABDwAAAAACCAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAACDwAAAAAANQAAAAAADwAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAAIAAAAAADDwAAAAABDwAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAAANQAAAAAADwAAAAACDwAAAAACDwAAAAADCAAAAAAACAAAAAAA version: 6 5,-1: ind: 5,-1 @@ -289,27 +289,27 @@ entities: version: 6 5,-2: ind: 5,-2 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAAWAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAACCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAABDwAAAAABDwAAAAABGAAAAAABGAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAADDwAAAAADDwAAAAABFwAAAAADFwAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAADDwAAAAACDwAAAAACFwAAAAAAFwAAAAADCAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAADFwAAAAABCAAAAAAACAAAAAAACAAAAAAAWAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAACCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAACDwAAAAABDwAAAAAAGAAAAAADGAAAAAADCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAABDwAAAAADDwAAAAADFwAAAAACFwAAAAACCAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAAADwAAAAACDwAAAAACFwAAAAAAFwAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: TAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAASwAAAAAESwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAANQAAAAAASQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAANQAAAAAASQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAANQAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA + tiles: TAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAANQAAAAAASQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAANQAAAAAASQAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAANQAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAASQAAAAACCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: CAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAHSwAAAAADSwAAAAAASwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAETAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAALSwAAAAAACAAAAAAASwAAAAAHSwAAAAAAUQAAAAAASwAAAAAASwAAAAAACAAAAAAAUQAAAAAACAAAAAAATAAAAAAATAAAAAAABgAAAAAABgAAAAAAUQAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAFSwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAADCAAAAAAAEAAAAAAAEAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAADFwAAAAABEAAAAAAAEAAAAAADCAAAAAAASwAAAAAASwAAAAAASwAAAAAMSwAAAAAAUQAAAAAACAAAAAAATAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAABCAAAAAAAEAAAAAACEAAAAAADCAAAAAAASwAAAAAASwAAAAAMSwAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAADCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAABCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAA + tiles: CAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAECQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAGSwAAAAAASwAAAAABSwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAATAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAFSwAAAAAAUQAAAAAASwAAAAAASwAAAAAACAAAAAAAUQAAAAAACAAAAAAATAAAAAAATAAAAAAABgAAAAAABgAAAAAAUQAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAJSwAAAAAASwAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAACSwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAABCAAAAAAAEAAAAAAAEAAAAAADCAAAAAAASwAAAAAASwAAAAAASwAAAAAMSwAAAAAASwAAAAAAUQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABFwAAAAACEAAAAAABEAAAAAACCAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAACAAAAAAATAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAAACAAAAAAAEAAAAAABEAAAAAADCAAAAAAASwAAAAAASwAAAAACSwAAAAAASwAAAAAASwAAAAAHUQAAAAAASwAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAALSwAAAAAASwAAAAAGCAAAAAAACAAAAAAAFwAAAAABFwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAHSwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAISwAAAAAISwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAFSwAAAAAASwAAAAAASwAAAAAGBgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAGSwAAAAAASwAAAAAFSwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAACAAAAAAAFwAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAAFwAAAAAACAAAAAAACAAAAAAAFwAAAAAC + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAHBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAACAAAAAAAFwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAAFwAAAAAACAAAAAAACAAAAAAAFwAAAAAC version: 6 -5,-3: ind: -5,-3 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAASQAAAAAACAAAAAAASQAAAAAACAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAASQAAAAACCAAAAAAASQAAAAACCAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAADwAAAAADDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAADwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAADwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAOQAAAAAADwAAAAADDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -1,-4: ind: -1,-4 @@ -321,11 +321,11 @@ entities: version: 6 5,-3: ind: 5,-3 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXAAAAAADYgAAAAAAYgAAAAAALQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYgAAAAAALQAAAAAALQAAAAAALQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXAAAAAABYgAAAAAAYgAAAAAALQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYgAAAAAALQAAAAAALQAAAAAALQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 1,2: ind: 1,2 - tiles: CAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -2,-4: ind: -2,-4 @@ -333,23 +333,23 @@ entities: version: 6 2,-4: ind: 2,-4 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAMSwAAAAAJSwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAGSwAAAAABSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAKSwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAKSwAAAAACSwAAAAAJSwAAAAAJSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAAGSwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAJSwAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAAFCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAKUQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAFSwAAAAAASwAAAAAASwAAAAALBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAJSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAGSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAALUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAABSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAMSwAAAAAASwAAAAAASwAAAAAASwAAAAAHSwAAAAAASwAAAAACUQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAABTAAAAAAATAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAJSwAAAAAHSwAAAAAASwAAAAAHSwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAGSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAHSwAAAAAMSwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAJSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAADSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAFUQAAAAAACAAAAAAATAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAGSwAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAGSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAATAAAAAAATAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAJSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAADSwAAAAAASwAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAFSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAJSwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAJSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAALSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAFCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAABSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAACAAAAAAATAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAACFAAAAAACFAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAABFAAAAAADFAAAAAABCAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAADCAAAAAAASwAAAAALCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAAACAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAOQAAAAAAOQAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAESwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAACFAAAAAACFAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAACFAAAAAADFAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAADFAAAAAADFAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAACCAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAACCAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAOQAAAAAAOQAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAAEAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADRwAAAAAACAAAAAAARwAAAAAACAAAAAAARwAAAAAAEAAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAARwAAAAAAEAAAAAADRwAAAAAAEAAAAAABRwAAAAAAEAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADRwAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAAEAAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAARwAAAAAARwAAAAAARwAAAAAAGQAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADEAAAAAADRwAAAAAAGQAAAAAARwAAAAAAEAAAAAABEAAAAAADCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAAEAAAAAABRwAAAAAAGQAAAAAARwAAAAAAEAAAAAACEAAAAAACCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADEAAAAAADRwAAAAAAGQAAAAAARwAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAACCAAAAAAAEAAAAAAAEAAAAAACCAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAAFwAAAAADEAAAAAAAEAAAAAACCAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABRwAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAAEAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABRwAAAAAACAAAAAAARwAAAAAACAAAAAAARwAAAAAAEAAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABRwAAAAAAEAAAAAACRwAAAAAAEAAAAAADRwAAAAAAEAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABRwAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAAEAAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAARwAAAAAARwAAAAAARwAAAAAAGQAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACEAAAAAAARwAAAAAAGQAAAAAARwAAAAAAEAAAAAACEAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABEAAAAAADRwAAAAAAGQAAAAAARwAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADEAAAAAAARwAAAAAAGQAAAAAARwAAAAAAEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAADCAAAAAAAEAAAAAAAEAAAAAABCAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACFwAAAAABEAAAAAABEAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAAD + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAAB version: 6 - type: Broadphase - type: Physics @@ -409,14 +409,13 @@ entities: decals: 1797: 69,-28 1798: 70,-28 - 5887: -44.266167,24.17379 - 5888: -43.71579,24.16156 6550: 7.80612,-46.838108 6551: 8.233204,-46.827694 6773: 43.669937,12.024849 6774: 43.669937,12.431099 6775: 44.341812,12.009224 6776: 44.341812,12.399849 + 7589: -44,24 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -431,8 +430,7 @@ entities: 1836: 61,-20 1860: 22,-38 1861: 22,-37 - 5885: -45.159,22.681658 - 5886: -45.17123,23.256496 + 7588: -45,23 - node: cleanable: True angle: 1.5707963267948966 rad @@ -450,17 +448,15 @@ entities: 1718: 68.96644,-11.160069 1719: 69.96644,-11.15081 1720: 67.97107,-11.15544 - 5883: -43.71579,21.837746 - 5884: -44.32732,21.837746 6374: -33,-12 + 7586: -44,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Arrows decals: 1218: 25,12 - 5881: -42.87188,22.669428 - 5882: -42.85965,23.219805 + 7587: -43,23 - node: color: '#FFFFFFFF' id: Basalt1 @@ -898,6 +894,10 @@ entities: 7510: -35,-5 7536: -37,36 7537: -37,37 + 7605: -34,35 + 7606: -34,34 + 7607: -33,35 + 7608: -33,34 - node: cleanable: True color: '#FFFFFFFF' @@ -932,6 +932,7 @@ entities: 6255: 88,-19 6256: 88,-18 6257: 87,-18 + 7585: -44,23 - node: color: '#52B4E996' id: BotGreyscale @@ -1099,8 +1100,6 @@ entities: 6692: -30,11 6693: -31,11 6743: 47,16 - 6830: 60,-8 - 6831: 61,-8 6925: 66,-25 6926: 66,-24 7090: 16,-69 @@ -1497,8 +1496,6 @@ entities: 7406: 8,-49 7419: -4,-12 7420: -5,-12 - 7424: -5,-42 - 7425: -4,-42 - node: cleanable: True color: '#FFFFFFFF' @@ -2568,6 +2565,8 @@ entities: 2053: 39,-16 2729: -22,34 2730: -22,35 + 7603: -34,35 + 7604: -34,34 - node: cleanable: True color: '#EFB34196' @@ -2575,8 +2574,6 @@ entities: decals: 2815: -30,36 2816: -30,37 - 2829: -34,34 - 2830: -34,35 2831: -34,36 2832: -34,37 2833: -34,38 @@ -4288,7 +4285,6 @@ entities: 3863: 28,22 3864: 29,23 3865: 26,22 - 3866: 24,22 3867: 23,22 3868: 23,23 3869: 23,20 @@ -5348,12 +5344,9 @@ entities: 5136: -25,38 5137: -26,37 5138: -32,36 - 5139: -33,35 5140: -33,37 - 5141: -33,35 5142: -34,36 5143: -33,38 - 5144: -33,35 5145: -36,5 5146: -42,6 5147: -43,4 @@ -5562,8 +5555,11 @@ entities: 7370: 64,-36 7371: 64,-37 7372: 61,-37 - 7426: -4,-40 - 7438: -4,-42 + 7567: 60,-8 + 7581: 25,22 + 7590: -45,23 + 7591: -44,24 + 7609: -34,35 - node: cleanable: True angle: 1.5707963267948966 rad @@ -5597,6 +5593,11 @@ entities: 6285: 91,-20 6288: 87,-20 6291: 88,-19 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 7583: 15,21 - node: cleanable: True color: '#FFFFFFFF' @@ -6526,7 +6527,6 @@ entities: 7378: 63,-36 7379: 62,-36 7380: 63,-35 - 7427: -5,-41 7470: -32,-5 7471: -34,-5 7472: -35,-2 @@ -6541,6 +6541,11 @@ entities: 7511: -35,-5 7512: -35,-5 7513: -30,-5 + 7568: 61,-8 + 7582: 24,22 + 7592: -44,23 + 7610: -33,35 + 7613: -6,-42 - node: cleanable: True angle: 1.5707963267948966 rad @@ -6631,10 +6636,6 @@ entities: 7382: 63,-37 7383: 62,-36 7384: 64,-37 - 7432: -5,-42 - 7433: -5,-42 - 7434: -5,-42 - 7435: -4,-42 7481: -33,-2 7482: -32,-4 7483: -34,-2 @@ -6661,6 +6662,10 @@ entities: 7518: -26,-2 7519: -28,-2 7520: -27,-3 + 7593: -43,23 + 7611: -34,34 + 7614: -5,-42 + 7615: -5,-42 - node: cleanable: True angle: 1.5707963267948966 rad @@ -6711,9 +6716,6 @@ entities: 6800: 46,11 6801: 47,13 6802: 46,14 - 6859: 60,-8 - 6860: 61,-8 - 6861: 61,-8 6862: 57,-8 6863: 58,-8 6879: -14,-38 @@ -6740,9 +6742,6 @@ entities: 7297: 45,-29 7385: 61,-37 7386: 64,-36 - 7436: -5,-42 - 7445: -4,-41 - 7446: -4,-41 7500: -34,-4 7501: -32,-2 7502: -32,-5 @@ -6756,6 +6755,10 @@ entities: 7523: -38,-3 7524: -27,-3 7525: -27,-4 + 7594: -44,22 + 7612: -33,34 + 7616: -4,-42 + 7617: -4,-40 - node: cleanable: True angle: 1.5707963267948966 rad @@ -7169,9 +7172,7 @@ entities: id: LoadingArea decals: 350: 39,-22 - 2998: 25,22 2999: 29,22 - 5877: -44,24 6742: 44,11 - node: angle: 1.5707963267948966 rad @@ -7180,7 +7181,6 @@ entities: decals: 2079: -40,-59 2080: -40,-66 - 5878: -45,23 7320: 37,-29 7321: 37,-31 7411: 23,-54 @@ -7191,15 +7191,14 @@ entities: decals: 349: 45,-22 1680: 63,-26 - 5879: -44,22 7133: 21,-63 + 7584: 25,22 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: 1217: 23,12 - 5880: -43,23 7361: 64,-36 - node: color: '#52B4E996' @@ -8724,7 +8723,6 @@ entities: 1761: 73,-16 1762: 73,-18 1763: 73,-19 - 5876: -45,23 5982: 51,14 6071: 51,-10 6244: 91,-15 @@ -8855,7 +8853,6 @@ entities: 2004: 0,-38 2005: 1,-38 2006: 2,-38 - 5873: -44,24 6238: 89,-16 6239: 90,-16 6500: 33,-14 @@ -8920,7 +8917,6 @@ entities: 1692: 61,-23 1878: 26,-43 1879: 26,-46 - 5874: -43,23 5983: 57,14 6242: 88,-15 6243: 88,-14 @@ -9012,7 +9008,6 @@ entities: 2031: -5,-35 2043: -6,-35 2044: -4,-35 - 5875: -44,22 6069: 52,-11 6070: 53,-11 6240: 89,-13 @@ -9031,11 +9026,6 @@ entities: 7139: 18,-64 7140: 19,-64 7141: 20,-64 - - node: - color: '#FFFFFFFF' - id: WoodTrimThinBox - decals: - 5872: -44,23 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -9574,6 +9564,48 @@ entities: 2885: 50.31763,23.128677 2886: 51.239506,23.738052 2887: 52.00513,23.034927 + - node: + cleanable: True + color: '#4A52603A' + id: splatter + decals: + 7538: 13.247841,23.05346 + 7539: 13.013466,23.506584 + 7540: 13.404091,23.944084 + 7541: 13.622841,24.24096 + 7542: 14.013466,23.444084 + 7543: 13.357216,23.20971 + 7544: 14.825966,23.975334 + 7545: 14.654091,25.100334 + 7546: 14.747841,25.444084 + 7547: 14.622841,25.02221 + 7548: 14.747841,23.975334 + 7549: 14.888466,23.194084 + 7550: 16.74784,24.92846 + 7551: 16.825966,24.95971 + 7552: 17.013466,22.89721 + 7553: 13.372841,23.944084 + 7554: 13.185341,23.881584 + - node: + cleanable: True + color: '#5033372E' + id: splatter + decals: + 7565: 10.116705,23.928236 + 7566: 10.53858,23.631361 + - node: + cleanable: True + color: '#5033374A' + id: splatter + decals: + 7557: 13.091591,23.30346 + 7558: 13.091591,23.30346 + 7559: 13.4921875,25.569084 + 7560: 16.929115,25.08471 + 7561: 17.00724,25.006584 + 7562: 15.055365,22.701078 + 7563: 12.746027,22.574331 + 7564: 12.667902,22.543081 - node: cleanable: True color: '#60161514' @@ -9616,6 +9648,13 @@ entities: 7031: -16.50268,11.829041 7032: -16.78393,13.3082075 7033: -15.867262,12.443624 + - node: + cleanable: True + color: '#A16C6069' + id: splatter + decals: + 7555: 13.372841,25.77221 + 7556: 12.982216,23.225334 - node: color: '#FFFFFFFF' id: w @@ -10408,7 +10447,8 @@ entities: -3,7: 1: 53503 -3,8: - 1: 3549 + 1: 477 + 7: 3072 -2,5: 1: 28927 -2,6: @@ -10416,7 +10456,8 @@ entities: -2,7: 1: 62463 -2,8: - 1: 4095 + 1: 3327 + 7: 768 -1,8: 1: 20206 -9,4: @@ -11655,6 +11696,21 @@ entities: - 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 @@ -11720,11 +11776,11 @@ entities: chunks: 0,0: ind: 0,0 - tiles: CAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAASQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAACEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAACFwAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAFwAAAAACCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAADSQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAAAFwAAAAACEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAFwAAAAADCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAACCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAADFwAAAAACFwAAAAABFwAAAAACCAAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAAACAAAAAAASQAAAAAAFwAAAAADCAAAAAAACQAAAAAACAAAAAAASQAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASQAAAAACBgAAAAAASQAAAAACSgAAAAAACAAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAACSQAAAAAACAAAAAAAGAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAACFwAAAAADFwAAAAABGAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAADFwAAAAADFwAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAACCAAAAAAABgAAAAAACAAAAAAAGAAAAAAAGAAAAAADGAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAAFwAAAAACCAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA + tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAADFwAAAAACCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAACFwAAAAACFwAAAAADFwAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAABCAAAAAAASQAAAAAAFwAAAAABCAAAAAAACQAAAAAACAAAAAAASQAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASQAAAAABBgAAAAAASQAAAAACSgAAAAABCAAAAAAABgAAAAAACAAAAAAAGAAAAAAAGAAAAAACGAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAABSQAAAAAACAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAADFwAAAAABFwAAAAABGAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAACFwAAAAACFwAAAAAAGAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAABCAAAAAAABgAAAAAACAAAAAAAGAAAAAAAGAAAAAACGAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA version: 6 -1,-1: ind: -1,-1 @@ -12065,6 +12121,14 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,1.5 parent: 2 + - type: DeviceList + devices: + - 18335 + - 18357 + - 18358 + - 8741 + - 8742 + - 8740 - uid: 8372 components: - type: Transform @@ -14576,15 +14640,6 @@ entities: - type: Transform pos: -23.5,26.5 parent: 2 -- proto: AirlockEngineering - entities: - - uid: 4217 - components: - - type: MetaData - name: Spare supplies airlock - - type: Transform - pos: 32.5,1.5 - parent: 2 - proto: AirlockEngineeringGlassLocked entities: - uid: 25 @@ -14734,6 +14789,13 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,8.5 parent: 2 + - uid: 127 + components: + - type: MetaData + name: Spare supplies airlock + - type: Transform + pos: 32.5,1.5 + parent: 2 - uid: 3491 components: - type: MetaData @@ -14911,6 +14973,22 @@ entities: linkedPorts: 6067: - DoorStatus: DoorBolt +- proto: AirlockExternalCommandLocked + entities: + - uid: 546 + components: + - type: MetaData + name: AI external airlock + - type: Transform + pos: 21.5,-61.5 + parent: 2 + - uid: 866 + components: + - type: MetaData + name: AI external airlock + - type: Transform + pos: 21.5,-59.5 + parent: 2 - proto: AirlockExternalEngineeringLocked entities: - uid: 41 @@ -14924,20 +15002,6 @@ entities: linkedPorts: 44: - DoorStatus: DoorBolt - - uid: 7832 - components: - - type: MetaData - name: external AI airlock - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-61.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 22093: - - DoorStatus: DoorBolt - uid: 15050 components: - type: MetaData @@ -14949,20 +15013,6 @@ entities: linkedPorts: 15057: - DoorStatus: DoorBolt - - uid: 22093 - components: - - type: MetaData - name: external AI airlock - - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-59.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 7832: - - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: - uid: 3607 @@ -16846,6 +16896,12 @@ entities: - type: Transform pos: 34.5,-5.5 parent: 2 + - uid: 16013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-39.5 + parent: 2 - uid: 16793 components: - type: Transform @@ -17035,13 +17091,6 @@ entities: parent: 2 - proto: AirlockMedicalMorgueLocked entities: - - uid: 546 - components: - - type: MetaData - name: Morgue maintenance access - - type: Transform - pos: 47.5,-10.5 - parent: 2 - uid: 549 components: - type: MetaData @@ -17056,6 +17105,15 @@ entities: - type: Transform pos: 51.5,-8.5 parent: 2 +- proto: AirlockMedicalMorgueMaintLocked + entities: + - uid: 1183 + components: + - type: MetaData + name: Morgue maintenance access + - type: Transform + pos: 47.5,-10.5 + parent: 2 - proto: AirlockQuartermasterGlassLocked entities: - uid: 5468 @@ -17507,6 +17565,9 @@ entities: rot: -1.5707963267948966 rad pos: 57.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8371 - uid: 18388 components: - type: Transform @@ -18180,13 +18241,6 @@ entities: deviceLists: - 4588 - 2086 -- proto: AirSensorVox - entities: - - uid: 21955 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 2 - proto: AltarHeaven entities: - uid: 16557 @@ -20406,11 +20460,6 @@ entities: parent: 2 - proto: Autolathe entities: - - uid: 127 - components: - - type: Transform - pos: -4.5,-21.5 - parent: 2 - uid: 5625 components: - type: Transform @@ -20421,6 +20470,11 @@ entities: - type: Transform pos: 61.5,-13.5 parent: 2 + - uid: 8853 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 - proto: BalloonNT entities: - uid: 904 @@ -20622,11 +20676,6 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-40.5 parent: 2 - - uid: 22505 - components: - - type: Transform - pos: -5.5,-41.5 - parent: 2 - proto: BarricadeDirectional entities: - uid: 2140 @@ -22127,6 +22176,12 @@ entities: rot: 1.5707963267948966 rad pos: -23.5,15.5 parent: 2 + - uid: 17258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-27.5 + parent: 2 - uid: 20514 components: - type: Transform @@ -22269,6 +22324,14 @@ entities: rot: 3.141592653589793 rad pos: -18.5,-28.5 parent: 2 + - uid: 22455 + components: + - type: MetaData + name: Shutters button + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,29.5 + parent: 2 - proto: ButtonFrameJanitor entities: - uid: 16220 @@ -22777,6 +22840,36 @@ entities: - type: Transform pos: 25.5,12.5 parent: 2 + - uid: 1720 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 1767 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 2056 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 2058 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 - uid: 2101 components: - type: Transform @@ -23207,11 +23300,6 @@ entities: - type: Transform pos: -34.5,-2.5 parent: 2 - - uid: 8365 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - uid: 8413 components: - type: Transform @@ -23227,11 +23315,6 @@ entities: - type: Transform pos: 58.5,-28.5 parent: 2 - - uid: 8816 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - uid: 8993 components: - type: Transform @@ -25012,31 +25095,6 @@ entities: - type: Transform pos: -29.5,3.5 parent: 2 - - uid: 11046 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 2 - - uid: 11047 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 2 - - uid: 11048 - components: - - type: Transform - pos: -4.5,-39.5 - parent: 2 - - uid: 11049 - components: - - type: Transform - pos: -6.5,-39.5 - parent: 2 - - uid: 11050 - components: - - type: Transform - pos: -5.5,-39.5 - parent: 2 - uid: 11051 components: - type: Transform @@ -37167,21 +37225,6 @@ entities: - type: Transform pos: -13.5,-40.5 parent: 2 - - uid: 15955 - components: - - type: Transform - pos: -41.5,15.5 - parent: 2 - - uid: 15956 - components: - - type: Transform - pos: -42.5,15.5 - parent: 2 - - uid: 15957 - components: - - type: Transform - pos: -43.5,15.5 - parent: 2 - uid: 15988 components: - type: Transform @@ -38984,6 +39027,11 @@ entities: - type: Transform pos: -4.495774,-17.073431 parent: 2 + - uid: 1765 + components: + - type: Transform + pos: -3.4800978,-40.81058 + parent: 2 - uid: 4398 components: - type: Transform @@ -39009,11 +39057,6 @@ entities: - type: Transform pos: 63.52819,-32.40197 parent: 2 - - uid: 21943 - components: - - type: Transform - pos: -6.474467,-40.97722 - parent: 2 - proto: CableHV entities: - uid: 265 @@ -52432,6 +52475,12 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,32.5 parent: 2 + - uid: 4591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-41.5 + parent: 2 - uid: 4619 components: - type: Transform @@ -53249,11 +53298,6 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,16.5 parent: 2 - - uid: 11070 - components: - - type: Transform - pos: -3.5,-38.5 - parent: 2 - uid: 11116 components: - type: Transform @@ -55924,6 +55968,11 @@ entities: - type: Transform pos: -9.5,42.5 parent: 2 + - uid: 15957 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 - uid: 16059 components: - type: Transform @@ -56019,11 +56068,6 @@ entities: - type: Transform pos: -9.5,-38.5 parent: 2 - - uid: 16950 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - uid: 17059 components: - type: Transform @@ -56394,6 +56438,11 @@ entities: - type: Transform pos: 10.5,4.5 parent: 21128 + - uid: 21185 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 - uid: 21204 components: - type: Transform @@ -57131,6 +57180,36 @@ entities: rot: 3.141592653589793 rad pos: 5.5,44.5 parent: 2 + - uid: 21941 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 21943 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 21945 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 21946 + components: + - type: Transform + pos: -6.5,2.5 + parent: 2 + - uid: 21947 + components: + - type: Transform + pos: -1.5,7.5 + parent: 2 + - uid: 21955 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 - uid: 21987 components: - type: Transform @@ -57895,11 +57974,11 @@ entities: - type: Transform pos: -42.5,-45.5 parent: 2 - - uid: 3480 + - uid: 3582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,13.5 + rot: 3.141592653589793 rad + pos: -7.5,-41.5 parent: 2 - uid: 3627 components: @@ -58039,18 +58118,54 @@ entities: rot: 3.141592653589793 rad pos: 49.5,-25.5 parent: 2 + - uid: 4131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-30.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-32.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-32.5 + parent: 2 - uid: 4176 components: - type: Transform rot: 1.5707963267948966 rad pos: 27.5,11.5 parent: 2 + - uid: 4217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 - uid: 4306 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,6.5 parent: 2 + - uid: 4318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-30.5 + parent: 2 - uid: 4360 components: - type: Transform @@ -58647,6 +58762,12 @@ entities: rot: -1.5707963267948966 rad pos: 21.5,-43.5 parent: 2 + - uid: 7832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-7.5 + parent: 2 - uid: 8016 components: - type: Transform @@ -58695,6 +58816,12 @@ entities: rot: -1.5707963267948966 rad pos: 12.5,-39.5 parent: 2 + - uid: 8203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 61.5,-7.5 + parent: 2 - uid: 8212 components: - type: Transform @@ -58777,11 +58904,6 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-19.5 parent: 2 - - uid: 11069 - components: - - type: Transform - pos: -3.5,-40.5 - parent: 2 - uid: 12691 components: - type: Transform @@ -58883,11 +59005,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,28.5 parent: 2 - - uid: 15089 - components: - - type: Transform - pos: -7.5,-40.5 - parent: 2 - uid: 15150 components: - type: Transform @@ -59027,6 +59144,12 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,-45.5 parent: 2 + - uid: 16498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,14.5 + parent: 2 - uid: 16499 components: - type: Transform @@ -59114,6 +59237,11 @@ entities: rot: 1.5707963267948966 rad pos: 36.5,-30.5 parent: 2 + - uid: 20111 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 - uid: 20788 components: - type: Transform @@ -59207,11 +59335,6 @@ entities: rot: 3.141592653589793 rad pos: 7.5,-5.5 parent: 21128 - - uid: 21376 - components: - - type: Transform - pos: -4.5,-40.5 - parent: 2 - uid: 21865 components: - type: Transform @@ -59893,10 +60016,10 @@ entities: parent: 2 - proto: ClosetChefFilled entities: - - uid: 866 + - uid: 16753 components: - type: Transform - pos: -22.5,15.5 + pos: -18.5,12.5 parent: 2 - proto: ClosetEmergencyFilledRandom entities: @@ -61019,11 +61142,6 @@ entities: - type: Transform pos: -4.4946303,-36.383816 parent: 2 - - uid: 21942 - components: - - type: Transform - pos: -6.5,-40.5 - parent: 2 - proto: ClothingEyesGlassesSunglasses entities: - uid: 21054 @@ -61235,34 +61353,6 @@ entities: parent: 2 - proto: ClothingHeadHatSantahat entities: - - uid: 15470 - components: - - type: Transform - parent: 5046 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15471 - components: - - type: Transform - parent: 5047 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15605 - components: - - type: Transform - parent: 5050 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16013 - components: - - type: Transform - parent: 5053 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 20413 components: - type: Transform @@ -61294,6 +61384,13 @@ entities: - type: Transform pos: -44.47003,9.382071 parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 16945 + components: + - type: Transform + pos: -3.3856463,-40.40494 + parent: 2 - proto: ClothingHeadHatWizard entities: - uid: 17262 @@ -61561,36 +61658,6 @@ entities: - type: Transform pos: 21.504559,-48.362946 parent: 2 -- proto: ClothingOuterSanta - entities: - - uid: 15468 - components: - - type: Transform - parent: 5046 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15472 - components: - - type: Transform - parent: 5047 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15629 - components: - - type: Transform - parent: 5050 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 16116 - components: - - type: Transform - parent: 5053 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterSkub entities: - uid: 17540 @@ -61897,12 +61964,6 @@ entities: - type: Transform pos: 36.5,0.5 parent: 2 - - uid: 22504 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-41.5 - parent: 2 - proto: Cobweb2 entities: - uid: 3306 @@ -61915,11 +61976,6 @@ entities: - type: Transform pos: 58.5,-25.5 parent: 2 - - uid: 13175 - components: - - type: Transform - pos: -6.5,-38.5 - parent: 2 - uid: 13728 components: - type: Transform @@ -62090,62 +62146,10 @@ entities: - type: Transform pos: 48.5,-37.5 parent: 2 - - uid: 4093 - components: - - type: Transform - pos: 26.5,-29.5 - parent: 2 - - uid: 4097 - components: - - type: Transform - pos: 25.5,-29.5 - parent: 2 - - uid: 4098 - components: - - type: Transform - pos: 27.5,-29.5 - parent: 2 - - uid: 4129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-30.5 - parent: 2 - uid: 4130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-31.5 - parent: 2 - - uid: 4131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-32.5 - parent: 2 - - uid: 4132 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-32.5 - parent: 2 - - uid: 4133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-32.5 - parent: 2 - - uid: 4134 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-31.5 - parent: 2 - - uid: 4135 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-30.5 + pos: 26.5,-29.5 parent: 2 - uid: 4416 components: @@ -62289,6 +62293,14 @@ entities: linkedPorts: 7357: - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 21956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-22.5 + parent: 2 - proto: computerBodyScanner entities: - uid: 6865 @@ -62310,11 +62322,11 @@ entities: parent: 2 - proto: ComputerBroken entities: - - uid: 15088 + - uid: 13174 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-41.5 + pos: -4.5,-41.5 parent: 2 - uid: 16405 components: @@ -62414,6 +62426,14 @@ entities: - type: Transform pos: 2.5,25.5 parent: 2 +- proto: ComputerFrame + entities: + - uid: 4097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-41.5 + parent: 2 - proto: ComputerId entities: - uid: 918 @@ -63156,16 +63176,6 @@ entities: - type: Transform pos: 3.5,48.5 parent: 2 - - uid: 12368 - components: - - type: Transform - pos: 61.5,-7.5 - parent: 2 - - uid: 16908 - components: - - type: Transform - pos: 60.5,-7.5 - parent: 2 - proto: CryogenicSleepUnitSpawner entities: - uid: 1947 @@ -63337,13 +63347,6 @@ entities: - type: Transform pos: -36.806015,23.725422 parent: 2 -- proto: DawInstrumentMachineCircuitboard - entities: - - uid: 21449 - components: - - type: Transform - pos: -39.486645,-19.226738 - parent: 2 - proto: DefaultStationBeaconAICore entities: - uid: 22368 @@ -69803,11 +69806,6 @@ entities: - type: Transform pos: 18.570478,-17.446852 parent: 2 - - uid: 22508 - components: - - type: Transform - pos: -4.5759196,-41.379776 - parent: 2 - proto: DrinkMugOne entities: - uid: 979 @@ -73464,6 +73462,9 @@ entities: - type: Transform pos: 58.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8371 - uid: 8751 components: - type: Transform @@ -73778,6 +73779,12 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,-9.5 parent: 2 + - uid: 15380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-39.5 + parent: 2 - uid: 16303 components: - type: Transform @@ -75436,11 +75443,17 @@ entities: - type: Transform pos: 52.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8371 - uid: 8742 components: - type: Transform pos: 52.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8371 - uid: 8743 components: - type: Transform @@ -76040,35 +76053,38 @@ entities: - type: Transform pos: 61.5,19.5 parent: 2 -- proto: FloraRockSolid01 +- proto: FloraRockSolid entities: - - uid: 16712 + - uid: 16697 components: - type: Transform - pos: 28.622553,-54.29832 + pos: 62.19926,-39.235546 parent: 2 - - uid: 17302 + - uid: 16712 components: - type: Transform - pos: 38.490116,-53.00032 + pos: 28.622553,-54.29832 parent: 2 - - uid: 17303 + - uid: 16745 components: - type: Transform - pos: 64.42829,-47.413994 + pos: 26.769617,-50.317265 parent: 2 -- proto: FloraRockSolid02 - entities: - - uid: 16745 + - uid: 16748 components: - type: Transform - pos: 26.769617,-50.317265 + pos: -44.05552,-40.28774 parent: 2 - uid: 16779 components: - type: Transform pos: -44.44241,-39.335354 parent: 2 + - uid: 17021 + components: + - type: Transform + pos: 28.54376,-56.43803 + parent: 2 - uid: 17138 components: - type: Transform @@ -76079,34 +76095,27 @@ entities: - type: Transform pos: 46.236732,-51.29415 parent: 2 -- proto: FloraRockSolid03 - entities: - - uid: 16697 - components: - - type: Transform - pos: 62.19926,-39.235546 - parent: 2 - - uid: 16748 + - uid: 17299 components: - type: Transform - pos: -44.05552,-40.28774 + pos: 62.555313,-54.293705 parent: 2 - - uid: 17021 + - uid: 17301 components: - type: Transform - pos: 28.54376,-56.43803 + pos: 50.521164,-56.935516 parent: 2 - - uid: 17299 + - uid: 17302 components: - type: Transform - pos: 62.555313,-54.293705 + pos: 38.490116,-53.00032 parent: 2 - - uid: 17301 + - uid: 17303 components: - type: Transform - pos: 50.521164,-56.935516 + pos: 64.42829,-47.413994 parent: 2 -- proto: FloraTree01 +- proto: FloraTree entities: - uid: 1075 components: @@ -76118,73 +76127,56 @@ entities: - type: Transform pos: -28.765827,6.0652723 parent: 2 - - uid: 3620 + - uid: 3619 components: - type: Transform - pos: -45.82935,-1.4404856 + pos: -48.654617,4.503584 parent: 2 -- proto: FloraTree02 - entities: - - uid: 3619 + - uid: 3620 components: - type: Transform - pos: -48.654617,4.503584 + pos: -45.82935,-1.4404856 parent: 2 - uid: 3696 components: - type: Transform pos: -49.713776,-8.129584 parent: 2 - - uid: 6140 + - uid: 3810 components: - type: Transform - pos: -45.10429,-48.580776 + pos: -47.863766,-29.112556 parent: 2 -- proto: FloraTree05 - entities: - uid: 6128 components: - type: Transform pos: -50.151165,-48.580776 parent: 2 -- proto: FloraTree06 - entities: - - uid: 3810 - components: - - type: Transform - pos: -47.863766,-29.112556 - parent: 2 -- proto: FloraTreeChristmas02 - entities: - - uid: 21377 + - uid: 6140 components: - type: Transform - pos: -33.5,6.5 + pos: -45.10429,-48.580776 parent: 2 -- proto: FloraTreeLarge03 +- proto: FloraTreeLarge entities: - uid: 1077 components: - type: Transform pos: -39.07622,5.790084 parent: 2 -- proto: FloraTreeLarge04 - entities: - uid: 4227 components: - type: Transform rot: -1.5707963267948966 rad pos: -45.237907,-8.042405 parent: 2 -- proto: FloraTreeSnow02 +- proto: FloraTreeSnow entities: - uid: 20393 components: - type: Transform pos: 80.68255,-34.341137 parent: 2 -- proto: FloraTreeSnow04 - entities: - uid: 20394 components: - type: Transform @@ -76431,20 +76423,6 @@ entities: - type: Transform pos: -59.500355,-35.792988 parent: 2 -- proto: FoodShakerPepper - entities: - - uid: 2049 - components: - - type: Transform - pos: -23.598366,14.284859 - parent: 2 -- proto: FoodShakerSalt - entities: - - uid: 10278 - components: - - type: Transform - pos: -23.348366,14.300484 - parent: 2 - proto: FoodSoupClown entities: - uid: 16606 @@ -76459,14 +76437,6 @@ entities: - type: Transform pos: -41.472492,5.669127 parent: 2 -- proto: FuelDispenser - entities: - - uid: 17164 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 2 - proto: GasCanisterBrokenBase entities: - uid: 14039 @@ -76737,6 +76707,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 11069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 12370 components: - type: Transform @@ -76751,14 +76729,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15153 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 16392 components: - type: Transform @@ -78292,14 +78262,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 21990 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 22106 components: - type: Transform @@ -78552,13 +78514,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 22051 +- proto: GasPipeSensorMixedAir + entities: + - uid: 11048 components: - type: Transform - pos: -5.5,-35.5 + pos: 17.5,-11.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - proto: GasPipeStraight entities: - uid: 581 @@ -78918,12 +78880,6 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-12.5 parent: 2 - - uid: 1183 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-11.5 - parent: 2 - uid: 1184 components: - type: Transform @@ -79243,14 +79199,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13174 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 15090 components: - type: Transform @@ -91887,30 +91835,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 21964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22034 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 22046 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 22067 components: - type: Transform @@ -92462,6 +92386,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 11047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 12469 components: - type: Transform @@ -92477,14 +92409,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 15084 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 17684 components: - type: Transform @@ -94769,6 +94693,9 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8371 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18336 @@ -95991,6 +95918,9 @@ entities: rot: -1.5707963267948966 rad pos: 56.5,2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 8371 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18373 @@ -96897,6 +96827,11 @@ entities: - type: Transform pos: 82.5,-10.5 parent: 2 + - uid: 15089 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 - uid: 21621 components: - type: Transform @@ -99477,11 +99412,6 @@ entities: rot: 1.5707963267948966 rad pos: 2.5,-39.5 parent: 2 - - uid: 8272 - components: - - type: Transform - pos: -6.5,-42.5 - parent: 2 - uid: 8304 components: - type: Transform @@ -99783,6 +99713,11 @@ entities: - type: Transform pos: 73.5,7.5 parent: 2 + - uid: 15472 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 - uid: 15573 components: - type: Transform @@ -100867,11 +100802,6 @@ entities: - type: Transform pos: 11.5,43.5 parent: 2 - - uid: 20111 - components: - - type: Transform - pos: -5.5,-41.5 - parent: 2 - uid: 20251 components: - type: Transform @@ -101555,10 +101485,10 @@ entities: - type: Transform pos: -42.5,28.5 parent: 2 - - uid: 21932 + - uid: 21942 components: - type: Transform - pos: -7.5,-42.5 + pos: -31.5,-46.5 parent: 2 - uid: 21967 components: @@ -101692,6 +101622,16 @@ entities: - type: Transform pos: 7.5,0.5 parent: 2 + - uid: 22525 + components: + - type: Transform + pos: -68.5,-25.5 + parent: 2 + - uid: 22526 + components: + - type: Transform + pos: -68.5,-24.5 + parent: 2 - proto: GrilleBroken entities: - uid: 8042 @@ -102632,10 +102572,11 @@ entities: - 0 - proto: GyroscopeUnanchored entities: - - uid: 15146 + - uid: 16908 components: - type: Transform - pos: -31.5,34.5 + rot: 1.5707963267948966 rad + pos: -31.5,35.5 parent: 2 - proto: Handcuffs entities: @@ -102782,6 +102723,447 @@ entities: - type: Transform pos: 14.421984,-15.397855 parent: 2 +- proto: HolopadAiCore + entities: + - uid: 8796 + components: + - type: Transform + pos: 20.5,-62.5 + parent: 2 +- proto: HolopadCargoBay + entities: + - uid: 3490 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 22352 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 +- proto: HolopadCargoBreakroom + entities: + - uid: 22372 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 +- proto: HolopadCargoFront + entities: + - uid: 22367 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 +- proto: HolopadCargoSalvageBay + entities: + - uid: 22514 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 8816 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 2344 + components: + - type: Transform + pos: 39.5,-35.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 22053 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 +- proto: HolopadCommandCe + entities: + - uid: 22051 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 22093 + components: + - type: Transform + pos: 58.5,10.5 + parent: 2 +- proto: HolopadCommandHop + entities: + - uid: 22463 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 +- proto: HolopadCommandHos + entities: + - uid: 22462 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 4098 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 +- proto: HolopadCommandQm + entities: + - uid: 22510 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 +- proto: HolopadCommandRd + entities: + - uid: 22512 + components: + - type: Transform + pos: 70.5,-22.5 + parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 22522 + components: + - type: Transform + pos: 54.5,-34.5 + parent: 2 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 15468 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 3124 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 22458 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 +- proto: HolopadEngineeringFront + entities: + - uid: 22459 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 2 +- proto: HolopadEngineeringMain + entities: + - uid: 22460 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 +- proto: HolopadEngineeringTechVault + entities: + - uid: 22517 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 22518 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 +- proto: HolopadGeneralArcade + entities: + - uid: 8272 + components: + - type: Transform + pos: -47.5,10.5 + parent: 2 +- proto: HolopadGeneralArrivals + entities: + - uid: 21964 + components: + - type: Transform + pos: -47.5,-40.5 + parent: 2 +- proto: HolopadGeneralCryosleep + entities: + - uid: 4129 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 +- proto: HolopadGeneralDisposals + entities: + - uid: 22456 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 2 +- proto: HolopadGeneralEvac + entities: + - uid: 22461 + components: + - type: Transform + pos: -52.5,1.5 + parent: 2 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 22457 + components: + - type: Transform + pos: 20.5,-36.5 + parent: 2 +- proto: HolopadGeneralTheater + entities: + - uid: 22520 + components: + - type: Transform + pos: -33.5,7.5 + parent: 2 +- proto: HolopadGeneralTools + entities: + - uid: 22519 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 +- proto: HolopadMedicalChemistry + entities: + - uid: 15103 + components: + - type: Transform + pos: 44.5,14.5 + parent: 2 +- proto: HolopadMedicalCryopods + entities: + - uid: 4134 + components: + - type: Transform + pos: 60.5,-6.5 + parent: 2 +- proto: HolopadMedicalFront + entities: + - uid: 22502 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 22503 + components: + - type: Transform + pos: 50.5,-6.5 + parent: 2 +- proto: HolopadMedicalMorgue + entities: + - uid: 22504 + components: + - type: Transform + pos: 52.5,-10.5 + parent: 2 +- proto: HolopadMedicalParamed + entities: + - uid: 22508 + components: + - type: Transform + pos: 55.5,7.5 + parent: 2 +- proto: HolopadMedicalSurgery + entities: + - uid: 22516 + components: + - type: Transform + pos: 59.5,2.5 + parent: 2 +- proto: HolopadMedicalVirology + entities: + - uid: 22521 + components: + - type: Transform + pos: 59.5,15.5 + parent: 2 +- proto: HolopadScienceAnomaly + entities: + - uid: 15470 + components: + - type: Transform + pos: 69.5,-8.5 + parent: 2 +- proto: HolopadScienceArtifact + entities: + - uid: 21990 + components: + - type: Transform + pos: 73.5,-15.5 + parent: 2 +- proto: HolopadScienceRnd + entities: + - uid: 22511 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 +- proto: HolopadScienceRobotics + entities: + - uid: 22513 + components: + - type: Transform + pos: 62.5,-25.5 + parent: 2 +- proto: HolopadSecurityArmory + entities: + - uid: 21959 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 22052 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 +- proto: HolopadSecurityDetective + entities: + - uid: 15146 + components: + - type: Transform + pos: -26.5,29.5 + parent: 2 +- proto: HolopadSecurityInterrogation + entities: + - uid: 22464 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 +- proto: HolopadSecurityLawyer + entities: + - uid: 22469 + components: + - type: Transform + pos: -49.5,-13.5 + parent: 2 +- proto: HolopadSecurityLockerRoom + entities: + - uid: 22515 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 +- proto: HolopadSecurityPerma + entities: + - uid: 22509 + components: + - type: Transform + pos: 0.5,50.5 + parent: 2 +- proto: HolopadSecurityWarden + entities: + - uid: 22523 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 22034 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 +- proto: HolopadServiceBotany + entities: + - uid: 22524 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 +- proto: HolopadServiceBoxer + entities: + - uid: 22046 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 15147 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 +- proto: HolopadServiceClown + entities: + - uid: 15144 + components: + - type: Transform + pos: -28.5,-19.5 + parent: 2 +- proto: HolopadServiceJanitor + entities: + - uid: 22466 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 +- proto: HolopadServiceKitchen + entities: + - uid: 22465 + components: + - type: Transform + pos: -20.5,11.5 + parent: 2 +- proto: HolopadServiceLibrary + entities: + - uid: 22468 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 +- proto: HolopadServiceMime + entities: + - uid: 12368 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 +- proto: HolopadServiceMusician + entities: + - uid: 22506 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 +- proto: HolopadServiceNewsroom + entities: + - uid: 22507 + components: + - type: Transform + pos: -55.5,-24.5 + parent: 2 - proto: HospitalCurtains entities: - uid: 6884 @@ -104611,8 +104993,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -104623,18 +105005,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15468 - - 15470 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 5047 components: - type: Transform @@ -104646,8 +105016,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -104658,18 +105028,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15471 - - 15472 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 5050 components: - type: Transform @@ -104681,8 +105039,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -104693,18 +105051,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 15605 - - 15629 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 5053 components: - type: Transform @@ -104716,8 +105062,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.7459903 - - 6.568249 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -104728,18 +105074,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 16013 - - 16116 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerSyndicatePersonal entities: - uid: 21051 @@ -104892,6 +105226,12 @@ entities: parent: 2 - proto: MachineFrame entities: + - uid: 3480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-38.5 + parent: 2 - uid: 7238 components: - type: Transform @@ -105459,11 +105799,6 @@ entities: - type: Transform pos: -31.664188,14.512749 parent: 2 - - uid: 3582 - components: - - type: Transform - pos: -31.195438,15.497125 - parent: 2 - proto: MiniGravityGeneratorCircuitboard entities: - uid: 21244 @@ -105685,6 +106020,11 @@ entities: parent: 2 - proto: MouseTimedSpawner entities: + - uid: 15629 + components: + - type: Transform + pos: -8.5,-36.5 + parent: 2 - uid: 16115 components: - type: Transform @@ -105695,11 +106035,6 @@ entities: - type: Transform pos: -30.5,22.5 parent: 2 - - uid: 16173 - components: - - type: Transform - pos: -7.5,-39.5 - parent: 2 - proto: Multitool entities: - uid: 9493 @@ -107139,6 +107474,11 @@ entities: - type: Transform pos: 72.5,-4.5 parent: 2 + - uid: 12922 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 - uid: 13239 components: - type: Transform @@ -107191,11 +107531,6 @@ entities: - type: Transform pos: 32.5,-2.5 parent: 2 - - uid: 15103 - components: - - type: Transform - pos: 36.5,-6.5 - parent: 2 - uid: 20231 components: - type: Transform @@ -107853,16 +108188,125 @@ entities: - type: Transform pos: 36.5,-32.5 parent: 2 - - uid: 16951 + - uid: 16490 components: - type: Transform - pos: -6.5,-41.5 + pos: -3.5,-41.5 parent: 2 - uid: 21249 components: - type: Transform pos: 7.5,2.5 parent: 21128 +- proto: PoweredDimSmallLight + entities: + - uid: 13176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-42.5 + parent: 2 + - uid: 15084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 58.5,-27.5 + parent: 2 + - uid: 15088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-45.5 + parent: 2 + - uid: 16951 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 21055 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 + - uid: 21376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,21.5 + parent: 2 + - uid: 21377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,36.5 + parent: 2 + - uid: 21406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,39.5 + parent: 2 + - uid: 21449 + components: + - type: Transform + pos: -6.5,14.5 + parent: 2 + - uid: 21452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - uid: 21594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,1.5 + parent: 2 + - uid: 21595 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 21863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 63.5,-2.5 + parent: 2 + - uid: 21864 + components: + - type: Transform + pos: 52.5,24.5 + parent: 2 + - uid: 21925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 81.5,-7.5 + parent: 2 + - uid: 21927 + components: + - type: Transform + pos: 19.5,-40.5 + parent: 2 + - uid: 21932 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - uid: 21939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-12.5 + parent: 2 + - uid: 21940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-32.5 + parent: 2 - proto: Poweredlight entities: - uid: 1043 @@ -108893,15 +109337,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 4318 - components: - - type: Transform - pos: 14.5,26.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 4343 components: - type: Transform @@ -109925,6 +110360,11 @@ entities: - type: Transform pos: 50.5,-18.5 parent: 2 + - uid: 13175 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 - uid: 13184 components: - type: Transform @@ -110280,11 +110720,6 @@ entities: rot: 3.141592653589793 rad pos: 36.5,-26.5 parent: 2 - - uid: 12922 - components: - - type: Transform - pos: -12.5,-36.5 - parent: 2 - uid: 14224 components: - type: Transform @@ -110387,16 +110822,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 16301 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,-27.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 16565 components: - type: Transform @@ -110423,11 +110848,6 @@ entities: rot: -1.5707963267948966 rad pos: 65.5,-35.5 parent: 2 - - uid: 16946 - components: - - type: Transform - pos: -4.5,-38.5 - parent: 2 - uid: 17215 components: - type: Transform @@ -110468,16 +110888,6 @@ entities: enabled: False - type: ApcPowerReceiver powerLoad: 0 - - uid: 21055 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,-44.5 - parent: 2 - - type: PointLight - enabled: False - - type: ApcPowerReceiver - powerLoad: 0 - uid: 21239 components: - type: Transform @@ -110518,6 +110928,11 @@ entities: - type: Transform pos: 2.5,-25.5 parent: 2 + - uid: 21936 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 - uid: 22037 components: - type: Transform @@ -110576,11 +110991,6 @@ entities: powerLoad: 0 - proto: Protolathe entities: - - uid: 1720 - components: - - type: Transform - pos: -5.5,-21.5 - parent: 2 - uid: 7139 components: - type: Transform @@ -111209,30 +111619,6 @@ entities: rot: 3.141592653589793 rad pos: 2.5,-22.5 parent: 2 - - uid: 1764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-15.5 - parent: 2 - - uid: 1765 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-15.5 - parent: 2 - - uid: 1766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-18.5 - parent: 2 - - uid: 1767 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-18.5 - parent: 2 - uid: 1768 components: - type: Transform @@ -112537,6 +112923,180 @@ entities: parent: 2 - proto: RandomPosterAny entities: + - uid: 15153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-35.5 + parent: 2 + - uid: 15154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 77.5,-21.5 + parent: 2 + - uid: 15192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 76.5,-21.5 + parent: 2 + - uid: 15271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-29.5 + parent: 2 + - uid: 15272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 65.5,-6.5 + parent: 2 + - uid: 15279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 62.5,13.5 + parent: 2 + - uid: 15283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,19.5 + parent: 2 + - uid: 15287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,19.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-36.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 2 + - uid: 15303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-38.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-40.5 + parent: 2 + - uid: 15311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-36.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-29.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-9.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-7.5 + parent: 2 + - uid: 15329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,20.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,26.5 + parent: 2 + - uid: 15337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,35.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,38.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,38.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,25.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,11.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 68.5,3.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 69.5,3.5 + parent: 2 + - uid: 15379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-19.5 + parent: 2 - uid: 17271 components: - type: Transform @@ -112549,12 +113109,6 @@ entities: parent: 2 - proto: RandomPosterContraband entities: - - uid: 8796 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-35.5 - parent: 2 - uid: 8797 components: - type: Transform @@ -112596,16 +113150,6 @@ entities: - type: Transform pos: 84.5,-19.5 parent: 2 - - uid: 15271 - components: - - type: Transform - pos: 76.5,-21.5 - parent: 2 - - uid: 15272 - components: - - type: Transform - pos: 77.5,-21.5 - parent: 2 - uid: 15273 components: - type: Transform @@ -112636,11 +113180,6 @@ entities: - type: Transform pos: 64.5,-31.5 parent: 2 - - uid: 15279 - components: - - type: Transform - pos: 60.5,-29.5 - parent: 2 - uid: 15281 components: - type: Transform @@ -112651,11 +113190,6 @@ entities: - type: Transform pos: 62.5,-10.5 parent: 2 - - uid: 15283 - components: - - type: Transform - pos: 65.5,-6.5 - parent: 2 - uid: 15284 components: - type: Transform @@ -112671,11 +113205,6 @@ entities: - type: Transform pos: 61.5,7.5 parent: 2 - - uid: 15287 - components: - - type: Transform - pos: 62.5,13.5 - parent: 2 - uid: 15288 components: - type: Transform @@ -112696,16 +113225,6 @@ entities: - type: Transform pos: 48.5,17.5 parent: 2 - - uid: 15292 - components: - - type: Transform - pos: 45.5,19.5 - parent: 2 - - uid: 15293 - components: - - type: Transform - pos: 46.5,19.5 - parent: 2 - uid: 15295 components: - type: Transform @@ -112746,21 +113265,11 @@ entities: - type: Transform pos: 16.5,-37.5 parent: 2 - - uid: 15303 - components: - - type: Transform - pos: 11.5,-36.5 - parent: 2 - uid: 15304 components: - type: Transform pos: 10.5,-36.5 parent: 2 - - uid: 15306 - components: - - type: Transform - pos: 6.5,-43.5 - parent: 2 - uid: 15307 components: - type: Transform @@ -112781,11 +113290,6 @@ entities: - type: Transform pos: 18.5,-39.5 parent: 2 - - uid: 15311 - components: - - type: Transform - pos: -8.5,-38.5 - parent: 2 - uid: 15312 components: - type: Transform @@ -112801,11 +113305,6 @@ entities: - type: Transform pos: -24.5,-42.5 parent: 2 - - uid: 15316 - components: - - type: Transform - pos: -34.5,-40.5 - parent: 2 - uid: 15317 components: - type: Transform @@ -112826,11 +113325,6 @@ entities: - type: Transform pos: -44.5,-35.5 parent: 2 - - uid: 15321 - components: - - type: Transform - pos: -53.5,-34.5 - parent: 2 - uid: 15322 components: - type: Transform @@ -112841,11 +113335,6 @@ entities: - type: Transform pos: -54.5,-32.5 parent: 2 - - uid: 15324 - components: - - type: Transform - pos: -62.5,-29.5 - parent: 2 - uid: 15325 components: - type: Transform @@ -112866,11 +113355,6 @@ entities: - type: Transform pos: -46.5,-11.5 parent: 2 - - uid: 15329 - components: - - type: Transform - pos: -43.5,-9.5 - parent: 2 - uid: 15330 components: - type: Transform @@ -112886,11 +113370,6 @@ entities: - type: Transform pos: -40.5,-21.5 parent: 2 - - uid: 15333 - components: - - type: Transform - pos: -30.5,-7.5 - parent: 2 - uid: 15334 components: - type: Transform @@ -112906,11 +113385,6 @@ entities: - type: Transform pos: -39.5,15.5 parent: 2 - - uid: 15337 - components: - - type: Transform - pos: -35.5,20.5 - parent: 2 - uid: 15338 components: - type: Transform @@ -112921,11 +113395,6 @@ entities: - type: Transform pos: -34.5,20.5 parent: 2 - - uid: 15340 - components: - - type: Transform - pos: -32.5,26.5 - parent: 2 - uid: 15341 components: - type: Transform @@ -112951,11 +113420,6 @@ entities: - type: Transform pos: -20.5,33.5 parent: 2 - - uid: 15346 - components: - - type: Transform - pos: -15.5,35.5 - parent: 2 - uid: 15347 components: - type: Transform @@ -112976,16 +113440,6 @@ entities: - type: Transform pos: 3.5,36.5 parent: 2 - - uid: 15351 - components: - - type: Transform - pos: 6.5,38.5 - parent: 2 - - uid: 15352 - components: - - type: Transform - pos: 7.5,38.5 - parent: 2 - uid: 15353 components: - type: Transform @@ -112996,11 +113450,6 @@ entities: - type: Transform pos: 10.5,30.5 parent: 2 - - uid: 15355 - components: - - type: Transform - pos: 8.5,25.5 - parent: 2 - uid: 15356 components: - type: Transform @@ -113046,26 +113495,11 @@ entities: - type: Transform pos: -12.5,15.5 parent: 2 - - uid: 15365 - components: - - type: Transform - pos: -13.5,17.5 - parent: 2 - - uid: 15366 - components: - - type: Transform - pos: -12.5,11.5 - parent: 2 - uid: 15367 components: - type: Transform pos: -8.5,13.5 parent: 2 - - uid: 15368 - components: - - type: Transform - pos: 4.5,13.5 - parent: 2 - uid: 15369 components: - type: Transform @@ -113081,11 +113515,6 @@ entities: - type: Transform pos: 16.5,10.5 parent: 2 - - uid: 15372 - components: - - type: Transform - pos: 16.5,5.5 - parent: 2 - uid: 15373 components: - type: Transform @@ -113116,16 +113545,6 @@ entities: - type: Transform pos: 8.5,-12.5 parent: 2 - - uid: 15379 - components: - - type: Transform - pos: 69.5,3.5 - parent: 2 - - uid: 15380 - components: - - type: Transform - pos: 68.5,3.5 - parent: 2 - uid: 15381 components: - type: Transform @@ -113171,11 +113590,6 @@ entities: - type: Transform pos: -14.5,-12.5 parent: 2 - - uid: 15390 - components: - - type: Transform - pos: -14.5,-19.5 - parent: 2 - uid: 15391 components: - type: Transform @@ -113201,11 +113615,6 @@ entities: - type: Transform pos: 7.5,-38.5 parent: 2 - - uid: 22503 - components: - - type: Transform - pos: -4.5,-42.5 - parent: 2 - proto: RandomPosterLegit entities: - uid: 1909 @@ -113591,12 +114000,6 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-2.5 parent: 2 - - uid: 8853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-5.5 - parent: 2 - uid: 8854 components: - type: Transform @@ -113956,6 +114359,12 @@ entities: - type: Transform pos: -8.5,-24.5 parent: 2 + - uid: 15390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-5.5 + parent: 2 - uid: 15976 components: - type: Transform @@ -114002,16 +114411,6 @@ entities: - type: Transform pos: -31.5,-5.5 parent: 2 - - uid: 21863 - components: - - type: Transform - pos: 62.5,-3.5 - parent: 2 - - uid: 21864 - components: - - type: Transform - pos: 62.5,-4.5 - parent: 2 - uid: 22402 components: - type: Transform @@ -114101,11 +114500,6 @@ entities: - type: Transform pos: -29.5,-3.5 parent: 2 - - uid: 21941 - components: - - type: Transform - pos: -3.5,-39.5 - parent: 2 - uid: 22400 components: - type: Transform @@ -114457,11 +114851,6 @@ entities: - type: Transform pos: 7.5,-33.5 parent: 2 - - uid: 1933 - components: - - type: Transform - pos: -25.5,21.5 - parent: 2 - uid: 1934 components: - type: Transform @@ -114774,6 +115163,11 @@ entities: - type: Transform pos: 19.5,22.5 parent: 2 + - uid: 1766 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 - uid: 1985 components: - type: Transform @@ -116317,11 +116711,6 @@ entities: - type: Transform pos: 30.5,-30.5 parent: 2 - - uid: 15192 - components: - - type: Transform - pos: -7.5,-42.5 - parent: 2 - uid: 15215 components: - type: Transform @@ -116602,6 +116991,16 @@ entities: - type: Transform pos: -49.5,-39.5 parent: 2 + - uid: 16946 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 16950 + components: + - type: Transform + pos: -68.5,-25.5 + parent: 2 - uid: 17015 components: - type: Transform @@ -116617,6 +117016,11 @@ entities: - type: Transform pos: 41.5,19.5 parent: 2 + - uid: 17164 + components: + - type: Transform + pos: -68.5,-24.5 + parent: 2 - uid: 17254 components: - type: Transform @@ -116731,11 +117135,6 @@ entities: - type: Transform pos: -0.5,-39.5 parent: 2 - - uid: 21595 - components: - - type: Transform - pos: -6.5,-42.5 - parent: 2 - proto: RemoteSignaller entities: - uid: 3270 @@ -117072,11 +117471,6 @@ entities: - type: Transform pos: 17.5,-66.5 parent: 2 - - uid: 22502 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 2 - proto: Screwdriver entities: - uid: 2052 @@ -117127,11 +117521,6 @@ entities: parent: 2 - proto: SheetGlass entities: - - uid: 2054 - components: - - type: Transform - pos: -5.303391,-23.421415 - parent: 2 - uid: 4395 components: - type: Transform @@ -117152,6 +117541,11 @@ entities: - type: Transform pos: -33.249187,38.611046 parent: 2 + - uid: 15605 + components: + - type: Transform + pos: -5.2842927,-23.414188 + parent: 2 - uid: 20556 components: - type: Transform @@ -117225,11 +117619,6 @@ entities: parent: 2 - type: Stack count: 15 - - uid: 2056 - components: - - type: Transform - pos: -5.037766,-23.452665 - parent: 2 - uid: 7159 components: - type: Transform @@ -117240,6 +117629,11 @@ entities: - type: Transform pos: -32.858562,38.579796 parent: 2 + - uid: 22527 + components: + - type: Transform + pos: -5.039681,-23.377497 + parent: 2 - uid: 23343 components: - type: Transform @@ -117261,11 +117655,6 @@ entities: - type: Transform pos: 23.549921,19.57574 parent: 2 - - uid: 2058 - components: - - type: Transform - pos: -5.490891,-23.421415 - parent: 2 - uid: 2059 components: - type: Transform @@ -117296,6 +117685,11 @@ entities: - type: Transform pos: -33.561687,38.65792 parent: 2 + - uid: 15955 + components: + - type: Transform + pos: -5.5411353,-23.426418 + parent: 2 - uid: 16653 components: - type: Transform @@ -117815,6 +118209,18 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-71.5 parent: 2 + - uid: 22452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,27.5 + parent: 2 + - uid: 22453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,28.5 + parent: 2 - uid: 22860 components: - type: Transform @@ -118277,6 +118683,8 @@ entities: parent: 2 - uid: 7798 components: + - type: MetaData + name: Blast doors button - type: Transform rot: -1.5707963267948966 rad pos: -34.5,35.5 @@ -118289,6 +118697,8 @@ entities: - Pressed: Toggle - uid: 8151 components: + - type: MetaData + name: Blast doors button - type: Transform rot: 1.5707963267948966 rad pos: -34.5,35.5 @@ -118535,6 +118945,8 @@ entities: - Pressed: Toggle - uid: 17461 components: + - type: MetaData + name: Shutters button - type: Transform rot: -1.5707963267948966 rad pos: 1.5,-27.5 @@ -118856,6 +119268,18 @@ entities: linkedPorts: 21877: - Pressed: Toggle + - uid: 22454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 22452: + - Pressed: Toggle + 22453: + - Pressed: Toggle - proto: SignAnomaly entities: - uid: 8366 @@ -119976,11 +120400,6 @@ entities: - type: Transform pos: 64.5,-48.5 parent: 2 - - uid: 21947 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 2 - uid: 21950 components: - type: Transform @@ -120181,12 +120600,6 @@ entities: - type: Transform pos: 36.5,-22.5 parent: 2 - - uid: 22507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-39.5 - parent: 2 - proto: SinkWide entities: - uid: 5258 @@ -121180,10 +121593,15 @@ entities: parent: 2 - proto: SpawnPointChef entities: - - uid: 16118 + - uid: 15956 components: - type: Transform - pos: -20.5,12.5 + pos: -22.5,13.5 + parent: 2 + - uid: 22505 + components: + - type: Transform + pos: -20.5,14.5 parent: 2 - proto: SpawnPointChemist entities: @@ -121313,10 +121731,10 @@ entities: - type: Transform pos: -33.5,-19.5 parent: 2 - - uid: 11067 + - uid: 8365 components: - type: Transform - pos: -33.5,5.5 + pos: -33.5,6.5 parent: 2 - proto: SpawnPointMusician entities: @@ -123749,17 +124167,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Memorial room - - uid: 21406 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-38.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Vox box - uid: 22393 components: - type: Transform @@ -125320,16 +125727,11 @@ entities: rot: 3.141592653589793 rad pos: -21.5,35.5 parent: 2 - - uid: 11085 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-40.5 - parent: 2 - - uid: 13176 + - uid: 11070 components: - type: Transform - pos: -6.5,-41.5 + rot: 3.141592653589793 rad + pos: -3.5,-41.5 parent: 2 - uid: 14240 components: @@ -125357,6 +125759,11 @@ entities: - type: Transform pos: -33.5,38.5 parent: 2 + - uid: 15471 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 - uid: 15620 components: - type: Transform @@ -125373,6 +125780,12 @@ entities: rot: -1.5707963267948966 rad pos: 58.5,26.5 parent: 2 + - uid: 16116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-40.5 + parent: 2 - uid: 16138 components: - type: Transform @@ -125506,16 +125919,6 @@ entities: rot: 1.5707963267948966 rad pos: 63.5,-32.5 parent: 2 - - uid: 21936 - components: - - type: Transform - pos: -3.5,-41.5 - parent: 2 - - uid: 21939 - components: - - type: Transform - pos: -4.5,-41.5 - parent: 2 - proto: TableCarpet entities: - uid: 2218 @@ -125697,6 +126100,16 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-27.5 parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -21.5,7.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 - uid: 16197 components: - type: Transform @@ -125715,25 +126128,6 @@ entities: rot: 1.5707963267948966 rad pos: 76.5,-24.5 parent: 2 -- proto: TableFancyRed - entities: - - uid: 3124 - components: - - type: Transform - pos: -20.5,7.5 - parent: 2 - - uid: 3490 - components: - - type: Transform - pos: -21.5,7.5 - parent: 2 -- proto: TableFrame - entities: - - uid: 16498 - components: - - type: Transform - pos: -66.5,-23.5 - parent: 2 - proto: TableReinforced entities: - uid: 182 @@ -127128,6 +127522,16 @@ entities: - type: Transform pos: 81.5,-23.5 parent: 2 + - uid: 16301 + components: + - type: Transform + pos: -66.5,-23.5 + parent: 2 + - uid: 16430 + components: + - type: Transform + pos: -36.5,5.5 + parent: 2 - uid: 16444 components: - type: Transform @@ -127169,11 +127573,6 @@ entities: - type: Transform pos: -30.5,5.5 parent: 2 - - uid: 21925 - components: - - type: Transform - pos: -36.5,5.5 - parent: 2 - uid: 21926 components: - type: Transform @@ -127285,15 +127684,15 @@ entities: - type: Transform pos: -33.5,35.5 parent: 2 - - uid: 15144 + - uid: 15145 components: - type: Transform - pos: -32.5,34.5 + pos: -32.5,35.5 parent: 2 - - uid: 15145 + - uid: 16431 components: - type: Transform - pos: -32.5,35.5 + pos: -32.5,34.5 parent: 2 - uid: 21205 components: @@ -127351,11 +127750,6 @@ entities: rot: 1.5707963267948966 rad pos: 61.5,4.5 parent: 2 - - uid: 11056 - components: - - type: Transform - pos: -5.5,-41.5 - parent: 2 - proto: ToiletEmpty entities: - uid: 2320 @@ -127897,7 +128291,7 @@ entities: - uid: 2343 components: - type: Transform - pos: -23.5,14.5 + pos: -25.5,21.5 parent: 2 - proto: VendingMachineCuraDrobe entities: @@ -127915,10 +128309,10 @@ entities: parent: 2 - proto: VendingMachineDinnerware entities: - - uid: 2344 + - uid: 4093 components: - type: Transform - pos: -18.5,12.5 + pos: -22.5,15.5 parent: 2 - proto: VendingMachineEngiDrobe entities: @@ -128080,10 +128474,10 @@ entities: - type: Transform pos: 36.5,22.5 parent: 2 - - uid: 15147 + - uid: 11085 components: - type: Transform - pos: -31.5,35.5 + pos: -31.5,34.5 parent: 2 - uid: 21929 components: @@ -128240,6 +128634,12 @@ entities: - type: Transform pos: -62.5,-21.5 parent: 2 + - uid: 1933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-41.5 + parent: 2 - uid: 2002 components: - type: Transform @@ -133180,11 +133580,6 @@ entities: - type: Transform pos: -2.5,-40.5 parent: 2 - - uid: 8203 - components: - - type: Transform - pos: -3.5,-42.5 - parent: 2 - uid: 8342 components: - type: Transform @@ -133359,6 +133754,12 @@ entities: - type: Transform pos: -39.5,-37.5 parent: 2 + - uid: 10278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-38.5 + parent: 2 - uid: 10638 components: - type: Transform @@ -133405,6 +133806,24 @@ entities: - type: Transform pos: 25.5,-66.5 parent: 2 + - uid: 11046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 2 + - uid: 11050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-42.5 + parent: 2 + - uid: 11056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-42.5 + parent: 2 - uid: 11665 components: - type: Transform @@ -133782,11 +134201,6 @@ entities: - type: Transform pos: 16.5,28.5 parent: 2 - - uid: 16430 - components: - - type: Transform - pos: -31.5,-46.5 - parent: 2 - uid: 16457 components: - type: Transform @@ -133812,11 +134226,6 @@ entities: - type: Transform pos: -68.5,-26.5 parent: 2 - - uid: 16490 - components: - - type: Transform - pos: -68.5,-24.5 - parent: 2 - uid: 16494 components: - type: Transform @@ -134240,11 +134649,6 @@ entities: rot: 3.141592653589793 rad pos: 87.5,-23.5 parent: 2 - - uid: 21185 - components: - - type: Transform - pos: -4.5,-42.5 - parent: 2 - uid: 21398 components: - type: Transform @@ -140017,6 +140421,18 @@ entities: - type: Transform pos: 14.5,-75.5 parent: 2 + - uid: 11049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 11067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-40.5 + parent: 2 - uid: 11666 components: - type: Transform @@ -140512,12 +140928,6 @@ entities: rot: 1.5707963267948966 rad pos: -68.5,-27.5 parent: 2 - - uid: 16431 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-25.5 - parent: 2 - uid: 16432 components: - type: Transform @@ -140867,11 +141277,6 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,21.5 parent: 2 - - uid: 20293 - components: - - type: Transform - pos: -5.5,-42.5 - parent: 2 - uid: 20302 components: - type: Transform @@ -143807,11 +144212,6 @@ entities: rot: -1.5707963267948966 rad pos: 7.5,18.5 parent: 2 - - uid: 15154 - components: - - type: Transform - pos: -5.5,-38.5 - parent: 2 - uid: 15165 components: - type: Transform @@ -143944,11 +144344,6 @@ entities: - type: Transform pos: -25.5,-42.5 parent: 2 - - uid: 17258 - components: - - type: Transform - pos: -5.5,-40.5 - parent: 2 - uid: 20110 components: - type: Transform @@ -146792,6 +147187,11 @@ entities: parent: 2 - proto: WeldingFuelTankFull entities: + - uid: 1764 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 - uid: 3481 components: - type: Transform @@ -146877,10 +147277,12 @@ entities: - type: Transform pos: 69.5,6.5 parent: 2 - - uid: 16753 +- proto: WetFloorSign + entities: + - uid: 20293 components: - type: Transform - pos: -3.5,-21.5 + pos: 13.757498,24.02221 parent: 2 - proto: Windoor entities: @@ -148506,11 +148908,4 @@ entities: - type: Transform pos: 23.433456,-65.575584 parent: 2 -- proto: Wristwatch - entities: - - uid: 4591 - components: - - type: Transform - pos: 11.5,39.5 - parent: 2 ... diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml new file mode 100644 index 000000000000..8bdfc5925f70 --- /dev/null +++ b/Resources/Maps/elkridge.yml @@ -0,0 +1,107904 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 5: FloorBlueCircuit + 7: FloorBrokenWood + 23: FloorCarpetClown + 32: FloorDark + 36: FloorDarkMini + 8: FloorDirt + 44: FloorEighties + 61: FloorHydro + 70: FloorMime + 10: FloorMining + 9: FloorMiningDark + 98: FloorSteel + 99: FloorSteelCheckerDark + 100: FloorSteelCheckerLight + 112: FloorTechMaint + 1: FloorTechMaint2 + 6: FloorTechMaint3 + 4: FloorWhite + 126: FloorWood + 3: FloorWoodTile + 2: Lattice + 130: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Map Entity + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + name: Elkridge Depot + - type: Transform + pos: -0.546875,-0.546875 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: YgAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADIAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAABYwAAAAADYwAAAAACYwAAAAABIAAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAAAIAAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACIAAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAAAfgAAAAADfgAAAAACBwAAAAACfgAAAAABfgAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAZAAAAAABZAAAAAACZAAAAAADggAAAAAAPQAAAAAAPQAAAAAAggAAAAAABwAAAAABfgAAAAACfgAAAAACfgAAAAACfgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAADZAAAAAABggAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAfgAAAAABfgAAAAACfgAAAAABBwAAAAADfgAAAAADfgAAAAABIAAAAAADIAAAAAACggAAAAAAZAAAAAABZAAAAAADZAAAAAAAAQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAfgAAAAAABwAAAAACfgAAAAAAfgAAAAADfgAAAAABfgAAAAADIAAAAAACIAAAAAADggAAAAAAZAAAAAABZAAAAAADZAAAAAACggAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAAQAAAAAAIAAAAAAAIAAAAAACggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAggAAAAAAIAAAAAAAIAAAAAACggAAAAAAJAAAAAADIAAAAAADJAAAAAABAQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAFwAAAAAARgAAAAAARgAAAAAALAAAAAAALAAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAJAAAAAADJAAAAAADJAAAAAAAggAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: YgAAAAABYgAAAAACAQAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAABAQAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAACBwAAAAABfgAAAAADAQAAAAAAggAAAAAABgAAAAADAQAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAACfgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAACggAAAAAAfgAAAAADBwAAAAAEggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAACggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAfgAAAAABfgAAAAAAAQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAACggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAABggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAACggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACggAAAAAAFwAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADggAAAAAAFwAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAAQAAAAAAYgAAAAACYgAAAAADYgAAAAADggAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADggAAAAAAFwAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACggAAAAAAAQAAAAAAYgAAAAABYgAAAAACYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAADBAAAAAABIAAAAAADggAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAADAQAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAADYgAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAAQAAAAAAIAAAAAADIAAAAAABIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAACggAAAAAAIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAACIAAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACIAAAAAABYwAAAAACYwAAAAABYwAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAACIAAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAACYgAAAAACIAAAAAADYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAAAIAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: YgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAABAQAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAABIAAAAAAAYgAAAAABYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAABYgAAAAABAQAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAACQAAAAAAIAAAAAADIAAAAAADggAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAADAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAADggAAAAAAAQAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAABggAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADAQAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAABYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAAB + version: 6 + 1,0: + ind: 1,0 + tiles: IAAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABAAAAAACBAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAAAAQAAAAAABAAAAAADBAAAAAAAPQAAAAAAcAAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAADggAAAAAABAAAAAABBAAAAAACBAAAAAACIAAAAAADBAAAAAACBAAAAAACggAAAAAABAAAAAACBAAAAAACPQAAAAAAcAAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAABAQAAAAAABAAAAAACBAAAAAAABAAAAAABIAAAAAAAIAAAAAABIAAAAAAAggAAAAAABAAAAAAABAAAAAACPQAAAAAAcAAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADAQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAADBAAAAAACBAAAAAABggAAAAAABAAAAAABBAAAAAAAPQAAAAAAPQAAAAAAIAAAAAAAYgAAAAAAYgAAAAABYgAAAAABAQAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAACAQAAAAAABAAAAAACBAAAAAAAPQAAAAAAPQAAAAAAIAAAAAADYgAAAAAAYgAAAAABYgAAAAACggAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAACPQAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAABPQAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAACIAAAAAAAIAAAAAAABAAAAAADBAAAAAACBAAAAAADggAAAAAAAQAAAAAAAQAAAAAAPQAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAACYgAAAAAAIAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAADggAAAAAABAAAAAABBAAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAACIAAAAAADBAAAAAACBAAAAAABBAAAAAABBAAAAAADggAAAAAABAAAAAAABAAAAAADYgAAAAACAQAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABAQAAAAAABAAAAAAABAAAAAABYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAABAQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABggAAAAAABAAAAAABBAAAAAADYgAAAAADAQAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACggAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABIAAAAAACBAAAAAACBAAAAAAD + version: 6 + 1,-1: + ind: 1,-1 + tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAcAAAAAAAIAAAAAAAYgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABAQAAAAAAcAAAAAAAIAAAAAADYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAIAAAAAACggAAAAAAcAAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIAAAAAABggAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAABggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAABAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAACggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAIAAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: BAAAAAACBAAAAAABBAAAAAABBAAAAAACAQAAAAAAIAAAAAAAIAAAAAABAQAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABAQAAAAAAAQAAAAAAIAAAAAAABAAAAAAABAAAAAAABAAAAAADAQAAAAAAIAAAAAAAIAAAAAACAQAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACAQAAAAAAAQAAAAAAIAAAAAABBAAAAAAABAAAAAACBAAAAAADggAAAAAAIAAAAAABIAAAAAACggAAAAAAYgAAAAABYgAAAAACYgAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAABAAAAAAABAAAAAABBAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAABggAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAAIAAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAABggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAADIAAAAAACYgAAAAABYgAAAAABYgAAAAABYgAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAggAAAAAAIAAAAAADIAAAAAACggAAAAAAYgAAAAACYgAAAAADYgAAAAADAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAABggAAAAAAIAAAAAABIAAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAABIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAACAQAAAAAAIAAAAAABIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAADggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAACIAAAAAABIAAAAAACIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAADYgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAABBwAAAAAAIAAAAAACIAAAAAADggAAAAAAYgAAAAADYgAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAABwAAAAADfgAAAAACfgAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAfgAAAAABfgAAAAADfgAAAAADIAAAAAACIAAAAAADggAAAAAAYgAAAAAAYgAAAAACAQAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAADggAAAAAAfgAAAAACfgAAAAAAfgAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADggAAAAAAYgAAAAADYgAAAAABYgAAAAACAQAAAAAAAQAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAACIAAAAAAAIAAAAAADIAAAAAABYgAAAAADAQAAAAAAAQAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAAQAAAAAAAQAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAIAAAAAADYgAAAAACYgAAAAADYgAAAAABAQAAAAAAAQAAAAAAYgAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAABggAAAAAAYgAAAAACYgAAAAADYgAAAAABAQAAAAAAAQAAAAAAYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADAQAAAAAAAQAAAAAAYgAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAADggAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAADcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAABgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADcAAAAAAAIAAAAAACAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABggAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADggAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACggAAAAAAAQAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACggAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAABAAAAAADggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAAAIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAADBAAAAAACBAAAAAABBAAAAAACBAAAAAAABAAAAAAAIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAACIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACggAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAADggAAAAAAIAAAAAADIAAAAAABIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAACAQAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAABBAAAAAADAQAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAADAQAAAAAABgAAAAABggAAAAAAggAAAAAABAAAAAABggAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAA + version: 6 + 1,-2: + ind: 1,-2 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAAAggAAAAAAAgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADggAAAAAABgAAAAADAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAADggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAADIAAAAAACggAAAAAAIAAAAAABAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAABgAAAAACAQAAAAAAAQAAAAAAIAAAAAAAAQAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAQAAAAAAAQAAAAAAIAAAAAACggAAAAAAIAAAAAACAQAAAAAABgAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAACIAAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAABggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAADIAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAABggAAAAAAIAAAAAAC + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAIAAAAAACIAAAAAACIAAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAABIAAAAAADIAAAAAABggAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAACYgAAAAACYgAAAAABYgAAAAAAYgAAAAABggAAAAAAIAAAAAABIAAAAAABIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAABggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAABIAAAAAABIAAAAAABAQAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABggAAAAAAYgAAAAADYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAACggAAAAAAYgAAAAACYgAAAAACggAAAAAAIAAAAAABIAAAAAACIAAAAAAAIAAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADggAAAAAAYgAAAAADYgAAAAACggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAADYgAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAABIAAAAAACggAAAAAAYgAAAAACYgAAAAABggAAAAAAIAAAAAACIAAAAAADIAAAAAAAAQAAAAAAYgAAAAADYgAAAAAAAQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAIAAAAAADIAAAAAACIAAAAAACggAAAAAAYgAAAAACYgAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAggAAAAAAIAAAAAADYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAggAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAACIAAAAAABIAAAAAABIAAAAAABIAAAAAACAQAAAAAAIAAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAADggAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAADggAAAAAAIAAAAAAD + version: 6 + -2,-2: + ind: -2,-2 + tiles: YgAAAAABYgAAAAACggAAAAAAIAAAAAABIAAAAAADggAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABggAAAAAAYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAggAAAAAAIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAYgAAAAACggAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADggAAAAAAYgAAAAAAAQAAAAAAIAAAAAACIAAAAAADAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAACIAAAAAABIAAAAAABAQAAAAAAYgAAAAACggAAAAAAIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAADIAAAAAACIAAAAAADIAAAAAAAggAAAAAAYgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAADggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAD + version: 6 + -2,-1: + ind: -2,-1 + tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAADggAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAACIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAADAQAAAAAAIAAAAAADIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABggAAAAAAIAAAAAAAIAAAAAABIAAAAAACggAAAAAAYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAACAQAAAAAAIAAAAAACIAAAAAACIAAAAAABAQAAAAAAYgAAAAABYgAAAAABcAAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAABIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACcAAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAACIAAAAAAAIAAAAAABIAAAAAABIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAABAQAAAAAAYgAAAAAAYgAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAAEfgAAAAAAIAAAAAABIAAAAAAAIAAAAAADggAAAAAAYgAAAAABYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAADIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAACYgAAAAADggAAAAAAcAAAAAAAcAAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAAC + version: 6 + -2,0: + ind: -2,0 + tiles: AgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADggAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAABAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAADcAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAACggAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAAC + version: 6 + 1,1: + ind: 1,1 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADggAAAAAABAAAAAAABAAAAAABAQAAAAAABgAAAAADggAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAABggAAAAAABAAAAAABBAAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAABggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAACBAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAACAQAAAAAABAAAAAAABAAAAAAABAAAAAACggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAggAAAAAAAQAAAAAAggAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABggAAAAAABAAAAAADBAAAAAACBAAAAAADggAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAACAQAAAAAABgAAAAADggAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAAAIAAAAAACIAAAAAABIAAAAAADggAAAAAABgAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAABgAAAAADAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAYwAAAAADYwAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAACYwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: ggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAACAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAADYwAAAAACYwAAAAABggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYwAAAAAAYwAAAAABYwAAAAADggAAAAAAYwAAAAABggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAACggAAAAAAggAAAAAABgAAAAAABgAAAAACggAAAAAAYgAAAAAAYgAAAAADYgAAAAADggAAAAAAIAAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAADYgAAAAADAQAAAAAAIAAAAAACIAAAAAACIAAAAAACggAAAAAAIAAAAAADIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACggAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAIAAAAAACIAAAAAACIAAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAACggAAAAAAIAAAAAACIAAAAAACIAAAAAADggAAAAAAYgAAAAADYgAAAAADYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAADAQAAAAAAYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAIAAAAAACIAAAAAACIAAAAAAAAQAAAAAAIAAAAAABIAAAAAABIAAAAAABggAAAAAAIAAAAAADIAAAAAAAIAAAAAADggAAAAAAYgAAAAACYgAAAAAAYgAAAAACggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAIAAAAAAD + version: 6 + -2,-3: + ind: -2,-3 + tiles: ggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAABIAAAAAAAggAAAAAAIAAAAAADIAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAACIAAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAYgAAAAABYgAAAAACggAAAAAAIAAAAAAAIAAAAAACggAAAAAAIAAAAAACIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADAQAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAACggAAAAAAggAAAAAAYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAggAAAAAAIAAAAAACYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAYgAAAAADYgAAAAABAQAAAAAAIAAAAAACIAAAAAADAQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAACYgAAAAAAYgAAAAAAggAAAAAAIAAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADggAAAAAAYgAAAAABYgAAAAAAggAAAAAAIAAAAAAAIAAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAACIAAAAAABggAAAAAAYgAAAAABYgAAAAAAggAAAAAAIAAAAAABIAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAADIAAAAAABIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAADIAAAAAABIAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAACIAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABIAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: YgAAAAABYgAAAAADYgAAAAAAAQAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAABYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAAQAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAwAAAAAAAwAAAAAABwAAAAABAwAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAABfgAAAAACfgAAAAACBwAAAAABAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAABBwAAAAABBwAAAAACfgAAAAADAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAAAfgAAAAACfgAAAAADBwAAAAACAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAABBwAAAAAEfgAAAAADfgAAAAABAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAACfgAAAAABBwAAAAAGfgAAAAABAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAwAAAAAAAwAAAAADAwAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -3,1: + ind: -3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABggAAAAAAIAAAAAAAIAAAAAADIAAAAAADggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAIAAAAAACIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAABAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABIAAAAAAAAQAAAAAAIAAAAAADBQAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAA + version: 6 + 1,-4: + ind: 1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + version: 6 + 2,-4: + ind: 2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,0: + ind: -3,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: AAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAADAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAADAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAAAggAAAAAAIAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAACggAAAAAAIAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAggAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAABYgAAAAADYgAAAAAAYgAAAAACAQAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAADggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAggAAAAAAIAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAAAggAAAAAAIAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAABggAAAAAAIAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAADIAAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAADIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAADZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAACZAAAAAAAZAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAABggAAAAAAggAAAAAAggAAAAAA + version: 6 + -1,-4: + ind: -1,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-4: + ind: -2,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -3,-4: + ind: -3,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: YgAAAAABYgAAAAADYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAABYgAAAAACggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-2: + ind: -5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-3: + ind: -5,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -4,-3: + ind: -4,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAABIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAADAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABAAAAAADBAAAAAACggAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADBAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABAAAAAAABAAAAAACAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAABAAAAAADBAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABAAAAAABBAAAAAABggAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: ggAAAAAAggAAAAAABgAAAAACAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAACggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAABAQAAAAAAAQAAAAAAYgAAAAABIAAAAAADIAAAAAABIAAAAAADggAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAABIAAAAAADIAAAAAAAIAAAAAACggAAAAAAYgAAAAACYgAAAAACcAAAAAAAcAAAAAAAYgAAAAACcAAAAAAAcAAAAAAAYgAAAAACYgAAAAACcAAAAAAAcAAAAAAAYgAAAAABggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAACcAAAAAAAcAAAAAAAYgAAAAADYgAAAAAAcAAAAAAAcAAAAAAAYgAAAAADIAAAAAAAIAAAAAADIAAAAAACggAAAAAAYgAAAAACYgAAAAABcAAAAAAAcAAAAAAAYgAAAAACcAAAAAAAcAAAAAAAYgAAAAAAYgAAAAADcAAAAAAAcAAAAAAAYgAAAAACIAAAAAAAIAAAAAABIAAAAAABAQAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAACYgAAAAABIAAAAAAAIAAAAAABIAAAAAADggAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAADYgAAAAABYgAAAAAAIAAAAAABIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAYgAAAAACggAAAAAAIAAAAAADIAAAAAACIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAZAAAAAADZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADggAAAAAAIAAAAAADIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAZAAAAAACZAAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAQAAAAAAIAAAAAACIAAAAAAAIAAAAAABIAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAACggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAADggAAAAAAAQAAAAAAggAAAAAAggAAAAAAZAAAAAADZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABAQAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAYgAAAAABggAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAADIAAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAACggAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAADYgAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAAAggAAAAAABgAAAAABggAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAABYgAAAAABYgAAAAAAYgAAAAABggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAABYgAAAAADggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAABYgAAAAACYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAAQAAAAAAYgAAAAAAYgAAAAADYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAA + version: 6 + 2,2: + ind: 2,2 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,2: + ind: 3,2 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,2: + ind: -2,2 + tiles: IAAAAAABggAAAAAAIAAAAAACIAAAAAAAIAAAAAACggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,2: + ind: -3,2 + tiles: AgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABQAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAACggAAAAAAIAAAAAADIAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAABggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACggAAAAAAIAAAAAACIAAAAAAAIAAAAAACggAAAAAAIAAAAAADIAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABggAAAAAAIAAAAAADBQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,2: + ind: -4,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAA + version: 6 + 3,-3: + ind: 3,-3 + tiles: AAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,3: + ind: -1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA + version: 6 + -2,3: + ind: -2,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA + version: 6 + 1,3: + ind: 1,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-4: + ind: 0,-4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,3: + ind: 2,3 + tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,4: + ind: -2,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,4: + ind: -1,4 + tiles: AAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -5,-1: + ind: -5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: BecomesStation + id: Elkridge + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -3.141592653589793 rad + color: '#D4D4D496' + id: Arrows + decals: + 6156: 8.96915,-15.426538 + - node: + color: '#D4D4D496' + id: Arrows + decals: + 6155: 6,-15 + - node: + angle: 1.5707963267948966 rad + color: '#D4D4D496' + id: Arrows + decals: + 5572: 43,-22 + 5573: 43,-21 + 5574: 43,-20 + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 6311: -21.43506,24.035395 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 6310: -21,26 + - node: + angle: 1.5707963267948966 rad + color: '#D4D4D428' + id: Bot + decals: + 6151: 6,-16 + 6152: 7,-16 + 6153: 8,-16 + 6154: 9,-16 + - node: + color: '#D4D4D496' + id: Bot + decals: + 5430: 13,37 + 5431: 13,36 + 5432: 13,35 + 5433: 14,35 + 5434: 14,36 + 5435: 14,37 + 6583: 30,-16 + - node: + color: '#D4D4D496' + id: BotGreyscale + decals: + 5419: 6,36 + 5420: 6,35 + 5421: 7,35 + 5422: 7,36 + 5423: 7,37 + 5424: 9,37 + 5425: 9,36 + 5426: 9,35 + 5427: 10,35 + 5428: 10,36 + 5429: 10,37 + 5499: 35,-7 + 5500: 36,-7 + 5501: 37,-7 + 5502: 42,13 + 5503: 42,12 + 5504: 42,11 + 5505: 40,15 + 5506: 41,15 + 5507: 42,15 + 5508: 43,15 + 5515: 42,8 + 5516: 10,21 + 5517: 11,21 + 5518: 11,19 + 5519: 10,19 + 5520: 24,40 + 5521: 24,39 + 5522: -11,24 + 5523: -10,24 + 5524: -10,26 + 5525: -11,26 + 5526: -17,23 + 5527: -13,23 + 5528: -17,25 + 5529: -13,25 + 5530: -25,17 + 5531: -24,17 + 5532: -36,32 + 5533: -36,30 + 5553: -31,-22 + 5554: -3,-29 + 5559: -13,-40 + 5560: 17,-17 + 5561: 18,-17 + 5562: 19,-17 + 5563: 19,-20 + 5564: 18,-20 + 5565: 17,-20 + 5566: 42,-17 + 5567: 30,25 + 5568: -18,6 + 5569: -27,0 + 5570: -5,-33 + 5571: -4,-33 + - node: + angle: 1.5707963267948966 rad + color: '#D4D4D496' + id: BotGreyscale + decals: + 5442: 6,37 + - node: + color: '#9FED5896' + id: BrickTileDarkCornerNe + decals: + 401: 7,10 + 798: -23,-26 + 799: -21,-19 + 800: -19,-20 + 830: -20,-25 + - node: + color: '#9FED5896' + id: BrickTileDarkCornerNw + decals: + 402: 6,10 + 795: -26,-20 + 796: -22,-19 + 797: -25,-26 + 840: -21,-25 + 1425: -20,-13 + - node: + color: '#9FED5896' + id: BrickTileDarkCornerSe + decals: + 403: 7,5 + 818: -19,-27 + 1420: -16,-14 + - node: + color: '#9FED5896' + id: BrickTileDarkCornerSw + decals: + 404: 6,5 + 804: -26,-24 + 805: -25,-27 + 836: -22,-24 + 1426: -20,-14 + - node: + color: '#9FED5896' + id: BrickTileDarkEndE + decals: + 1415: -15,-13 + - node: + color: '#9FED5896' + id: BrickTileDarkEndN + decals: + 756: -43,-7 + - node: + color: '#9FED5896' + id: BrickTileDarkEndS + decals: + 757: -43,-9 + - node: + color: '#9FED5896' + id: BrickTileDarkInnerNe + decals: + 829: -20,-26 + 837: -21,-20 + 838: -23,-27 + - node: + color: '#9FED5896' + id: BrickTileDarkInnerNw + decals: + 412: 6,8 + 828: -19,-26 + 846: -21,-27 + - node: + color: '#9FED5896' + id: BrickTileDarkInnerSe + decals: + 848: -20,-24 + 1421: -16,-13 + - node: + color: '#9FED5896' + id: BrickTileDarkInnerSw + decals: + 413: 6,8 + 831: -19,-24 + 847: -21,-24 + - node: + color: '#9FED5896' + id: BrickTileDarkLineE + decals: + 408: 7,9 + 409: 7,8 + 410: 7,7 + 411: 7,6 + 759: -43,-8 + 812: -19,-21 + 813: -19,-22 + 814: -19,-23 + 815: -19,-24 + 816: -19,-25 + 817: -19,-26 + - node: + color: '#9FED5896' + id: BrickTileDarkLineN + decals: + 819: -25,-20 + 820: -24,-20 + 821: -23,-20 + 822: -20,-20 + 845: -24,-26 + 1416: -19,-13 + 1417: -18,-13 + 1418: -17,-13 + 1419: -16,-13 + - node: + color: '#9FED5896' + id: BrickTileDarkLineS + decals: + 806: -25,-24 + 807: -24,-24 + 808: -23,-24 + 841: -21,-27 + 842: -20,-27 + 843: -24,-27 + 844: -23,-27 + 1422: -19,-14 + 1423: -18,-14 + 1424: -17,-14 + - node: + color: '#9FED5896' + id: BrickTileDarkLineW + decals: + 405: 6,6 + 406: 6,7 + 407: 6,9 + 758: -43,-8 + 801: -26,-21 + 802: -26,-22 + 803: -26,-23 + 827: -19,-25 + 832: -22,-20 + 833: -22,-21 + 834: -22,-22 + 835: -22,-23 + 839: -21,-26 + - node: + color: '#334E6DC8' + id: BrickTileSteelCornerNe + decals: + 211: -11,-33 + 212: -11,-39 + 569: -17,8 + 570: -13,11 + 621: -29,-6 + 632: -40,-12 + 673: -25,1 + 674: -25,-2 + 780: -30,-9 + 1307: 32,23 + 1308: 32,26 + 1335: 13,-17 + 1336: 10,-22 + 1465: 2,40 + 1466: 2,35 + 6179: 42,-15 + 6180: 39,-15 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerNe + decals: + 731: -39,-9 + 1292: 43,15 + - node: + color: '#79150096' + id: BrickTileSteelCornerNe + decals: + 232: 3,-5 + 233: 6,-5 + 234: 7,-6 + - node: + color: '#8C347F96' + id: BrickTileSteelCornerNe + decals: + 5667: -4,10 + - node: + color: '#8D1C9996' + id: BrickTileSteelCornerNe + decals: + 1042: 24,40 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerNe + decals: + 200: -3,-37 + 335: -3,3 + 346: 6,3 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNe + decals: + 417: -10,18 + 525: -14,25 + 526: -24,17 + 527: -25,12 + 745: -35,-9 + 6330: -14,27 + - node: + color: '#D4D4D496' + id: BrickTileSteelCornerNe + decals: + 4021: 19,-18 + 4024: -10,26 + 5336: -3,-41 + 6281: -23,-34 + 6396: 14,1 + 6460: 4,21 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNe + decals: + 11: -6,-25 + 12: -2,-25 + 13: -2,-21 + 15: 2,-17 + 16: -3,-17 + 18: -12,-20 + 19: -11,-21 + 56: -7,-33 + 738: -37,-9 + 877: -34,-34 + 894: -18,-42 + 902: 20,-9 + 918: -2,30 + 5368: -15,-33 + - node: + color: '#334E6DC8' + id: BrickTileSteelCornerNw + decals: + 213: -13,-33 + 214: -13,-39 + 571: -15,11 + 572: -18,8 + 613: -43,-6 + 630: -56,-12 + 675: -27,1 + 676: -27,-2 + 779: -33,-9 + 1309: 30,26 + 1310: 28,23 + 1337: 7,-18 + 1338: 11,-17 + 1339: 8,-22 + 1467: 0,40 + 1468: 0,35 + 6181: 41,-15 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerNw + decals: + 732: -40,-9 + 1097: 19,19 + 1099: 40,15 + - node: + color: '#79150096' + id: BrickTileSteelCornerNw + decals: + 235: 5,-5 + 236: -2,-5 + - node: + color: '#8C347F96' + id: BrickTileSteelCornerNw + decals: + 389: -6,10 + - node: + color: '#8D1C9996' + id: BrickTileSteelCornerNw + decals: + 1043: 18,40 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerNw + decals: + 202: -5,-37 + 336: -5,3 + 337: 5,3 + - node: + color: '#D381C996' + id: BrickTileSteelCornerNw + decals: + 418: -11,18 + 522: -16,25 + 528: -28,17 + 529: -27,12 + 549: -18,12 + 743: -36,-9 + 6329: -16,27 + - node: + color: '#D4D4D496' + id: BrickTileSteelCornerNw + decals: + 295: 8,1 + 4025: -11,26 + 5337: -5,-41 + 6280: -26,-34 + 6461: 3,21 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerNw + decals: + 4: -13,-20 + 5: -6,-21 + 6: -5,-17 + 7: -1,-17 + 9: -9,-33 + 739: -38,-9 + 878: -37,-34 + 891: -23,-42 + 903: 18,-9 + 917: -4,30 + 5369: -18,-33 + - node: + color: '#334E6DC8' + id: BrickTileSteelCornerSe + decals: + 215: -11,-37 + 216: -11,-40 + 573: -13,7 + 574: -17,6 + 627: -29,-12 + 628: -40,-13 + 629: -45,-14 + 677: -25,-6 + 678: -25,0 + 792: -30,-12 + 1311: 32,21 + 1312: 32,25 + 1347: 10,-23 + 1348: 13,-20 + 1469: 2,37 + 1470: 2,34 + 6182: 42,-17 + 6183: 39,-17 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSe + decals: + 733: -39,-10 + 1100: 22,17 + 1101: 42,11 + 1102: 43,14 + - node: + color: '#79150096' + id: BrickTileSteelCornerSe + decals: + 237: 3,-7 + 238: 2,-8 + 239: 7,-7 + - node: + color: '#8D1C9996' + id: BrickTileSteelCornerSe + decals: + 1060: 21,34 + 1061: 24,39 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerSe + decals: + 205: -3,-39 + 344: 6,-3 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSe + decals: + 422: -10,16 + 524: -14,23 + 530: -25,11 + 531: -24,14 + 553: -17,10 + 742: -35,-10 + - node: + color: '#D4D4D496' + id: BrickTileSteelCornerSe + decals: + 297: 11,-4 + 298: 14,-2 + 4022: 19,-19 + 4023: -10,24 + 5338: -3,-42 + 6462: 4,19 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerSe + decals: + 20: -6,-31 + 21: -2,-29 + 23: -2,-23 + 24: -3,-19 + 25: 2,-19 + 27: -11,-23 + 28: -7,-36 + 741: -37,-10 + 879: -34,-36 + 892: -18,-44 + 904: 20,-12 + 919: -2,27 + - node: + color: '#334E6DC8' + id: BrickTileSteelCornerSw + decals: + 217: -13,-37 + 218: -13,-40 + 575: -18,6 + 609: -43,-10 + 610: -51,-14 + 631: -56,-13 + 679: -27,0 + 680: -27,-6 + 793: -33,-12 + 794: -34,-12 + 1313: 28,21 + 1314: 30,25 + 1354: 7,-20 + 1355: 8,-23 + 1471: 0,34 + 1472: 0,37 + 6184: 41,-17 + - node: + color: '#52B4E996' + id: BrickTileSteelCornerSw + decals: + 734: -40,-10 + 1103: 19,17 + - node: + color: '#79150096' + id: BrickTileSteelCornerSw + decals: + 240: -2,-7 + 241: -1,-8 + 242: 5,-7 + - node: + color: '#8C347F96' + id: BrickTileSteelCornerSw + decals: + 5643: -6,5 + - node: + color: '#8D1C9996' + id: BrickTileSteelCornerSw + decals: + 1062: 18,34 + - node: + color: '#9FED5896' + id: BrickTileSteelCornerSw + decals: + 206: -5,-39 + 343: -3,-3 + 370: -5,-2 + - node: + color: '#D381C996' + id: BrickTileSteelCornerSw + decals: + 421: -11,16 + 523: -16,23 + 532: -27,11 + 533: -28,14 + 552: -18,10 + 744: -36,-10 + - node: + color: '#D4D4D496' + id: BrickTileSteelCornerSw + decals: + 299: 8,-4 + 4026: -11,24 + 5339: -5,-42 + 6459: 3,19 + - node: + color: '#DE3A3A96' + id: BrickTileSteelCornerSw + decals: + 29: -9,-36 + 30: -13,-23 + 31: -6,-23 + 32: -4,-29 + 33: -5,-19 + 34: -1,-19 + 740: -38,-10 + 880: -37,-36 + 893: -23,-44 + 905: 18,-12 + 920: -4,27 + - node: + color: '#A4610696' + id: BrickTileSteelEndE + decals: + 747: -36,-6 + - node: + color: '#D381C996' + id: BrickTileSteelEndE + decals: + 6331: -13,26 + - node: + color: '#EFB34196' + id: BrickTileSteelEndE + decals: + 753: -40,-6 + - node: + color: '#D381C996' + id: BrickTileSteelEndN + decals: + 496: -13,25 + 497: -17,25 + - node: + color: '#D381C996' + id: BrickTileSteelEndS + decals: + 501: -17,23 + 502: -13,23 + - node: + color: '#DE3A3A96' + id: BrickTileSteelEndS + decals: + 5374: -18,-36 + 5375: -15,-36 + - node: + color: '#A4610696' + id: BrickTileSteelEndW + decals: + 746: -38,-6 + - node: + color: '#D381C996' + id: BrickTileSteelEndW + decals: + 6328: -17,26 + - node: + color: '#EFB34196' + id: BrickTileSteelEndW + decals: + 752: -42,-6 + - node: + color: '#334E6DC8' + id: BrickTileSteelInnerNe + decals: + 229: -11,-34 + 230: -12,-39 + 580: -14,11 + 581: -17,7 + 685: -26,-2 + 686: -25,-5 + 694: -29,-8 + 1326: 31,23 + 1340: 9,-22 + 1474: 1,35 + 1475: 2,38 + - node: + cleanable: True + color: '#334E6DC8' + id: BrickTileSteelInnerNe + decals: + 3605: -29,-10 + 3606: -25,-10 + 3608: -41,-12 + - node: + color: '#79150096' + id: BrickTileSteelInnerNe + decals: + 253: 3,-6 + 259: 6,-6 + - node: + color: '#8C347F96' + id: BrickTileSteelInnerNe + decals: + 5680: -5,10 + - node: + color: '#9FED5896' + id: BrickTileSteelInnerNe + decals: + 198: -3,-38 + 372: -3,2 + 4001: -20,-16 + - node: + color: '#D381C996' + id: BrickTileSteelInnerNe + decals: + 505: -17,24 + 516: -15,25 + 517: -14,24 + 534: -24,16 + 535: -26,12 + 6339: -14,26 + - node: + color: '#D4D4D496' + id: BrickTileSteelInnerNe + decals: + 318: 10,1 + 4115: -34,30 + 5341: -4,-41 + 6398: 13,3 + - node: + color: '#DE3A3A96' + id: BrickTileSteelInnerNe + decals: + 98: -8,-25 + 100: -4,-25 + 101: -4,-21 + 102: -3,-18 + 103: -8,-22 + 104: -8,-33 + 105: -2,-22 + 132: -12,-21 + 197: -7,-34 + 4052: -11,-22 + - node: + color: '#334E6DC8' + id: BrickTileSteelInnerNw + decals: + 231: -12,-39 + 577: -14,11 + 578: -15,7 + 684: -26,-2 + 1325: 31,23 + 1341: 9,-22 + 1353: 11,-18 + 1473: 1,35 + 4005: -42,-12 + - node: + cleanable: True + color: '#334E6DC8' + id: BrickTileSteelInnerNw + decals: + 3604: -27,-10 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerNw + decals: + 1115: 40,14 + - node: + color: '#79150096' + id: BrickTileSteelInnerNw + decals: + 254: 5,-6 + - node: + color: '#8C347F96' + id: BrickTileSteelInnerNw + decals: + 5679: -5,10 + - node: + color: '#8D1C9996' + id: BrickTileSteelInnerNw + decals: + 1055: 18,38 + - node: + color: '#9FED5896' + id: BrickTileSteelInnerNw + decals: + 373: 5,2 + 4000: -16,-16 + 4003: -14,-14 + - node: + color: '#D381C996' + id: BrickTileSteelInnerNw + decals: + 507: -13,24 + 514: -16,24 + 515: -15,25 + 536: -26,12 + 554: -17,12 + 6338: -16,26 + - node: + color: '#D4D4D496' + id: BrickTileSteelInnerNw + decals: + 316: 10,1 + 4116: -32,30 + 5340: -4,-41 + - node: + color: '#DE3A3A96' + id: BrickTileSteelInnerNw + decals: + 122: -9,-31 + 123: -9,-34 + 124: -8,-33 + 125: -9,-27 + 126: -9,-22 + 127: -6,-22 + 128: -4,-21 + 130: -1,-18 + 5383: -15,-37 + - node: + color: '#334E6DC8' + id: BrickTileSteelInnerSe + decals: + 226: -12,-37 + 227: -11,-34 + 582: -17,7 + 585: -25,-5 + 587: -25,-8 + 588: -29,-8 + 589: -29,-10 + 593: -45,-13 + 594: -53,-13 + 595: -55,-13 + 692: -26,0 + 1323: 31,25 + 1324: 29,21 + 1359: 9,-20 + 1478: 1,37 + 1479: 2,38 + 6257: -41,-8 + 6263: -39,-8 + 6264: -37,-8 + 6265: -35,-8 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerSe + decals: + 1112: 42,14 + 1113: 40,11 + 1121: 22,19 + - node: + color: '#79150096' + id: BrickTileSteelInnerSe + decals: + 255: 2,-7 + 256: 3,-6 + - node: + color: '#8D1C9996' + id: BrickTileSteelInnerSe + decals: + 1053: 21,39 + - node: + color: '#9FED5896' + id: BrickTileSteelInnerSe + decals: + 199: -3,-38 + 5345: -4,-39 + 5885: -30,-40 + - node: + color: '#D381C996' + id: BrickTileSteelInnerSe + decals: + 509: -17,24 + 513: -14,24 + 520: -15,23 + 537: -24,15 + 538: -26,14 + 6337: -15,26 + - node: + color: '#D4D4D496' + id: BrickTileSteelInnerSe + decals: + 286: 13,9 + 287: 16,7 + 319: 11,-2 + 4114: -34,32 + - node: + color: '#DE3A3A96' + id: BrickTileSteelInnerSe + decals: + 106: -2,-22 + 107: -11,-22 + 108: -8,-22 + 110: -3,-18 + 111: -4,-23 + 121: -7,-34 + 5387: -18,-35 + - node: + color: '#334E6DC8' + id: BrickTileSteelInnerSw + decals: + 228: -12,-37 + 611: -42,-10 + 691: -26,0 + 1321: 29,21 + 1322: 31,25 + 1360: 9,-20 + 1477: 1,37 + 4006: -51,-13 + 5542: -34,-8 + 6260: -39,-8 + 6261: -37,-8 + 6262: -35,-8 + - node: + cleanable: True + color: '#334E6DC8' + id: BrickTileSteelInnerSw + decals: + 3607: -27,-8 + 3738: -53,-13 + 3739: -55,-13 + - node: + color: '#52B4E996' + id: BrickTileSteelInnerSw + decals: + 1114: 40,14 + - node: + color: '#79150096' + id: BrickTileSteelInnerSw + decals: + 257: -1,-7 + 258: 5,-6 + - node: + color: '#8C347F96' + id: BrickTileSteelInnerSw + decals: + 5646: -4,5 + - node: + color: '#8D1C9996' + id: BrickTileSteelInnerSw + decals: + 1054: 18,38 + - node: + color: '#9FED5896' + id: BrickTileSteelInnerSw + decals: + 374: -3,-2 + 5344: -4,-39 + 5884: -27,-40 + - node: + color: '#D381C996' + id: BrickTileSteelInnerSw + decals: + 511: -13,24 + 512: -16,24 + 521: -15,23 + 539: -26,14 + 6336: -15,26 + - node: + color: '#D4D4D496' + id: BrickTileSteelInnerSw + decals: + 288: 16,9 + 4051: 0,-35 + 4113: -32,32 + - node: + color: '#DE3A3A96' + id: BrickTileSteelInnerSw + decals: + 112: -4,-23 + 113: -9,-22 + 115: -4,-19 + 116: -1,-18 + 118: -8,-31 + 119: -9,-27 + 120: -9,-34 + 131: -6,-22 + 5376: -15,-35 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineE + decals: + 224: -11,-35 + 225: -11,-36 + 566: -13,10 + 567: -13,9 + 568: -13,8 + 622: -29,-7 + 623: -29,-11 + 682: -25,-3 + 683: -25,-4 + 695: -29,-9 + 696: -25,-9 + 789: -30,-10 + 791: -30,-11 + 1327: 32,22 + 1356: 13,-18 + 1357: 13,-19 + 1476: 2,39 + 6258: -41,-9 + 6259: -41,-10 + - node: + color: '#43990996' + id: BrickTileSteelLineE + decals: + 4101: -38,34 + - node: + color: '#52B4E996' + id: BrickTileSteelLineE + decals: + 1108: 42,13 + 1109: 42,12 + 1120: 22,18 + - node: + color: '#8C347F96' + id: BrickTileSteelLineE + decals: + 5640: -4,7 + 5641: -4,6 + 5642: -4,5 + 5666: -4,8 + 5678: -4,9 + - node: + color: '#8D1C9996' + id: BrickTileSteelLineE + decals: + 1063: 21,35 + 1064: 21,36 + 1065: 21,37 + 1066: 21,38 + - node: + color: '#9FED5896' + id: BrickTileSteelLineE + decals: + 347: 6,2 + 348: 6,1 + 349: 6,0 + 350: 6,-1 + 351: 6,-2 + 4104: -38,27 + - node: + color: '#D381C996' + id: BrickTileSteelLineE + decals: + 420: -10,17 + 504: -13,24 + 550: -17,12 + 551: -17,11 + 4102: -38,28 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineE + decals: + 266: 13,4 + 267: 13,5 + 268: 13,6 + 269: 13,7 + 270: 13,8 + 271: 16,4 + 272: 16,5 + 273: 16,6 + 309: 14,0 + 310: 14,-1 + 311: 11,-3 + 4028: -10,25 + 4111: -34,31 + 6464: 4,20 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineE + decals: + 57: -7,-35 + 58: -6,-30 + 59: -6,-29 + 60: -6,-28 + 61: -6,-27 + 62: -6,-26 + 63: -8,-24 + 64: -8,-23 + 65: -8,-21 + 67: 2,-18 + 74: -2,-26 + 75: -2,-27 + 76: -2,-28 + 884: -34,-35 + 896: -18,-43 + 909: 20,-10 + 910: 20,-11 + 911: -2,29 + 912: -2,28 + 5364: -15,-34 + 5365: -15,-35 + 5835: -8,-17 + 5836: -8,-18 + 5837: -8,-19 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineN + decals: + 219: -12,-33 + 614: -39,-6 + 615: -35,-6 + 616: -34,-6 + 617: -33,-6 + 618: -32,-6 + 619: -31,-6 + 620: -30,-6 + 633: -55,-12 + 634: -54,-12 + 635: -53,-12 + 636: -52,-12 + 637: -51,-12 + 638: -50,-12 + 639: -49,-12 + 640: -48,-12 + 641: -47,-12 + 642: -46,-12 + 643: -45,-12 + 644: -44,-12 + 645: -43,-12 + 646: -27,-8 + 647: -26,-8 + 648: -25,-8 + 649: -26,1 + 785: -32,-9 + 786: -31,-9 + 1315: 31,26 + 1316: 29,23 + 1317: 30,23 + 1349: 12,-17 + 1350: 8,-18 + 1351: 9,-18 + 1352: 10,-18 + 1461: 1,40 + 6193: 36,-15 + 6194: 37,-15 + 6195: 38,-15 + - node: + color: '#52B4E996' + id: BrickTileSteelLineN + decals: + 1094: 22,19 + 1095: 21,19 + 1096: 20,19 + 1110: 41,15 + 1291: 42,15 + 4095: 29,-4 + - node: + color: '#79150096' + id: BrickTileSteelLineN + decals: + 246: -1,-5 + 247: 0,-5 + 250: 1,-5 + 251: 2,-5 + - node: + color: '#8D1C9996' + id: BrickTileSteelLineN + decals: + 1044: 19,40 + 1045: 20,40 + 1046: 21,40 + 1047: 22,40 + 4029: 23,40 + - node: + color: '#9FED5896' + id: BrickTileSteelLineN + decals: + 201: -4,-37 + 352: -2,2 + 353: -1,2 + 354: 0,2 + 355: 1,2 + 356: 2,2 + 357: 3,2 + 358: 4,2 + 371: -4,3 + 3997: -19,-16 + 3998: -18,-16 + 3999: -17,-16 + 4088: 28,-4 + - node: + color: '#A4610696' + id: BrickTileSteelLineN + decals: + 749: -37,-6 + 4097: 30,-4 + - node: + color: '#D381C996' + id: BrickTileSteelLineN + decals: + 543: -27,17 + 544: -26,17 + 545: -25,17 + 6342: -15,27 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineN + decals: + 305: 9,1 + 306: 11,1 + 307: 12,1 + 4015: 17,-18 + 4020: 18,-18 + 4106: -34,34 + 4107: -33,34 + 4108: -32,34 + 4109: -33,30 + 6282: -25,-34 + 6283: -24,-34 + 6395: 13,1 + 6397: 14,3 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineN + decals: + 77: -5,-21 + 78: -3,-21 + 80: 0,-17 + 81: 1,-17 + 82: -4,-17 + 85: -3,-25 + 99: -7,-25 + 882: -36,-34 + 883: -35,-34 + 897: -22,-42 + 898: -21,-42 + 899: -20,-42 + 900: -19,-42 + 901: 19,-9 + 916: -3,30 + 4086: 26,-4 + 5370: -17,-33 + 5371: -16,-33 + 5380: -17,-37 + 5381: -16,-37 + - node: + color: '#EFB34196' + id: BrickTileSteelLineN + decals: + 750: -41,-6 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineS + decals: + 223: -12,-40 + 565: -14,7 + 576: -15,7 + 596: -54,-13 + 597: -52,-13 + 598: -50,-14 + 599: -49,-14 + 600: -48,-14 + 601: -47,-14 + 602: -46,-14 + 603: -44,-13 + 604: -43,-13 + 605: -42,-13 + 606: -41,-13 + 655: -27,-10 + 656: -26,-10 + 657: -25,-10 + 681: -26,-6 + 728: -32,-12 + 729: -31,-12 + 1319: 30,21 + 1320: 31,21 + 1342: 8,-20 + 1343: 9,-23 + 1344: 10,-20 + 1345: 11,-20 + 1346: 12,-20 + 1462: 1,34 + 6190: 36,-17 + 6191: 37,-17 + 6192: 38,-17 + 6254: -36,-8 + 6255: -38,-8 + 6256: -40,-8 + - node: + color: '#3EB38896' + id: BrickTileSteelLineS + decals: + 4046: 31,-25 + 4047: 32,-25 + 4048: 35,-25 + 4050: 36,-25 + - node: + color: '#43990996' + id: BrickTileSteelLineS + decals: + 4096: 30,-2 + - node: + color: '#52B4E996' + id: BrickTileSteelLineS + decals: + 1107: 41,11 + 6455: 20,17 + 6456: 21,17 + - node: + color: '#79150096' + id: BrickTileSteelLineS + decals: + 243: 0,-8 + 244: 1,-8 + 245: 6,-7 + - node: + color: '#8C347F96' + id: BrickTileSteelLineS + decals: + 5647: -5,5 + - node: + color: '#8D1C9996' + id: BrickTileSteelLineS + decals: + 1049: 19,34 + 1050: 20,34 + 1051: 22,39 + 1052: 23,39 + - node: + color: '#9FED5896' + id: BrickTileSteelLineS + decals: + 359: -2,-3 + 360: -1,-3 + 363: 0,-3 + 364: 1,-3 + 365: 2,-3 + 366: 3,-3 + 367: 4,-3 + 368: 5,-3 + 369: -4,-2 + 5882: -29,-40 + 5883: -28,-40 + - node: + color: '#A4610696' + id: BrickTileSteelLineS + decals: + 748: -37,-6 + - node: + color: '#D381C996' + id: BrickTileSteelLineS + decals: + 540: -26,11 + 541: -27,14 + 542: -25,14 + 4089: 28,-2 + 6340: -16,26 + 6341: -14,26 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineS + decals: + 280: 14,9 + 281: 15,9 + 282: 17,7 + 312: 9,-4 + 313: 10,-4 + 314: 12,-2 + 315: 13,-2 + 4018: 17,-19 + 4019: 18,-19 + 4112: -33,32 + 5342: -4,-42 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineS + decals: + 86: -8,-36 + 87: -7,-31 + 88: -9,-31 + 89: -3,-29 + 91: -3,-23 + 92: -5,-23 + 93: 0,-19 + 94: 1,-19 + 95: -12,-23 + 885: -35,-36 + 886: -36,-36 + 887: -20,-44 + 888: -19,-44 + 889: -21,-44 + 890: -22,-44 + 906: 19,-12 + 913: -3,27 + 5372: -17,-35 + 5373: -16,-35 + - node: + color: '#EFB34196' + id: BrickTileSteelLineS + decals: + 751: -41,-6 + 4094: 29,-2 + - node: + color: '#334E6DC8' + id: BrickTileSteelLineW + decals: + 220: -13,-34 + 221: -13,-35 + 222: -13,-36 + 561: -18,7 + 562: -15,10 + 563: -15,9 + 564: -15,8 + 624: -34,-11 + 658: -27,-9 + 670: -27,-3 + 671: -27,-4 + 672: -27,-5 + 787: -33,-10 + 788: -33,-11 + 1318: 28,22 + 1358: 7,-19 + 1463: 0,39 + 1464: 0,38 + 5543: -34,-9 + 5544: -34,-10 + - node: + color: '#52B4E996' + id: BrickTileSteelLineW + decals: + 1104: 40,11 + 1105: 40,12 + 1106: 40,13 + 1119: 19,18 + 4100: -36,34 + - node: + color: '#79150096' + id: BrickTileSteelLineW + decals: + 252: -2,-6 + - node: + color: '#8C347F96' + id: BrickTileSteelLineW + decals: + 387: -6,9 + 388: -6,8 + 5644: -6,6 + 5645: -6,7 + - node: + color: '#8D1C9996' + id: BrickTileSteelLineW + decals: + 1056: 18,39 + 1057: 18,37 + 1058: 18,36 + 1059: 18,35 + - node: + color: '#9FED5896' + id: BrickTileSteelLineW + decals: + 338: -5,2 + 339: -5,1 + 340: -5,0 + 345: -5,-1 + 4002: -14,-13 + 5343: -5,-38 + 5765: 19,1 + 5766: 19,0 + 5767: 19,-1 + 5787: 19,2 + 5788: 19,-2 + - node: + color: '#A4610696' + id: BrickTileSteelLineW + decals: + 4105: -36,27 + - node: + color: '#D381C996' + id: BrickTileSteelLineW + decals: + 419: -11,17 + 503: -17,24 + 546: -28,16 + 547: -28,15 + 548: -18,11 + - node: + color: '#D4D4D496' + id: BrickTileSteelLineW + decals: + 274: 16,4 + 275: 16,5 + 276: 16,6 + 277: 16,7 + 278: 16,8 + 301: 8,0 + 302: 8,-1 + 303: 8,-2 + 304: 8,-3 + 4027: -11,25 + 4110: -32,31 + 6463: 3,20 + - node: + color: '#DE3A3A96' + id: BrickTileSteelLineW + decals: + 38: -5,-18 + 43: -4,-25 + 44: -4,-26 + 45: -4,-27 + 46: -4,-28 + 47: -9,-21 + 48: -9,-23 + 49: -9,-24 + 50: -9,-25 + 51: -9,-26 + 52: -9,-28 + 53: -9,-29 + 54: -9,-30 + 55: -9,-35 + 96: -13,-21 + 97: -13,-22 + 881: -37,-35 + 895: -23,-43 + 907: 18,-11 + 908: 18,-10 + 914: -4,28 + 915: -4,29 + 4103: -36,28 + 5385: -18,-34 + 5386: -18,-35 + 5832: -9,-17 + 5833: -9,-18 + 5834: -9,-19 + - node: + color: '#EFB34196' + id: BrickTileSteelLineW + decals: + 4099: -36,35 + - node: + color: '#43990996' + id: BrickTileWhiteCornerNe + decals: + 1076: 22,26 + 1077: 26,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 1143: 26,20 + 1144: 33,19 + 1145: 40,19 + 1146: 38,15 + 1148: 38,5 + 1149: 28,4 + 1156: 32,15 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 970: 8,30 + 971: 15,31 + 972: 15,25 + 973: 16,39 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNe + decals: + 427: -11,21 + 429: -19,26 + - node: + color: '#D4D4D428' + id: BrickTileWhiteCornerNe + decals: + 134: -11,-29 + 135: -11,-25 + 173: 4,-33 + 174: 4,-37 + 176: -3,-33 + 921: -2,22 + 946: 14,21 + 1361: 16,-17 + 1375: -25,-42 + 1376: -31,-42 + 1402: -28,-31 + 1427: -14,-6 + 4721: -30,-23 + - node: + color: '#D4D4D496' + id: BrickTileWhiteCornerNe + decals: + 327: 11,6 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerNe + decals: + 1122: 28,16 + - node: + color: '#43990996' + id: BrickTileWhiteCornerNw + decals: + 1078: 21,26 + 1079: 19,24 + 1080: 24,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 1150: 27,4 + 1152: 34,5 + 1153: 34,15 + 1154: 35,19 + 1155: 24,20 + 1205: 23,8 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNw + decals: + 974: 4,39 + 975: 5,30 + 977: 12,31 + 979: 10,25 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerNw + decals: + 431: -22,22 + 432: -21,26 + - node: + color: '#D4D4D428' + id: BrickTileWhiteCornerNw + decals: + 136: -13,-25 + 137: -13,-29 + 177: -5,-33 + 178: -1,-33 + 179: -1,-37 + 922: -4,22 + 947: 12,21 + 1362: 15,-17 + 1377: -32,-42 + 1378: -26,-42 + 1399: -29,-31 + 1406: -29,-34 + 1428: -18,-6 + 4722: -31,-23 + - node: + color: '#D4D4D496' + id: BrickTileWhiteCornerNw + decals: + 325: 9,6 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerNw + decals: + 1127: 24,16 + - node: + color: '#43990996' + id: BrickTileWhiteCornerSe + decals: + 1081: 22,21 + 1082: 26,22 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 1157: 32,13 + 1158: 33,17 + 1159: 40,17 + 1160: 38,13 + 1161: 40,7 + 1162: 38,3 + 1163: 32,3 + 1164: 28,2 + 1202: 25,4 + 1203: 28,6 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSe + decals: + 993: 10,32 + 994: 15,27 + 995: 15,23 + 1013: 16,33 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSe + decals: + 425: -13,13 + 426: -11,20 + 436: -19,20 + - node: + color: '#D4D4D428' + id: BrickTileWhiteCornerSe + decals: + 138: -11,-31 + 139: -11,-27 + 180: -3,-35 + 181: 4,-39 + 182: 4,-35 + 928: -2,19 + 951: 14,19 + 1365: 16,-20 + 1379: -31,-44 + 1380: -25,-44 + 1392: -28,-36 + 1393: -23,-36 + 1429: -14,-9 + 1600: -30,-25 + - node: + color: '#D4D4D496' + id: BrickTileWhiteCornerSe + decals: + 328: 11,3 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerSe + decals: + 1123: 28,10 + - node: + color: '#43990996' + id: BrickTileWhiteCornerSw + decals: + 1083: 19,21 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 1165: 27,2 + 1166: 34,3 + 1167: 24,18 + 1168: 35,17 + 1204: 23,4 + 1246: 34,13 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerSw + decals: + 954: 4,32 + 4073: 12,27 + 4079: 5,23 + - node: + color: '#D381C996' + id: BrickTileWhiteCornerSw + decals: + 433: -22,14 + 434: -17,20 + 435: -22,20 + 445: -15,13 + - node: + color: '#D4D4D428' + id: BrickTileWhiteCornerSw + decals: + 140: -13,-31 + 141: -13,-27 + 183: -5,-35 + 184: -1,-35 + 185: -1,-39 + 930: -4,19 + 952: 12,19 + 1366: 15,-20 + 1381: -32,-44 + 1384: -26,-44 + 1401: -29,-36 + 1403: -29,-32 + 1404: -26,-36 + 1430: -18,-9 + 1599: -31,-25 + - node: + color: '#D4D4D496' + id: BrickTileWhiteCornerSw + decals: + 329: 9,3 + - node: + color: '#FA750096' + id: BrickTileWhiteCornerSw + decals: + 1124: 26,10 + 1125: 25,11 + 1126: 24,14 + - node: + color: '#D4D4D428' + id: BrickTileWhiteEndN + decals: + 1440: -16,-5 + - node: + color: '#43990996' + id: BrickTileWhiteInnerNe + decals: + 1093: 22,22 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 1191: 32,4 + 1196: 28,3 + 1261: 32,14 + 1262: 38,14 + 1264: 31,9 + 1265: 33,18 + 1271: 31,15 + 1301: 26,19 + 1302: 29,19 + 4031: 25,20 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNe + decals: + 1027: 8,24 + 1039: 7,30 + 1040: 16,38 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNe + decals: + 487: -15,21 + 488: -13,17 + 490: -19,21 + - node: + color: '#D4D4D428' + id: BrickTileWhiteInnerNe + decals: + 186: -3,-34 + 187: 0,-37 + 1413: -28,-35 + 1442: -16,-6 + - node: + color: '#FA750096' + id: BrickTileWhiteInnerNe + decals: + 1142: 28,13 + - node: + color: '#43990996' + id: BrickTileWhiteInnerNw + decals: + 1089: 21,24 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNw + decals: + 1192: 34,4 + 1195: 30,3 + 1258: 30,8 + 1259: 34,14 + 1260: 30,13 + 1263: 40,9 + 1267: 24,19 + 1268: 35,18 + 1300: 29,19 + 4030: 25,20 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNw + decals: + 1028: 10,24 + 1031: 6,30 + 1038: 4,38 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerNw + decals: + 491: -21,22 + 493: -15,16 + 494: -15,21 + - node: + color: '#D4D4D428' + id: BrickTileWhiteInnerNw + decals: + 188: -5,-34 + 189: -1,-34 + 190: 0,-37 + 196: -1,-38 + 1411: -28,-34 + 1412: -26,-35 + 1441: -16,-6 + 1602: -31,-24 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 1618: 5,-15 + - node: + color: '#43990996' + id: BrickTileWhiteInnerSe + decals: + 1090: 22,22 + 1091: 25,22 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 1190: 32,4 + 1197: 28,3 + 1211: 28,7 + 1212: 25,6 + 1220: 32,7 + 1253: 38,14 + 1254: 32,14 + 1269: 33,18 + 1270: 31,17 + 1272: 31,13 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSe + decals: + 1034: 7,32 + 1035: 16,38 + 1041: 10,33 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSe + decals: + 476: -13,16 + 477: -14,13 + 478: -17,14 + 479: -13,20 + 480: -19,21 + - node: + color: '#D4D4D428' + id: BrickTileWhiteInnerSe + decals: + 191: 0,-35 + 192: -3,-34 + 1414: -28,-35 + - node: + color: '#FA750096' + id: BrickTileWhiteInnerSe + decals: + 1141: 28,13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 3992: 10,-15 + - node: + color: '#43990996' + id: BrickTileWhiteInnerSw + decals: + 1092: 25,22 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 1188: 34,4 + 1189: 30,7 + 1255: 34,14 + 1256: 30,13 + 1273: 24,19 + 1274: 35,18 + 1281: 30,18 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerSw + decals: + 1036: 4,38 + 1037: 6,32 + - node: + color: '#D381C996' + id: BrickTileWhiteInnerSw + decals: + 481: -17,21 + 482: -15,20 + 483: -15,14 + 484: -17,14 + 485: -14,13 + 486: -22,15 + 5809: -8,23 + - node: + color: '#D4D4D428' + id: BrickTileWhiteInnerSw + decals: + 193: -5,-34 + 194: -1,-34 + 195: -1,-38 + 1409: -28,-32 + 1410: -26,-35 + 1603: -31,-24 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 1627: 20,-7 + - node: + color: '#FA750096' + id: BrickTileWhiteInnerSw + decals: + 1139: 25,14 + 1140: 26,11 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 4098: -38,35 + - node: + color: '#43990996' + id: BrickTileWhiteLineE + decals: + 1070: 22,25 + 1071: 22,24 + 1072: 22,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 1169: 40,18 + 1171: 40,8 + 1172: 32,5 + 1173: 32,6 + 1174: 38,4 + 1184: 40,9 + 1215: 25,5 + 1303: 31,16 + 1304: 31,12 + 1305: 31,11 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 1014: 16,34 + 1015: 16,35 + 1016: 16,36 + 1017: 16,37 + 1018: 15,30 + 1019: 15,29 + 1020: 15,28 + 1021: 8,29 + 1022: 8,28 + 1023: 8,27 + 1024: 8,26 + 1025: 8,25 + 1029: 15,24 + - node: + color: '#D381C996' + id: BrickTileWhiteLineE + decals: + 448: -19,23 + 449: -19,22 + 450: -19,24 + 452: -13,19 + 453: -13,18 + 454: -13,15 + 455: -13,14 + 6312: -19,25 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineE + decals: + 142: -11,-26 + 143: -11,-30 + 162: 4,-34 + 163: 4,-38 + 943: -2,21 + 944: -2,20 + 945: 14,20 + 1363: 16,-18 + 1364: 16,-19 + 1382: -31,-43 + 1383: -25,-43 + 1394: -28,-32 + 1397: -23,-35 + 1398: -28,-34 + 1431: -14,-7 + 1432: -14,-8 + 1601: -30,-24 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineE + decals: + 331: 11,5 + 332: 11,4 + - node: + color: '#FA750096' + id: BrickTileWhiteLineE + decals: + 1129: 28,15 + 1130: 28,14 + 1131: 28,12 + 1132: 28,11 + - node: + color: '#43990996' + id: BrickTileWhiteLineN + decals: + 1087: 20,24 + 1088: 25,23 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 1175: 32,9 + 1180: 39,9 + 1181: 35,5 + 1182: 36,5 + 1183: 37,5 + 1206: 24,8 + 1207: 25,8 + 1208: 26,8 + 1209: 27,8 + 1210: 28,8 + 1228: 33,9 + 1229: 34,9 + 1230: 35,9 + 1231: 36,9 + 1232: 37,9 + 1233: 38,9 + 1250: 35,15 + 1251: 36,15 + 1282: 27,19 + 1283: 28,19 + 1284: 30,19 + 1285: 31,19 + 1286: 32,19 + 1287: 36,19 + 1288: 37,19 + 1289: 38,19 + 1290: 39,19 + 6305: 37,15 + - node: + color: '#A4610696' + id: BrickTileWhiteLineN + decals: + 980: 11,25 + 981: 12,25 + 982: 5,39 + 983: 8,39 + 984: 11,39 + 985: 12,39 + 986: 13,39 + 987: 14,39 + 988: 15,39 + 989: 10,39 + 992: 6,39 + 1026: 9,24 + 5801: 6,20 + 5802: 7,20 + - node: + color: '#D381C996' + id: BrickTileWhiteLineN + decals: + 456: -18,16 + 457: -17,16 + 458: -16,16 + 461: -20,26 + 462: -17,21 + 463: -16,21 + 464: -14,21 + 465: -13,21 + 466: -12,21 + 4061: -22,16 + 4062: -21,16 + 4063: -20,16 + 4064: -19,16 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineN + decals: + 144: -12,-25 + 145: -12,-29 + 164: 0,-33 + 165: 1,-33 + 166: 2,-33 + 167: 3,-33 + 168: -4,-33 + 169: 1,-37 + 170: 2,-37 + 171: 3,-37 + 923: -3,22 + 949: 13,21 + 1438: -17,-6 + 1439: -15,-6 + 1457: -43,28 + 1458: -42,28 + 1459: -41,28 + 1460: -40,28 + 4093: 27,-4 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineN + decals: + 326: 10,6 + - node: + color: '#FA750096' + id: BrickTileWhiteLineN + decals: + 1133: 25,16 + 1134: 26,16 + 1135: 27,16 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 1614: 6,-15 + 1615: 7,-15 + 1616: 8,-15 + 1617: 9,-15 + 4084: 26,-2 + 6595: -17,-2 + 6596: -16,-2 + 6597: -15,-2 + - node: + color: '#43990996' + id: BrickTileWhiteLineS + decals: + 1084: 20,21 + 1085: 21,21 + 1086: 24,22 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 1185: 35,3 + 1186: 36,3 + 1187: 37,3 + 1193: 31,3 + 1194: 30,3 + 1213: 26,6 + 1214: 27,6 + 1216: 24,4 + 1221: 33,7 + 1222: 35,7 + 1223: 34,7 + 1224: 36,7 + 1225: 37,7 + 1226: 38,7 + 1227: 39,7 + 1247: 35,13 + 1248: 36,13 + 1249: 37,13 + 1276: 25,18 + 1277: 26,18 + 1278: 27,18 + 1279: 28,18 + 1280: 29,18 + 1299: 32,17 + 4391: 36,17 + 4392: 37,17 + 4393: 38,17 + 4394: 39,17 + - node: + color: '#A4610696' + id: BrickTileWhiteLineS + decals: + 997: 8,23 + 998: 9,23 + 999: 10,23 + 1000: 11,23 + 1001: 12,23 + 1002: 13,23 + 1003: 14,23 + 1004: 7,23 + 1005: 6,23 + 1006: 5,32 + 1007: 8,32 + 1008: 9,32 + 1009: 11,33 + 1010: 12,33 + 1011: 15,33 + - node: + color: '#D381C996' + id: BrickTileWhiteLineS + decals: + 467: -21,14 + 468: -19,14 + 469: -20,14 + 470: -18,14 + 471: -16,14 + 472: -16,20 + 473: -20,20 + 474: -21,20 + 475: -12,20 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineS + decals: + 148: -12,-31 + 149: -12,-27 + 150: 1,-35 + 151: 2,-35 + 152: 3,-35 + 153: 2,-39 + 155: 1,-39 + 156: 0,-39 + 160: 3,-39 + 161: -4,-35 + 936: -3,19 + 950: 13,19 + 1390: -25,-36 + 1391: -24,-36 + 1435: -17,-9 + 1437: -15,-9 + 1453: -43,34 + 1454: -42,34 + 1455: -41,34 + 1456: -40,34 + 4092: 27,-2 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineS + decals: + 330: 10,3 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteLineS + decals: + 1626: 19,-7 + - node: + color: '#FA750096' + id: BrickTileWhiteLineS + decals: + 1136: 27,10 + - node: + color: '#43990996' + id: BrickTileWhiteLineW + decals: + 1073: 21,25 + 1074: 19,23 + 1075: 19,22 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineW + decals: + 1198: 27,3 + 1199: 23,5 + 1200: 23,6 + 1201: 23,7 + 1217: 30,4 + 1218: 30,5 + 1219: 30,6 + 1257: 30,9 + 1293: 30,17 + 1294: 30,16 + 1295: 30,15 + 1296: 30,14 + 1297: 30,12 + 1298: 30,11 + - node: + color: '#A4610696' + id: BrickTileWhiteLineW + decals: + 955: 4,33 + 956: 4,34 + 957: 4,35 + 958: 4,36 + 959: 4,37 + 963: 5,26 + 967: 5,27 + 968: 5,28 + 969: 5,29 + 4074: 12,28 + 4075: 12,29 + 4076: 12,30 + 4077: 5,25 + 4078: 5,24 + - node: + color: '#D381C996' + id: BrickTileWhiteLineW + decals: + 437: -22,21 + 438: -21,23 + 439: -21,24 + 440: -21,25 + 441: -15,19 + 442: -15,18 + 443: -15,17 + 5806: -8,20 + 5807: -8,21 + 5808: -8,22 + - node: + color: '#D4D4D428' + id: BrickTileWhiteLineW + decals: + 146: -13,-30 + 147: -13,-26 + 932: -4,20 + 933: -4,21 + 948: 12,20 + 1367: 15,-19 + 1368: 15,-18 + 1385: -32,-43 + 1386: -26,-43 + 1387: -29,-35 + 1433: -18,-8 + 1434: -18,-7 + 1443: -16,19 + 1444: -16,18 + 1445: -16,17 + 1448: -39,33 + 1449: -39,32 + 1450: -39,31 + 1451: -39,30 + 1452: -39,29 + - node: + color: '#D4D4D496' + id: BrickTileWhiteLineW + decals: + 333: 9,4 + 334: 9,5 + - node: + color: '#FA750096' + id: BrickTileWhiteLineW + decals: + 1128: 24,15 + 1137: 25,12 + 1138: 25,13 + - node: + color: '#334E6DC8' + id: CheckerNESW + decals: + 5941: 6,-16 + 5942: 7,-16 + 5943: 8,-16 + 5944: 9,-16 + - node: + color: '#4D1D4793' + id: CheckerNESW + decals: + 5675: -3,10 + 5676: -3,9 + 5677: -3,8 + - node: + color: '#52B4E996' + id: CheckerNESW + decals: + 1234: 33,11 + 1235: 33,10 + 1236: 34,10 + 1237: 34,11 + 1238: 35,11 + 1239: 35,10 + 1240: 36,10 + 1241: 36,11 + 1242: 37,11 + 1243: 37,10 + 1244: 38,10 + 1245: 38,11 + - node: + color: '#537A2E93' + id: CheckerNESW + decals: + 5878: -29,-41 + 5879: -29,-42 + 5880: -28,-42 + 5881: -28,-41 + - node: + color: '#547C2F93' + id: CheckerNESW + decals: + 5750: 18,2 + 5751: 17,2 + 5754: 17,1 + 5755: 18,1 + 5756: 18,0 + 5757: 17,0 + 5760: 17,-1 + 5761: 18,-1 + 5762: 18,-2 + 5763: 17,-2 + - node: + color: '#722C1E93' + id: CheckerNESW + decals: + 5850: -10,-17 + 5851: -10,-18 + 5852: -10,-19 + 5853: -7,-17 + 5854: -7,-18 + 5855: -7,-19 + - node: + color: '#A4610696' + id: CheckerNESW + decals: + 4065: 10,30 + 4066: 11,30 + 4067: 11,29 + 4068: 10,29 + 4069: 10,28 + 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 + 5804: -9,21 + 5805: -9,22 + 5810: -9,20 + - node: + color: '#D4D4D428' + id: CheckerNESW + decals: + 6284: -26,-33 + 6285: -26,-32 + 6286: -25,-32 + 6287: -25,-33 + 6288: -24,-33 + 6289: -24,-32 + 6290: -23,-32 + 6291: -23,-33 + - node: + color: '#1C2A3AC6' + id: CheckerNWSE + decals: + 5932: -32,-10 + 5933: -31,-10 + 5934: -32,-11 + 5935: -31,-11 + - node: + cleanable: True + color: '#571212FF' + id: Damaged + decals: + 6352: -11,58 + - node: + color: '#D4D4D496' + id: Delivery + decals: + 5534: -16,-9 + 6431: 0,-24 + 6433: 2,-24 + 6434: 2,-25 + 6439: 0,-25 + - node: + color: '#D4D4D496' + id: DeliveryGreyscale + decals: + 5509: 35,15 + 6276: -19,-7 + 6277: -19,-8 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 5346: -5,-38 + 5347: -5,-42 + 5351: -4,-42 + 5352: -3,-41 + 5355: 1,-40 + 5356: 1,-41 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1644: -8,3 + 1721: -13,13 + 1722: -11,20 + 1724: -19,20 + 1725: -14,23 + 1726: -24,15 + 1727: -13,7 + 1728: -17,6 + 1729: -17,10 + 1733: 0,1 + 1734: 4,-1 + 1735: 2,0 + 1736: 2,-3 + 1737: 6,-3 + 1738: 7,3 + 1739: 10,-2 + 1741: 14,-2 + 1742: 11,3 + 1743: 16,4 + 1744: 17,7 + 1745: 18,8 + 1746: 15,9 + 1747: 11,10 + 1748: 10,8 + 1749: 2,9 + 1751: -7,-8 + 1753: -4,-11 + 1754: -1,-10 + 1755: -5,-5 + 1756: -4,-3 + 1757: 10,-8 + 1758: 15,-4 + 1759: 3,-7 + 1760: -1,-8 + 2087: -18,-6 + 2088: -18,-9 + 2091: -25,-10 + 2092: -27,-8 + 2093: -25,-5 + 2094: -27,-3 + 2095: -25,-2 + 2096: -27,1 + 2100: -15,-7 + 2101: -15,-8 + 2102: -19,-14 + 2103: -16,-13 + 2104: -16,-14 + 2105: -20,-13 + 2108: -13,-18 + 2111: -5,-13 + 2112: 1,-15 + 2113: 0,-13 + 2114: 5,-12 + 2115: 9,-15 + 2116: 6,-15 + 2117: 14,-15 + 2119: 15,-12 + 2120: 16,-14 + 2122: 19,-7 + 2123: 21,-6 + 2124: 22,-8 + 2128: 21,-3 + 2132: 22,0 + 2133: 21,3 + 2135: 23,4 + 2136: 25,6 + 2137: 24,8 + 2138: 27,8 + 2139: 29,7 + 2140: 28,6 + 2141: 22,11 + 2142: 19,10 + 2143: 18,10 + 2144: 18,12 + 2148: 13,15 + 2149: 15,17 + 2150: 10,17 + 2151: 11,16 + 2152: 6,18 + 2153: 7,17 + 2155: 8,20 + 2157: 6,24 + 2160: 15,23 + 2161: 14,23 + 2162: 15,25 + 2163: 15,27 + 2164: 15,30 + 2167: 7,30 + 2168: 6,30 + 2169: 6,33 + 2170: 9,34 + 2171: 7,34 + 2174: 11,39 + 2175: 12,39 + 2176: 16,39 + 2177: 16,37 + 2178: 21,39 + 2179: 19,38 + 2180: 20,35 + 2181: 18,34 + 2182: 21,36 + 2183: 18,39 + 2185: 2,40 + 2186: 0,38 + 2187: 0,37 + 2188: 0,35 + 2189: 4,37 + 2190: -3,30 + 2191: -3,28 + 2192: -4,27 + 2193: -6,27 + 2194: -8,25 + 2195: -11,26 + 2196: -13,19 + 2197: -15,15 + 2198: -12,21 + 2199: -13,11 + 2200: -27,15 + 2201: -25,31 + 2202: -29,31 + 2203: -31,31 + 2204: -36,31 + 2205: -37,34 + 2206: -37,32 + 2207: -42,34 + 2208: -42,31 + 2209: -40,28 + 2210: -37,27 + 2211: -22,28 + 2212: -21,5 + 2213: -20,10 + 2214: -16,-3 + 2216: 4,-18 + 2217: 5,-21 + 2218: 11,-27 + 2219: 18,-28 + 2220: 14,-22 + 2221: 12,-20 + 2222: 13,-18 + 2223: 8,-20 + 2224: 10,-23 + 2225: -6,-26 + 2226: -6,-31 + 2227: -9,-27 + 2228: -11,-27 + 2229: -11,-21 + 2233: 2,-19 + 2234: -1,-17 + 2235: -4,-17 + 2236: -5,-18 + 2237: -3,-21 + 2238: -4,-23 + 2239: -6,-22 + 2240: -5,-34 + 2241: 0,-33 + 2242: 4,-33 + 2243: 3,-35 + 2244: 0,-35 + 2245: 3,-39 + 2246: 0,-39 + 2247: 0,-37 + 2248: -5,-37 + 2249: -3,-39 + 2250: -5,-39 + 2253: -13,-40 + 2254: -11,-40 + 2255: -11,-37 + 2256: -12,-36 + 2257: -13,-35 + 2258: -8,-35 + 2259: -7,-33 + 2490: 30,-15 + 2492: 27,-7 + 2493: 40,-9 + 2494: 43,-13 + 2495: 36,-12 + 2496: 37,-2 + 2497: 36,-5 + 2499: 29,-2 + 2501: 28,-4 + 2502: 39,-22 + 2503: 43,-23 + 2504: 35,-24 + 2505: 35,-25 + 2506: 31,-25 + 2507: 21,-21 + 2508: 25,-13 + 2667: 26,18 + 2668: 28,10 + 2669: 27,11 + 2717: 23,33 + 2718: 29,29 + 2719: 41,28 + 2720: 45,13 + 2721: 47,10 + 2722: 47,6 + 2723: 44,9 + 2724: 40,6 + 2725: 22,6 + 2726: 30,10 + 2727: 29,8 + 2728: 29,3 + 2729: 39,14 + 2730: 34,18 + 2731: 29,20 + 2732: 17,15 + 2733: 13,26 + 2734: 14,32 + 2735: 7,31 + 2736: 6,22 + 2737: -1,17 + 2738: -3,18 + 2741: -8,32 + 2742: -6,34 + 2743: 1,36 + 2744: 3,38 + 2745: -4,42 + 2746: 1,30 + 2747: -9,46 + 2748: -11,46 + 2749: -8,53 + 2750: -6,55 + 2751: -22,55 + 2783: 6,4 + 2784: 10,2 + 2797: -5,-4 + 2798: -7,-5 + 2799: -5,-11 + 2816: 16,-16 + 2817: 22,-15 + 2818: 30,-20 + 2819: 37,-21 + 2820: 33,-26 + 2821: 27,-27 + 2850: -6,-38 + 2924: -25,-27 + 2925: -26,-23 + 2926: -22,-19 + 2927: -20,-27 + 2932: -15,-21 + 2934: -20,-26 + 2935: -21,-23 + 2936: -30,-35 + 2939: -23,-39 + 2940: -25,-40 + 2942: -33,-32 + 2945: -39,-27 + 2946: -40,-21 + 2947: -40,-18 + 2948: -31,-19 + 2951: -33,-19 + 3013: -67,-32 + 3014: -62,-30 + 3015: -61,-32 + 3016: -55,-30 + 3017: -54,-33 + 3018: -51,-31 + 3019: -62,-29 + 3039: -70,-30 + 3040: -55,-34 + 3046: -28,-42 + 3047: -25,-44 + 3065: -24,-44 + 3066: -18,-44 + 3067: -18,-43 + 3068: -23,-44 + 3069: -22,-43 + 3071: -24,-35 + 3077: -26,-18 + 3078: -30,-11 + 3079: -34,-11 + 3080: -32,-9 + 3081: -31,-7 + 3082: -34,-6 + 3083: -37,-7 + 3084: -40,-7 + 3085: -42,-8 + 3086: -41,-12 + 3087: -43,-13 + 3088: -47,-12 + 3089: -54,-12 + 3090: -54,-13 + 3091: -49,-14 + 3176: -41,-11 + 3180: -26,-1 + 3227: 12,33 + 3228: 15,33 + 3229: 11,33 + 3230: 15,29 + 3261: 9,27 + 3262: 14,26 + 3263: 16,24 + 3288: 2,15 + 3296: 1,-6 + 4168: -20,-34 + 4171: -21,-31 + 4172: -18,-31 + 4173: -15,-29 + 4174: -20,-38 + 4175: -19,-40 + 4199: -7,14 + 4217: -8,33 + 4223: -9,43 + 4230: -7,48 + 4234: -8,51 + 4236: -8,34 + 4240: -2,16 + 4244: 4,36 + 4247: 4,35 + 4248: 16,34 + 4254: 5,37 + 4255: 12,36 + 4256: 15,37 + 4259: 10,29 + 4266: 12,27 + 4280: 5,23 + 4285: 7,28 + 4286: 5,30 + 4292: 11,27 + 4293: 10,32 + 4294: 16,33 + 4295: 23,39 + 4299: 11,37 + 4300: 31,4 + 4308: 33,10 + 4309: 36,11 + 4317: 35,9 + 4321: 42,8 + 4333: 35,13 + 4339: 34,15 + 4340: 38,14 + 4351: 36,18 + 4352: 31,18 + 4353: 32,21 + 4380: 14,14 + 4383: 18,13 + 4395: 36,17 + 4396: 38,17 + 4401: 15,16 + 4405: 20,5 + 4424: 18,-7 + 4436: 43,-22 + 4443: 36,-20 + 4444: 38,-22 + 4445: 38,-20 + 4456: 39,-12 + 4459: 41,-7 + 4468: 18,-20 + 4469: 19,-19 + 4470: 17,-17 + 4485: 15,-17 + 4486: 16,-15 + 4492: 12,-13 + 4493: 13,-14 + 4494: 7,-15 + 4495: 8,-13 + 4506: 3,-15 + 4513: -1,-15 + 4514: 3,-13 + 4515: 2,-13 + 4516: 10,-13 + 4531: -10,-14 + 4533: -7,-13 + 4534: -3,-13 + 4535: -2,-13 + 4536: -8,-12 + 4543: -9,-16 + 4547: -9,-29 + 4563: -12,-22 + 4564: -13,-21 + 4565: -12,-20 + 4573: -4,-22 + 4579: -3,-27 + 4593: 0,-34 + 4594: 3,-38 + 4600: 3,-33 + 4601: 2,-37 + 4602: 2,-39 + 4605: -1,-18 + 4606: -9,-18 + 4608: -14,-18 + 4609: -16,-16 + 4610: -13,-14 + 4617: -19,-18 + 4621: -16,-25 + 4622: -17,-20 + 4632: -15,-19 + 4639: -21,-17 + 4644: -26,-16 + 4669: -24,-40 + 4678: -29,-39 + 4697: -31,-32 + 4701: -29,-36 + 4712: -30,-24 + 4718: -31,-22 + 4723: -30,-23 + 4726: -25,-23 + 4727: -24,-21 + 4732: -22,-23 + 4733: -22,-21 + 4734: -20,-21 + 4735: -20,-22 + 4736: -20,-24 + 4748: -24,-26 + 4750: -26,-20 + 4751: -25,-22 + 4752: -23,-20 + 4753: -23,-22 + 4754: -24,-24 + 4755: -26,-24 + 4762: -32,-20 + 4768: -29,-16 + 4772: -39,-28 + 4773: -39,-30 + 4786: -38,-31 + 4787: -42,-31 + 4790: -44,-31 + 4791: -46,-30 + 4796: -54,-31 + 4800: -49,-31 + 4812: -48,-32 + 4813: -49,-32 + 4820: -59,-31 + 4821: -56,-31 + 4822: -57,-30 + 4823: -61,-31 + 4834: -64,-30 + 4841: -36,-35 + 4842: -34,-35 + 4850: -36,-33 + 4857: -22,-44 + 4858: -19,-44 + 4863: -21,-42 + 4864: -19,-41 + 4865: -18,-16 + 4873: -9,-10 + 4896: -11,-1 + 4898: -11,1 + 4899: -9,1 + 4917: -3,-1 + 4935: 20,2 + 4943: 20,3 + 4948: 9,-1 + 4955: 7,-2 + 4956: 7,0 + 4965: 10,-4 + 4966: 12,-2 + 4971: 16,10 + 4976: 11,9 + 5001: 7,39 + 5004: 6,39 + 5009: 9,28 + 5010: 10,27 + 5021: -8,47 + 5022: -6,47 + 5023: -9,51 + 5024: -6,43 + 5025: -8,44 + 5026: -7,39 + 5027: -6,38 + 5028: -8,36 + 5038: -3,29 + 5041: -2,28 + 5052: -6,21 + 5053: -8,24 + 5070: -8,13 + 5078: -21,18 + 5079: -22,17 + 5080: -21,15 + 5081: -20,16 + 5082: -19,15 + 5083: -17,15 + 5084: -14,15 + 5095: -17,17 + 5096: -17,18 + 5097: -16,19 + 5107: -20,21 + 5110: -21,20 + 5116: -13,24 + 5117: -14,25 + 5123: -14,8 + 5124: -15,8 + 5128: -26,16 + 5130: -28,17 + 5131: -22,14 + 5136: -40,34 + 5137: -34,32 + 5140: -34,34 + 5146: -26,33 + 5147: -24,30 + 5151: -17,30 + 5152: -12,28 + 5155: -10,25 + 5156: -10,24 + 5171: -3,20 + 5174: -3,19 + 5175: -2,20 + 5176: -4,19 + 5184: -11,9 + 5188: -9,9 + 5192: -10,6 + 5197: -4,3 + 5200: -3,1 + 5208: 5,-1 + 5219: 3,0 + 5223: -2,-3 + 5232: 0,-4 + 5233: 2,-4 + 5240: -4,-10 + 5244: 28,-14 + 5245: 28,-4 + 5246: 26,-2 + 5247: 29,-2 + 5248: 30,-4 + 5261: -38,35 + 5262: -36,34 + 5263: -38,28 + 5264: -36,27 + 5274: -29,-10 + 5278: -30,-6 + 5279: -25,-8 + 5291: -26,-5 + 5299: -17,-7 + 5309: -41,-7 + 5318: -43,-10 + 5319: -42,-12 + 5329: -32,-43 + 5388: -18,-36 + 5389: -16,-35 + 5390: -17,-34 + 5391: -16,-33 + 5392: -15,-35 + 5393: -16,-37 + 5445: 6,35 + 5446: 7,36 + 5447: 9,37 + 5448: 10,35 + 5449: 13,36 + 5450: 10,38 + 5451: 6,38 + 5470: 13,25 + 5479: 10,21 + 5480: 11,19 + 5489: 14,6 + 5490: 15,8 + 5491: 14,4 + 5492: 17,5 + 5545: -34,-9 + 5551: -35,-9 + 5584: 13,34 + 5590: 23,26 + 5591: 24,23 + 5596: 22,22 + 5605: 26,15 + 5606: 24,15 + 5610: 24,11 + 5620: 33,7 + 5623: 38,7 + 5624: 30,12 + 5628: 38,20 + 5631: 27,16 + 5632: 28,5 + 5648: -4,5 + 5649: -6,5 + 5650: -5,7 + 5658: -6,8 + 5659: -5,9 + 5681: -5,10 + 5683: -4,9 + 5687: -3,10 + 5705: -5,-16 + 5968: 13,13 + 5969: 15,13 + 5974: 19,5 + 5980: 22,14 + 5981: 23,10 + 5988: 21,7 + 5989: 21,4 + 5993: 6,19 + 5994: 7,21 + 6018: -7,3 + 6019: -7,1 + 6020: -7,-2 + 6022: 17,-2 + 6024: 18,0 + 6025: 17,1 + 6026: 18,2 + 6040: 6,-16 + 6041: 8,-16 + 6044: -10,-15 + 6045: -8,-15 + 6046: -4,-15 + 6053: -8,-14 + 6060: -10,-19 + 6061: -9,-17 + 6062: -8,-18 + 6063: -7,-17 + 6072: -17,-21 + 6073: -17,-24 + 6074: -17,-26 + 6075: -17,-28 + 6076: -20,-29 + 6083: -31,-34 + 6084: -32,-35 + 6085: -31,-38 + 6086: -28,-38 + 6087: -25,-38 + 6088: -23,-38 + 6089: -21,-36 + 6103: -30,-40 + 6104: -28,-40 + 6110: -35,-32 + 6111: -38,-32 + 6117: -36,-30 + 6118: -32,-30 + 6125: -41,-33 + 6126: -22,-46 + 6133: -6,12 + 6137: -8,15 + 6138: -9,20 + 6139: -9,22 + 6145: -10,14 + 6149: -6,28 + 6150: -6,30 + 6157: 26,38 + 6158: 27,34 + 6159: 26,35 + 6161: 27,37 + 6196: 22,-10 + 6197: 24,-9 + 6198: 24,-7 + 6206: 41,-17 + 6207: 42,-15 + 6214: 10,-19 + 6218: 16,-10 + 6219: 16,-8 + 6225: 22,-36 + 6226: 23,-38 + 6227: 24,-40 + 6228: 38,-40 + 6229: 39,-38 + 6230: 40,-36 + 6266: -41,-10 + 6267: -38,-8 + 6268: -35,-8 + 6278: -19,-8 + 6292: -26,-34 + 6293: -24,-33 + 6294: -25,-32 + 6295: -23,-32 + 6307: 37,15 + 6313: -19,25 + 6317: -44,-37 + 6318: -43,-36 + 6319: -43,-34 + 6320: -42,-35 + 6327: 22,12 + 6345: -17,26 + 6346: -16,27 + 6347: -14,26 + 6348: -14,27 + 6394: -24,12 + 6400: 14,1 + 6401: 13,2 + 6402: 14,3 + 6475: 3,19 + 6476: 4,21 + 6484: -23,35 + 6494: 42,4 + 6498: 29,0 + 6499: 31,1 + 6504: 24,-3 + 6509: 18,15 + 6510: 20,17 + 6517: -49,-13 + 6563: 1,-27 + 6564: 0,-26 + 6565: 1,-24 + 6566: 0,-22 + 6567: 1,-21 + 6568: 2,-23 + 6584: 30,-16 + 6630: -24,-16 + 6631: -21,-16 + 6632: -23,-15 + 6633: -22,-13 + 6634: -23,-10 + 6635: -22,-7 + 6636: -23,-5 + 6637: -23,-3 + 6638: -22,-2 + 6639: -23,1 + 6640: -21,-1 + 6641: -22,0 + 6642: -20,1 + 6643: -19,-1 + 6644: -17,0 + 6645: -17,2 + 6646: -15,2 + 6647: -17,-2 + 6648: -15,-2 + 6649: -15,-1 + 6650: -14,0 + 6651: -13,2 + 6652: -12,0 + 6653: -13,-2 + 6654: -13,-1 + 6691: -22,-16 + 6698: 16,-2 + 6699: 15,-1 + 6700: 16,1 + - node: + cleanable: True + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1646: -10,2 + 1647: -9,13 + 1648: -2,-2 + 1649: 3,1 + 1650: -4,2 + 1651: 12,-1 + 1652: 10,0 + 1653: 9,-3 + 1654: 1,-7 + 1655: -1,-6 + 1656: 5,-6 + 1657: -8,-4 + 1658: -10,-7 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1659: -10,-3 + 1660: -2,-1 + 1661: -5,-2 + 1662: 5,3 + 1663: 8,1 + 1664: -1,-5 + 1665: 5,-5 + 1666: 9,-3 + 1667: 13,-1 + 1668: 6,10 + 1672: 14,11 + 1673: 16,8 + 1674: 13,4 + 1675: 10,6 + 1676: 10,5 + 1677: -10,10 + 1678: -9,7 + 1679: -14,11 + 1680: -15,9 + 1681: -18,8 + 1682: -18,12 + 1683: -15,16 + 1686: -22,15 + 1687: -14,21 + 1688: -22,22 + 1689: -21,26 + 1690: -16,25 + 1691: -13,25 + 1692: -11,18 + 1693: -11,22 + 1694: -11,26 + 1695: -4,22 + 1696: -2,22 + 1697: -4,20 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 1699: -15,18 + 1700: -17,20 + 1701: -21,24 + 1702: -16,23 + 1703: -11,16 + 1704: -15,13 + 1705: -18,14 + 1706: -15,7 + 1707: -18,6 + 1708: -25,11 + 1709: -24,16 + 1710: -28,15 + 1711: -26,32 + 1712: -26,30 + 1713: -30,32 + 1714: -34,30 + 1715: -38,33 + 1716: -39,29 + 1717: -43,28 + 1718: -43,34 + 1719: -38,35 + 1720: -34,35 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 5348: -4,-41 + 5353: -5,-41 + 5354: 0,-40 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1761: -10,3 + 1762: -1,2 + 1763: -5,0 + 1764: 0,-3 + 1765: 4,-2 + 1766: 6,3 + 1767: 12,0 + 1768: 10,-3 + 1769: 8,-1 + 1770: 10,4 + 1771: 11,4 + 1772: 9,6 + 1774: 13,9 + 1775: 15,11 + 1776: 17,8 + 1777: 16,6 + 1778: 13,5 + 1779: 6,10 + 1780: 7,8 + 1781: 1,8 + 1782: 1,9 + 1787: -11,7 + 1788: -8,11 + 1789: -10,12 + 1790: -6,14 + 1791: -6,13 + 1792: 4,13 + 1793: 0,12 + 1794: 8,13 + 1797: -7,-7 + 1798: -10,-8 + 1803: -16,4 + 1804: -14,5 + 1805: -13,11 + 1806: -15,11 + 1807: -17,11 + 1808: -20,14 + 1810: -14,14 + 1811: -13,17 + 1812: -16,21 + 1813: -11,21 + 1814: -15,24 + 1815: -21,25 + 1816: -22,21 + 1817: -19,24 + 1818: -10,16 + 1819: -26,12 + 1820: -28,16 + 1821: -26,14 + 1822: -25,17 + 1823: -26,17 + 1824: -5,3 + 1826: 7,6 + 2261: -4,-17 + 2262: 0,-18 + 2263: 2,-17 + 2265: -3,-22 + 2267: -4,-27 + 2268: -2,-25 + 2269: -4,-25 + 2270: -2,-23 + 2271: -9,-22 + 2272: -9,-24 + 2273: -8,-23 + 2275: -11,-22 + 2276: -13,-25 + 2277: -13,-26 + 2278: -13,-30 + 2279: -11,-29 + 2280: -11,-33 + 2281: -11,-36 + 2282: -8,-34 + 2283: -4,-34 + 2284: -1,-34 + 2285: -1,-35 + 2286: 1,-37 + 2287: 4,-37 + 2288: 4,-38 + 2289: -1,-38 + 2290: 0,-41 + 2291: -1,-40 + 2295: -13,-39 + 2296: -3,-31 + 2297: 3,-31 + 2298: 6,-29 + 2299: 15,-22 + 2300: 12,-17 + 2301: 11,-19 + 2302: 8,-18 + 2303: 8,-16 + 2306: 4,-12 + 2308: 0,-15 + 2311: -6,-13 + 2312: -9,-13 + 2313: -9,-9 + 2314: -8,-8 + 2315: -9,-2 + 2316: -10,-5 + 2317: -1,-2 + 2318: 11,0 + 2322: 19,0 + 2323: 21,-1 + 2324: 21,10 + 2325: 21,13 + 2326: 19,14 + 2330: 21,19 + 2331: 19,18 + 2332: 13,21 + 2333: 12,20 + 2334: 10,16 + 2335: 8,17 + 2338: 3,17 + 2340: 6,23 + 2341: 7,25 + 2342: 15,24 + 2345: 12,33 + 2346: 10,34 + 2349: 8,39 + 2353: 5,33 + 2354: 4,32 + 2355: 2,37 + 2356: 0,39 + 2357: 1,35 + 2358: 1,34 + 2359: 22,40 + 2360: 19,39 + 2361: 18,38 + 2362: 20,36 + 2363: 19,34 + 2364: 20,38 + 2365: 13,38 + 2366: -6,39 + 2367: -7,38 + 2369: -9,42 + 2370: -8,45 + 2371: -7,35 + 2372: -8,37 + 2374: -8,27 + 2375: -6,25 + 2376: -8,23 + 2377: -11,24 + 2378: -8,52 + 2379: -7,50 + 2380: -9,50 + 2381: -4,41 + 2382: -3,45 + 2383: -17,55 + 2384: -26,31 + 2385: -30,31 + 2386: -32,31 + 2387: -37,31 + 2388: -38,30 + 2389: -37,35 + 2390: -33,30 + 2391: -41,28 + 2392: -39,31 + 2393: -39,32 + 2394: -20,24 + 2395: -21,22 + 2396: -13,24 + 2509: 25,-12 + 2510: 28,-12 + 2511: 30,-14 + 2512: 35,-13 + 2513: 31,-11 + 2514: 32,-12 + 2515: 31,-8 + 2516: 32,-4 + 2518: 36,-1 + 2519: 41,-9 + 2521: 39,-17 + 2522: 39,-15 + 2523: 41,-17 + 2524: 43,-19 + 2525: 42,-23 + 2528: 34,-19 + 2529: 32,-19 + 2530: 33,-22 + 2531: 27,-15 + 2532: 23,-12 + 2671: 28,11 + 2672: 24,14 + 2673: 31,19 + 2674: 28,18 + 2675: 26,19 + 2676: 32,14 + 2677: 31,13 + 2678: 32,7 + 2679: 33,9 + 2680: 35,11 + 2681: 38,8 + 2682: 40,9 + 2685: 42,14 + 2686: 42,15 + 2687: 40,14 + 2688: 41,11 + 2689: 38,13 + 2690: 36,13 + 2691: 35,18 + 2692: 30,19 + 2693: 24,20 + 2694: 21,22 + 2695: 19,22 + 2696: 25,25 + 2697: 24,26 + 2698: 29,22 + 2699: 30,26 + 2700: 24,14 + 2701: 26,7 + 2702: 27,7 + 2703: 27,4 + 2704: 28,4 + 2705: 31,11 + 2707: 13,20 + 2708: 14,20 + 2709: 17,18 + 2710: 17,24 + 2711: 34,26 + 2712: 23,28 + 2713: 37,29 + 2714: 37,22 + 2715: 43,21 + 2716: 45,14 + 2752: -19,55 + 2753: -11,46 + 2754: -9,39 + 2755: -11,39 + 2756: -4,42 + 2757: -6,55 + 2758: -4,52 + 2759: -9,25 + 2762: -23,31 + 2763: -33,33 + 2764: -33,29 + 2765: -35,31 + 2766: -26,26 + 2767: -26,25 + 2785: 12,5 + 2786: 12,9 + 2795: 4,-6 + 2796: 8,-6 + 2800: -4,-12 + 2801: -8,-11 + 2802: -2,-15 + 2803: -2,-13 + 2822: 29,-7 + 2824: 33,-1 + 2825: 40,0 + 2826: 42,3 + 2836: 49,-1 + 2837: 42,-33 + 2838: 41,-31 + 2844: 23,-27 + 2845: 20,-27 + 2846: 12,-25 + 2847: 8,-25 + 2851: -6,-34 + 2852: -10,-34 + 2862: -35,-39 + 2863: -37,-36 + 2864: -35,-34 + 2865: -34,-36 + 2868: -26,-39 + 2873: -22,-33 + 2880: -15,-23 + 2882: -12,-16 + 2883: -14,-14 + 2884: -13,-13 + 2885: -20,-16 + 2888: -32,-16 + 2889: -32,-19 + 2890: -37,-18 + 2891: -39,-18 + 2892: -39,-20 + 2893: -39,-21 + 2894: -39,-27 + 2898: -43,-30 + 2899: -41,-32 + 2903: -30,-35 + 2904: -27,-35 + 2907: -24,-35 + 2910: -28,-31 + 2911: -28,-32 + 2912: -25,-29 + 2913: -28,-27 + 2914: -28,-22 + 2915: -21,-20 + 2916: -19,-23 + 2917: -21,-24 + 2918: -23,-23 + 2919: -26,-23 + 2920: -26,-21 + 2921: -21,-27 + 2922: -23,-27 + 2923: -24,-27 + 3020: -69,-31 + 3021: -65,-30 + 3022: -62,-28 + 3023: -60,-32 + 3024: -63,-33 + 3025: -58,-31 + 3026: -54,-29 + 3027: -54,-33 + 3028: -50,-32 + 3029: -48,-30 + 3041: -53,-34 + 3048: -32,-42 + 3049: -32,-44 + 3050: -25,-42 + 3051: -26,-43 + 3075: -29,-27 + 3076: -25,-18 + 3092: -56,-13 + 3093: -52,-12 + 3094: -51,-13 + 3095: -47,-14 + 3096: -43,-14 + 3097: -43,-13 + 3098: -41,-13 + 3099: -42,-11 + 3100: -40,-9 + 3101: -38,-7 + 3104: -36,-10 + 3105: -39,-9 + 3106: -40,-10 + 3107: -33,-12 + 3108: -30,-12 + 3109: -30,-10 + 3110: -33,-9 + 3111: -31,-6 + 3112: -32,-11 + 3113: -27,-9 + 3114: -26,-8 + 3115: -26,-10 + 3116: -25,-5 + 3117: -27,-2 + 3118: -27,1 + 3123: -16,-6 + 3124: -18,-7 + 3125: -16,-8 + 3189: -5,-31 + 3190: 5,-28 + 3191: 9,-30 + 3192: 14,-29 + 3231: 6,32 + 3232: 8,34 + 3234: 8,38 + 3236: 4,39 + 3237: 7,40 + 3238: 14,38 + 3239: 15,34 + 3240: 12,34 + 3243: 8,29 + 3244: 8,28 + 3245: 6,27 + 3246: 1,30 + 3247: 3,32 + 3248: 1,36 + 3249: 1,36 + 3250: 3,38 + 3251: 19,35 + 3252: 23,41 + 3253: 23,38 + 3254: 25,34 + 3264: 16,30 + 3265: 0,31 + 3266: -4,36 + 3286: -4,21 + 3287: 5,15 + 4158: -20,-31 + 4159: -18,-29 + 4160: -16,-31 + 4161: -20,-35 + 4162: -21,-34 + 4200: -6,16 + 4206: -5,17 + 4212: -8,30 + 4218: -9,33 + 4219: -7,33 + 4222: -8,41 + 4224: -8,43 + 4231: -7,49 + 4232: -9,48 + 4233: -8,50 + 4237: -8,35 + 4239: -2,17 + 4243: 5,35 + 4245: 4,34 + 4249: 16,35 + 4250: 12,35 + 4252: 8,36 + 4257: 15,35 + 4258: 11,28 + 4260: 10,28 + 4265: 12,29 + 4267: 13,29 + 4268: 14,31 + 4273: 14,24 + 4279: 4,25 + 4281: 5,25 + 4282: 7,24 + 4283: 8,23 + 4284: 7,27 + 4287: 5,28 + 4289: 5,27 + 4296: 23,40 + 4297: 17,38 + 4298: 15,36 + 4301: 30,4 + 4302: 31,5 + 4310: 34,11 + 4311: 36,10 + 4312: 38,10 + 4318: 37,9 + 4322: 41,8 + 4328: 41,12 + 4329: 41,14 + 4350: 38,18 + 4354: 31,21 + 4355: 25,20 + 4356: 25,18 + 4357: 31,16 + 4358: 31,14 + 4359: 32,15 + 4360: 30,6 + 4361: 28,8 + 4362: 28,7 + 4363: 34,9 + 4364: 39,9 + 4365: 34,4 + 4366: 28,3 + 4367: 24,5 + 4368: 28,13 + 4369: 25,13 + 4370: 26,14 + 4371: 25,16 + 4381: 14,16 + 4382: 16,15 + 4386: 16,14 + 4397: 39,17 + 4402: 13,16 + 4403: 14,17 + 4404: 20,12 + 4407: 20,4 + 4422: 19,1 + 4423: 20,-1 + 4426: 15,-6 + 4428: 19,-10 + 4429: 23,-6 + 4430: 26,-7 + 4437: 43,-21 + 4446: 36,-21 + 4447: 39,-20 + 4448: 39,-19 + 4449: 31,-20 + 4451: 33,-17 + 4452: 33,-13 + 4453: 32,-9 + 4454: 36,-9 + 4455: 39,-10 + 4460: 42,-6 + 4461: 36,-4 + 4462: 32,-3 + 4471: 17,-20 + 4472: 17,-19 + 4473: 18,-18 + 4474: 19,-17 + 4487: 15,-15 + 4496: 1,-14 + 4497: 7,-14 + 4498: 2,-14 + 4499: 3,-14 + 4500: 4,-14 + 4501: 5,-14 + 4502: 6,-14 + 4517: 10,-14 + 4518: 9,-13 + 4519: 5,-13 + 4520: -1,-13 + 4521: -2,-14 + 4522: -3,-14 + 4537: -9,-12 + 4548: -9,-30 + 4549: -9,-28 + 4550: -8,-28 + 4551: -7,-26 + 4552: -7,-29 + 4560: -12,-30 + 4561: -12,-26 + 4566: -13,-20 + 4567: -12,-21 + 4568: -13,-23 + 4571: -3,-23 + 4572: -4,-21 + 4574: -4,-18 + 4575: 1,-19 + 4577: -4,-26 + 4578: -3,-28 + 4584: -9,-31 + 4585: -9,-35 + 4586: -7,-36 + 4588: -9,-36 + 4589: -8,-33 + 4590: -7,-35 + 4591: 2,-38 + 4592: 1,-34 + 4598: 4,-34 + 4599: 2,-33 + 4613: -12,-13 + 4614: -13,-16 + 4615: -14,-17 + 4616: -15,-18 + 4618: -18,-18 + 4619: -16,-23 + 4620: -16,-26 + 4626: -17,-31 + 4627: -15,-30 + 4629: -15,-24 + 4631: -16,-20 + 4635: -16,-18 + 4636: -14,-15 + 4637: -12,-17 + 4638: -18,-14 + 4640: -22,-17 + 4645: -26,-17 + 4646: -27,-16 + 4670: -23,-40 + 4671: -24,-39 + 4673: -21,-39 + 4674: -19,-39 + 4676: -28,-41 + 4677: -27,-39 + 4690: -31,-39 + 4698: -32,-32 + 4699: -31,-31 + 4700: -28,-36 + 4704: -29,-34 + 4705: -28,-35 + 4715: -31,-24 + 4724: -31,-23 + 4728: -25,-21 + 4729: -24,-23 + 4737: -21,-24 + 4738: -20,-23 + 4739: -21,-22 + 4740: -22,-20 + 4741: -19,-22 + 4749: -21,-25 + 4765: -33,-18 + 4766: -31,-16 + 4767: -29,-17 + 4774: -40,-30 + 4775: -38,-30 + 4776: -39,-31 + 4783: -39,-32 + 4784: -40,-31 + 4785: -37,-31 + 4792: -46,-32 + 4794: -44,-30 + 4795: -47,-32 + 4797: -55,-31 + 4801: -50,-31 + 4802: -50,-30 + 4824: -62,-32 + 4825: -63,-31 + 4826: -63,-30 + 4835: -63,-29 + 4836: -61,-29 + 4837: -55,-29 + 4843: -35,-35 + 4844: -37,-35 + 4845: -36,-34 + 4846: -34,-34 + 4847: -36,-36 + 4859: -20,-43 + 4860: -19,-43 + 4866: -18,-17 + 4867: -19,-16 + 4868: -18,-13 + 4874: -10,-10 + 4875: -9,-8 + 4876: -8,-9 + 4877: -9,-7 + 4878: -10,-6 + 4879: -9,-5 + 4901: -10,-2 + 4902: -11,0 + 4903: -10,0 + 4906: -8,2 + 4907: -8,0 + 4908: -9,-1 + 4918: -4,1 + 4919: -4,-2 + 4923: 14,-14 + 4924: 15,-14 + 4942: 19,3 + 4951: 14,0 + 4958: 7,1 + 4959: 8,0 + 4960: 8,-3 + 4967: 9,3 + 4968: 11,5 + 4969: 14,9 + 4970: 16,11 + 4978: 9,10 + 4989: 20,7 + 4990: 20,11 + 4991: 18,14 + 4994: 6,25 + 4995: 13,23 + 4996: 10,23 + 4997: 12,37 + 4998: 5,36 + 4999: 11,35 + 5005: 13,39 + 5029: -7,40 + 5030: -7,45 + 5031: -6,46 + 5032: -9,41 + 5033: -7,51 + 5042: -2,29 + 5043: -2,30 + 5044: -5,29 + 5056: -7,31 + 5057: -7,28 + 5058: -6,24 + 5060: -7,21 + 5064: -8,26 + 5065: -7,16 + 5066: -7,18 + 5067: -4,17 + 5068: -5,15 + 5069: -9,12 + 5085: -22,16 + 5086: -21,17 + 5087: -21,16 + 5088: -19,16 + 5089: -16,15 + 5090: -14,17 + 5091: -15,19 + 5092: -16,17 + 5098: -16,17 + 5099: -15,17 + 5100: -17,21 + 5101: -13,21 + 5102: -20,15 + 5103: -18,15 + 5111: -21,21 + 5112: -20,23 + 5118: -15,25 + 5121: -16,24 + 5122: -14,10 + 5127: -27,16 + 5129: -27,12 + 5138: -32,32 + 5139: -33,34 + 5157: -11,24 + 5158: -10,26 + 5178: -5,13 + 5186: -11,10 + 5187: -9,8 + 5189: -10,9 + 5190: -9,10 + 5191: -8,9 + 5194: -8,6 + 5203: 1,2 + 5204: 2,2 + 5205: 5,-2 + 5206: 6,0 + 5207: 5,1 + 5215: 6,-1 + 5216: 3,-1 + 5217: -1,-1 + 5220: 2,-1 + 5221: 0,0 + 5222: -1,-3 + 5234: 1,-4 + 5235: 0,-2 + 5236: 2,-2 + 5237: 0,-1 + 5249: 26,-4 + 5250: 27,-2 + 5251: 28,-4 + 5252: 30,-2 + 5265: -38,29 + 5266: -37,29 + 5267: -38,31 + 5268: -39,30 + 5270: -32,-7 + 5271: -30,-7 + 5272: -30,-8 + 5280: -26,-9 + 5281: -25,-9 + 5290: -26,-4 + 5300: -17,-8 + 5301: -16,-7 + 5311: -39,-7 + 5312: -35,-7 + 5313: -34,-7 + 5314: -35,-6 + 5315: -43,-6 + 5320: -43,-12 + 5321: -42,-13 + 5322: -44,-12 + 5327: -42,-9 + 5328: -31,-43 + 5332: -11,-35 + 5399: -17,-35 + 5400: -18,-33 + 5401: -18,-34 + 5402: -15,-33 + 5403: -15,-34 + 5404: -15,-37 + 5457: 7,35 + 5458: 6,36 + 5459: 10,36 + 5460: 10,37 + 5461: 13,35 + 5462: 13,37 + 5466: 8,27 + 5467: 18,37 + 5468: 18,36 + 5469: 9,38 + 5493: 14,7 + 5494: 15,5 + 5549: -34,-8 + 5550: -33,-8 + 5585: 14,34 + 5586: 21,24 + 5587: 22,26 + 5592: 25,23 + 5598: 19,23 + 5599: 19,24 + 5600: 25,14 + 5601: 26,11 + 5602: 27,14 + 5603: 27,12 + 5604: 26,16 + 5611: 24,10 + 5612: 24,12 + 5614: 25,8 + 5615: 24,4 + 5616: 26,8 + 5617: 30,9 + 5618: 35,4 + 5619: 35,7 + 5625: 33,18 + 5626: 35,19 + 5627: 39,20 + 5634: 26,5 + 5635: 27,5 + 5636: 2,10 + 5653: -5,6 + 5654: -4,6 + 5655: -4,7 + 5656: -6,7 + 5657: -6,9 + 5684: -4,8 + 5685: -6,10 + 5686: -3,8 + 5975: 19,8 + 5976: 19,7 + 5986: 23,12 + 5992: 21,6 + 5998: 6,21 + 5999: 7,20 + 6000: 8,19 + 6021: -7,-1 + 6033: 18,-1 + 6035: 17,2 + 6036: 17,0 + 6043: 9,-16 + 6050: -9,-15 + 6051: -6,-15 + 6052: -6,-14 + 6055: -4,-13 + 6056: -5,-14 + 6057: -7,-14 + 6058: 7,-13 + 6059: 13,-13 + 6067: -10,-17 + 6068: -9,-19 + 6069: -7,-19 + 6079: -17,-22 + 6080: -17,-25 + 6081: -16,-28 + 6082: -16,-22 + 6095: -31,-35 + 6096: -32,-36 + 6097: -30,-38 + 6098: -26,-38 + 6099: -22,-38 + 6100: -31,-37 + 6105: -31,-40 + 6112: -36,-32 + 6113: -32,-31 + 6114: -37,-30 + 6115: -33,-30 + 6116: -31,-30 + 6134: -5,12 + 6135: 6,17 + 6136: -8,17 + 6142: -8,18 + 6164: 27,35 + 6165: 26,37 + 6166: 27,36 + 6167: 27,38 + 6202: 24,-10 + 6203: 26,-8 + 6204: 39,-16 + 6211: 41,-16 + 6212: 33,-19 + 6213: 9,-19 + 6216: 11,-17 + 6217: 9,-18 + 6222: 16,-11 + 6223: 19,-3 + 6224: 21,-5 + 6237: 23,-36 + 6238: 24,-38 + 6239: 23,-40 + 6240: 40,-38 + 6241: 39,-36 + 6272: -41,-8 + 6273: -36,-8 + 6274: -39,-8 + 6301: -26,-33 + 6302: -24,-32 + 6303: -24,-34 + 6308: 36,14 + 6309: 37,14 + 6314: -20,25 + 6324: -44,-35 + 6349: -15,26 + 6350: -16,26 + 6479: 3,21 + 6480: 4,20 + 6486: -22,35 + 6487: -24,58 + 6491: 34,22 + 6492: 45,18 + 6493: 40,4 + 6505: 25,2 + 6506: 53,-1 + 6507: 44,10 + 6508: 40,28 + 6513: 19,15 + 6514: 21,15 + 6516: 21,9 + 6519: -48,-13 + 6520: -47,-13 + 6521: -46,-12 + 6574: 1,-22 + 6575: 0,-23 + 6576: 0,-25 + 6577: 1,-26 + 6578: 1,-26 + 6579: 0,-27 + 6675: -21,0 + 6676: -17,1 + 6677: -16,0 + 6678: -15,1 + 6679: -12,1 + 6680: -12,-1 + 6681: -18,-1 + 6682: -23,-1 + 6683: -22,1 + 6684: -22,-6 + 6685: -22,-10 + 6686: -23,-12 + 6687: -22,-14 + 6688: -23,-8 + 6689: -18,0 + 6690: -23,-16 + 6705: 15,0 + 6706: 16,-1 + 6707: 16,2 + - node: + color: '#FFFFFFFF' + id: DirtLight + decals: + 5350: -5,-41 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 1827: -9,2 + 1828: -10,7 + 1829: -9,11 + 1830: -7,13 + 1832: -10,14 + 1833: -3,-2 + 1834: -4,0 + 1835: 1,-2 + 1836: 5,-3 + 1837: 3,2 + 1838: 12,0 + 1839: 10,-3 + 1840: 8,1 + 1841: 9,4 + 1842: 11,6 + 1843: 13,6 + 1844: 17,7 + 1845: 15,10 + 1846: 13,9 + 1847: 9,10 + 1848: 10,8 + 1849: 1,10 + 1850: -1,8 + 1851: 1,10 + 1852: 4,9 + 1853: 5,13 + 1854: 5,17 + 1855: 10,16 + 1856: 2,17 + 1858: -3,17 + 1860: -4,16 + 1861: -6,17 + 1864: -10,-11 + 1867: -16,-4 + 1868: -16,-7 + 1869: -18,-8 + 1871: -14,-7 + 1879: -26,-2 + 1880: -27,-4 + 1881: -26,-6 + 1882: -25,12 + 1883: -26,15 + 1885: -15,20 + 1886: -18,16 + 1887: -14,13 + 1888: -13,10 + 1889: -20,14 + 1891: -21,21 + 1894: -16,25 + 1896: -13,25 + 1897: -17,25 + 1898: -16,23 + 1899: -13,23 + 1900: -22,21 + 1901: -25,32 + 1902: -27,31 + 1903: -34,34 + 1904: -33,32 + 1905: -32,30 + 1906: -34,30 + 1907: -37,33 + 1908: -38,31 + 1909: -37,30 + 1910: -37,34 + 1911: -37,28 + 1912: -42,28 + 1913: -41,34 + 1914: -40,34 + 1915: -39,29 + 1916: -18,29 + 1917: -28,28 + 1918: -21,32 + 1919: -7,30 + 1920: -10,29 + 1921: -8,28 + 1922: -7,25 + 1925: -6,22 + 1926: -3,30 + 1927: -4,29 + 1928: -7,17 + 1929: -8,14 + 1930: -1,16 + 1931: 1,17 + 1932: 6,16 + 1933: 8,17 + 1938: 8,26 + 1939: 7,29 + 1940: 6,26 + 1941: 7,23 + 1942: 12,25 + 1943: 12,23 + 1944: 15,28 + 1946: 15,31 + 1948: 8,33 + 1949: 5,32 + 1950: 5,34 + 1951: 11,34 + 1952: 11,39 + 1956: 16,37 + 1957: 12,39 + 1958: 8,39 + 1959: 5,38 + 1960: 4,39 + 1961: 2,40 + 1962: 1,39 + 1963: 1,37 + 1964: 0,35 + 1965: -6,40 + 1966: -8,38 + 1967: -9,35 + 1968: -9,32 + 1969: -7,34 + 1970: -6,42 + 1971: -7,44 + 1972: -9,43 + 1973: -7,46 + 1974: -9,49 + 1975: -7,52 + 2397: -9,-4 + 2399: 0,-14 + 2402: 10,-20 + 2403: 10,-19 + 2404: 9,-19 + 2410: -14,-16 + 2412: -19,-17 + 2413: -17,-16 + 2417: -11,-22 + 2418: -9,-24 + 2419: -8,-26 + 2420: -6,-28 + 2421: -7,-30 + 2422: -11,-30 + 2423: -13,-26 + 2429: -3,-23 + 2430: 2,-18 + 2431: -3,-31 + 2432: -1,-31 + 2433: 1,-35 + 2434: 4,-37 + 2435: 4,-33 + 2436: -3,-38 + 2438: -12,-37 + 2439: -13,-36 + 2440: -13,-40 + 2441: -9,-34 + 2442: -8,-31 + 2443: 12,-19 + 2444: 11,-18 + 2445: 16,-17 + 2446: 16,-18 + 2447: 15,-20 + 2448: 10,-22 + 2449: 9,-14 + 2451: 22,-7 + 2455: 27,-8 + 2456: 31,-7 + 2457: 32,-10 + 2458: 32,-13 + 2459: 36,-13 + 2460: 36,-10 + 2461: 32,-5 + 2462: 33,-2 + 2463: 37,-1 + 2464: 36,-2 + 2465: 36,-5 + 2466: 35,-6 + 2467: 42,-6 + 2468: 43,-6 + 2469: 42,-7 + 2470: 40,-9 + 2471: 42,-13 + 2472: 40,-13 + 2473: 35,-15 + 2474: 38,-17 + 2475: 37,-17 + 2476: 39,-15 + 2477: 41,-17 + 2479: 40,-20 + 2481: 41,-22 + 2482: 35,-20 + 2483: 32,-22 + 2484: 31,-20 + 2485: 31,-16 + 2486: 28,-15 + 2487: 26,-12 + 2488: 24,-12 + 2489: 18,-9 + 2539: 33,-15 + 2544: 20,-6 + 2545: 21,-7 + 2546: 21,0 + 2596: 21,26 + 2597: 21,23 + 2598: 18,22 + 2600: 24,18 + 2601: 30,18 + 2602: 32,17 + 2603: 29,15 + 2604: 33,13 + 2605: 31,10 + 2606: 31,7 + 2607: 34,9 + 2608: 34,10 + 2609: 37,10 + 2610: 37,8 + 2613: 42,15 + 2614: 40,14 + 2615: 37,13 + 2616: 36,13 + 2617: 35,15 + 2618: 35,17 + 2619: 37,20 + 2620: 40,19 + 2621: 32,22 + 2622: 30,23 + 2623: 28,22 + 2624: 31,26 + 2626: 19,19 + 2627: 24,16 + 2628: 26,16 + 2629: 26,12 + 2630: 27,10 + 2631: 25,11 + 2632: 28,12 + 2633: 27,15 + 2634: 24,5 + 2635: 23,6 + 2636: 25,7 + 2637: 28,4 + 2638: 27,3 + 2639: 28,2 + 2640: 30,3 + 2641: 32,5 + 2643: 35,4 + 2644: 37,5 + 2645: 38,3 + 2646: 35,5 + 2647: 35,8 + 2648: 31,9 + 2649: 31,12 + 2650: 30,14 + 2670: 28,11 + 2768: -26,24 + 2769: -24,11 + 2770: -26,13 + 2771: -20,13 + 2772: -22,8 + 2773: -18,3 + 2781: -6,-1 + 2787: 5,8 + 2788: 6,11 + 2789: 10,11 + 2790: 12,13 + 2804: 9,-12 + 2805: 13,-9 + 2806: 18,-4 + 2807: 22,-4 + 2808: 29,-7 + 2809: 31,-3 + 2810: 38,-6 + 2811: 38,-11 + 2812: 34,-16 + 2813: 30,-20 + 2814: 22,-18 + 2815: 20,-19 + 2833: 46,1 + 2834: 53,-1 + 2835: 49,-1 + 2839: 23,-30 + 2840: 41,-31 + 2841: 41,-25 + 2842: 20,-27 + 2843: 17,-28 + 2848: -2,-34 + 2853: -12,-38 + 2854: -10,-42 + 2953: -40,-21 + 2954: -40,-19 + 2955: -37,-18 + 2956: -39,-20 + 2957: -32,-18 + 2961: -41,-30 + 2962: -43,-31 + 2963: -40,-27 + 2968: -40,-32 + 2969: -31,-24 + 2970: -30,-26 + 2971: -28,-26 + 2972: -28,-22 + 2973: -21,-20 + 2974: -21,-23 + 2975: -19,-25 + 2976: -20,-27 + 2977: -21,-27 + 2978: -25,-27 + 2979: -25,-26 + 2982: -26,-35 + 2983: -24,-36 + 2984: -27,-36 + 2985: -29,-36 + 2986: -28,-33 + 2987: -25,-29 + 2993: -22,-40 + 2995: -26,-40 + 2997: -32,-37 + 3000: -34,-32 + 3001: -35,-31 + 3002: -43,-31 + 3003: -43,-32 + 3005: -50,-32 + 3006: -57,-32 + 3007: -60,-30 + 3008: -66,-30 + 3009: -67,-31 + 3010: -65,-32 + 3011: -61,-32 + 3012: -58,-30 + 3037: -70,-32 + 3038: -61,-34 + 3042: -60,-31 + 3043: -49,-30 + 3044: -29,-43 + 3052: -32,-43 + 3053: -32,-42 + 3054: -25,-43 + 3055: -25,-44 + 3056: -21,-44 + 3057: -24,-42 + 3058: -19,-42 + 3059: -21,-44 + 3060: -19,-43 + 3061: -20,-42 + 3128: -42,-7 + 3129: -39,-7 + 3130: -37,-7 + 3131: -35,-7 + 3132: -36,-9 + 3134: -35,-10 + 3135: -33,-12 + 3136: -33,-11 + 3137: -31,-7 + 3138: -28,-10 + 3139: -26,-10 + 3140: -26,-8 + 3141: -25,-5 + 3142: -29,-5 + 3144: -26,-1 + 3145: -25,1 + 3146: -26,1 + 3147: -16,-7 + 3148: -16,-8 + 3149: -17,-8 + 3151: -41,-13 + 3152: -45,-12 + 3153: -51,-12 + 3154: -54,-12 + 3155: -52,-13 + 3156: -48,-14 + 3173: -42,-11 + 3174: -29,-8 + 3175: -24,-5 + 3183: -16,-4 + 3184: -22,4 + 3185: -25,8 + 3186: -25,4 + 3187: 4,-15 + 3188: 4,-16 + 3193: 12,-25 + 3194: 12,-21 + 3195: 21,-32 + 3196: 32,-24 + 3197: 31,3 + 3198: 29,18 + 3199: 30,16 + 3200: 31,17 + 3201: 32,18 + 3202: 25,22 + 3203: 7,32 + 3204: 7,33 + 3206: 16,38 + 3208: 12,38 + 3212: 14,29 + 3213: 8,24 + 3214: 6,26 + 3215: 6,29 + 3255: 23,30 + 3256: 23,28 + 3257: 18,29 + 3258: 35,29 + 3259: 45,27 + 3260: 41,22 + 3267: -5,35 + 3268: 0,24 + 3292: 1,-5 + 3293: -1,-7 + 3294: 0,-7 + 3295: 7,-6 + 4176: -20,-40 + 4177: -21,-38 + 4178: -20,-36 + 4179: -21,-32 + 4180: -19,-31 + 4181: -21,-29 + 4182: -16,-30 + 4183: -17,-29 + 4201: -5,14 + 4202: -7,15 + 4207: -7,20 + 4213: -7,29 + 4215: -9,30 + 4216: -7,32 + 4220: -9,37 + 4228: -7,42 + 4229: -8,48 + 4251: 11,36 + 4263: 12,30 + 4264: 12,28 + 4269: 13,31 + 4274: 11,24 + 4275: 13,24 + 4303: 31,6 + 4304: 32,8 + 4307: 33,11 + 4313: 38,10 + 4314: 34,11 + 4315: 40,8 + 4316: 38,9 + 4323: 41,9 + 4324: 42,7 + 4330: 41,13 + 4335: 36,14 + 4336: 37,13 + 4388: 17,15 + 4389: 19,12 + 4390: 21,11 + 4410: 20,6 + 4412: 22,10 + 4413: 21,12 + 4414: 19,13 + 4417: 14,15 + 4419: 10,3 + 4432: 19,-5 + 4433: 20,-3 + 4434: 16,-7 + 4435: 30,-7 + 4458: 39,-9 + 4475: 18,-17 + 4476: 18,-18 + 4477: 19,-20 + 4478: 15,-19 + 4488: 10,-15 + 4489: 11,-14 + 4503: 6,-14 + 4504: 2,-14 + 4507: 1,-13 + 4508: 8,-14 + 4540: -10,-12 + 4542: -8,-16 + 4553: -8,-29 + 4554: -7,-28 + 4555: -8,-27 + 4562: -12,-30 + 4581: -4,-28 + 4582: -3,-26 + 4583: -7,-31 + 4647: -28,-17 + 4648: -25,-16 + 4649: -17,-17 + 4650: -15,-16 + 4651: -13,-15 + 4652: -12,-14 + 4653: -25,-17 + 4654: -23,-17 + 4656: -16,-24 + 4657: -15,-25 + 4658: -16,-27 + 4659: -16,-29 + 4660: -19,-29 + 4661: -21,-30 + 4662: -20,-32 + 4663: -21,-33 + 4666: -21,-37 + 4667: -20,-33 + 4668: -20,-39 + 4680: -30,-39 + 4682: -27,-40 + 4683: -28,-39 + 4685: -29,-41 + 4687: -21,-40 + 4688: -32,-39 + 4706: -28,-36 + 4707: -26,-36 + 4708: -27,-35 + 4709: -34,-31 + 4725: -31,-23 + 4731: -25,-21 + 4760: -25,-20 + 4761: -24,-22 + 4769: -28,-16 + 4770: -24,-17 + 4777: -41,-31 + 4778: -36,-31 + 4782: -32,-38 + 4803: -48,-31 + 4804: -47,-30 + 4805: -51,-30 + 4806: -52,-32 + 4807: -56,-32 + 4808: -54,-30 + 4809: -54,-32 + 4810: -52,-31 + 4811: -47,-31 + 4827: -62,-31 + 4838: -54,-29 + 4839: -61,-29 + 4840: -37,-34 + 4861: -20,-43 + 4869: -17,-13 + 4880: -9,-6 + 4881: -8,-5 + 4910: -8,-2 + 4912: -10,4 + 4913: -8,4 + 4914: -10,0 + 4916: -3,0 + 4920: -4,-1 + 4925: 12,-14 + 4926: 15,-6 + 4933: 19,-1 + 4961: 8,-2 + 4962: 9,1 + 4963: 11,-3 + 4979: 9,9 + 4980: 11,8 + 4981: 10,11 + 4982: 13,14 + 4983: 15,15 + 4984: 20,10 + 4988: 20,8 + 5000: 5,39 + 5006: 15,39 + 5034: -9,48 + 5035: -8,43 + 5037: -4,30 + 5061: -7,22 + 5062: -6,23 + 5104: -20,18 + 5105: -14,19 + 5106: -13,18 + 5135: -28,31 + 5145: -26,31 + 5159: -11,24 + 5170: -3,21 + 5179: -4,14 + 5180: -6,15 + 5181: -5,16 + 5182: -10,11 + 5183: -11,11 + 5195: -10,5 + 5196: -3,3 + 5201: -2,0 + 5202: 0,2 + 5211: 4,0 + 5212: 6,1 + 5213: 3,-2 + 5214: 6,-2 + 5224: 1,0 + 5238: 1,-1 + 5239: -5,-10 + 5253: 28,-2 + 5254: 29,-4 + 5323: -44,-13 + 5324: -46,-13 + 5325: -50,-13 + 5326: -42,-10 + 5405: -18,-33 + 5406: -15,-33 + 5463: 7,37 + 5464: 9,35 + 5465: 14,36 + 5495: 15,6 + 5582: 13,28 + 5583: 14,30 + 5977: 19,7 + 5987: 23,12 + 6001: 6,21 + 6038: 17,0 + 6039: 19,-2 + 6070: -7,-19 + 6071: -7,-18 + 6101: -31,-37 + 6102: -22,-38 + 6120: -33,-30 + 6121: -34,-30 + 6143: -8,18 + 6144: -8,20 + 6168: 27,36 + 6205: 24,-10 + 6242: 39,-36 + 6243: 22,-40 + 6275: -39,-8 + 6304: -26,-33 + 6496: 44,6 + 6497: 34,1 + 6500: 30,1 + 6580: 2,-27 + - node: + color: '#FFFFFFFF' + id: DirtMedium + decals: + 5349: -3,-42 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1976: -8,46 + 1977: -6,44 + 1978: -8,39 + 1979: -7,37 + 1980: -9,34 + 1982: -9,29 + 1983: -7,26 + 1984: -7,24 + 1985: -8,21 + 1987: -8,12 + 1988: -4,15 + 1990: -10,16 + 1991: -14,21 + 1992: -16,21 + 1993: -13,15 + 1994: -15,21 + 1995: -20,22 + 1997: -17,14 + 1998: -15,11 + 1999: -14,7 + 2000: -17,8 + 2001: -17,10 + 2002: -18,11 + 2003: -28,16 + 2004: -26,12 + 2005: -21,4 + 2006: -14,4 + 2011: -8,7 + 2012: -8,10 + 2013: -3,2 + 2014: 4,-3 + 2015: 4,2 + 2016: 11,-1 + 2017: 0,-6 + 2018: 2,-5 + 2019: 5,-5 + 2020: 6,-5 + 2021: 9,4 + 2022: 14,10 + 2023: 16,9 + 2024: 6,9 + 2025: 1,10 + 2027: -4,13 + 2028: 2,16 + 2029: 9,16 + 2030: 13,17 + 2032: 15,14 + 2034: 21,14 + 2040: 20,9 + 2042: 19,17 + 2043: 21,19 + 2044: 22,18 + 2045: 13,19 + 2051: 20,-2 + 2052: 22,-1 + 2053: 20,-5 + 2056: 23,-9 + 2057: 19,-7 + 2058: 19,-12 + 2059: 18,-11 + 2060: 19,-9 + 2061: 16,-6 + 2063: 15,-13 + 2064: 14,-15 + 2065: 9,-15 + 2067: 2,-12 + 2069: 2,-15 + 2072: -8,-13 + 2075: -14,-13 + 2076: -15,-17 + 2077: -12,-18 + 2079: -8,-6 + 2534: 34,-13 + 2535: 32,-20 + 2537: 32,-25 + 2538: 33,-16 + 2540: 33,-2 + 2541: 29,-2 + 2543: 22,-6 + 2548: 26,6 + 2549: 24,7 + 2550: 23,5 + 2551: 32,3 + 2552: 30,5 + 2553: 31,8 + 2555: 32,6 + 2556: 39,8 + 2557: 35,10 + 2558: 32,10 + 2559: 37,11 + 2562: 41,11 + 2563: 40,14 + 2564: 43,15 + 2565: 39,14 + 2566: 36,15 + 2567: 34,14 + 2568: 31,13 + 2569: 30,15 + 2570: 32,19 + 2571: 28,19 + 2572: 25,19 + 2573: 25,15 + 2574: 25,12 + 2575: 27,10 + 2576: 28,15 + 2577: 20,18 + 2578: 21,21 + 2579: 19,22 + 2580: 23,24 + 2581: 21,25 + 2582: 22,24 + 2583: 20,22 + 2584: 26,22 + 2585: 24,26 + 2586: 26,26 + 2587: 29,22 + 2588: 28,21 + 2589: 32,22 + 2590: 31,23 + 2591: 31,26 + 2592: 33,26 + 2593: 39,19 + 2594: 36,19 + 2651: 24,20 + 2652: 27,18 + 2653: 31,15 + 2654: 32,13 + 2655: 30,11 + 2656: 36,8 + 2659: 30,8 + 2660: 30,3 + 2661: 36,3 + 2662: 35,3 + 2663: 37,19 + 2664: 42,15 + 2665: 40,15 + 2666: 35,15 + 2774: -22,4 + 2782: -6,1 + 2791: -3,13 + 2792: -5,11 + 2794: 5,-4 + 2827: 46,1 + 2828: 54,-1 + 2829: 47,11 + 2830: 47,5 + 2831: 50,17 + 2832: 40,6 + 2849: -2,-38 + 2857: -19,-46 + 2858: -22,-45 + 2859: -28,-46 + 2860: -30,-43 + 2861: -34,-43 + 3030: -69,-30 + 3031: -62,-29 + 3032: -55,-33 + 3033: -53,-29 + 3034: -53,-28 + 3035: -55,-28 + 3036: -61,-28 + 3045: -28,-43 + 3062: -18,-43 + 3063: -20,-44 + 3064: -23,-42 + 3157: -55,-13 + 3158: -50,-12 + 3159: -41,-13 + 3164: -27,-10 + 3165: -25,-5 + 3166: -26,-3 + 3167: -27,-3 + 3169: -24,-10 + 3170: -24,-8 + 3171: -28,-8 + 3172: -41,-11 + 3216: 6,34 + 3217: 9,33 + 3218: 11,38 + 3220: 4,38 + 3221: 1,39 + 3222: 20,38 + 3223: 19,36 + 3224: 20,35 + 3225: 15,38 + 3269: -2,24 + 3289: 6,15 + 3290: 7,16 + 3291: 2,-6 + 4188: -20,-37 + 4189: -20,-30 + 4190: -15,-31 + 4203: -6,18 + 4208: -7,19 + 4209: -6,20 + 4214: -8,31 + 4221: -7,43 + 4227: -8,42 + 4241: 0,17 + 4242: 8,35 + 4246: 4,33 + 4253: 8,37 + 4261: 11,29 + 4262: 11,30 + 4270: 13,33 + 4271: 13,27 + 4272: 14,25 + 4276: 12,24 + 4277: 9,23 + 4278: 4,24 + 4288: 5,26 + 4290: 5,29 + 4291: 10,27 + 4305: 33,8 + 4306: 38,11 + 4319: 36,9 + 4320: 41,7 + 4325: 42,9 + 4326: 40,11 + 4327: 43,14 + 4331: 41,13 + 4332: 35,14 + 4337: 38,15 + 4348: 40,17 + 4349: 39,18 + 4384: 16,13 + 4385: 17,14 + 4398: 37,17 + 4399: 35,17 + 4400: 37,18 + 4406: 19,4 + 4438: 43,-20 + 4439: 42,-19 + 4440: 38,-19 + 4441: 38,-21 + 4442: 36,-22 + 4457: 39,-11 + 4479: 18,-19 + 4480: 17,-18 + 4481: 19,-18 + 4482: 18,-17 + 4483: 16,-19 + 4484: 15,-18 + 4490: 11,-13 + 4491: 12,-15 + 4505: 5,-15 + 4509: 8,-15 + 4510: 6,-13 + 4511: 4,-13 + 4512: -1,-14 + 4528: -10,-13 + 4556: -7,-27 + 4557: -6,-27 + 4558: -9,-21 + 4559: -13,-29 + 4569: -12,-23 + 4570: -2,-22 + 4580: -4,-29 + 4587: -8,-36 + 4595: 1,-38 + 4596: 2,-34 + 4597: 3,-34 + 4603: 4,-39 + 4604: 0,-38 + 4611: -13,-17 + 4612: -12,-15 + 4623: -15,-20 + 4625: -15,-27 + 4633: -17,-18 + 4634: -16,-17 + 4642: -20,-17 + 4643: -27,-17 + 4675: -19,-38 + 4696: -32,-33 + 4702: -29,-35 + 4703: -28,-34 + 4713: -31,-25 + 4714: -30,-25 + 4717: -31,-22 + 4730: -23,-21 + 4743: -19,-24 + 4744: -19,-26 + 4745: -21,-26 + 4746: -21,-21 + 4747: -25,-26 + 4756: -25,-24 + 4757: -23,-24 + 4758: -26,-22 + 4759: -24,-20 + 4763: -31,-20 + 4764: -37,-19 + 4771: -40,-28 + 4788: -33,-31 + 4789: -44,-32 + 4793: -46,-31 + 4798: -53,-31 + 4799: -52,-30 + 4814: -51,-32 + 4815: -55,-32 + 4816: -53,-33 + 4817: -56,-30 + 4818: -58,-32 + 4819: -59,-30 + 4828: -63,-32 + 4829: -64,-32 + 4830: -67,-30 + 4831: -66,-31 + 4832: -68,-31 + 4833: -65,-31 + 4848: -35,-36 + 4849: -37,-33 + 4862: -21,-43 + 4870: -19,-13 + 4871: -15,-13 + 4872: -8,-10 + 4882: -10,-4 + 4883: -8,-3 + 4885: -10,1 + 4886: -10,-1 + 4887: -8,1 + 4888: -8,-1 + 4889: -9,0 + 4892: -9,4 + 4921: -3,-3 + 4922: 16,-13 + 4936: 20,1 + 4937: 21,2 + 4938: 21,-2 + 4939: 20,0 + 4946: 10,1 + 4947: 9,-2 + 4949: 9,0 + 4950: 14,-1 + 4954: 7,-3 + 4957: 7,-1 + 4964: 9,-4 + 4972: 13,10 + 4973: 13,11 + 4974: 10,9 + 4975: 10,10 + 4977: 9,8 + 5002: 9,39 + 5003: 10,39 + 5007: 14,39 + 5008: 9,29 + 5011: 11,27 + 5012: 9,27 + 5013: 0,40 + 5014: -7,41 + 5015: -9,36 + 5016: -8,40 + 5017: -9,44 + 5018: -6,45 + 5019: -7,47 + 5020: -8,49 + 5039: -3,27 + 5040: -2,27 + 5045: -5,30 + 5046: -9,28 + 5047: -8,29 + 5048: -7,27 + 5049: -6,26 + 5050: -8,22 + 5063: -7,23 + 5071: -9,14 + 5072: -14,16 + 5073: -14,18 + 5074: -14,20 + 5075: -22,18 + 5076: -20,17 + 5077: -19,18 + 5093: -16,18 + 5094: -17,19 + 5108: -22,20 + 5109: -20,20 + 5113: -21,23 + 5114: -19,26 + 5115: -17,24 + 5125: -14,9 + 5126: -25,16 + 5132: -21,14 + 5133: -19,14 + 5134: -19,17 + 5141: -32,34 + 5142: -34,31 + 5143: -29,32 + 5144: -24,31 + 5148: -25,33 + 5149: -24,33 + 5150: -18,30 + 5153: -11,28 + 5154: -11,25 + 5172: -2,21 + 5173: -2,19 + 5185: -11,11 + 5193: -9,6 + 5198: -5,2 + 5199: -5,1 + 5209: 5,0 + 5210: 4,1 + 5218: -1,0 + 5225: 2,1 + 5226: 1,1 + 5227: 1,-3 + 5228: 2,-7 + 5229: 6,-6 + 5230: 0,-5 + 5231: -1,-4 + 5241: 5,-10 + 5242: 14,-4 + 5243: 28,-13 + 5255: 27,-4 + 5256: 35,-2 + 5257: -38,27 + 5258: -36,28 + 5259: -38,34 + 5260: -36,35 + 5275: -29,-9 + 5276: -29,-6 + 5277: -29,-7 + 5292: -27,-5 + 5316: -43,-6 + 5317: -43,-10 + 5394: -17,-37 + 5395: -18,-35 + 5396: -17,-33 + 5397: -15,-36 + 5398: -16,-34 + 5452: 7,38 + 5453: 6,37 + 5454: 9,36 + 5455: 14,37 + 5456: 14,35 + 5481: 10,19 + 5482: 11,21 + 5483: 15,4 + 5484: 14,5 + 5485: 15,7 + 5486: 14,8 + 5487: 17,6 + 5488: 17,4 + 5548: -34,-10 + 5552: -37,-9 + 5588: 22,25 + 5589: 23,25 + 5593: 24,22 + 5594: 22,21 + 5595: 21,23 + 5597: 22,23 + 5607: 24,16 + 5608: 26,10 + 5609: 25,10 + 5621: 34,7 + 5622: 36,7 + 5629: 40,20 + 5630: 28,16 + 5633: 26,4 + 5651: -5,5 + 5652: -6,6 + 5660: -5,8 + 5661: -6,10 + 5682: -4,10 + 5688: -3,9 + 5706: -4,-16 + 5970: 14,13 + 5971: 19,9 + 5972: 19,6 + 5973: 19,4 + 5982: 23,11 + 5983: 22,13 + 5984: 22,15 + 5990: 21,5 + 5991: 21,8 + 5995: 6,20 + 5996: 7,19 + 5997: 8,21 + 6013: -11,2 + 6014: -11,-2 + 6015: -7,-3 + 6016: -7,0 + 6017: -7,2 + 6028: 17,2 + 6030: 18,1 + 6031: 18,-2 + 6032: 19,2 + 6042: 7,-16 + 6047: -7,-15 + 6048: -3,-15 + 6049: -5,-15 + 6054: -4,-14 + 6064: -8,-19 + 6065: -10,-18 + 6066: -8,-17 + 6077: -17,-27 + 6078: -17,-23 + 6090: -24,-38 + 6091: -27,-38 + 6092: -29,-38 + 6093: -31,-36 + 6094: -32,-34 + 6106: -29,-40 + 6107: -32,-40 + 6108: -37,-32 + 6109: -34,-32 + 6119: -35,-30 + 6122: -34,-30 + 6123: -39,-33 + 6124: -37,-39 + 6131: -4,12 + 6132: -7,12 + 6140: -9,21 + 6141: -8,16 + 6146: -10,13 + 6147: -6,31 + 6148: -6,29 + 6160: 26,36 + 6162: 27,37 + 6163: 26,34 + 6199: 23,-10 + 6200: 24,-8 + 6201: 24,-6 + 6208: 41,-15 + 6209: 42,-17 + 6210: 42,-16 + 6215: 12,-18 + 6220: 16,-12 + 6221: 16,-9 + 6231: 24,-36 + 6232: 22,-40 + 6233: 22,-38 + 6234: 40,-40 + 6235: 38,-38 + 6236: 38,-36 + 6269: -41,-9 + 6270: -40,-8 + 6271: -37,-8 + 6279: -19,-7 + 6296: -25,-34 + 6297: -23,-34 + 6298: -26,-32 + 6299: -25,-33 + 6300: -23,-33 + 6321: -44,-34 + 6322: -43,-35 + 6323: -43,-37 + 6325: -44,-36 + 6351: -15,27 + 6403: 13,3 + 6404: 13,1 + 6477: 3,20 + 6478: 4,19 + 6485: -23,39 + 6488: -24,55 + 6489: 2,32 + 6490: 34,27 + 6495: 40,5 + 6501: 32,1 + 6502: 25,1 + 6503: 24,-4 + 6511: 20,15 + 6512: 21,17 + 6518: -48,-14 + 6569: 1,-23 + 6570: 1,-25 + 6571: 2,-26 + 6572: 0,-27 + 6573: 0,-21 + 6655: -23,-14 + 6656: -23,-13 + 6657: -22,-11 + 6658: -23,-9 + 6659: -22,-8 + 6660: -23,-7 + 6661: -22,-5 + 6662: -22,-4 + 6663: -23,-2 + 6664: -23,0 + 6665: -21,1 + 6666: -20,-1 + 6667: -18,1 + 6668: -16,1 + 6669: -16,-1 + 6670: -17,-1 + 6671: -16,-2 + 6672: -15,0 + 6673: -13,1 + 6674: -12,-2 + 6701: 15,2 + 6702: 15,1 + 6703: 16,-1 + 6704: 15,-2 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 1328: 27,7 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 1329: 27,6 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 1330: 27,8 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 1331: 28,7 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 1332: 26,7 + - node: + angle: -1.5707963267948966 rad + color: '#D4D4D496' + id: LoadingArea + decals: + 5443: 8,27 + - node: + color: '#D4D4D496' + id: LoadingArea + decals: + 5436: 6,38 + 5437: 7,38 + 5438: 13,34 + 5439: 14,34 + - node: + angle: 3.141592653589793 rad + color: '#D4D4D496' + id: LoadingArea + decals: + 5440: 9,38 + 5441: 10,38 + - node: + color: '#D4D4D496' + id: LoadingAreaGreyscale + decals: + 5511: 35,14 + - node: + color: '#1C2A3AC6' + id: QuarterTileOverlayGreyscale + decals: + 5936: -30,-10 + 5937: -30,-11 + 5938: -30,-12 + 5939: -31,-12 + 5940: -32,-12 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale + decals: + 6585: -23,-11 + 6586: -23,-10 + 6587: -23,-9 + 6588: -23,-8 + 6589: -23,-7 + 6598: -23,-12 + 6600: -23,-6 + 6601: -23,-5 + 6602: -23,-4 + 6603: -23,-3 + 6609: -23,-13 + - node: + color: '#537A2E93' + id: QuarterTileOverlayGreyscale + decals: + 5899: -30,-38 + 5900: -29,-38 + 5901: -28,-38 + 5902: -27,-38 + 5903: -26,-38 + 5904: -25,-38 + 5905: -24,-38 + 5906: -23,-38 + 5907: -22,-38 + - node: + color: '#547C2F93' + id: QuarterTileOverlayGreyscale + decals: + 5723: -17,-21 + 5724: -17,-22 + 5725: -17,-23 + 5726: -17,-24 + 5727: -17,-25 + 5728: -36,-30 + 5729: -35,-30 + 5730: -34,-30 + 5731: -33,-30 + 5732: -32,-30 + 5733: -31,-30 + 5734: -37,-30 + 5735: -38,-30 + 5737: -17,-26 + 5738: -17,-27 + 5739: -17,-28 + 5740: 19,9 + 5741: 19,8 + 5742: 19,7 + 5743: 19,6 + 5744: 19,5 + 5745: 19,4 + - node: + color: '#1C2A3AC6' + id: QuarterTileOverlayGreyscale180 + decals: + 5927: -33,-9 + 5928: -33,-10 + 5929: -33,-11 + 5930: -32,-9 + 5931: -31,-9 + - node: + color: '#537A2E93' + id: QuarterTileOverlayGreyscale180 + decals: + 5908: -31,-34 + 5909: -31,-35 + 5910: -31,-36 + 5911: -31,-37 + - node: + color: '#6B291C93' + id: QuarterTileOverlayGreyscale180 + decals: + 5955: -38,-32 + 5956: -37,-32 + 5957: -36,-32 + 5958: -35,-32 + 5959: -34,-32 + - node: + color: '#722C1E93' + id: QuarterTileOverlayGreyscale180 + decals: + 5856: -10,-15 + 5857: -9,-15 + 5858: -8,-15 + 5859: -6,-15 + 5860: -7,-15 + 5861: -5,-15 + 5862: -4,-15 + 5863: -19,-31 + 5864: -18,-31 + 5865: -17,-31 + 5866: -16,-31 + 5867: -15,-31 + 5868: -23,-40 + 5869: -22,-40 + 5870: -21,-40 + 5871: -20,-40 + 5872: -19,-40 + - node: + color: '#8C347F96' + id: QuarterTileOverlayGreyscale180 + decals: + 5815: -6,12 + 5816: -5,12 + 5817: -4,12 + 5818: -7,12 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 6172: 22,-10 + 6173: 23,-10 + 6174: 24,-10 + 6175: 24,-9 + 6176: 24,-8 + 6177: 24,-7 + 6178: 24,-6 + - node: + color: '#547C2F93' + id: QuarterTileOverlayGreyscale270 + decals: + 5746: 13,13 + 5747: 14,13 + 5748: 15,13 + 5749: 16,13 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale270 + decals: + 5811: -8,18 + 5812: -8,17 + 5813: -8,16 + 5814: -8,15 + - node: + color: '#334E6DC8' + id: QuarterTileOverlayGreyscale90 + decals: + 6590: -22,-11 + 6591: -22,-10 + 6592: -22,-9 + 6593: -22,-8 + 6594: -22,-7 + 6599: -22,-12 + 6604: -22,-3 + 6605: -22,-4 + 6606: -22,-5 + 6607: -22,-6 + 6608: -22,-13 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 5770: 21,4 + 5771: 21,5 + 5772: 21,6 + 5773: 21,7 + 5774: 21,8 + 6515: 21,9 + - node: + color: '#547C2F93' + id: QuarterTileOverlayGreyscale90 + decals: + 5716: -7,3 + 5717: -7,2 + 5718: -7,1 + 5719: -7,0 + 5720: -7,-1 + 5721: -7,-2 + 5722: -7,-3 + - node: + color: '#6B291C93' + id: QuarterTileOverlayGreyscale90 + decals: + 5945: 16,-12 + 5946: 16,-11 + 5947: 16,-10 + 5948: 16,-9 + 5949: 16,-8 + 5950: -6,30 + 5951: -6,29 + 5952: -6,28 + 5953: -6,27 + 5954: -6,26 + - node: + color: '#FA750096' + id: QuarterTileOverlayGreyscale90 + decals: + 5780: 22,15 + 5781: 22,14 + 5782: 22,13 + 5784: 23,12 + 5785: 23,11 + 5786: 23,10 + 6326: 22,12 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign1 + decals: + 4135: 1,-14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign2 + decals: + 4136: 2,-14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign3 + decals: + 4137: 3,-14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign4 + decals: + 4138: 4,-14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign5 + decals: + 4139: 5,-14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign6 + decals: + 4140: 6,-14 + - node: + color: '#FFFFFFFF' + id: SpaceStationSign7 + decals: + 4141: 7,-14 + - node: + color: '#D4D4D496' + id: StandClear + decals: + 5444: 13.497481,24.9933 + 5498: 42,-6 + - node: + color: '#D4D4D496' + id: WarnCornerNE + decals: + 6417: 2,-21 + - node: + color: '#D4D4D496' + id: WarnCornerNW + decals: + 6418: 0,-21 + - node: + color: '#D4D4D496' + id: WarnCornerSE + decals: + 6419: 2,-27 + - node: + color: '#D4D4D496' + id: WarnCornerSW + decals: + 6420: 0,-27 + - node: + color: '#64646493' + id: WarnCornerSmallGreyscaleNE + decals: + 3965: -64,-30 + 3966: -56,-30 + - node: + color: '#64646493' + id: WarnCornerSmallGreyscaleNW + decals: + 3967: -60,-30 + 3968: -52,-30 + - node: + color: '#64646493' + id: WarnCornerSmallGreyscaleSE + decals: + 3961: -64,-32 + 3962: -56,-32 + 3989: 14,-15 + - node: + color: '#64646493' + id: WarnCornerSmallGreyscaleSW + decals: + 3963: -60,-32 + 3964: -52,-32 + - node: + color: '#D4D4D496' + id: WarnCornerSmallSE + decals: + 5539: -17,-8 + - node: + color: '#D4D4D496' + id: WarnCornerSmallSW + decals: + 5538: -15,-8 + - node: + color: '#D4D4D428' + id: WarnFullGreyscale + decals: + 4032: 42,7 + 4033: 42,8 + 4034: 42,9 + 5475: 11,21 + 5476: 10,21 + 5477: 10,19 + 5478: 11,19 + - node: + color: '#D4D4D496' + id: WarnLineE + decals: + 5535: -17,-9 + 6414: 2,-23 + 6415: 2,-22 + 6435: 2,-26 + - node: + cleanable: True + color: '#4C4C4C95' + id: WarnLineGreyscaleE + decals: + 3616: -31,-17 + 3732: 37,-6 + - node: + color: '#64646493' + id: WarnLineGreyscaleE + decals: + 3756: -2,17 + 3757: -2,16 + 3758: 16,15 + 3759: 16,14 + 3760: 16,13 + 3773: 17,15 + 3774: 17,14 + 3775: 17,13 + 3776: -1,17 + 3777: -1,16 + 3827: -12,-13 + 3828: -12,-14 + 3829: -12,-15 + 3830: -11,-15 + 3831: -11,-14 + 3832: -11,-13 + 3833: -3,-13 + 3834: -3,-14 + 3836: -2,-15 + 3837: -2,-14 + 3838: -2,-13 + 3839: 10,-13 + 3840: 10,-14 + 3841: 10,-15 + 3842: 11,-15 + 3843: 11,-14 + 3844: 11,-13 + 3867: 16,-6 + 3868: 16,-7 + 3869: 17,-7 + 3870: 17,-6 + 3873: 25,-8 + 3874: 25,-7 + 3875: 28,-7 + 3876: 28,-8 + 3877: 29,-8 + 3878: 29,-7 + 3894: -31,-16 + 3895: -30,-16 + 3896: -30,-17 + 3937: -46,-30 + 3938: -46,-31 + 3939: -46,-32 + 3940: -45,-32 + 3941: -45,-31 + 3942: -45,-30 + 5963: -3,-15 + 6618: -15,1 + 6619: -15,0 + 6620: -15,-1 + 6621: -14,-1 + 6622: -14,0 + 6623: -14,1 + - node: + color: '#D4D4D428' + id: WarnLineGreyscaleE + decals: + 4035: 41,9 + 4036: 41,8 + 4037: 41,7 + 4040: 36,-20 + 4041: 36,-21 + 4042: 36,-22 + 5513: 23,25 + 5514: 23,26 + - node: + cleanable: True + color: '#4C4C4C95' + id: WarnLineGreyscaleN + decals: + 3735: -16,-3 + - node: + color: '#5B9DFF93' + id: WarnLineGreyscaleN + decals: + 6444: 1,-24 + - node: + color: '#64646493' + id: WarnLineGreyscaleN + decals: + 3762: 20,2 + 3763: 21,2 + 3770: 19,3 + 3771: 20,3 + 3772: 21,3 + 3784: -8,19 + 3785: -7,19 + 3786: -7,18 + 3787: -6,18 + 3788: -6,19 + 3799: -8,32 + 3800: -8,31 + 3801: -7,31 + 3802: -7,32 + 3803: -10,4 + 3804: -9,4 + 3805: -8,4 + 3806: -8,5 + 3807: -9,5 + 3808: -10,5 + 3821: -10,-12 + 3822: -10,-11 + 3823: -9,-11 + 3824: -9,-12 + 3825: -8,-12 + 3826: -8,-11 + 3897: -17,-20 + 3898: -17,-19 + 3899: -16,-19 + 3900: -16,-20 + 3901: -15,-20 + 3902: -15,-19 + 3923: -40,-29 + 3924: -40,-30 + 3925: -39,-30 + 3926: -39,-29 + 3927: -32,-33 + 3930: -31,-33 + 3949: -63,-30 + 3950: -62,-30 + 3951: -61,-30 + 3952: -55,-30 + 3953: -54,-30 + 3954: -53,-30 + 3969: 9,39 + 3970: 7,39 + 3971: 13,31 + 3972: 14,31 + 3973: 13,25 + 3974: 14,25 + 3975: 13,26 + 3976: 14,26 + 3977: 13,32 + 3978: 14,32 + 5960: -32,-34 + 5961: -31,-34 + 5964: 19,2 + 5967: -8,18 + 6447: 20,15 + 6448: 21,15 + 6453: 20,16 + 6454: 21,16 + 6610: -23,-16 + 6611: -22,-16 + 6612: -23,-15 + 6613: -22,-15 + - node: + cleanable: True + color: '#64646493' + id: WarnLineGreyscaleN + decals: + 4191: -21,-36 + 4192: -20,-36 + 4193: -21,-35 + 4194: -20,-35 + - node: + color: '#D4D4D428' + id: WarnLineGreyscaleN + decals: + 4043: 36,-4 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 6440: 1,-26 + - node: + cleanable: True + color: '#4C4C4C95' + id: WarnLineGreyscaleS + decals: + 3734: -16,-3 + 3737: -26,-10 + - node: + color: '#64646493' + id: WarnLineGreyscaleS + decals: + 3764: 19,4 + 3765: 20,4 + 3767: 19,3 + 3768: 20,3 + 3769: 21,3 + 3790: -8,19 + 3791: -7,19 + 3792: -7,20 + 3793: -6,20 + 3794: -6,19 + 3795: -7,33 + 3796: -8,33 + 3797: -8,32 + 3798: -7,32 + 3809: -10,6 + 3810: -10,5 + 3811: -9,5 + 3812: -9,6 + 3813: -8,6 + 3814: -8,5 + 3815: -10,-10 + 3816: -10,-11 + 3817: -9,-11 + 3818: -9,-10 + 3819: -8,-10 + 3820: -8,-11 + 3903: -17,-18 + 3904: -17,-19 + 3905: -16,-18 + 3906: -16,-19 + 3907: -15,-18 + 3908: -15,-19 + 3909: -40,-28 + 3910: -40,-29 + 3911: -39,-28 + 3912: -39,-29 + 3913: -32,-32 + 3914: -32,-33 + 3915: -31,-33 + 3916: -31,-32 + 3955: -63,-32 + 3956: -62,-32 + 3957: -61,-32 + 3958: -55,-32 + 3959: -54,-32 + 3960: -53,-32 + 3979: 13,33 + 3980: 14,33 + 3981: 14,32 + 3982: 13,32 + 3983: 13,27 + 3984: 14,27 + 3985: 14,26 + 3986: 13,26 + 3987: 15,-15 + 3988: 16,-15 + 5965: 21,4 + 5966: -8,20 + 6449: 20,16 + 6450: 21,16 + 6614: -23,-14 + 6615: -22,-14 + 6616: -22,-15 + 6617: -23,-15 + - node: + cleanable: True + color: '#64646493' + id: WarnLineGreyscaleS + decals: + 4195: -21,-34 + 4196: -20,-34 + 4197: -20,-35 + 4198: -21,-35 + - node: + color: '#55DC0D93' + id: WarnLineGreyscaleW + decals: + 6445: 0,-22 + - node: + color: '#64646493' + id: WarnLineGreyscaleW + decals: + 3752: 18,14 + 3753: 18,13 + 3754: 0,17 + 3755: 0,16 + 3778: -1,17 + 3779: -1,16 + 3780: 17,15 + 3781: 17,14 + 3782: 17,14 + 3845: -11,-13 + 3846: -11,-14 + 3847: -11,-15 + 3849: -10,-14 + 3850: -10,-13 + 3851: -2,-13 + 3852: -2,-14 + 3853: -2,-15 + 3854: -1,-15 + 3855: -1,-14 + 3856: -1,-13 + 3857: 11,-13 + 3858: 11,-14 + 3859: 11,-15 + 3860: 12,-15 + 3861: 12,-14 + 3862: 12,-13 + 3863: 17,-6 + 3864: 17,-7 + 3865: 18,-7 + 3866: 18,-6 + 3879: 25,-7 + 3880: 25,-8 + 3881: 26,-8 + 3882: 26,-7 + 3883: 29,-7 + 3884: 29,-8 + 3885: 30,-8 + 3886: 30,-7 + 3887: 43,-20 + 3888: 43,-21 + 3889: 43,-22 + 3890: -29,-16 + 3891: -29,-17 + 3892: -30,-16 + 3893: -30,-17 + 3943: -45,-30 + 3944: -45,-31 + 3945: -45,-32 + 3946: -44,-32 + 3947: -44,-31 + 3948: -44,-30 + 4038: 41,-6 + 4039: 41,-7 + 5962: -10,-15 + 6446: 18,15 + 6624: -14,1 + 6625: -14,0 + 6626: -14,-1 + 6627: -13,-1 + 6628: -13,0 + 6629: -13,1 + - node: + color: '#D4D4D428' + id: WarnLineGreyscaleW + decals: + 4044: 32,-3 + 4045: 31,-20 + - node: + color: '#D4D4D496' + id: WarnLineN + decals: + 5496: 43,-22 + 5536: -16,-8 + 6410: 1,-27 + - node: + color: '#D4D4D496' + id: WarnLineS + decals: + 5537: -15,-9 + 6406: 0,-23 + 6436: 0,-26 + - node: + color: '#D4D4D496' + id: WarnLineW + decals: + 5497: 43,-20 + 6416: 1,-21 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 1483: 4,6 + 1512: 2,6 + 1518: 4,10 + 1521: 0,10 + 6248: -28,-2 + 6471: 2,22 + 6532: -34,-21 + 6533: -33,-22 + 6548: -34,-23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 1480: -2,6 + 1513: 0,6 + 1519: -1,10 + 1520: 3,10 + 6247: -29,-2 + 6472: 0,22 + 6534: -36,-21 + 6535: -37,-22 + 6547: -36,-23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 1481: 4,3 + 1514: 2,3 + 1517: 4,8 + 1522: 0,8 + 6250: -28,-4 + 6469: 2,19 + 6537: -33,-28 + 6554: -34,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 1482: -2,3 + 1515: 0,3 + 1516: -1,8 + 1523: 3,8 + 6249: -29,-4 + 6470: 0,19 + 6536: -37,-28 + 6553: -36,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 6252: -28,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 6544: -35,-28 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 6253: -29,-3 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 6543: -34,-22 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 6542: -36,-22 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 6546: -35,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 6545: -35,-27 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 1496: 4,5 + 1497: 4,4 + 1503: 2,5 + 1504: 2,4 + 1526: 0,9 + 1527: 4,9 + 6465: 2,21 + 6466: 2,20 + 6522: -33,-23 + 6523: -33,-24 + 6524: -33,-25 + 6525: -33,-26 + 6526: -33,-27 + 6550: -34,-24 + 6551: -34,-25 + 6552: -34,-26 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 1493: 1,6 + 1495: 3,6 + 1507: -1,6 + 1528: 1,10 + 1529: 2,10 + 6474: 1,22 + 6541: -35,-21 + 6549: -35,-23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 1486: 1,3 + 1488: 3,3 + 1506: -1,3 + 1530: 1,8 + 1531: 2,8 + 6473: 1,19 + 6538: -36,-28 + 6540: -34,-28 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 1489: -2,4 + 1490: -2,5 + 1509: 0,5 + 1510: 0,4 + 1524: -1,9 + 1525: 3,9 + 6467: 0,21 + 6468: 0,20 + 6527: -37,-23 + 6528: -37,-24 + 6529: -37,-25 + 6530: -37,-26 + 6531: -37,-27 + 6555: -36,-26 + 6556: -36,-25 + 6557: -36,-24 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 3298: -10,8 + 3299: -7,13 + 3300: 8,17 + 3301: 6,28 + 3302: -8,26 + 3303: -7,36 + 3304: -8,45 + 3305: 2,37 + 3306: 14,38 + 3307: 22,40 + 3308: 14,28 + 3309: 24,25 + 3310: 24,19 + 3311: 30,13 + 3312: 39,7 + 3313: 40,19 + 3314: 25,5 + 3315: 19,11 + 3316: 16,7 + 3317: 10,-1 + 3318: -5,-3 + 3319: 5,2 + 3325: 33,-15 + 3328: 32,-24 + 3329: 15,-23 + 3330: 20,-32 + 3331: -8,-22 + 3336: -8,-30 + 3337: -9,-26 + 3338: -8,-25 + 3339: -7,-34 + 3340: -3,-34 + 3341: -4,-38 + 3342: 0,-39 + 3344: -12,-37 + 3347: -16,-21 + 3349: -31,-18 + 3350: -38,-19 + 3353: -29,-42 + 3355: -53,-30 + 3356: -59,-32 + 3363: -53,-13 + 3364: -45,-13 + 3367: -33,-7 + 3368: -27,-9 + 3369: -25,-4 + 3372: -15,-8 + 3374: -13,14 + 3375: -15,14 + 3377: -16,20 + 3378: -19,23 + 3424: 0,10 + 3427: 2,10 + 3431: 3,6 + 3432: -1,3 + 4117: -33,31 + 4124: -32,34 + 4127: -36,33 + 4128: -36,35 + 4129: -34,35 + 4130: -28,32 + 4133: -24,32 + 4372: 30,7 + 4373: 33,11 + 4377: 27,19 + 4378: 31,14 + 4379: 26,12 + 5689: -3,9 + 6169: 26,37 + 6306: 37,14 + 6316: -44,-35 + 6344: -17,26 + 6482: 1,19 + 6559: -36,-22 + 6560: 0,-23 + 6693: -23,-13 + 6694: -23,-4 + 6695: -20,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 3357: -66,-32 + 3358: -61,-30 + 3359: -43,-30 + 3361: -40,-20 + 3362: -24,-17 + 3379: -13,20 + 3380: -21,25 + 3381: -22,21 + 3382: -26,15 + 3383: -21,4 + 3384: -15,9 + 3385: -11,8 + 3386: -9,3 + 3387: -8,-7 + 3388: -9,-14 + 3391: 14,-13 + 3392: 20,-7 + 3393: 21,1 + 3394: 22,-9 + 3395: 24,6 + 3396: 27,7 + 3397: 20,14 + 3398: 26,20 + 3399: 27,13 + 3400: 38,19 + 3401: 28,21 + 3402: 20,23 + 3403: 34,5 + 3404: 27,3 + 3405: 31,-8 + 3408: 29,-2 + 3409: 39,-17 + 3410: 43,-19 + 3411: 34,-20 + 3412: 30,-14 + 3413: 18,-10 + 3414: 10,-3 + 3415: 13,0 + 3416: 10,5 + 3417: 13,8 + 3418: 0,8 + 3419: -1,10 + 3420: 4,9 + 3425: 3,8 + 3430: -2,5 + 3433: 7,6 + 3434: -2,2 + 3435: -5,-1 + 3436: 0,-6 + 3579: -61,-33 + 4118: -40,30 + 4119: -42,33 + 4120: -37,34 + 4125: -38,32 + 4126: -36,29 + 4134: -30,31 + 5690: -5,10 + 6171: 25,34 + 6481: 1,22 + 6696: -16,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 3421: -1,8 + 3422: 3,9 + 3426: 3,10 + 3429: 2,4 + 3437: 3,-7 + 3438: 11,0 + 3439: 11,4 + 3441: 13,-15 + 3443: -10,-9 + 3444: -9,-3 + 3447: -10,16 + 3448: -13,18 + 3449: -17,16 + 3451: -25,15 + 3452: -20,26 + 3453: -15,23 + 3454: -13,16 + 3455: -16,16 + 3456: -13,9 + 3457: -18,6 + 3458: -17,11 + 3459: -25,12 + 3463: -15,-7 + 3464: -25,-2 + 3465: -29,-11 + 3466: -36,-7 + 3467: -39,-6 + 3468: -49,-14 + 3469: -56,-12 + 3470: -39,-19 + 3471: -31,-17 + 3472: -28,-16 + 3474: -15,-28 + 3477: -42,-32 + 3478: -48,-30 + 3479: -53,-32 + 3480: -57,-31 + 3481: -64,-31 + 3482: -68,-31 + 3484: -22,-39 + 3485: -22,-42 + 3486: -31,-44 + 3487: -25,-43 + 3489: -28,-32 + 3490: -1,-39 + 3491: 5,-25 + 3493: 5,-21 + 3494: 11,-19 + 3495: 13,-17 + 3496: 17,-17 + 3497: 19,-20 + 3498: 15,-20 + 3500: 32,-11 + 3501: 32,-2 + 3502: 37,-1 + 3503: 36,-15 + 3504: 35,-23 + 3505: 41,-20 + 3506: 31,-21 + 3507: 27,-15 + 3508: 23,-12 + 3509: 41,-13 + 3510: 32,4 + 3511: 36,5 + 3512: 34,8 + 3513: 40,7 + 3514: 27,2 + 3515: 23,7 + 3517: 21,18 + 3518: 17,23 + 3519: 29,19 + 3520: 32,23 + 3521: 30,26 + 3522: 28,26 + 3523: 45,19 + 3524: 21,38 + 3525: 10,33 + 3527: 8,32 + 3528: 13,30 + 3529: 10,24 + 3530: 2,39 + 3532: 12,16 + 3534: 1,16 + 3561: -17,-14 + 3578: -62,-33 + 3588: -26,-29 + 3602: 42,13 + 3603: 45,14 + 4121: -40,28 + 4122: -36,27 + 4131: -24,30 + 4375: 40,18 + 4376: 33,17 + 5665: -4,5 + 6483: 4,21 + 6561: 2,-21 + 6697: -13,0 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 3423: 4,8 + 3535: -3,16 + 3537: 14,26 + 3538: 16,36 + 3539: 25,26 + 3540: 34,13 + 3542: 38,3 + 3543: 25,4 + 3544: 22,-1 + 3547: 11,-4 + 3548: 3,-3 + 3549: 7,-7 + 3550: 4,3 + 3551: 6,5 + 3552: -8,8 + 3553: -16,14 + 3554: -12,20 + 3555: -19,21 + 3556: -23,11 + 3557: -13,7 + 3558: -25,-6 + 3560: -16,-14 + 3562: -34,-12 + 3563: -37,-10 + 3564: -40,-13 + 3565: -45,-14 + 3566: -39,-20 + 3567: -24,-18 + 3568: -15,-22 + 3571: -18,-44 + 3573: -34,-46 + 3576: -53,-33 + 3577: -63,-33 + 3580: -69,-32 + 3581: -68,-32 + 3582: -42,-30 + 3583: -19,-27 + 3584: -23,-27 + 3585: -26,-21 + 3586: -23,-23 + 3587: -26,-30 + 3590: -2,-23 + 3591: 0,-19 + 3592: -4,-19 + 3593: 9,-20 + 3594: 24,-13 + 3595: 35,-25 + 3596: 41,-22 + 3597: 37,-17 + 3599: 36,-2 + 3600: 30,-4 + 3601: 42,14 + 4123: -32,30 + 4132: -25,30 + 6170: 27,34 + 6315: -42,-37 + 6343: -13,26 + 6399: 14,2 + 6558: -34,-27 + 6562: 2,-25 + 6692: -21,-8 + - node: + cleanable: True + color: '#571212A1' + id: dot + decals: + 6386: -9.521775,57.177227 + 6387: -9.646775,56.864727 + 6388: -9.709275,56.895977 + 6389: -9.06865,57.380352 + - node: + cleanable: True + angle: 3.193952531149623 rad + color: '#571212A1' + id: dot + decals: + 6364: -12.771775,56.614727 + 6365: -12.709275,56.724102 + 6366: -12.678025,56.630352 + 6367: -12.490525,56.864727 + 6368: -11.81865,56.786602 + 6369: -11.678025,56.895977 + 6370: -11.303025,57.364727 + 6371: -10.4749,58.192852 + 6372: -11.459275,58.380352 + 6373: -10.678025,58.192852 + 6374: -11.25615,57.270977 + 6375: -13.00615,56.505352 + 6376: -12.9124,55.817852 + 6377: -12.8499,55.942852 + - node: + cleanable: True + angle: 1.9024088846738192 rad + color: '#571212A1' + id: footprint + decals: + 6358: -12.115525,57.052227 + 6359: -12.146775,56.645977 + - node: + cleanable: True + angle: 2.111848394913139 rad + color: '#571212A1' + id: footprint + decals: + 6357: -11.459275,56.802227 + - node: + cleanable: True + angle: 2.4958208303518914 rad + color: '#571212A1' + id: footprint + decals: + 6360: -12.81865,56.927227 + 6361: -12.678025,56.349102 + - node: + cleanable: True + angle: 2.5656340004316642 rad + color: '#571212A1' + id: footprint + decals: + 6355: -11.00615,57.192852 + 6356: -11.584275,57.286602 + - node: + cleanable: True + angle: 3.193952531149623 rad + color: '#571212A1' + id: footprint + decals: + 6362: -13.2249,56.036602 + 6363: -12.803025,55.442852 + - node: + cleanable: True + angle: 2.2689280275926285 rad + color: '#571212A1' + id: shortline + decals: + 6378: -11.3499,57.458477 + - node: + cleanable: True + angle: 2.6179938779914944 rad + color: '#571212A1' + id: shortline + decals: + 6379: -10.928025,57.395977 + - node: + cleanable: True + color: '#571212A1' + id: splatter + decals: + 6353: -11.556236,57.953625 + 6354: -10.5999,57.645977 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65535 + 0,-1: + 0: 65520 + -1,0: + 0: 65535 + 0,1: + 0: 4095 + -1,1: + 0: 7645 + 0,2: + 0: 4095 + -1,2: + 0: 3003 + 0,3: + 0: 49661 + -1,3: + 0: 7677 + 0,4: + 0: 61695 + 1,0: + 0: 63351 + 1,1: + 0: 53237 + 1,2: + 0: 19935 + 1,3: + 0: 28924 + 1,-1: + 0: 30706 + 1,4: + 0: 56575 + 2,0: + 0: 1279 + 1: 57344 + 2,3: + 0: 4093 + 2,-1: + 0: 65535 + 2,1: + 1: 3822 + 2,2: + 0: 20206 + 2,4: + 0: 53503 + 3,0: + 0: 26367 + 3,1: + 0: 61182 + 3,2: + 0: 61182 + 3,3: + 0: 61172 + 3,-1: + 0: 63310 + 3,4: + 0: 29439 + 4,0: + 0: 36863 + 4,1: + 0: 64443 + 4,2: + 0: 56735 + 4,3: + 0: 65532 + -4,0: + 0: 3071 + -4,-1: + 0: 64272 + 2: 4 + -5,0: + 0: 14847 + -4,1: + 0: 61679 + -5,1: + 0: 56591 + -4,2: + 0: 61166 + -5,2: + 0: 56589 + -5,3: + 0: 65437 + -4,3: + 0: 65508 + -4,4: + 0: 65535 + -3,0: + 0: 53247 + -3,1: + 0: 60639 + -3,3: + 0: 3548 + -3,-1: + 0: 65484 + -3,2: + 0: 61166 + -3,4: + 0: 1791 + -2,0: + 0: 48127 + -2,1: + 0: 56785 + -2,2: + 0: 40413 + -2,3: + 0: 65535 + -2,-1: + 0: 64441 + -2,4: + 0: 30719 + -1,-1: + 0: 65520 + -1,4: + 0: 29439 + 0,-4: + 0: 65520 + 0,-5: + 0: 32624 + -1,-4: + 0: 65521 + 0,-3: + 0: 3854 + -1,-3: + 0: 16337 + 0,-2: + 0: 65527 + -1,-2: + 0: 56793 + 1,-4: + 0: 65533 + 1,-3: + 0: 65295 + 1,-2: + 0: 28640 + 1,-5: + 0: 7098 + 2,-4: + 0: 65523 + 2,-3: + 0: 30562 + 2,-2: + 0: 4068 + 2,-5: + 0: 45055 + 3,-4: + 0: 65529 + 3,-3: + 0: 43960 + 3,-2: + 0: 11195 + 3,-5: + 0: 48059 + 4,-4: + 0: 8145 + 4,-3: + 0: 65533 + 4,-2: + 0: 36857 + 4,-1: + 0: 65423 + -4,-4: + 0: 64975 + -4,-5: + 0: 65339 + -5,-4: + 0: 65519 + -4,-3: + 2: 80 + 0: 28672 + -4,-2: + 0: 6007 + -5,-3: + 0: 49152 + 2: 320 + -5,-2: + 0: 3310 + 2: 4096 + -5,-1: + 0: 64256 + 2: 4 + -3,-4: + 0: 65529 + -3,-3: + 2: 256 + 0: 52428 + -3,-2: + 2: 4113 + 0: 52428 + -3,-5: + 0: 56777 + -2,-4: + 0: 65529 + -2,-3: + 0: 40401 + -2,-2: + 0: 63931 + -2,-5: + 0: 65521 + -1,-5: + 0: 49073 + 5,0: + 0: 47927 + 5,1: + 0: 65531 + 5,2: + 0: 65339 + 5,3: + 0: 32639 + 5,-1: + 0: 29631 + 6,0: + 0: 35647 + 6,1: + 0: 65535 + 6,2: + 0: 65295 + 6,3: + 0: 65519 + 6,-1: + 0: 7645 + 6,4: + 0: 65295 + 7,0: + 0: 63950 + 7,1: + 0: 64989 + 7,2: + 0: 56783 + 7,3: + 0: 65021 + 7,4: + 0: 65485 + 8,0: + 0: 53491 + 8,1: + 0: 61919 + 8,2: + 0: 61183 + 8,3: + 0: 57296 + 4,-5: + 0: 65535 + 5,-4: + 0: 33786 + 5,-3: + 0: 56797 + 5,-2: + 0: 16380 + 5,-5: + 0: 11962 + 6,-4: + 0: 64733 + 6,-3: + 0: 53727 + 6,-2: + 0: 3583 + 7,-4: + 0: 56829 + 7,-3: + 0: 56541 + 7,-2: + 0: 3583 + 7,-1: + 0: 2039 + 7,-5: + 0: 35839 + 8,-4: + 0: 62399 + 8,-3: + 0: 65535 + 8,-2: + 0: 49075 + 8,-1: + 0: 43835 + -5,4: + 0: 35775 + -4,5: + 0: 62207 + -5,5: + 0: 46075 + -4,6: + 0: 32767 + -5,6: + 0: 7099 + -4,7: + 0: 18416 + -5,7: + 0: 3527 + -4,8: + 0: 7 + -3,5: + 0: 3839 + -3,7: + 0: 47611 + -3,6: + 0: 1766 + -3,8: + 0: 34947 + 2: 768 + -2,5: + 0: 30583 + -2,6: + 0: 63359 + -2,7: + 0: 32759 + -2,8: + 0: 49075 + -1,5: + 0: 1911 + -1,6: + 0: 28919 + -1,7: + 0: 1911 + -1,8: + 0: 20863 + 0,5: + 0: 6143 + 0,6: + 0: 61823 + 0,7: + 0: 8145 + 0,8: + 0: 30479 + 1,5: + 0: 64735 + 1,6: + 0: 61183 + 1,7: + 0: 52974 + 1,8: + 0: 65535 + 2,5: + 0: 61661 + 2,6: + 0: 61919 + 2,7: + 0: 3581 + 2,8: + 0: 65527 + 3,5: + 0: 61559 + 3,6: + 0: 61695 + 3,7: + 0: 65535 + 3,8: + 0: 65526 + 4,4: + 0: 47792 + 4,5: + 0: 43683 + 4,6: + 0: 60971 + 4,7: + 0: 61262 + 8,-5: + 0: 46079 + 9,-4: + 0: 45311 + 9,-3: + 0: 48123 + 9,-2: + 0: 48048 + 9,-1: + 0: 30475 + 9,-5: + 0: 61661 + 10,-4: + 0: 61543 + 10,-3: + 0: 65535 + 10,-2: + 0: 65520 + 10,-1: + 0: 65295 + 10,0: + 0: 24017 + 10,-5: + 0: 24831 + 11,-4: + 0: 3839 + 11,-5: + 0: 65229 + 11,-3: + 2: 17638 + 0: 8 + 11,-2: + 0: 61152 + 11,-1: + 0: 60942 + 11,0: + 0: 61006 + 12,-4: + 0: 32767 + 12,-3: + 0: 15 + 2: 39408 + 12,-2: + 0: 4368 + 2: 51400 + 12,-1: + 0: 61440 + 2: 168 + 9,0: + 0: 28912 + 9,1: + 0: 61559 + 9,2: + 0: 30719 + 9,3: + 0: 32624 + 10,1: + 0: 29183 + 10,2: + 0: 29047 + 10,3: + 0: 65399 + 11,1: + 0: 56735 + 11,2: + 0: 40413 + 11,3: + 0: 26415 + 11,4: + 0: 14322 + 12,1: + 0: 61696 + 12,2: + 0: 511 + 2: 32768 + 12,3: + 0: 53505 + 2: 2184 + 4,-8: + 0: 26222 + 3,-8: + 0: 20477 + 4,-7: + 0: 13095 + 3: 34816 + 3,-7: + 0: 21791 + 4,-6: + 0: 3888 + 3: 8 + 3,-6: + 0: 4049 + 5,-8: + 0: 51663 + 2: 4096 + 5,-7: + 2: 1 + 3: 13056 + 0: 34958 + 5,-6: + 3: 3 + 0: 43912 + 6,-8: + 0: 61183 + 6,-7: + 0: 65422 + 6,-6: + 0: 65535 + 6,-5: + 0: 259 + 2: 3808 + 7,-8: + 0: 65535 + 7,-7: + 0: 48015 + 7,-6: + 0: 48059 + 7,-9: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 63231 + 8,-6: + 0: 65535 + 8,-9: + 0: 30583 + 9,-8: + 0: 61183 + 9,-7: + 0: 53486 + 9,-6: + 0: 64985 + 10,-8: + 0: 53757 + 10,-7: + 0: 64733 + 10,-6: + 0: 65520 + 10,-9: + 0: 17984 + 3: 1 + 2: 2444 + 11,-8: + 0: 14336 + 2: 200 + 11,-7: + 0: 65535 + 11,-6: + 0: 56782 + 11,-9: + 2: 35225 + 12,-8: + 2: 242 + 0: 32512 + 12,-7: + 0: 16383 + 2: 49152 + 12,-6: + 0: 62225 + 2: 3110 + 12,-5: + 0: 12563 + 2: 50732 + 0,-8: + 0: 2032 + 0,-9: + 0: 65521 + -1,-8: + 0: 28912 + 0,-7: + 0: 30576 + 0,-6: + 0: 30583 + 1,-8: + 0: 64860 + 1,-9: + 0: 7508 + 2: 128 + 1,-7: + 0: 26210 + 1,-6: + 0: 9830 + 2,-8: + 0: 29286 + 2,-7: + 0: 32738 + 2,-6: + 0: 10096 + 3,-9: + 0: 7543 + 2: 128 + 12,-9: + 2: 29219 + 13,-8: + 2: 240 + 0: 2048 + 13,-7: + 0: 32767 + 2: 32768 + 13,-6: + 0: 55074 + 2: 10325 + 13,-5: + 0: 29223 + 2: 34136 + 13,-4: + 0: 4095 + 14,-8: + 2: 240 + 0: 32512 + 14,-7: + 0: 61439 + 2: 4096 + 14,-6: + 2: 291 + 0: 65228 + 14,-5: + 2: 4897 + 0: 60622 + 14,-4: + 0: 32767 + 15,-8: + 2: 32816 + 15,-7: + 0: 30545 + 2: 34952 + 15,-6: + 0: 4439 + 2: 34952 + 15,-5: + 0: 30545 + 2: 34952 + 15,-4: + 0: 343 + 2: 34952 + 13,-3: + 2: 240 + 0: 8 + 13,-1: + 0: 63488 + 2: 32 + 14,-3: + 0: 15 + 2: 240 + 13,-2: + 2: 2048 + 14,-2: + 2: 24320 + 14,-1: + 0: 65392 + 13,0: + 0: 8 + 2: 32 + 14,0: + 0: 127 + 2: 20480 + 15,-3: + 2: 248 + 15,-2: + 2: 12544 + 15,-1: + 2: 52806 + 15,0: + 2: 13902 + -4,-8: + 0: 48049 + -4,-9: + 0: 48059 + -5,-8: + 0: 65521 + -4,-7: + 0: 48051 + -5,-7: + 0: 48056 + -4,-6: + 0: 48051 + -5,-6: + 0: 49147 + -5,-5: + 0: 65163 + -3,-8: + 0: 64496 + -3,-7: + 0: 64504 + -3,-6: + 0: 49080 + -3,-9: + 0: 49083 + -2,-8: + 0: 30705 + -2,-7: + 0: 32767 + -2,-6: + 0: 57297 + -2,-9: + 0: 49075 + -1,-7: + 0: 30583 + -1,-6: + 0: 30581 + -1,-9: + 0: 49072 + -8,-8: + 0: 33723 + -8,-9: + 0: 15355 + -9,-8: + 0: 12287 + -8,-7: + 0: 24810 + -9,-7: + 0: 65535 + -8,-6: + 0: 33391 + -9,-6: + 0: 32767 + -8,-5: + 0: 62395 + -9,-5: + 0: 4080 + -8,-4: + 0: 3855 + -7,-8: + 0: 64797 + -7,-7: + 0: 7155 + -7,-6: + 0: 64989 + -7,-5: + 0: 64797 + -7,-9: + 0: 56829 + -7,-4: + 0: 61263 + -6,-8: + 0: 64395 + -6,-7: + 0: 35824 + -6,-6: + 0: 65535 + -6,-5: + 0: 61903 + -6,-9: + 0: 48059 + -6,-4: + 0: 26223 + -5,-9: + 0: 56797 + -9,-4: + 0: 7551 + -8,-3: + 0: 65535 + -9,-3: + 0: 65485 + -8,-2: + 0: 36863 + -9,-2: + 0: 4095 + -8,-1: + 0: 2185 + 2: 4882 + -9,-1: + 2: 3885 + 0: 2 + -8,0: + 2: 18389 + 0: 2048 + -7,-3: + 0: 61262 + -7,-2: + 0: 60943 + -7,-1: + 0: 20479 + -7,0: + 0: 238 + -6,-3: + 0: 26470 + -6,-2: + 0: 30447 + -6,-1: + 0: 58982 + -6,0: + 0: 45294 + -8,3: + 2: 25456 + -9,3: + 2: 34816 + -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 + -7,1: + 0: 8 + -6,1: + 0: 47295 + -6,2: + 0: 63679 + -6,3: + 0: 64781 + -6,4: + 0: 3295 + 2: 4096 + 4,8: + 0: 56732 + 5,4: + 0: 63344 + 5,5: + 0: 32624 + 5,6: + 0: 12007 + 5,7: + 0: 63502 + 5,8: + 0: 15247 + 6,5: + 0: 30503 + 6,6: + 0: 35760 + 6,7: + 0: 56463 + 6,8: + 0: 53021 + 7,5: + 0: 65522 + 7,6: + 0: 7640 + 7,7: + 0: 61679 + 7,8: + 0: 11779 + 2: 128 + 8,4: + 0: 49072 + 8,5: + 0: 24016 + 8,6: + 0: 17748 + 8,7: + 0: 61687 + 0,-11: + 2: 2207 + 0: 45056 + 0,-10: + 0: 65523 + -1,-11: + 0: 45824 + 2: 4 + -1,-10: + 0: 49081 + 1,-11: + 2: 1792 + 0: 28672 + 1,-10: + 0: 21844 + 2,-9: + 2: 49 + 0: 1996 + 2,-12: + 2: 4593 + 0: 3084 + 2,-13: + 2: 4593 + 0: 3084 + 2,-11: + 2: 4593 + 0: 3084 + 2,-10: + 2: 4593 + 0: 3084 + 3,-12: + 0: 1991 + 2: 4144 + 3,-11: + 0: 1991 + 2: 4144 + 3,-10: + 0: 1991 + 2: 4144 + 3,-13: + 2: 4144 + 0: 1991 + 4,-12: + 0: 4369 + 2: 17476 + 4,-11: + 0: 4369 + 2: 17484 + 4,-10: + 0: 4369 + 2: 19532 + 4,-9: + 0: 3985 + 2: 108 + 4,-13: + 0: 4369 + 2: 17476 + 5,-11: + 2: 1199 + 0: 6912 + 5,-10: + 2: 4113 + 0: 256 + 3: 12 + 4: 3072 + 5,-9: + 2: 1025 + 0: 2832 + 5: 12 + 5,-12: + 2: 40960 + 6,-11: + 2: 495 + 0: 17920 + 6,-10: + 3: 1 + 4: 256 + 2: 16452 + 0: 1024 + 6,-9: + 5: 1 + 2: 260 + 0: 1600 + 6,-12: + 2: 51336 + 6,-13: + 2: 32768 + 7,-12: + 2: 4356 + 3: 52224 + 7,-11: + 2: 1 + 0: 65024 + 3: 12 + 7,-10: + 0: 65535 + 7,-13: + 2: 65100 + 8,-12: + 3: 4352 + 2: 52361 + 8,-11: + 3: 1 + 0: 29440 + 2: 140 + 8,-10: + 0: 30583 + -4,-12: + 0: 56796 + -4,-13: + 0: 4352 + 2: 2252 + -5,-12: + 0: 3824 + -4,-11: + 0: 16305 + -4,-10: + 0: 45755 + -5,-10: + 0: 37883 + -3,-12: + 0: 14193 + -3,-11: + 0: 36658 + 2: 8 + -3,-10: + 0: 14779 + -3,-13: + 2: 35057 + -2,-12: + 2: 61713 + -2,-11: + 0: 43776 + 2: 4 + -2,-10: + 0: 43952 + -1,-12: + 2: 28672 + -8,-12: + 2: 10 + 0: 3840 + -9,-12: + 0: 20192 + -8,-11: + 0: 35827 + -8,-10: + 0: 16383 + -9,-10: + 0: 2036 + -9,-9: + 0: 6135 + -7,-12: + 0: 8032 + -7,-11: + 0: 7676 + -7,-10: + 0: 4095 + -7,-13: + 2: 12239 + 0: 49152 + -6,-12: + 0: 20464 + -6,-10: + 0: 36863 + -6,-13: + 2: 6087 + -6,-11: + 0: 20206 + -5,-11: + 0: 1911 + -5,-13: + 0: 65024 + -12,-4: + 0: 65280 + -13,-4: + 0: 65024 + -12,-3: + 0: 2063 + 2: 42752 + -13,-3: + 0: 15 + 2: 3584 + -12,-2: + 2: 26282 + 0: 34816 + -12,-1: + 2: 3626 + -11,-4: + 0: 61678 + -11,-3: + 0: 61135 + -11,-1: + 0: 3 + 2: 3900 + -11,-2: + 0: 3822 + -11,-5: + 0: 25668 + 2: 1 + -10,-4: + 0: 29935 + -10,-3: + 0: 65285 + -10,-2: + 0: 4095 + -10,-1: + 2: 3885 + 0: 2 + -12,-8: + 0: 4095 + -13,-8: + 0: 4095 + -12,-7: + 2: 12 + -11,-8: + 0: 20479 + -11,-7: + 0: 18022 + -11,-6: + 2: 1 + 0: 17476 + -11,-9: + 0: 41843 + -10,-8: + 0: 16383 + -10,-7: + 0: 48059 + -10,-6: + 0: 15291 + -10,-5: + 0: 4087 + -10,-9: + 0: 47803 + -12,7: + 2: 10098 + -13,7: + 2: 48945 + -12,6: + 2: 11976 + -12,8: + 2: 8823 + -11,6: + 2: 15 + -11,7: + 0: 25326 + -11,8: + 0: 3810 + -10,6: + 2: 19 + 0: 49152 + -10,7: + 0: 65533 + -10,5: + 2: 61440 + -10,8: + 0: 52735 + -9,5: + 2: 28672 + -9,6: + 0: 53248 + 2: 78 + -9,7: + 0: 56733 + -9,8: + 0: 56733 + -9,4: + 2: 136 + -8,6: + 2: 239 + 0: 21504 + -8,7: + 0: 63941 + 8,-13: + 2: 62225 + 9,-12: + 2: 36864 + 9,-11: + 2: 1215 + 0: 6912 + 9,-10: + 2: 4113 + 0: 256 + 3: 12 + 6: 3072 + 9,-9: + 2: 1025 + 0: 2832 + 3: 12 + 10,-11: + 2: 295 + 0: 17920 + 10,-10: + 3: 1 + 6: 256 + 2: 18508 + 0: 1024 + 10,-12: + 2: 8192 + 11,-10: + 2: 65529 + 11,-11: + 2: 39304 + 11,-12: + 2: 34944 + 12,-12: + 2: 8994 + 12,-11: + 2: 562 + 12,-10: + 2: 8960 + 4,-15: + 2: 22272 + 3,-15: + 2: 20224 + 4,-14: + 0: 4369 + 2: 17476 + 3,-14: + 0: 1991 + 2: 6192 + 6,-15: + 2: 49152 + 6,-14: + 2: 200 + 7,-15: + 2: 61440 + 7,-14: + 2: 20212 + 8,-15: + 2: 61440 + 8,-14: + 2: 5113 + 9,-15: + 2: 4096 + 9,-14: + 2: 112 + -8,8: + 0: 23821 + 2: 32768 + -8,5: + 2: 34952 + -7,5: + 2: 8240 + 0: 2176 + -7,6: + 2: 273 + 0: 2730 + -7,7: + 0: 64543 + -7,8: + 0: 53709 + -6,5: + 0: 40444 + -6,6: + 0: 3003 + -6,7: + 0: 32079 + -6,8: + 0: 24669 + -5,8: + 0: 15 + 2: 256 + -12,-9: + 2: 1024 + -12,-10: + 2: 128 + -11,-10: + 2: 112 + 0: 28672 + -10,-11: + 0: 65535 + -10,-10: + 0: 11252 + -10,-12: + 2: 273 + 0: 19652 + -10,-13: + 2: 4096 + 0: 16384 + -9,-11: + 0: 21845 + -9,-13: + 2: 55296 + -4,-16: + 2: 20224 + -5,-16: + 2: 40704 + -4,-15: + 2: 15 + -5,-15: + 2: 15 + -3,-16: + 2: 9984 + -3,-15: + 2: 7 + -8,-13: + 2: 3976 + -8,-16: + 2: 35840 + -8,-15: + 2: 12 + -7,-16: + 2: 12032 + -7,-15: + 2: 58095 + -7,-14: + 2: 11980 + -6,-16: + 2: 24320 + -6,-15: + 2: 4383 + -6,-14: + 2: 4352 + -16,-8: + 0: 61439 + -17,-8: + 0: 3838 + -16,-7: + 0: 10 + -17,-7: + 2: 8 + -16,-9: + 0: 59904 + -15,-8: + 0: 4095 + -15,-7: + 2: 10 + -14,-8: + 0: 61439 + -14,-7: + 0: 10 + -14,-9: + 0: 59904 + -13,-7: + 2: 2 + -19,-7: + 2: 58436 + -19,-6: + 2: 43690 + -19,-5: + 2: 17642 + -19,-8: + 2: 19592 + -19,-4: + 2: 35908 + -19,-9: + 2: 32768 + -18,-8: + 2: 4898 + 0: 2248 + -18,-7: + 2: 4369 + -18,-5: + 2: 4368 + -18,-4: + 2: 28433 + -18,-9: + 2: 12288 + -17,-9: + 2: 2048 + -15,-9: + 2: 2560 + -13,-9: + 2: 512 + -16,-4: + 2: 20224 + -17,-4: + 2: 20224 + -16,-3: + 2: 244 + -17,-3: + 2: 244 + -15,-4: + 2: 10112 + -15,-3: + 2: 2162 + -14,-4: + 0: 64170 + -14,-3: + 0: 43695 + 8,8: + 0: 1004 + 2: 11280 + 9,4: + 0: 65520 + 9,5: + 0: 3869 + 9,6: + 0: 30711 + 9,7: + 0: 55536 + 9,8: + 0: 49 + 2: 43968 + 10,4: + 0: 56784 + 10,5: + 0: 36749 + 10,6: + 0: 35835 + 10,7: + 0: 55551 + 10,8: + 0: 12 + 2: 16 + 11,5: + 0: 64791 + 11,6: + 0: 64797 + 11,7: + 0: 64541 + 11,8: + 0: 1 + 2: 192 + 12,4: + 0: 35832 + 12,5: + 0: 4335 + 12,6: + 0: 4320 + 12,7: + 0: 65280 + 0,9: + 0: 32626 + 0,10: + 0: 7 + 1,9: + 0: 65535 + 1,10: + 2: 16 + 0: 2248 + 2,9: + 0: 65535 + 2,10: + 0: 610 + 3,9: + 0: 65535 + 3,10: + 2: 16 + 4,9: + 0: 57311 + 4,10: + 2: 16 + 0: 12 + 5,9: + 0: 64443 + 5,10: + 0: 34959 + 2: 8704 + 5,11: + 2: 16418 + 0: 36040 + 5,12: + 2: 17476 + 0: 34952 + 6,9: + 0: 7645 + 6,10: + 0: 13 + 2: 8896 + 6,11: + 0: 272 + 2: 4130 + 6,12: + 2: 4369 + 7,10: + 0: 10987 + 2: 16 + 7,9: + 0: 10986 + 7,11: + 0: 10986 + 7,12: + 0: 10986 + 8,9: + 0: 3855 + 2: 8432 + 8,10: + 0: 3855 + 2: 8432 + 8,11: + 0: 3855 + 2: 8432 + -3,9: + 2: 32 + 0: 57480 + -3,10: + 2: 32 + 0: 34944 + -3,11: + 2: 2 + 0: 3592 + -3,12: + 2: 8194 + 0: 34952 + -2,9: + 0: 30523 + -2,10: + 0: 30583 + -2,11: + 0: 30583 + -2,12: + 0: 48051 + -1,9: + 0: 21873 + -1,10: + 0: 4369 + 2: 17472 + -1,11: + 0: 4913 + -1,12: + 0: 4403 + 2: 16384 + 8,12: + 0: 3855 + 2: 8432 + 9,9: + 2: 43770 + 9,10: + 2: 43770 + 9,11: + 2: 43770 + 9,12: + 2: 43770 + 12,8: + 2: 16 + 0: 76 + 13,8: + 0: 17 + 2: 76 + 13,7: + 0: 4352 + 2: 19522 + 14,8: + 2: 34959 + 14,7: + 2: 53128 + 15,8: + 2: 8448 + 14,9: + 2: 2184 + 15,9: + 2: 8754 + 13,4: + 0: 13107 + 2: 52416 + 13,5: + 0: 19 + 2: 8800 + 13,6: + 0: 16 + 2: 8802 + 13,3: + 0: 4096 + 2: 8192 + 14,4: + 2: 65276 + 14,5: + 2: 34956 + 14,3: + 2: 34952 + 15,4: + 2: 12850 + 15,5: + 2: 8994 + 14,6: + 2: 32776 + 15,7: + 2: 12835 + 15,6: + 2: 8754 + 15,3: + 2: 8994 + -8,9: + 2: 3840 + 0: 12 + -9,9: + 2: 32320 + -7,9: + 0: 1 + 2: 18368 + -7,10: + 2: 43694 + -7,11: + 2: 9742 + -7,12: + 2: 34822 + -6,11: + 0: 30498 + 2: 8 + -6,9: + 0: 26214 + -6,10: + 0: 8738 + 2: 128 + -6,12: + 0: 26119 + -13,8: + 2: 4415 + -12,9: + 2: 2254 + -11,9: + 2: 3840 + -10,9: + 2: 62224 + -14,8: + 2: 2127 + -14,7: + 2: 24428 + -14,9: + 2: 17600 + -14,10: + 2: 76 + -13,9: + 2: 4369 + -13,10: + 2: 17 + -14,5: + 2: 19520 + -14,6: + 2: 17604 + -13,5: + 2: 4369 + -13,6: + 2: 4369 + -13,4: + 2: 4096 + -4,13: + 0: 61440 + 2: 64 + -4,14: + 0: 139 + 2: 8960 + -5,13: + 0: 61696 + 2: 64 + -5,14: + 0: 8 + 2: 35840 + -4,15: + 2: 63266 + -5,15: + 2: 64648 + -4,16: + 2: 146 + -3,13: + 0: 65288 + 2: 2 + -3,14: + 0: 2032 + -3,15: + 2: 63488 + -3,16: + 2: 249 + -2,13: + 0: 19859 + -2,14: + 2: 61440 + 0: 102 + -2,15: + 2: 65433 + -2,16: + 2: 244 + -1,13: + 0: 273 + 2: 35020 + -1,14: + 2: 6047 + -1,15: + 2: 28928 + -1,16: + 2: 2 + -7,15: + 2: 61440 + -7,13: + 2: 8800 + -7,14: + 2: 98 + 0: 32768 + -7,16: + 2: 228 + -6,13: + 0: 40822 + -6,14: + 0: 12595 + 2: 51328 + -6,15: + 2: 61440 + -6,16: + 2: 242 + -5,16: + 2: 249 + 5,13: + 2: 8740 + 0: 52424 + 5,14: + 2: 12 + 6,13: + 2: 8737 + 0: 4368 + 6,14: + 2: 1 + 7,13: + 0: 2794 + 2: 40960 + 7,14: + 2: 14 + 8,13: + 0: 3855 + 2: 33008 + 8,14: + 2: 15 + 12,0: + 2: 32 + 13,1: + 2: 50696 + 0: 8192 + 13,2: + 0: 34 + 2: 1740 + 14,1: + 2: 15 + 15,1: + 2: 1 + 14,2: + 2: 34944 + 15,2: + 2: 62064 + 2,-15: + 2: 24320 + 2,-14: + 2: 4593 + 0: 3084 + 9,13: + 2: 43770 + 9,14: + 2: 15 + -19,-3: + 2: 136 + -18,-3: + 2: 246 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 6666.982 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance +- proto: AcousticGuitarInstrument + entities: + - uid: 15607 + components: + - type: Transform + pos: 42.5523,-14.618078 + parent: 2 +- proto: AirAlarm + entities: + - uid: 811 + components: + - type: MetaData + name: air alarm (Central Service) + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 2691 + - 824 + - 901 + - 267 + - 269 + - 268 + - 270 + - 1628 + - 263 + - 264 + - 265 + - 266 + - 1629 + - 1620 + - 1621 + - 1622 + - 197 + - 243 + - 1619 + - uid: 812 + components: + - type: MetaData + name: air alarm (Bar) + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 903 + - 905 + - 908 + - 267 + - 269 + - 268 + - 270 + - uid: 813 + components: + - type: MetaData + name: air alarm (Bar Backroom) + - type: Transform + pos: 7.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 904 + - 902 + - 909 + - 1628 + - uid: 814 + components: + - type: MetaData + name: air alarm (Kitchen) + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 906 + - 907 + - 898 + - 263 + - 264 + - 265 + - 266 + - 1629 + - uid: 815 + components: + - type: MetaData + name: air alarm (Freezer) + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 910 + - 885 + - 300 + - uid: 816 + components: + - type: MetaData + name: air alarm (Botany) + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 980 + - 958 + - 981 + - 1630 + - 13809 + - uid: 817 + components: + - type: MetaData + name: air alarm (Botany Backroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 2 + - type: DeviceList + devices: + - 960 + - 959 + - 975 + - uid: 818 + components: + - type: MetaData + name: air alarm (Backstage) + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 922 + - 5015 + - 5029 + - 197 + - 243 + - 1619 + - uid: 819 + components: + - type: MetaData + name: air alarm (Theatre) + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 912 + - 911 + - 944 + - uid: 822 + components: + - type: MetaData + name: air alarm (Janitor's Closet) + - type: Transform + pos: -3.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 947 + - 946 + - uid: 1136 + components: + - type: MetaData + name: air alarm (AME) + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 7523 + - 13848 + - 368 + - uid: 1868 + components: + - type: MetaData + name: air alarm (Security Entrance) + - type: Transform + pos: -9.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 11679 + - 11680 + - 11681 + - 10863 + - 10864 + - 10865 + - uid: 2196 + components: + - type: MetaData + name: air alarm (Library) + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 14180 + - 11396 + - 11393 + - 14212 + - 14136 + - uid: 3078 + components: + - type: MetaData + name: air alarm (Tool Room) + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 12415 + - 12416 + - 8248 + - uid: 3330 + components: + - type: MetaData + name: air alarm (Cryosleep) + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 12432 + - 12434 + - 12433 + - uid: 3340 + components: + - type: MetaData + name: air alarm (Salvage) + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 10895 + - 10894 + - 12537 + - 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: 8141 + components: + - type: MetaData + name: air alarm (Gravity Generator) + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 13849 + - uid: 11015 + components: + - type: MetaData + name: air alarm (Captain's Bedroom) + - type: Transform + pos: -25.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 11037 + - 11038 + - 11039 + - uid: 11020 + components: + - type: MetaData + name: air alarm (Bridge Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 4464 + - 4037 + - 4480 + - 10877 + - 10876 + - 10810 + - 10811 + - 10804 + - 10878 + - 10879 + - uid: 11079 + components: + - type: MetaData + name: air alarm (Bridge Hall West) + - type: Transform + pos: -25.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 10996 + - 11002 + - 10999 + - 10876 + - 10877 + - uid: 11080 + components: + - type: MetaData + name: air alarm (Captain's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 11057 + - 11058 + - 11065 + - uid: 11081 + components: + - type: MetaData + name: air alarm (Vault) + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 11066 + - 11067 + - 11068 + - uid: 11082 + components: + - type: MetaData + name: air alarm (Bridge) + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 10995 + - 11001 + - 10998 + - 10874 + - 10875 + - uid: 11083 + components: + - type: MetaData + name: air alarm (Bridge Evac) + - type: Transform + pos: -43.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 10921 + - 10922 + - 5035 + - 10874 + - 10875 + - uid: 11119 + components: + - type: MetaData + name: air alarm (Science Entrance) + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 11114 + - 11113 + - 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 + components: + - type: MetaData + name: air alarm (RD's Bedroom) + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 11160 + - 11158 + - 11161 + - uid: 11253 + components: + - type: MetaData + name: air alarm (Robotics Surgery) + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 11235 + - 11222 + - 11228 + - uid: 11254 + 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 + - 11157 + - 11145 + - 10884 + - uid: 11256 + components: + - type: MetaData + name: air alarm (Anomaly Generator) + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 11154 + - 11156 + - 11134 + - uid: 11289 + components: + - type: MetaData + name: air alarm (Chapel) + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 11285 + - 5028 + - 11257 + - uid: 11291 + components: + - type: MetaData + name: air alarm (Newsroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 11288 + - 11313 + - 11310 + - uid: 11296 + components: + - type: MetaData + name: air alarm (Newsroom Entrance) + - type: Transform + pos: -28.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 5498 + - 5500 + - 11315 + - uid: 11297 + components: + - type: MetaData + name: air alarm (News Server Room) + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 11290 + - uid: 11301 + components: + - type: MetaData + name: air alarm (Crematorium) + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 11261 + - 11258 + - 11259 + - uid: 11357 + components: + - type: MetaData + name: air alarm (Law Office) + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 11344 + - 357 + - uid: 11358 + components: + - type: MetaData + name: air alarm (Dorm A) + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 11320 + - 11318 + - 11361 + - uid: 11359 + components: + - type: MetaData + name: air alarm (Dorm B) + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 11319 + - 11321 + - 11360 + - uid: 11397 + components: + - type: MetaData + name: air alarm (Library Backroom) + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 11392 + - 11395 + - 11394 + - uid: 11399 + components: + - type: MetaData + name: air alarm (Evac Checkpoint) + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 11409 + - 11410 + - 11411 + - 10873 + - uid: 11864 + components: + - type: MetaData + name: air alarm (Perma Bathroom) + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 7554 + - 6146 + - 6129 + - uid: 11890 + components: + - type: MetaData + name: air alarm (Perma Kitchen) + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - type: DeviceList + devices: + - 11888 + - 11886 + - 11889 + - uid: 11891 + components: + - type: MetaData + name: air alarm (Perma Bedroom) + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 11885 + - uid: 11893 + components: + - type: MetaData + name: air alarm (Security South) + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 11837 + - 11839 + - 11836 + - uid: 11894 + components: + - type: MetaData + name: air alarm (Perma Entrance) + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 11844 + - 11842 + - 11843 + - uid: 11895 + components: + - type: MetaData + name: air alarm (Perma Rec Room) + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 11851 + - 11845 + - 11850 + - uid: 11896 + components: + - type: MetaData + name: air alarm (HoS's Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 11832 + - 11834 + - 11833 + - uid: 11897 + components: + - type: MetaData + name: air alarm (HoS's Bedroom) + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-40.5 + parent: 2 + - type: DeviceList + devices: + - 11818 + - 11819 + - 11835 + - uid: 11898 + components: + - type: MetaData + name: air alarm (Cell B) + - type: Transform + pos: -10.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 11768 + - 11771 + - 11767 + - uid: 11899 + components: + - type: MetaData + name: air alarm (Cell A) + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 11769 + - 11770 + - 11766 + - uid: 11900 + components: + - type: MetaData + name: air alarm (Detective's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 11703 + - 11705 + - 11704 + - uid: 11901 + components: + - type: MetaData + name: air alarm (Security Breakroom) + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 11758 + - 11759 + - 11757 + - 10869 + - 10870 + - uid: 11903 + components: + - type: MetaData + name: air alarm (Security Locker Room) + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 11754 + - 11723 + - 11724 + - uid: 11904 + components: + - type: MetaData + name: air alarm (Armoury) + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 11752 + - 11739 + - 11740 + - uid: 11905 + components: + - type: MetaData + name: air alarm (Warden's Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 10866 + - 11719 + - 11722 + - 11720 + - 10869 + - uid: 11906 + components: + - type: MetaData + name: air alarm (Brig) + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 11796 + - 10863 + - 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 + - 11194 + - uid: 12673 + components: + - type: MetaData + name: air alarm (Atmospherics) + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 9478 + - 7484 + - 9011 + - 13836 + - 13834 + - 13835 + - 13850 + - uid: 12674 + components: + - type: MetaData + name: air alarm (Atmospherics Burn Chamber) + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-42.5 + parent: 2 + - type: DeviceList + devices: + - 2624 + - uid: 12708 + components: + - type: MetaData + name: air alarm (TEG) + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 9009 + - 9007 + - 9008 + - 13832 + - 13833 + - 13836 + - uid: 12721 + components: + - type: MetaData + name: air alarm (TEG Burn Chamber) + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 12609 + - uid: 12724 + components: + - type: MetaData + name: air alarm (Engineering) + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 8975 + - 13850 + - 10553 + - 13832 + - 13833 + - 13834 + - 13835 + - 9015 + - 9017 + - 9016 + - 6044 + - uid: 12725 + components: + - type: MetaData + name: air alarm (Particle Accelerator) + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 9018 + - 9027 + - 9028 + - uid: 12726 + components: + - type: MetaData + name: air alarm (CE's Office) + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 4927 + - 4937 + - 9064 + - uid: 12727 + components: + - type: MetaData + name: air alarm (CE's Bedroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 8327 + - 4923 + - 9048 + - uid: 12729 + components: + - type: MetaData + name: air alarm (Storage Closet) + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 10476 + - 10064 + - 12703 + - uid: 12730 + components: + - type: MetaData + name: air alarm (Tech Vault) + - type: Transform + pos: 36.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 10444 + - 10477 + - 10427 + - uid: 12731 + components: + - type: MetaData + name: air alarm (Telecomms) + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 10065 + - uid: 12732 + components: + - type: MetaData + name: air alarm (Engineering Entrance) + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 10479 + - 10481 + - 10480 + - 13804 + - 13805 + - uid: 13789 + components: + - type: MetaData + name: air alarm (Dorms Hall) + - type: Transform + pos: -26.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 11653 + - 11654 + - 11652 + - 10825 + - 10827 + - 10826 + - 10820 + - 357 + - uid: 13790 + components: + - type: MetaData + name: air alarm (Evac Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 11646 + - 11648 + - 11647 + - 10827 + - 10825 + - 10822 + - 10823 + - 10824 + - 10814 + - 10812 + - uid: 13791 + components: + - type: MetaData + name: air alarm (Southwest Hall) + - type: Transform + pos: -19.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 11655 + - 11657 + - 11656 + - 10820 + - 10826 + - 10816 + - 10815 + - 10819 + - 14212 + - 14136 + - uid: 13792 + components: + - type: MetaData + name: air alarm (Evac) + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 10822 + - 10823 + - 10824 + - 11643 + - 11645 + - 11641 + - 11644 + - 11642 + - uid: 13793 + components: + - type: MetaData + name: air alarm (Service Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 11650 + - 11651 + - 11649 + - 10814 + - 10812 + - 10813 + - 10817 + - uid: 13794 + components: + - type: MetaData + name: air alarm (Spacebucks) + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-18.5 + parent: 2 + - type: DeviceList + devices: + - 10813 + - 10817 + - 11658 + - 11660 + - 11659 + - 10815 + - 10816 + - 10819 + - 10832 + - 10833 + - 12011 + - uid: 13795 + components: + - type: MetaData + name: air alarm (South Hall) + - type: Transform + pos: 4.5,-10.5 + parent: 2 + - type: DeviceList + devices: + - 12041 + - 12039 + - 12056 + - 10829 + - 10809 + - 10828 + - 10857 + - 10858 + - 10859 + - 10861 + - uid: 13796 + components: + - type: MetaData + name: air alarm (HoP's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 11910 + - 11912 + - 11911 + - 10861 + - 10862 + - uid: 13797 + components: + - type: MetaData + name: air alarm (HoP's Bedroom) + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 2 + - type: DeviceList + devices: + - 11909 + - 10830 + - 11908 + - uid: 13798 + components: + - type: MetaData + name: air alarm (EVA) + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 12560 + - 12550 + - 12551 + - uid: 13799 + components: + - type: MetaData + name: air alarm (Southeast Hall) + - type: Transform + pos: 15.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 12562 + - 12563 + - 12561 + - 10857 + - 10858 + - 10859 + - 10915 + - 1081 + - 1083 + - uid: 13800 + components: + - type: MetaData + name: air alarm (East Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 2 + - type: DeviceList + devices: + - 10718 + - 10717 + - 13803 + - 1081 + - 1083 + - 10849 + - 10850 + - 10851 + - 13804 + - 13805 + - uid: 13802 + components: + - type: MetaData + name: air alarm (Engineering Checkpoint) + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 10915 + - 12658 + - 12659 + - 13801 + - uid: 13806 + components: + - type: MetaData + name: air alarm (Northeast Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 10852 + - 10853 + - 10854 + - 10851 + - 10850 + - 10849 + - 12436 + - 12435 + - 12437 + - 10905 + - 4374 + - 10846 + - 10847 + - 10848 + - 13809 + - uid: 13811 + components: + - type: MetaData + name: air alarm (Medbay Entrance) + - type: Transform + pos: 27.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 8744 + - 8742 + - 8743 + - 10852 + - 10853 + - 10854 + - 10898 + - 10899 + - 13810 + - uid: 13812 + components: + - type: MetaData + name: air alarm (Medical Reception) + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 8739 + - 8740 + - 8741 + - 13810 + - uid: 13813 + components: + - type: MetaData + name: air alarm (Medbay) + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 8716 + - 8718 + - 8715 + - 10898 + - 10899 + - 10900 + - 10901 + - uid: 13814 + components: + - type: MetaData + name: air alarm (Morgue) + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 8713 + - 8714 + - 8699 + - uid: 13815 + components: + - type: MetaData + name: air alarm (Cryogenics) + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 8686 + - 8677 + - 15724 + - uid: 13816 + components: + - type: MetaData + name: air alarm (Medbay Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,16.5 + parent: 2 + - type: DeviceList + devices: + - 13829 + - 13830 + - 13827 + - 10902 + - 10901 + - 10900 + - uid: 13817 + components: + - type: MetaData + name: air alarm (Chemistry) + - type: Transform + pos: 25.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 8694 + - 8696 + - 8695 + - 10905 + - 4374 + - uid: 13818 + components: + - type: MetaData + name: air alarm (Paramedic's Office) + - type: Transform + pos: 21.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 8745 + - 8755 + - 8754 + - uid: 13819 + components: + - type: MetaData + name: air alarm (Medical Locker Room) + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 8628 + - 8623 + - 8622 + - 10902 + - uid: 13821 + components: + - type: MetaData + name: air alarm (CMO's Bedroom) + - type: Transform + pos: 31.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 8799 + - 8800 + - 8814 + - uid: 13822 + components: + - type: MetaData + name: air alarm (Virology Entrance) + - type: Transform + pos: 26.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 8781 + - 8782 + - 8780 + - uid: 13823 + components: + - type: MetaData + name: air alarm (Virology) + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 8790 + - 8792 + - 8791 + - uid: 13824 + components: + - type: MetaData + name: air alarm (Quarantine) + - type: Transform + pos: 23.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 8757 + - 8756 + - 8758 + - uid: 13825 + components: + - type: MetaData + name: air alarm (Surgery) + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 8733 + - 8731 + - 8732 + - uid: 13851 + components: + - type: MetaData + name: air alarm (North Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 12413 + - 12412 + - 12414 + - 10836 + - 10835 + - 10907 + - 10844 + - 10845 + - 10846 + - 10847 + - 10848 + - 1630 + - uid: 13852 + components: + - type: MetaData + name: air alarm (Pyschologist's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 12426 + - 12423 + - 12425 + - 10907 + - uid: 13860 + components: + - type: MetaData + name: air alarm (Cargo Entrance) + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 12452 + - 12449 + - 12453 + - 10891 + - 10890 + - 10845 + - 10844 + - 10888 + - 10889 + - 10887 + - 13853 + - 12447 + - 12446 + - uid: 13862 + components: + - type: MetaData + name: air alarm (Cargo Reception) + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 12512 + - 12513 + - 12511 + - 13853 + - 10887 + - 10892 + - 10893 + - 10891 + - 10890 + - uid: 13863 + components: + - type: MetaData + name: air alarm (Cargo Bay) + - type: Transform + pos: 11.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 10889 + - 10888 + - 10892 + - 10893 + - 12543 + - 12546 + - 12545 + - 12544 + - 12542 + - 10894 + - 10895 + - uid: 13864 + components: + - type: MetaData + name: air alarm (QM's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 12469 + - 12468 + - 12471 + - uid: 13865 + components: + - type: MetaData + name: air alarm (QM's Bedroom) + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 12454 + - 12455 + - 12470 + - uid: 13870 + components: + - type: MetaData + name: air alarm (Northwest Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 10836 + - 10835 + - 10837 + - 10838 + - 4114 + - 10880 + - 10881 + - 2627 + - 11762 + - 11773 + - 10806 + - 10805 + - 10803 + - uid: 13871 + components: + - type: MetaData + name: air alarm (West Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 11935 + - 11937 + - 11936 + - 1620 + - 1621 + - 1622 + - 10810 + - 10811 + - 10804 + - 10803 + - 10805 + - 10806 + - 10834 + - 10839 + - 1938 + - uid: 13872 + components: + - type: MetaData + name: air alarm (AI Hall) + - type: Transform + pos: -30.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 13914 + - 13927 + - 13915 + - uid: 13873 + components: + - type: MetaData + name: air alarm (AI Utility Closet) + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 13912 + - 13929 + - 13911 + - uid: 13874 + components: + - type: MetaData + name: air alarm (AI Upload) + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 13910 + - 13928 + - 13909 + - uid: 13875 + components: + - type: MetaData + name: air alarm (AI Main) + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 13892 + - 13924 + - 13894 + - uid: 13876 + components: + - type: MetaData + name: air alarm (AI Core) + - type: Transform + pos: -40.5,35.5 + parent: 2 + - type: DeviceList + devices: + - 13893 + - 13923 + - 13891 + - uid: 13930 + components: + - type: MetaData + name: air alarm (Camera Servers South) + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 13926 + - uid: 13931 + components: + - type: MetaData + name: air alarm (Camera Servers North) + - type: Transform + pos: -36.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 13925 + - uid: 13933 + components: + - type: MetaData + name: air alarm (Arrivals Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 12405 + - 12407 + - 12406 + - 10882 + - 4114 + - 10838 + - 10837 + - 10883 + - 10840 + - 10841 + - uid: 13934 + components: + - type: MetaData + name: air alarm (Emergency Suit Storage) + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 12395 + - 12398 + - 12401 + - uid: 13935 + components: + - type: MetaData + name: air alarm (Arrivals Checkpoint) + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 12396 + - 12400 + - 12403 + - 10883 + - uid: 13947 + components: + - type: MetaData + name: air alarm (Engineering Locker Room) + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 9209 + - 9168 + - 9210 + - 13803 + - uid: 13962 + components: + - type: MetaData + name: air alarm (Arrivals) + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 12410 + - 12408 + - 12409 + - 12411 + - 12404 + - 10840 + - 10841 + - uid: 14751 + components: + - type: MetaData + name: air alarm (Courtroom) + - type: Transform + pos: -14.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 14760 + - 14759 + - 14761 + - uid: 15300 + components: + - type: MetaData + name: air alarm (Security Desk) + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 11734 + - 11753 + - 5034 + - 10865 + - 6141 + - uid: 15328 + components: + - type: MetaData + name: air alarm (Intersection) + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 10832 + - 10833 + - 12011 + - 1938 + - 10839 + - 10834 + - 10829 + - 10828 + - 10809 + - 6141 + - 15329 + - 15330 + - 15331 + - uid: 15453 + components: + - type: MetaData + name: air alarm (Disposals) + - type: Transform + pos: 49.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 15450 + - 15454 + - uid: 15650 + components: + - type: MetaData + name: air alarm (Station Anchor) + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 15649 + - uid: 15940 + components: + - type: MetaData + name: air alarm (Bathroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 15941 + - 15942 + - 15943 + - uid: 16172 + components: + - type: MetaData + name: air alarm (CMO's Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 8812 + - 8811 + - 8813 +- proto: AirCanister + entities: + - uid: 5479 + components: + - type: Transform + pos: -33.5,27.5 + parent: 2 + - uid: 6295 + components: + - type: Transform + pos: -15.5,-46.5 + parent: 2 + - uid: 10466 + components: + - type: Transform + pos: 21.5,32.5 + parent: 2 +- proto: Airlock + entities: + - uid: 2096 + components: + - type: MetaData + name: airlock (Perma) + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 2102 + components: + - type: MetaData + name: airlock (Perma) + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 2103 + components: + - type: MetaData + name: airlock (Perma) + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 6033 + components: + - type: MetaData + name: airlock (Dorm B) + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 6303 + components: + - type: MetaData + name: airlock (Dorm A) + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - uid: 8594 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 8595 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 8596 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - uid: 15339 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 15937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-32.5 + parent: 2 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 1089 + components: + - type: MetaData + name: glass airlock (Warden's Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-23.5 + parent: 2 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 2704 + components: + - type: MetaData + name: glass airlock (Atmospherics) + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-25.5 + parent: 2 + - uid: 6598 + components: + - type: MetaData + name: glass airlock (Atmospherics) + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-25.5 + parent: 2 + - uid: 7902 + components: + - type: MetaData + name: glass airlock (TEG) + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-26.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 244 + components: + - type: MetaData + name: airlock (Bar) + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 245 + components: + - type: MetaData + name: airlock (Bar) + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 1939 + components: + - type: MetaData + name: glass airlock (Security) + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 2 + - uid: 1940 + components: + - type: MetaData + name: glass airlock (Security) + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 15298 + components: + - type: MetaData + name: glass airlock (Security) + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - uid: 15299 + components: + - type: MetaData + name: glass airlock (Security) + - type: Transform + pos: -8.5,-15.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 1218 + components: + - type: MetaData + name: airlock (Captain's Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - uid: 4575 + components: + - type: MetaData + name: airlock (Captain's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-4.5 + parent: 2 + - uid: 4596 + components: + - type: MetaData + name: airlock (Captain's Bedroom) + - type: Transform + pos: -25.5,-0.5 + parent: 2 +- proto: AirlockCargoGlassLocked + entities: + - uid: 2588 + components: + - type: MetaData + name: glass airlock (Cargo) + - type: Transform + pos: 6.5,31.5 + parent: 2 + - uid: 2589 + components: + - type: MetaData + name: glass airlock (Cargo) + - type: Transform + pos: 7.5,31.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 4272 + components: + - type: MetaData + name: airlock (Cargo) + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 4273 + components: + - type: MetaData + name: airlock (Cargo) + - type: Transform + pos: 14.5,32.5 + parent: 2 +- proto: AirlockChapelLocked + entities: + - uid: 3277 + components: + - type: MetaData + name: airlock (Chapel) + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-23.5 + parent: 2 +- proto: AirlockChemistryGlassLocked + entities: + - uid: 3955 + components: + - type: MetaData + name: glass airlock (Chemistry) + - type: Transform + pos: 29.5,13.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 284 + components: + - type: MetaData + name: airlock (Chemistry) + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 1227 + components: + - type: MetaData + name: airlock (CE's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 + - uid: 2523 + components: + - type: MetaData + name: airlock (CE's Bedroom) + - type: Transform + pos: 40.5,-15.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 1231 + components: + - type: MetaData + name: airlock (CMO's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,20.5 + parent: 2 + - uid: 3912 + components: + - type: MetaData + name: airlock (CMO's Bedroom) + - type: Transform + pos: 31.5,24.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 4489 + components: + - type: MetaData + name: glass airlock (Bridge) + - type: Transform + pos: -27.5,-7.5 + parent: 2 + - uid: 4514 + components: + - type: MetaData + name: glass airlock (Bridge) + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - uid: 4531 + components: + - type: MetaData + name: glass airlock (Bridge) + - type: Transform + pos: -23.5,-9.5 + parent: 2 + - uid: 4570 + components: + - type: MetaData + name: glass airlock (Bridge) + - type: Transform + pos: -23.5,-7.5 + parent: 2 + - uid: 4571 + components: + - type: MetaData + name: glass airlock (Bridge Evac) + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - uid: 4574 + components: + - type: MetaData + name: glass airlock (Bridge Evac) + - type: Transform + pos: -41.5,-10.5 + parent: 2 +- proto: AirlockCommandLocked + entities: + - uid: 50 + components: + - type: MetaData + name: airlock (Bridge Dock) + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 3689 + components: + - type: MetaData + name: airlock (Bridge Evac) + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 3691 + components: + - type: MetaData + name: airlock (Bridge Evac) + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 4486 + components: + - type: MetaData + name: airlock (Bridge Dock) + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 5451 + components: + - type: MetaData + name: airlock (AI) + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,29.5 + parent: 2 + - uid: 5452 + components: + - type: MetaData + name: airlock (AI) + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,33.5 + parent: 2 + - uid: 5555 + components: + - type: MetaData + name: airlock (AI) + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,31.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 1948 + components: + - type: MetaData + name: airlock (Detective's Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 2 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 362 + components: + - type: MetaData + name: glass airlock (Storage Closet) + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 1358 + components: + - type: MetaData + name: glass airlock (Particle Accelerator) + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-20.5 + parent: 2 + - uid: 2933 + components: + - type: MetaData + name: glass airlock (TEG) + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 2 + - uid: 2934 + components: + - type: MetaData + name: glass airlock (Engineering) + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 7901 + components: + - type: MetaData + name: glass airlock (TEG) + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 9083 + components: + - type: MetaData + name: glass airlock (AME) + - type: Transform + pos: 38.5,-10.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 1037 + components: + - type: MetaData + name: airlock (Central Service Substation) + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 2 + - uid: 1186 + components: + - type: MetaData + name: airlock (Engineering) + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - uid: 1750 + components: + - type: MetaData + name: airlock (Telecomms) + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 2526 + components: + - type: MetaData + name: airlock (Engineering) + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 2578 + components: + - type: MetaData + name: airlock (Engineering Substation) + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 2585 + components: + - type: MetaData + name: airlock (Engineering) + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-6.5 + parent: 2 + - uid: 2786 + components: + - type: MetaData + name: airlock (South Solars) + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-28.5 + parent: 2 + - uid: 3206 + components: + - type: MetaData + name: airlock (South Service Substation) + - 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 + name: airlock (Medical Substation) + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 4529 + components: + - type: MetaData + name: airlock (Bridge Substation) + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-13.5 + parent: 2 + - uid: 5233 + components: + - type: MetaData + name: airlock (Security Substation) + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-29.5 + parent: 2 + - uid: 6632 + components: + - type: MetaData + name: airlock (Cargo Substation) + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 6682 + components: + - type: MetaData + name: airlock (Science Substation) + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,30.5 + parent: 2 + - uid: 7213 + components: + - type: MetaData + name: airlock (Arrivals Substation) + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,55.5 + parent: 2 + - uid: 7712 + components: + - type: MetaData + name: airlock (North Solars) + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 2 + - uid: 7942 + components: + - type: MetaData + name: airlock (Engineering) + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - uid: 8180 + components: + - type: MetaData + name: airlock (Substation) + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-41.5 + parent: 2 +- proto: AirlockEVAGlassLocked + entities: + - uid: 1710 + components: + - type: MetaData + name: glass airlock (EVA) + - type: Transform + pos: 15.5,-15.5 + parent: 2 + - uid: 1712 + components: + - type: MetaData + name: glass airlock (EVA) + - type: Transform + pos: 16.5,-15.5 + parent: 2 +- proto: AirlockEVALocked + entities: + - uid: 1717 + components: + - type: MetaData + name: maintenance airlock (EVA) + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - type: PaintableAirlock + department: Civilian +- proto: AirlockExternalGlass + entities: + - uid: 7076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,39.5 + parent: 2 + - uid: 7077 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,46.5 + parent: 2 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 1196 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1201: + - DoorStatus: DoorBolt + - uid: 1201 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1196: + - DoorStatus: DoorBolt + - uid: 2458 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 1060: + - DoorStatus: DoorBolt + 2304: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 6502 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 6503 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 7670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,44.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7671: + - DoorStatus: DoorBolt + - uid: 7671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,41.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7670: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 1060 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 2458: + - DoorStatus: DoorBolt + 2304: + - DoorStatus: DoorBolt + - uid: 1363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-23.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1364: + - DoorStatus: DoorBolt + - uid: 1364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 1363: + - DoorStatus: DoorBolt + - uid: 2304 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DeviceLinkSource + linkedPorts: + 1060: + - DoorStatus: DoorBolt + 2458: + - DoorStatus: DoorBolt + - uid: 2749 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2768: + - DoorStatus: DoorBolt + - uid: 2768 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 2749: + - DoorStatus: DoorBolt + - uid: 4194 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 7698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,31.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7784: + - DoorStatus: DoorBolt + - uid: 7784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 7698: + - 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 + rot: 1.5707963267948966 rad + pos: 47.5,17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8146: + - DoorStatus: DoorBolt + - uid: 8146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,17.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8145: + - DoorStatus: DoorBolt + - uid: 14221 + components: + - type: Transform + pos: -69.5,-30.5 + parent: 2 + - uid: 14271 + components: + - type: Transform + pos: -67.5,-30.5 + parent: 2 + - uid: 14715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,58.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14786: + - DoorStatus: DoorBolt + - uid: 14786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,55.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 14715: + - DoorStatus: DoorBolt +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 7058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,39.5 + parent: 2 + - uid: 7062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,46.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 3591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-27.5 + parent: 2 + - uid: 3592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-27.5 + parent: 2 + - uid: 3593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-27.5 + parent: 2 + - uid: 3594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-27.5 + parent: 2 + - uid: 3674 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 3684 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 4694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + - uid: 4695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 + - uid: 7954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,27.5 + parent: 2 + - uid: 7955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,23.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 373 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 3595 + components: + - type: Transform + pos: -62.5,-33.5 + parent: 2 + - uid: 3596 + components: + - type: Transform + pos: -60.5,-33.5 + parent: 2 + - uid: 3597 + components: + - type: Transform + pos: -54.5,-33.5 + parent: 2 + - uid: 3598 + components: + - type: Transform + pos: -52.5,-33.5 + parent: 2 + - uid: 15357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,33.5 + parent: 2 + - uid: 15358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,33.5 + parent: 2 + - uid: 15374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-8.5 + parent: 2 + - uid: 15375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-8.5 + parent: 2 +- proto: AirlockFreezerHydroponicsLocked + entities: + - uid: 247 + components: + - type: MetaData + name: airlock (Freezer) + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 246 + components: + - type: MetaData + name: airlock (Freezer) + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 48 + components: + - type: MetaData + name: glass airlock (Cargo) + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,22.5 + parent: 2 + - uid: 116 + components: + - type: MetaData + name: glass airlock (Cargo) + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + - uid: 285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - uid: 390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - uid: 391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - uid: 396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 2 + - uid: 442 + components: + - type: MetaData + name: glass airlock (Service) + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 2 + - uid: 444 + components: + - type: MetaData + name: glass airlock (Service) + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 2 + - uid: 447 + components: + - type: MetaData + name: glass airlock (Service) + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 2 + - uid: 2226 + components: + - type: MetaData + name: glass airlock (Medical) + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 2564 + components: + - type: MetaData + name: glass airlock (Medical) + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 2579 + components: + - type: MetaData + name: glass airlock (Medical) + - type: Transform + pos: 22.5,7.5 + parent: 2 + - uid: 3246 + components: + - type: MetaData + name: glass airlock (Chapel) + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-28.5 + parent: 2 + - uid: 4022 + components: + - type: MetaData + name: glass airlock (Tool Room) + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 4172 + components: + - type: MetaData + name: glass airlock (Cryosleep) + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + - uid: 5556 + components: + - type: MetaData + name: glass airlock (Emergency Suit Storage) + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,25.5 + parent: 2 + - uid: 6453 + components: + - type: MetaData + name: glass airlock (Law Office) + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - type: Door + secondsUntilStateChange: -25105.857 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 7040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,32.5 + parent: 2 + - uid: 7371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - uid: 9614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,32.5 + parent: 2 + - uid: 9621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + - uid: 9622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 9623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + - uid: 9962 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 + - uid: 9963 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 9966 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - uid: 11304 + components: + - type: MetaData + name: glass airlock (Newsroom) + - type: Transform + pos: -29.5,-34.5 + parent: 2 + - uid: 11581 + components: + - type: MetaData + name: glass airlock (Coutroom) + - type: Transform + pos: -15.5,-31.5 + parent: 2 + - uid: 12004 + components: + - type: Transform + pos: -22.5,-14.5 + parent: 2 + - uid: 12613 + components: + - type: Transform + pos: -21.5,-14.5 + parent: 2 + - uid: 14110 + components: + - type: MetaData + name: glass airlock (Library) + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - uid: 14213 + components: + - type: MetaData + name: glass airlock (Library) + - type: Transform + pos: -17.5,-22.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 6504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,42.5 + parent: 2 + - uid: 6505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 2 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 1767 + components: + - type: MetaData + name: airlock (HoP's Bedroom) + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 1781 + components: + - type: MetaData + name: airlock (HoP's Office) + - type: Transform + pos: 12.5,-15.5 + parent: 2 +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 1798 + components: + - type: MetaData + name: airlock (HOS's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 2 + - uid: 2073 + components: + - type: MetaData + name: airlock (HoS's Office) + - type: Transform + pos: -11.5,-37.5 + parent: 2 +- proto: AirlockHydroGlassLocked + entities: + - uid: 250 + components: + - type: MetaData + name: glass airlock (Botany) + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,12.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 255 + components: + - type: MetaData + name: airlock (Botany) + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 260 + components: + - type: MetaData + name: airlock (Janitor's Closet) + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 2 + - uid: 423 + components: + - type: MetaData + name: airlock (Janitor's Closet) + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 +- proto: AirlockKitchenLocked + entities: + - uid: 9643 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 2285 + components: + - type: MetaData + name: maintenance access (Atmospherics) + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-31.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 38 + components: + - type: MetaData + name: maintenance access (Bar) + - type: Transform + pos: 8.5,-5.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 4240 + components: + - type: MetaData + name: maintenance access (Cargo) + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 6476 + components: + - type: MetaData + name: maintenance access (Cargo) + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,32.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 3256 + components: + - type: MetaData + name: maintenance access (Chapel) + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-23.5 + parent: 2 +- proto: AirlockMaintChemLocked + entities: + - uid: 10414 + components: + - type: Transform + pos: 25.5,34.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 3466 + components: + - type: MetaData + name: maintenance access (AI) + - type: Transform + pos: -28.5,30.5 + parent: 2 + - uid: 4476 + components: + - type: MetaData + name: maintenance access (Bridge) + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - uid: 4535 + components: + - type: MetaData + name: maintenance access (Bridge) + - type: Transform + pos: -38.5,-12.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 6385 + components: + - type: MetaData + name: maintenance access (Maintenance) + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-0.5 + parent: 2 + - uid: 8086 + components: + - type: MetaData + name: maintenance access (TEG) + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-17.5 + parent: 2 +- proto: AirlockMaintHydroLocked + entities: + - uid: 252 + components: + - type: MetaData + name: maintenance access (Botany) + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 +- proto: AirlockMaintKitchenLocked + entities: + - uid: 157 + components: + - type: MetaData + name: maintenance access (Kitchen) + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 +- proto: AirlockMaintLawyerLocked + entities: + - uid: 3058 + components: + - type: MetaData + name: maintenance access (Courtroom) + - type: Transform + pos: -14.5,-37.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 692 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 697 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: -25.5,-14.5 + parent: 2 + - uid: 1147 + components: + - type: MetaData + name: maintenance access (Law Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-44.5 + parent: 2 + - uid: 1226 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 1671 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 1677 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 1693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,0.5 + parent: 2 + - uid: 1803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-15.5 + parent: 2 + - uid: 2130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-13.5 + parent: 2 + - uid: 2520 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 2997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-26.5 + parent: 2 + - uid: 3023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-24.5 + parent: 2 + - uid: 3024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-27.5 + parent: 2 + - uid: 3131 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 3195 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 3395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-17.5 + parent: 2 + - uid: 3458 + components: + - type: Transform + pos: -19.5,2.5 + parent: 2 + - uid: 3508 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 3626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-33.5 + parent: 2 + - uid: 3771 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 3802 + components: + - type: MetaData + name: maintenance access (Medical) + - type: Transform + pos: 23.5,3.5 + parent: 2 + - uid: 4140 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 4228 + components: + - type: MetaData + name: maintenance access (Cargo) + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 4258 + components: + - type: MetaData + name: maintenance access (Cargo) + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 4427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 2 + - uid: 4712 + components: + - type: MetaData + name: maintenance access (Escape Pod) + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,4.5 + parent: 2 + - uid: 4713 + components: + - type: MetaData + name: maintenance access (Escape Pod) + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,8.5 + parent: 2 + - uid: 4738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 2 + - uid: 6659 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 6670 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 7209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,53.5 + parent: 2 + - uid: 7505 + components: + - type: Transform + pos: -4.5,24.5 + parent: 2 + - uid: 7684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - uid: 8113 + components: + - type: MetaData + name: maintenance access (Disposals) + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 8115 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 8117 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 8118 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 + - uid: 8119 + components: + - type: MetaData + name: maintenance access (Disposals) + - type: Transform + pos: 47.5,5.5 + parent: 2 + - type: Door + secondsUntilStateChange: -205010.2 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 8130 + components: + - type: MetaData + name: maintenance access (Escape Pod) + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 8131 + components: + - type: MetaData + name: maintenance access (Escape Pod) + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 9616 + components: + - type: MetaData + name: maintenance access (Library) + - type: Transform + pos: -26.5,-20.5 + parent: 2 + - uid: 9967 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 10557 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 14194 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 + - uid: 14554 + components: + - type: Transform + pos: -12.5,56.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 459 + components: + - type: MetaData + name: maintenance access (Psychology) + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 3924 + components: + - type: MetaData + name: maintenance access (Medical) + - type: Transform + pos: 31.5,2.5 + parent: 2 + - uid: 3925 + components: + - type: MetaData + name: maintenance access (Medical) + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 3926 + components: + - type: MetaData + name: maintenance access (Virology) + - type: Transform + pos: 21.5,27.5 + parent: 2 + - uid: 3927 + components: + - type: MetaData + name: maintenance access (Medical) + - type: Transform + pos: 36.5,20.5 + parent: 2 + - uid: 14234 + components: + - type: MetaData + name: maintenance access (Morgue) + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,14.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 375 + components: + - type: Transform + pos: -22.5,11.5 + parent: 2 + - uid: 5100 + components: + - type: MetaData + name: maintenance access (Science) + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,13.5 + parent: 2 + - uid: 5274 + components: + - type: MetaData + name: maintenance access (Xenoarchaeology) + - type: Transform + pos: -19.5,27.5 + parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 7667 + components: + - type: MetaData + name: maintenance access (Salvage) + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,33.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 1955 + components: + - type: MetaData + name: maintenance access (Security) + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 2 + - uid: 1956 + components: + - type: MetaData + name: maintenance access (Security) + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + - uid: 3034 + components: + - type: MetaData + name: maintenance access (Security) + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 11883 + components: + - type: MetaData + name: maintenance access (Security) + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-36.5 + parent: 2 + - uid: 15308 + components: + - type: MetaData + name: maintenance access (Security) + - type: Transform + pos: 4.5,-29.5 + parent: 2 +- proto: AirlockMaintServiceLocked + entities: + - uid: 3126 + components: + - type: MetaData + name: maintenance access (Library) + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 3184 + components: + - type: MetaData + name: maintenance access (Newsroom) + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - uid: 3189 + components: + - type: MetaData + name: maintenance access (Newsroom) + - type: Transform + pos: -27.5,-29.5 + parent: 2 +- proto: AirlockMaintTheatreLocked + entities: + - uid: 254 + components: + - type: MetaData + name: maintenance access (Theatre) + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 3915 + components: + - type: MetaData + name: glass airlock (Medical) + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 3916 + components: + - type: MetaData + name: glass airlock (Medical) + - type: Transform + pos: 29.5,7.5 + parent: 2 + - uid: 3917 + components: + - type: MetaData + name: glass airlock (Medical) + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 3918 + components: + - type: MetaData + name: glass airlock (Medical) + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 3919 + components: + - type: MetaData + name: glass airlock (Paramedic's Office) + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 3920 + components: + - type: MetaData + name: glass airlock (Medical) + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 3922 + components: + - type: MetaData + name: glass airlock (Medical) + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 3923 + components: + - type: MetaData + name: glass airlock (Cryogenics) + - type: Transform + pos: 33.5,14.5 + parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 47 + components: + - type: MetaData + name: airlock (Pyschology) + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 863 + components: + - type: MetaData + name: airlock (Surgery) + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 +- proto: AirlockMedicalMorgueLocked + entities: + - uid: 3913 + components: + - type: MetaData + name: airlock (Morgue) + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 3914 + components: + - type: MetaData + name: airlock (Morgue) + - type: Transform + pos: 40.5,10.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 6552 + components: + - type: MetaData + name: airlock (QM's Bedroom) + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 16154 + components: + - type: MetaData + name: airlock (QM's Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,38.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 + components: + - type: MetaData + name: airlock (RD's Office) + - type: Transform + pos: -13.5,12.5 + parent: 2 + - uid: 5071 + components: + - type: MetaData + name: airlock (RD's Bedroom) + - type: Transform + pos: -15.5,7.5 + parent: 2 +- proto: AirlockSalvageGlassLocked + entities: + - uid: 6473 + components: + - type: MetaData + name: glass airlock (Salvage) + - type: Transform + pos: 17.5,38.5 + 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 + components: + - type: MetaData + name: glass airlock (Xenoarchaeology) + - type: Transform + pos: -17.5,21.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 5141 + components: + - type: MetaData + name: airlock (Robotics) + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,13.5 + parent: 2 + - uid: 5200 + components: + - type: MetaData + name: airlock (Science) + - type: Transform + pos: -11.5,17.5 + parent: 2 + - uid: 5202 + components: + - type: MetaData + name: airlock (Science) + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 5203 + components: + - type: MetaData + name: airlock (Science) + - type: Transform + pos: -11.5,16.5 + parent: 2 + - uid: 5245 + components: + - type: MetaData + name: airlock (Science) + - type: Transform + pos: -8.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 + - uid: 5296 + components: + - type: MetaData + name: airlock (Artifact Chamber) + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,23.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-34.5 + parent: 2 + - uid: 1038 + components: + - type: MetaData + name: glass airlock (Engineering Checkpoint) + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-7.5 + parent: 2 + - uid: 1652 + components: + - type: MetaData + name: glass airlock (Cell A) + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 1870 + components: + - type: MetaData + name: glass airlock (Security) + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 2 + - uid: 1871 + components: + - type: MetaData + name: glass airlock (Security) + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + - uid: 1905 + components: + - type: MetaData + name: glass airlock (Security) + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-21.5 + parent: 2 + - uid: 1929 + components: + - type: MetaData + name: glass airlock (Cell B) + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - uid: 1953 + components: + - type: MetaData + name: glass airlock (Perma) + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 1992 + components: + - type: MetaData + name: glass airlock (Security) + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + - uid: 2099 + components: + - type: MetaData + name: glass airlock (Perma) + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 7471 + components: + - type: MetaData + name: glass airlock (Arrivals Checkpoint) + - type: Transform + pos: -4.5,27.5 + parent: 2 +- proto: AirlockServiceGlassLocked + entities: + - uid: 3183 + components: + - type: MetaData + name: glass airlock (Newsroom) + - type: Transform + pos: -26.5,-34.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 3129 + components: + - type: MetaData + name: airlock (Library) + - type: Transform + pos: -21.5,-26.5 + parent: 2 +- proto: AirlockTheatreLocked + entities: + - uid: 248 + components: + - type: MetaData + name: airlock (Theatre) + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - uid: 249 + components: + - type: MetaData + name: airlock (Theatre) + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 3976 + components: + - type: MetaData + name: airlock (Virology) + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,21.5 + parent: 2 + - uid: 3977 + components: + - type: MetaData + name: airlock (Virology) + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,22.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 824 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 811 + - uid: 907 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 814 + - uid: 908 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 812 + - uid: 909 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 813 + - uid: 910 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 815 + - uid: 944 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 819 + - uid: 945 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 946 + components: + - type: Transform + pos: -3.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 822 + - uid: 958 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 816 + - uid: 975 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 817 + - uid: 1391 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 2624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12674 + - uid: 4037 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11020 + - uid: 5015 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 818 + - uid: 5028 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11289 + - uid: 6129 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11864 + - uid: 8248 + components: + - type: Transform + pos: -2.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3078 + - uid: 8623 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13819 + - uid: 8696 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13817 + - uid: 8714 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13814 + - uid: 8718 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13813 + - uid: 8733 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13825 + - uid: 8741 + components: + - type: Transform + pos: 28.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13812 + - uid: 8742 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13811 + - uid: 8755 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13818 + - uid: 8758 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13824 + - uid: 8782 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13822 + - uid: 8792 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13823 + - uid: 8813 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16172 + - uid: 8814 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13821 + - uid: 9009 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12708 + - uid: 9017 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - uid: 9027 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12725 + - uid: 9048 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12727 + - uid: 9064 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12726 + - uid: 9168 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13947 + - uid: 9478 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12673 + - uid: 10064 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12729 + - uid: 10065 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12731 + - uid: 10427 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12730 + - uid: 10481 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12732 + - uid: 10553 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - uid: 10922 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11083 + - uid: 11001 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11082 + - uid: 11002 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11079 + - uid: 11039 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11015 + - uid: 11065 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11080 + - uid: 11066 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11081 + - uid: 11118 + components: + - type: Transform + pos: -10.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11119 + - uid: 11155 + components: + - type: Transform + pos: -13.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12612 + - uid: 11156 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11256 + - uid: 11157 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11255 + - uid: 11161 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11252 + - uid: 11221 + components: + - type: Transform + pos: -25.5,15.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 + - uid: 11261 + components: + - type: Transform + pos: -30.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11301 + - uid: 11290 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11297 + - uid: 11313 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11291 + - uid: 11315 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11296 + - uid: 11344 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11357 + - uid: 11360 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11359 + - uid: 11361 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11358 + - uid: 11395 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11397 + - uid: 11396 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2196 + - uid: 11411 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11399 + - uid: 11645 + components: + - type: Transform + pos: -53.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13792 + - uid: 11648 + components: + - type: Transform + pos: -37.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13790 + - uid: 11651 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - uid: 11654 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13789 + - uid: 11657 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13791 + - uid: 11660 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13794 + - uid: 11681 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1868 + - uid: 11705 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11900 + - uid: 11722 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11905 + - uid: 11752 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11904 + - uid: 11753 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15300 + - uid: 11754 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11903 + - uid: 11759 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11901 + - uid: 11762 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13870 + - uid: 11770 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11899 + - uid: 11771 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11898 + - uid: 11796 + components: + - type: Transform + pos: -6.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11906 + - uid: 11834 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11896 + - uid: 11835 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11897 + - uid: 11839 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - uid: 11844 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11894 + - uid: 11845 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11895 + - uid: 11885 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11891 + - uid: 11886 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11890 + - uid: 11908 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13797 + - uid: 11912 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13796 + - uid: 11937 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13871 + - uid: 12056 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13795 + - uid: 12401 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13934 + - uid: 12403 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13935 + - uid: 12407 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13933 + - uid: 12411 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13962 + - uid: 12412 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13851 + - uid: 12423 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13852 + - uid: 12434 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3330 + - uid: 12435 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - uid: 12449 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - 14787 + - uid: 12470 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13865 + - uid: 12471 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13864 + - uid: 12513 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13862 + - uid: 12539 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3340 + - uid: 12546 + components: + - type: Transform + pos: 11.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13863 + - uid: 12547 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 12560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13798 + - uid: 12563 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13799 + - uid: 12609 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12721 + - uid: 13801 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13802 + - uid: 13830 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13816 + - uid: 13848 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1136 + - uid: 13849 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 8141 + - uid: 13923 + components: + - type: Transform + pos: -39.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13876 + - uid: 13924 + components: + - type: Transform + pos: -37.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13875 + - uid: 13925 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13931 + - uid: 13926 + components: + - type: Transform + pos: -36.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13930 + - uid: 13927 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13872 + - uid: 13928 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13874 + - uid: 13929 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13873 + - uid: 14761 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14751 + - uid: 15329 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - uid: 15454 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15453 + - uid: 15649 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15650 + - uid: 15724 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13815 + - uid: 15943 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15940 + - uid: 16171 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11251 +- proto: AltarSpawner + entities: + - uid: 3247 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 45 + components: + - type: MetaData + name: APC (Central Service) + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 427 + components: + - type: MetaData + name: APC (Bar) + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 431 + components: + - type: MetaData + name: APC (Theatre) + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - uid: 432 + components: + - type: MetaData + name: APC (Backstage) + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - uid: 434 + components: + - type: MetaData + name: APC (Freezer) + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 505 + components: + - type: MetaData + name: APC (Dorm A) + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 653 + components: + - type: MetaData + name: APC (Janitor's Closet) + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,6.5 + parent: 2 + - uid: 682 + components: + - type: MetaData + name: APC (Tool Room) + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,20.5 + parent: 2 + - uid: 732 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 1149 + components: + - type: MetaData + name: APC (Gravity Generator) + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-7.5 + parent: 2 + - uid: 1393 + components: + - type: MetaData + name: APC (Storage Closet) + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-3.5 + parent: 2 + - uid: 1419 + components: + - type: MetaData + name: APC (Telecomms) + - type: Transform + 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 + name: APC (Engineering Locker Room) + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 1866 + components: + - type: MetaData + name: APC (Security Entrance) + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 2556 + components: + - type: MetaData + name: APC (AME) + - type: Transform + 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 + name: APC (South Solar) + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-29.5 + parent: 2 + - uid: 3295 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 + - uid: 3297 + components: + - type: MetaData + name: APC (Newsroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-31.5 + parent: 2 + - uid: 3298 + components: + - type: MetaData + name: APC (Chapel) + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 3433 + components: + - type: MetaData + name: APC (Law Office) + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-44.5 + parent: 2 + - uid: 3445 + components: + - type: MetaData + name: APC (Dorm B) + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - uid: 4473 + components: + - type: MetaData + name: APC (Service Hall) + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 4497 + components: + - type: MetaData + name: APC (Botany) + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - uid: 4776 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-16.5 + parent: 2 + - uid: 4827 + components: + - type: MetaData + name: APC (Bridge Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 2 + - uid: 4829 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 4907 + components: + - type: MetaData + name: APC (Vault) + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 4995 + components: + - type: MetaData + name: APC (Bridge) + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 5210 + components: + - type: MetaData + name: APC (Bridge Evac) + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-13.5 + parent: 2 + - uid: 5235 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 5581 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 5641 + components: + - type: MetaData + name: APC (Warden's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 2 + - uid: 5642 + components: + - type: MetaData + name: APC (Armoury) + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-27.5 + parent: 2 + - uid: 5645 + components: + - type: MetaData + name: APC (Security Locker Room) + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-19.5 + parent: 2 + - uid: 5647 + components: + - type: MetaData + name: APC (Security Breakroom) + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-23.5 + parent: 2 + - uid: 5648 + components: + - type: MetaData + name: APC (Brig) + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-31.5 + parent: 2 + - uid: 5695 + components: + - type: MetaData + name: APC (Detective's Office) + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 5702 + components: + - type: MetaData + name: APC (Perma) + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-35.5 + parent: 2 + - uid: 5926 + components: + - type: MetaData + name: APC (Evac Checkpoint) + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-36.5 + parent: 2 + - uid: 5930 + components: + - type: MetaData + name: APC (HoP's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-20.5 + parent: 2 + - uid: 5966 + components: + - type: MetaData + name: APC (EVA) + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 2 + - uid: 6152 + components: + - type: MetaData + name: APC (HoS's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - uid: 6163 + components: + - type: MetaData + name: APC (Spacebucks) + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-14.5 + parent: 2 + - uid: 6197 + components: + - type: MetaData + name: APC (Shuttle Workshop) + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-44.5 + parent: 2 + - uid: 6258 + components: + - type: MetaData + name: APC (Courtroom) + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-32.5 + parent: 2 + - uid: 6267 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-44.5 + parent: 2 + - uid: 6778 + components: + - type: MetaData + name: APC (Engineering Checkpoint) + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-11.5 + parent: 2 + - uid: 6845 + components: + - type: MetaData + name: APC (Xenoarchaeology) + - 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 + parent: 2 + - uid: 6981 + components: + - type: MetaData + name: APC (AI Utility Closet) + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,28.5 + parent: 2 + - uid: 6982 + components: + - type: MetaData + name: APC (AI Core) + - type: Transform + pos: -38.5,34.5 + parent: 2 + - uid: 6999 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 7325 + components: + - type: MetaData + name: APC (Arrivals) + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,37.5 + parent: 2 + - uid: 7326 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 2 + - uid: 7328 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,53.5 + parent: 2 + - uid: 7483 + components: + - type: MetaData + name: APC (Psychologist's Office) + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 7510 + components: + - type: MetaData + name: APC (Cryosleep) + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 7516 + components: + - type: MetaData + name: APC (Cargo Entrance) + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,28.5 + parent: 2 + - uid: 7517 + components: + - type: MetaData + name: APC (Cargo Reception) + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,28.5 + parent: 2 + - uid: 7518 + components: + - type: MetaData + name: APC (Cargo Bay) + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,32.5 + parent: 2 + - uid: 7519 + components: + - type: MetaData + name: APC (QM's Office) + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,37.5 + parent: 2 + - uid: 7765 + components: + - type: MetaData + name: APC (Salvage) + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,38.5 + parent: 2 + - uid: 8241 + components: + - type: MetaData + name: APC (Morgue) + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 + - uid: 8616 + components: + - type: MetaData + name: APC (Evac) + - type: Transform + pos: -46.5,-28.5 + parent: 2 + - uid: 8620 + components: + - type: MetaData + name: APC (Arrivals Checkpoint) + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,26.5 + parent: 2 + - uid: 8751 + components: + - type: MetaData + name: APC (Particle Accelerator) + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 8786 + components: + - type: MetaData + name: APC (Atmospherics) + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-32.5 + parent: 2 + - uid: 9101 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 9111 + components: + - type: MetaData + name: APC (Disposals) + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,6.5 + parent: 2 + - uid: 9157 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 9201 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,21.5 + parent: 2 + - uid: 9281 + components: + - type: MetaData + name: APC (North Solar) + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,31.5 + parent: 2 + - uid: 9297 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,30.5 + parent: 2 + - uid: 9632 + components: + - type: MetaData + name: APC (Kitchen) + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + - uid: 9695 + components: + - type: MetaData + name: APC (Surgery) + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 9696 + components: + - type: MetaData + name: APC (Medbay Entrance) + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 9697 + components: + - type: MetaData + name: APC (Chemistry) + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + - uid: 9698 + components: + - type: MetaData + name: APC (Medbay) + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 9700 + components: + - type: MetaData + name: APC (Cryogenics) + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 9701 + components: + - type: MetaData + name: APC (Paramedic's Office) + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 9702 + components: + - type: MetaData + name: APC (Virology) + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,24.5 + parent: 2 + - uid: 9703 + components: + - type: MetaData + name: APC (CMO's Office) + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 9704 + components: + - type: MetaData + name: APC (Medical Locker Room) + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 9822 + components: + - type: MetaData + name: APC (Medbay Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,17.5 + parent: 2 + - uid: 9910 + components: + - type: MetaData + name: APC (Northeast Hall) + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 9937 + components: + - type: MetaData + name: APC (North Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 2 + - uid: 9944 + components: + - type: MetaData + name: APC (Arrivals Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,27.5 + parent: 2 + - uid: 9950 + components: + - type: MetaData + name: APC (West Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 9996 + components: + - type: MetaData + name: APC (Dorms Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-36.5 + parent: 2 + - uid: 10027 + components: + - type: MetaData + name: APC (South Hall) + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 10482 + components: + - type: MetaData + name: APC (TEG) + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 10755 + components: + - type: MetaData + name: APC (Engineering) + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 12212 + components: + - type: MetaData + name: APC (SMES Array) + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 13637 + components: + - type: MetaData + name: APC (Southeast Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 2 + - uid: 13643 + components: + - type: MetaData + name: APC (Library) + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-25.5 + parent: 2 + - uid: 15387 + components: + - type: MetaData + name: APC (Maintenance) + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 15428 + components: + - type: MetaData + name: APC (Captain's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-4.5 + parent: 2 + - uid: 15615 + components: + - type: MetaData + name: APC (CE's Office) + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 15627 + components: + - type: MetaData + name: APC (Station Anchor) + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 2 + - uid: 15931 + components: + - type: MetaData + name: APC (Bathroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-33.5 + parent: 2 +- proto: APCElectronics + entities: + - uid: 2249 + components: + - type: Transform + pos: 35.519558,-3.3706174 + parent: 2 + - uid: 2257 + components: + - type: Transform + pos: 35.473713,-3.596447 + parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 14632 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 14633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,36.5 + parent: 2 + - uid: 14634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,49.5 + parent: 2 + - uid: 14635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,42.5 + parent: 2 +- proto: ArtistCircuitBoard + entities: + - uid: 5483 + components: + - type: Transform + pos: -33.483475,35.73813 + parent: 2 +- proto: AsimovCircuitBoard + entities: + - uid: 5485 + components: + - type: Transform + pos: -31.452223,35.64438 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 799 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - uid: 2467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-27.5 + parent: 2 + - uid: 2939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-27.5 + parent: 2 + - uid: 3139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + - uid: 3398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,46.5 + parent: 2 + - uid: 3605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,39.5 + parent: 2 + - uid: 4274 + components: + - type: Transform + pos: -54.5,-15.5 + parent: 2 + - uid: 4280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-27.5 + parent: 2 + - uid: 4281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-27.5 + parent: 2 + - uid: 4282 + components: + - type: Transform + pos: -52.5,-33.5 + parent: 2 + - uid: 4283 + components: + - type: Transform + pos: -54.5,-33.5 + parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -60.5,-33.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: -62.5,-33.5 + parent: 2 + - uid: 4288 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - uid: 6171 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 6304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 + - uid: 7956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,27.5 + parent: 2 + - uid: 7957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 48.5,23.5 + parent: 2 + - uid: 8304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-8.5 + parent: 2 + - uid: 10896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,42.5 + parent: 2 + - uid: 10897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,42.5 + parent: 2 + - uid: 15378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-8.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 2449 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - uid: 2450 + components: + - type: Transform + pos: 39.5,-35.5 + parent: 2 + - uid: 2451 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 2452 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 2 + - uid: 2453 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 2454 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 + - uid: 2455 + components: + - type: Transform + pos: 38.5,-39.5 + parent: 2 + - uid: 2456 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - uid: 2457 + components: + - type: Transform + pos: 40.5,-39.5 + parent: 2 + - uid: 12733 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 2 + - uid: 13971 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 2 + - uid: 13979 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 2 + - uid: 13980 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 2 + - uid: 13981 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 13982 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 13983 + components: + - type: Transform + pos: 21.5,-23.5 + parent: 2 + - uid: 13984 + components: + - type: Transform + pos: 21.5,-24.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + pos: 21.5,-25.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: 30.5,-43.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + pos: 30.5,-45.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + pos: 31.5,-43.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + pos: 31.5,-45.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: 32.5,-43.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 13994 + components: + - type: Transform + pos: 32.5,-45.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 787 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: 11.5,3.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 2440 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 2441 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 2442 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 +- proto: AtmosFixOxygenMarker + entities: + - uid: 2443 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 2444 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 2445 + components: + - type: Transform + pos: 24.5,-37.5 + parent: 2 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 2446 + components: + - type: Transform + pos: 38.5,-37.5 + parent: 2 + - uid: 2447 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 2448 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 2590 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 5297 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 6570 + components: + - type: Transform + pos: 16.5,34.5 + parent: 2 +- proto: BananaPhoneInstrument + entities: + - uid: 13533 + components: + - type: Transform + pos: -0.5442145,10.596903 + parent: 2 +- proto: BananaSeeds + entities: + - uid: 15824 + components: + - type: Transform + pos: 16.910435,5.7369614 + parent: 2 +- proto: BanjoInstrument + entities: + - uid: 15214 + components: + - type: Transform + pos: -1.4309328,41.45142 + parent: 2 +- proto: Barricade + entities: + - uid: 2119 + components: + - type: Transform + pos: -20.5,-45.5 + parent: 2 + - uid: 6733 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,3.5 + parent: 2 + - uid: 7320 + components: + - type: Transform + pos: -4.5,49.5 + parent: 2 + - uid: 10384 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 10385 + components: + - type: Transform + pos: -36.5,-43.5 + parent: 2 + - uid: 10392 + components: + - type: Transform + pos: -37.5,-11.5 + parent: 2 + - uid: 10396 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 10408 + components: + - type: Transform + pos: -10.5,32.5 + parent: 2 + - uid: 10417 + components: + - type: Transform + pos: 39.5,31.5 + parent: 2 + - uid: 10418 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 10434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,24.5 + parent: 2 + - uid: 10437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,10.5 + parent: 2 + - uid: 10438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,7.5 + parent: 2 + - uid: 13787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,34.5 + parent: 2 + - uid: 15768 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 2 + - uid: 16111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,50.5 + parent: 2 +- proto: BarricadeBlock + entities: + - uid: 2998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-26.5 + parent: 2 + - uid: 6732 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 7318 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 10380 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - uid: 10386 + components: + - type: Transform + pos: -37.5,-48.5 + parent: 2 + - uid: 10407 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 10431 + components: + - type: Transform + pos: 42.5,25.5 + parent: 2 + - uid: 16121 + components: + - type: Transform + pos: -23.5,55.5 + parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 400 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 420 + components: + - type: Transform + pos: -1.5,38.5 + parent: 2 + - uid: 2930 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 7321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + - uid: 10202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,56.5 + parent: 2 + - uid: 10382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-40.5 + parent: 2 + - uid: 10383 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 10387 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 10389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-42.5 + parent: 2 + - uid: 10395 + components: + - type: Transform + pos: -20.5,3.5 + parent: 2 + - uid: 10397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - uid: 10403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,30.5 + parent: 2 + - uid: 10406 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 10419 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 + - uid: 10420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,26.5 + parent: 2 + - uid: 10421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,18.5 + parent: 2 + - uid: 10432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,26.5 + parent: 2 + - uid: 10433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,26.5 + parent: 2 + - uid: 13786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,34.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,32.5 + parent: 2 + - uid: 15769 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 + - uid: 15845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,31.5 + parent: 2 + - uid: 16118 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 16120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,53.5 + parent: 2 +- proto: BarSign + entities: + - uid: 15900 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 2 +- proto: BarSignSpacebucks + entities: + - uid: 5917 + components: + - type: Transform + pos: -17.5,-11.5 + parent: 2 +- proto: BarSpoon + entities: + - uid: 803 + components: + - type: Transform + pos: -0.3145411,-3.3748884 + parent: 2 +- proto: BaseChemistryEmptyVial + entities: + - uid: 4094 + components: + - type: Transform + pos: 19.960098,21.84556 + parent: 2 + - uid: 4095 + components: + - type: Transform + pos: 20.116348,21.62681 + parent: 2 + - uid: 8822 + components: + - type: Transform + pos: 24.581747,10.684262 + parent: 2 + - uid: 15849 + components: + - type: Transform + pos: 27.824532,35.632626 + parent: 2 +- proto: Beaker + entities: + - uid: 430 + components: + - 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 + pos: 26.769247,16.215511 + parent: 2 +- proto: Bed + entities: + - uid: 1784 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 + - uid: 1974 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 2076 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 + - uid: 2095 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 2166 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 + - uid: 2167 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 2976 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 + - uid: 4080 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 + - uid: 4400 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 + - uid: 5068 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 + - uid: 5078 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 + - uid: 6018 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 6021 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 6060 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 6589 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 4586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 2540 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 4079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,26.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 4106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 1783 + components: + - type: Transform + pos: 10.5,-22.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 2075 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 4103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,11.5 + parent: 2 + - uid: 4104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 + - uid: 4105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,11.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 2114 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 2115 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 2168 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 2169 + components: + - type: Transform + pos: -12.5,-24.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 6586 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 5079 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 4311 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 4515 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 4623 + components: + - type: Transform + pos: -24.5,-43.5 + parent: 2 + - uid: 5069 + components: + - type: Transform + pos: -31.5,-43.5 + parent: 2 +- proto: BigBox + entities: + - uid: 306 + components: + - type: Transform + pos: 7.524176,9.531988 + parent: 2 +- proto: Biogenerator + entities: + - uid: 4475 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 2360 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - uid: 2468 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 2600 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 4268 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - uid: 4269 + components: + - 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 + pos: 52.5,8.5 + parent: 2 +- proto: BlockGameArcade + entities: + - uid: 13997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 2 +- proto: BookNames + entities: + - uid: 4116 + components: + - type: Transform + pos: 23.539558,8.618178 + parent: 2 +- proto: BookRandom + entities: + - uid: 2156 + components: + - type: Transform + pos: 1.0466881,-32.39723 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 2614 + components: + - type: Transform + pos: -19.479197,-19.378971 + parent: 2 + - uid: 14192 + components: + - type: Transform + pos: -20.510447,-18.410221 + parent: 2 +- proto: BooksBag + entities: + - uid: 15814 + components: + - type: Transform + pos: -20.05015,-24.375729 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 449 + components: + - type: Transform + pos: -24.5,-21.5 + parent: 2 + - uid: 2155 + components: + - type: Transform + pos: 4.5,-32.5 + parent: 2 + - uid: 3082 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 3083 + components: + - type: Transform + pos: -25.5,-23.5 + parent: 2 + - uid: 3084 + components: + - type: Transform + pos: -23.5,-19.5 + parent: 2 + - uid: 3085 + components: + - type: Transform + pos: -22.5,-21.5 + parent: 2 + - uid: 3087 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 3089 + components: + - type: Transform + pos: -22.5,-23.5 + parent: 2 + - uid: 3106 + components: + - type: Transform + pos: -24.5,-23.5 + parent: 2 + - uid: 3107 + components: + - type: Transform + pos: -23.5,-23.5 + parent: 2 + - uid: 3108 + components: + - type: Transform + pos: -25.5,-21.5 + parent: 2 + - uid: 3110 + components: + - type: Transform + pos: -23.5,-21.5 + parent: 2 + - uid: 3240 + components: + - type: Transform + pos: -32.5,-21.5 + parent: 2 + - uid: 4698 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 +- proto: BookSpaceLaw + entities: + - uid: 3025 + components: + - type: Transform + pos: -15.5013485,-35.526657 + parent: 2 + - uid: 16081 + components: + - type: Transform + pos: -19.52816,-41.45253 + parent: 2 +- proto: BookTruth + entities: + - uid: 4435 + components: + - type: Transform + pos: -15.469685,2.552526 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 8604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,0.5 + 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 + pos: -35.5,30.5 + parent: 2 + - uid: 5471 + components: + - type: Transform + pos: -35.5,32.5 + parent: 2 +- proto: BoxBodyBag + entities: + - uid: 4064 + components: + - type: Transform + pos: 40.57258,12.659262 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 2055 + components: + - type: Transform + pos: -5.6714606,-22.394136 + parent: 2 +- proto: BoxFolderBlack + entities: + - uid: 2035 + components: + - type: Transform + pos: -12.630611,-20.29776 + parent: 2 + - uid: 16017 + components: + - type: Transform + pos: -12.707649,7.5388336 + parent: 2 + - uid: 16018 + components: + - type: Transform + pos: -9.505383,21.489458 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 3022 + components: + - type: Transform + pos: -17.502165,-33.36028 + parent: 2 + - uid: 6715 + components: + - type: Transform + pos: -25.608753,33.61409 + parent: 2 + - uid: 10512 + components: + - type: Transform + pos: -32.982193,-5.415428 + parent: 2 + - uid: 16013 + components: + - type: Transform + pos: 10.5347595,-19.391357 + parent: 2 + - uid: 16014 + components: + - type: Transform + pos: -18.664787,-1.3962584 + parent: 2 + - uid: 16015 + components: + - type: Transform + pos: -25.685099,-5.386759 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 16203 + components: + - type: Transform + pos: 11.4253845,-17.297607 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 3059 + components: + - type: Transform + pos: -16.533415,-35.45403 + parent: 2 + - uid: 16016 + components: + - type: Transform + pos: -18.359055,-1.495645 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 2034 + components: + - type: Transform + pos: -12.411861,-19.82901 + parent: 2 + - uid: 6274 + components: + - type: Transform + pos: -14.408415,-33.375904 + parent: 2 + - uid: 16011 + components: + - type: Transform + pos: -4.2039995,-15.564186 + parent: 2 + - uid: 16012 + components: + - type: Transform + pos: -1.3799434,-23.500525 + parent: 2 +- proto: BoxFolderWhite + entities: + - uid: 4216 + components: + - type: Transform + pos: 1.0209868,19.655064 + parent: 2 + - uid: 16007 + components: + - type: Transform + pos: 27.364758,5.4863663 + parent: 2 + - uid: 16008 + components: + - type: Transform + pos: 32.6102,22.260859 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 15282 + components: + - type: Transform + pos: 1.5546551,39.02314 + parent: 2 + - uid: 16006 + components: + - type: Transform + pos: 9.622768,29.624254 + parent: 2 + - uid: 16009 + components: + - type: Transform + pos: 22.813547,-10.502799 + parent: 2 + - uid: 16010 + components: + - type: Transform + pos: 38.91701,-16.434631 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 2057 + components: + - type: Transform + pos: -1.5098205,-28.365744 + parent: 2 +- proto: BoxLatexGloves + entities: + - uid: 4093 + components: + - type: Transform + pos: 20.522598,24.78306 + parent: 2 +- proto: BoxLightMixed + entities: + - uid: 809 + components: + - type: Transform + pos: -5.5149493,7.610962 + parent: 2 +- proto: BoxMagazinePistolPractice + entities: + - uid: 14027 + components: + - type: Transform + pos: -12.401453,-36.442593 + parent: 2 +- proto: BoxMagazinePistolSubMachineGunPractice + entities: + - uid: 14026 + components: + - type: Transform + pos: -12.620203,-36.223843 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 4090 + components: + - type: Transform + pos: 19.553848,24.72056 + parent: 2 +- proto: BoxNitrileGloves + entities: + - uid: 644 + components: + - type: Transform + pos: -2.5636506,8.725537 + parent: 2 +- proto: BoxSterileMask + entities: + - uid: 190 + components: + - type: Transform + pos: -2.3292756,8.553662 + parent: 2 +- proto: BoxZiptie + entities: + - uid: 2056 + components: + - type: Transform + pos: -5.3091073,-22.285152 + parent: 2 +- proto: BrbSign + entities: + - uid: 16190 + components: + - type: Transform + pos: 13.434857,-18.437197 + parent: 2 +- proto: BriefcaseBrownFilled + entities: + - uid: 4524 + components: + - type: Transform + pos: -19.481285,-42.29628 + parent: 2 +- proto: BrigTimer + entities: + - uid: 1958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1652: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 1959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1929: + - Start: Close + - Timer: AutoClose + - Timer: Open +- proto: Bucket + entities: + - uid: 320 + components: + - type: Transform + pos: 2.9653695,-4.427342 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -5.654397,9.747126 + parent: 2 + - uid: 15455 + components: + - type: Transform + pos: 16.205666,8.194413 + parent: 2 +- proto: ButchCleaver + entities: + - uid: 688 + components: + - type: Transform + pos: 9.497909,6.563638 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 2583 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 2644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-42.5 + parent: 2 + - uid: 4209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 2 + - uid: 4323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 + - uid: 4423 + components: + - type: Transform + pos: 11.5,2.5 + parent: 2 + - uid: 4701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,16.5 + parent: 2 + - uid: 5246 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,23.5 + parent: 2 + - uid: 6555 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 6556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 2 + - uid: 7995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 2 + - uid: 9352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,9.5 + parent: 2 + - uid: 11098 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 12579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-26.5 + parent: 2 + - uid: 13477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - uid: 13820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-23.5 + parent: 2 + - uid: 13975 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - uid: 16000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 2 + - uid: 16001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 16151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-36.5 + parent: 2 + - uid: 16160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,36.5 + parent: 2 + - uid: 16175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,23.5 + parent: 2 + - uid: 16184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 2 + - uid: 16195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 2 +- proto: ButtonFrameExit + entities: + - uid: 8077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,9.5 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 4478 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 9657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 2 + - uid: 15862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-41.5 + parent: 2 + - uid: 15864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-41.5 + parent: 2 + - uid: 16209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 2 +- proto: ButtonFrameJanitor + entities: + - uid: 996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 2 + - uid: 6028 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 10511 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - uid: 15854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 2 + - uid: 15863 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-43.5 + parent: 2 + - uid: 15867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-43.5 + parent: 2 + - uid: 15869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 2 + - uid: 15870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-36.5 + parent: 2 + - uid: 15876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 2 + - uid: 15879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-25.5 + parent: 2 + - uid: 15882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 15885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 2 + - uid: 15887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 2 + - uid: 15890 + components: + - type: Transform + pos: 17.5,9.5 + parent: 2 + - uid: 15894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,32.5 + parent: 2 + - uid: 15897 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 117 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 384 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 495 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 496 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 497 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -19.5,-46.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -3.5,1.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 565 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 566 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 596 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 597 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 598 + components: + - type: Transform + pos: 5.5,5.5 + parent: 2 + - uid: 599 + components: + - type: Transform + pos: 4.5,5.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 3.5,5.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 1.5,5.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: -0.5,5.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 14.5,0.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 9.5,0.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 12.5,0.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 13.5,6.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 16.5,8.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 16.5,6.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 12.5,9.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 768 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 769 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 770 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 772 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 773 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 930 + components: + - type: Transform + pos: -51.5,-12.5 + parent: 2 + - uid: 943 + components: + - type: Transform + pos: -53.5,-12.5 + parent: 2 + - uid: 1003 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 1119 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 1130 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 1143 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 1205 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: 39.5,-33.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: 41.5,-33.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 1588 + components: + - type: Transform + pos: 36.5,-9.5 + parent: 2 + - uid: 1593 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 1606 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 1608 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 + - uid: 1674 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 1676 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 1682 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 1685 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 1691 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 1817 + components: + - type: Transform + pos: 40.5,-33.5 + parent: 2 + - uid: 1837 + components: + - type: Transform + pos: 42.5,-33.5 + parent: 2 + - uid: 1875 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 1970 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 1988 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 2177 + components: + - type: Transform + pos: -8.5,-41.5 + parent: 2 + - uid: 2271 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 2569 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 2674 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 2735 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 2753 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 2792 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 2793 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 2794 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 2799 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 2800 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 2801 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 2802 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 2803 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 2812 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 2813 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 + - uid: 2830 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 2831 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 2832 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 2839 + components: + - type: Transform + pos: 24.5,-20.5 + parent: 2 + - uid: 2840 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 2842 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 2929 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 2986 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 2995 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 2 + - uid: 2996 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 2 + - uid: 3001 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 + - uid: 3011 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 3036 + components: + - type: Transform + pos: -9.5,-41.5 + parent: 2 + - uid: 3161 + components: + - type: Transform + pos: -50.5,-12.5 + parent: 2 + - uid: 3239 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 3248 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 3296 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 3299 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - uid: 3300 + components: + - type: Transform + pos: -33.5,-26.5 + parent: 2 + - uid: 3301 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 3302 + components: + - type: Transform + pos: -33.5,-25.5 + parent: 2 + - uid: 3303 + components: + - type: Transform + pos: -33.5,-24.5 + parent: 2 + - uid: 3304 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 3305 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 3306 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 3307 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 3308 + components: + - type: Transform + pos: -32.5,-23.5 + parent: 2 + - uid: 3309 + components: + - type: Transform + pos: -31.5,-23.5 + parent: 2 + - uid: 3310 + components: + - type: Transform + pos: -30.5,-23.5 + parent: 2 + - uid: 3311 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 3312 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 3313 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 3314 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 3315 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 3316 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 3317 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 3318 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 3319 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 3320 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 3321 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 3322 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 3323 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 3324 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 3325 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 3326 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 3327 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 3328 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 3329 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 3331 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 3332 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 3333 + components: + - type: Transform + pos: -27.5,-32.5 + parent: 2 + - uid: 3334 + components: + - type: Transform + pos: -27.5,-33.5 + parent: 2 + - uid: 3335 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - uid: 3336 + components: + - type: Transform + pos: -26.5,-34.5 + parent: 2 + - uid: 3337 + components: + - type: Transform + pos: -24.5,-34.5 + parent: 2 + - uid: 3338 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 + - uid: 3339 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 + - uid: 3341 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 3342 + components: + - type: Transform + pos: -23.5,-33.5 + parent: 2 + - uid: 3343 + components: + - type: Transform + pos: -23.5,-32.5 + parent: 2 + - uid: 3344 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 3345 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 3346 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 3347 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 3348 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 3349 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 3350 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 3351 + components: + - type: Transform + pos: -18.5,-24.5 + parent: 2 + - uid: 3352 + components: + - type: Transform + pos: -18.5,-23.5 + parent: 2 + - uid: 3353 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 3354 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - uid: 3355 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 3356 + components: + - type: Transform + pos: -22.5,-22.5 + parent: 2 + - uid: 3357 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 3358 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 + - uid: 3359 + components: + - type: Transform + pos: -23.5,-22.5 + parent: 2 + - uid: 3360 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 3361 + components: + - type: Transform + pos: -23.5,-20.5 + parent: 2 + - uid: 3362 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 3363 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 3364 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: -20.5,-21.5 + parent: 2 + - uid: 3441 + components: + - type: Transform + pos: -27.5,-13.5 + parent: 2 + - uid: 3462 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 3463 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 3578 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 3624 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 3811 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 3813 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 3921 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 3981 + components: + - type: Transform + pos: -2.5,21.5 + parent: 2 + - uid: 4015 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 4016 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 4056 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 4251 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 4318 + components: + - type: Transform + pos: -31.5,-13.5 + parent: 2 + - uid: 4338 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 4358 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 4379 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 4415 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 4477 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 4484 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 4496 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 4781 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 4782 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 4783 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 4784 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 4785 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 4789 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 4790 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 4791 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 4792 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 4793 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 4794 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 4795 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - uid: 4796 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 4797 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - uid: 4798 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 4799 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 4800 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 4801 + components: + - type: Transform + pos: -33.5,-14.5 + parent: 2 + - uid: 4806 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 4807 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 4808 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 4809 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 4810 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 4811 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 4825 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 + - uid: 4847 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 + - uid: 4849 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 4851 + components: + - type: Transform + pos: -32.5,-13.5 + parent: 2 + - uid: 4944 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 4948 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 4949 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 4950 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 4951 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 4952 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 4953 + components: + - type: Transform + pos: -21.5,-10.5 + parent: 2 + - uid: 4954 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 4955 + components: + - type: Transform + pos: -21.5,-12.5 + parent: 2 + - uid: 4956 + components: + - type: Transform + pos: -21.5,-13.5 + parent: 2 + - uid: 4957 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 4958 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 4959 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 4960 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 4961 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 4962 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 4963 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 4964 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 4965 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 4966 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 4967 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 4968 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 4969 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 4970 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 4971 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 4972 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 4973 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 4974 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 4975 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 4976 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 4977 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 4978 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 4979 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 4980 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 4981 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 4982 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 4986 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 4987 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 4988 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 4989 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 4990 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 4991 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 4992 + components: + - type: Transform + pos: -33.5,-13.5 + parent: 2 + - uid: 4993 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 4994 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 4998 + components: + - type: Transform + pos: -33.5,-6.5 + parent: 2 + - uid: 4999 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 5000 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 5001 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 5002 + components: + - type: Transform + pos: -37.5,-6.5 + parent: 2 + - uid: 5003 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 + - uid: 5004 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 2 + - uid: 5005 + components: + - type: Transform + pos: -39.5,-6.5 + parent: 2 + - uid: 5006 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 5007 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 5008 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 5009 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 5010 + components: + - type: Transform + pos: -38.5,-8.5 + parent: 2 + - uid: 5011 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 5012 + components: + - type: Transform + pos: -36.5,-8.5 + parent: 2 + - uid: 5020 + components: + - type: Transform + pos: -45.5,-12.5 + parent: 2 + - uid: 5021 + components: + - type: Transform + pos: -54.5,-14.5 + parent: 2 + - uid: 5022 + components: + - type: Transform + pos: -54.5,-13.5 + parent: 2 + - uid: 5023 + components: + - type: Transform + pos: -54.5,-12.5 + parent: 2 + - uid: 5024 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 5025 + components: + - type: Transform + pos: -52.5,-13.5 + parent: 2 + - uid: 5026 + components: + - type: Transform + pos: -52.5,-12.5 + parent: 2 + - uid: 5037 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 5038 + components: + - type: Transform + pos: -43.5,-11.5 + parent: 2 + - uid: 5039 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 5040 + components: + - type: Transform + pos: -41.5,-11.5 + parent: 2 + - uid: 5041 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 5042 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 5043 + components: + - type: Transform + pos: -31.5,-6.5 + parent: 2 + - uid: 5044 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - uid: 5045 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 5046 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 5047 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 5048 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 + - uid: 5049 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 + - uid: 5050 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 5051 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 5052 + components: + - type: Transform + pos: -16.5,4.5 + parent: 2 + - uid: 5053 + components: + - type: Transform + pos: -15.5,4.5 + parent: 2 + - uid: 5054 + components: + - type: Transform + pos: -14.5,4.5 + parent: 2 + - uid: 5055 + components: + - type: Transform + pos: -13.5,4.5 + parent: 2 + - uid: 5056 + components: + - type: Transform + pos: -12.5,4.5 + parent: 2 + - uid: 5057 + components: + - type: Transform + pos: -23.5,4.5 + parent: 2 + - uid: 5058 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 5059 + components: + - type: Transform + pos: -21.5,4.5 + parent: 2 + - uid: 5060 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 5061 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 5062 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 5063 + components: + - type: Transform + pos: -23.5,8.5 + parent: 2 + - uid: 5064 + components: + - type: Transform + pos: -22.5,8.5 + parent: 2 + - uid: 5065 + components: + - type: Transform + pos: -21.5,8.5 + parent: 2 + - uid: 5066 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 5176 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 + - uid: 5186 + components: + - type: Transform + pos: -28.5,-13.5 + parent: 2 + - uid: 5190 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 5224 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 5226 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 5236 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 5237 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 5238 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 5239 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 5240 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 5264 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 5265 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 5276 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 5285 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 5319 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 5320 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 5322 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 5323 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 5324 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 5325 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 5326 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 5327 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 5328 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 5329 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 5330 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 5334 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 5337 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 5342 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 5364 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 5472 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 5490 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 5508 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 5512 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 5517 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 5522 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 5528 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 5531 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 5534 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 5537 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 5539 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 5541 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 2 + - uid: 5545 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 2 + - uid: 5548 + components: + - type: Transform + pos: 12.5,-23.5 + parent: 2 + - uid: 5549 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 5550 + components: + - type: Transform + pos: 12.5,-21.5 + parent: 2 + - uid: 5551 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 2 + - uid: 5557 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 2 + - uid: 5559 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 5560 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 5561 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 5562 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 5563 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 5564 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 5565 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 5566 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 5567 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 5568 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 5569 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 5570 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 5571 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 5572 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 5573 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 5574 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 5577 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 5578 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 5579 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 5582 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 5583 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 5584 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 5585 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 5586 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 5587 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 5588 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 2 + - uid: 5589 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 2 + - uid: 5590 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 2 + - uid: 5591 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 2 + - uid: 5592 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 5593 + components: + - type: Transform + pos: 19.5,-31.5 + parent: 2 + - uid: 5594 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 + - uid: 5595 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 2 + - uid: 5720 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 5721 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 5722 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 5723 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 5724 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 5725 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 5726 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 5727 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 5728 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 5729 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 5730 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 5731 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 5732 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 5733 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 5734 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 5735 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 5736 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 5737 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 5738 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 5739 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 5740 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 5741 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - uid: 5742 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - uid: 5749 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 5750 + components: + - type: Transform + pos: -11.5,-37.5 + parent: 2 + - uid: 5751 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 5752 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 5753 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 5754 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 5784 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 5785 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 5786 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 5787 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 5788 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 5789 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 5790 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 5791 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 5792 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 5793 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 5794 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 2 + - uid: 5795 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 + - uid: 5796 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 2 + - uid: 5797 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 5798 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 5799 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 5800 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 5801 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 5802 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 5805 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 5806 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 5807 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 5808 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 5809 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 5810 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 5811 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 5812 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 5813 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - uid: 5814 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 5815 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 2 + - uid: 5816 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 5817 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 5818 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 5819 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 5820 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 5821 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 5822 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 5823 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 5824 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 5825 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 5826 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 2 + - uid: 5827 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 + - uid: 5828 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 5829 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 5830 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - uid: 5831 + components: + - type: Transform + pos: -10.5,-26.5 + parent: 2 + - uid: 5832 + components: + - type: Transform + pos: -11.5,-29.5 + parent: 2 + - uid: 5833 + components: + - type: Transform + pos: -10.5,-25.5 + parent: 2 + - uid: 5834 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 5835 + components: + - type: Transform + pos: -9.5,-26.5 + parent: 2 + - uid: 5836 + components: + - type: Transform + pos: -10.5,-29.5 + parent: 2 + - uid: 5837 + components: + - type: Transform + pos: -10.5,-30.5 + parent: 2 + - uid: 5838 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 + - uid: 5839 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 5840 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 5841 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 5842 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 5843 + components: + - type: Transform + pos: -8.5,-17.5 + parent: 2 + - uid: 5844 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 2 + - uid: 5845 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 2 + - uid: 5846 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 2 + - uid: 5954 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 5955 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 5956 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 5957 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 5958 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 5959 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 5960 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 5961 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 5962 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 5963 + components: + - type: Transform + pos: 9.5,-19.5 + parent: 2 + - uid: 5964 + components: + - type: Transform + pos: 9.5,-20.5 + parent: 2 + - uid: 5965 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 5979 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 5980 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 5981 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 5982 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 5983 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 5984 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 5985 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 5986 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 2 + - uid: 5987 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 6014 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 6015 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 6016 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 6017 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 6069 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 6070 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 6071 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 6072 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 2 + - uid: 6132 + components: + - type: Transform + pos: -35.5,-34.5 + parent: 2 + - uid: 6154 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 6156 + components: + - type: Transform + pos: -20.5,-19.5 + parent: 2 + - uid: 6157 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 6158 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 2 + - uid: 6159 + components: + - type: Transform + pos: -17.5,-12.5 + parent: 2 + - uid: 6160 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 6161 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 6184 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 6190 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 6191 + components: + - type: Transform + pos: -38.5,-41.5 + parent: 2 + - uid: 6193 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 6194 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 + - uid: 6195 + components: + - type: Transform + pos: -36.5,-42.5 + parent: 2 + - uid: 6196 + components: + - type: Transform + pos: -36.5,-43.5 + parent: 2 + - uid: 6198 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 6199 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 6200 + components: + - type: Transform + pos: -37.5,-44.5 + parent: 2 + - uid: 6201 + components: + - type: Transform + pos: -37.5,-45.5 + parent: 2 + - uid: 6202 + components: + - type: Transform + pos: -37.5,-46.5 + parent: 2 + - uid: 6203 + components: + - type: Transform + pos: -37.5,-47.5 + parent: 2 + - uid: 6214 + components: + - type: Transform + pos: -38.5,-35.5 + parent: 2 + - uid: 6215 + components: + - type: Transform + pos: -38.5,-36.5 + parent: 2 + - uid: 6216 + components: + - type: Transform + pos: -38.5,-37.5 + parent: 2 + - uid: 6217 + components: + - type: Transform + pos: -38.5,-38.5 + parent: 2 + - uid: 6218 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 2 + - uid: 6219 + components: + - type: Transform + pos: -36.5,-38.5 + parent: 2 + - uid: 6220 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 6221 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 6222 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 6223 + components: + - type: Transform + pos: -33.5,-39.5 + parent: 2 + - uid: 6224 + components: + - type: Transform + pos: -33.5,-40.5 + parent: 2 + - uid: 6225 + components: + - type: Transform + pos: -33.5,-41.5 + parent: 2 + - uid: 6226 + components: + - type: Transform + pos: -33.5,-42.5 + parent: 2 + - uid: 6227 + components: + - type: Transform + pos: -33.5,-43.5 + parent: 2 + - uid: 6228 + components: + - type: Transform + pos: -33.5,-44.5 + parent: 2 + - uid: 6229 + components: + - type: Transform + pos: -33.5,-45.5 + parent: 2 + - uid: 6230 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 6231 + components: + - type: Transform + pos: -31.5,-45.5 + parent: 2 + - uid: 6232 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 + - uid: 6233 + components: + - type: Transform + pos: -29.5,-45.5 + parent: 2 + - uid: 6234 + components: + - type: Transform + pos: -28.5,-45.5 + parent: 2 + - uid: 6235 + components: + - type: Transform + pos: -27.5,-45.5 + parent: 2 + - uid: 6236 + components: + - type: Transform + pos: -26.5,-45.5 + parent: 2 + - uid: 6237 + components: + - type: Transform + pos: -25.5,-45.5 + parent: 2 + - uid: 6238 + components: + - type: Transform + pos: -24.5,-45.5 + parent: 2 + - uid: 6239 + components: + - type: Transform + pos: -23.5,-45.5 + parent: 2 + - uid: 6240 + components: + - type: Transform + pos: -22.5,-45.5 + parent: 2 + - uid: 6241 + components: + - type: Transform + pos: -21.5,-45.5 + parent: 2 + - uid: 6244 + components: + - type: Transform + pos: -17.5,-45.5 + parent: 2 + - uid: 6245 + components: + - type: Transform + pos: -16.5,-45.5 + parent: 2 + - uid: 6246 + components: + - type: Transform + pos: -15.5,-45.5 + parent: 2 + - uid: 6247 + components: + - type: Transform + pos: -18.5,-45.5 + parent: 2 + - uid: 6248 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 2 + - uid: 6249 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 2 + - uid: 6250 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 2 + - uid: 6251 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 6259 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 2 + - uid: 6260 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 2 + - uid: 6261 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 2 + - uid: 6262 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 2 + - uid: 6263 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 6264 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - uid: 6269 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 6280 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 6297 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 2 + - uid: 6309 + components: + - type: Transform + pos: -10.5,-45.5 + parent: 2 + - uid: 6317 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 6554 + components: + - type: Transform + pos: -21.5,32.5 + parent: 2 + - uid: 6678 + components: + - type: Transform + pos: -21.5,33.5 + parent: 2 + - uid: 6839 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 6841 + components: + - type: Transform + pos: -20.5,10.5 + parent: 2 + - uid: 6842 + components: + - 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 + parent: 2 + - uid: 6916 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 6918 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 6919 + components: + - type: Transform + pos: -24.5,15.5 + parent: 2 + - uid: 6920 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: -25.5,14.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 + components: + - type: Transform + pos: -16.5,12.5 + parent: 2 + - uid: 6956 + components: + - type: Transform + pos: -15.5,7.5 + parent: 2 + - uid: 6957 + components: + - type: Transform + pos: -14.5,7.5 + parent: 2 + - uid: 6958 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 + - uid: 6959 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 + - uid: 6960 + components: + - type: Transform + pos: -13.5,8.5 + parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 + - uid: 6962 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 6963 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 + - uid: 6964 + components: + - type: Transform + pos: -13.5,6.5 + parent: 2 + - uid: 6965 + components: + - type: Transform + pos: -17.5,23.5 + parent: 2 + - uid: 6966 + components: + - type: Transform + pos: -18.5,23.5 + parent: 2 + - uid: 6967 + components: + - type: Transform + pos: -19.5,23.5 + parent: 2 + - uid: 6968 + components: + - type: Transform + pos: -19.5,24.5 + parent: 2 + - uid: 6969 + components: + - type: Transform + pos: -19.5,25.5 + parent: 2 + - uid: 6970 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 6971 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 6972 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 6973 + components: + - type: Transform + pos: -20.5,21.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 + parent: 2 + - uid: 6980 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 + - uid: 7002 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 7003 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 7004 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 7005 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 7006 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 7007 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 7008 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 7009 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 7010 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 7011 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - uid: 7012 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 7013 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 7014 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 7015 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 7016 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 7017 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 7018 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 + - uid: 7019 + components: + - type: Transform + pos: -22.5,28.5 + parent: 2 + - uid: 7020 + components: + - type: Transform + pos: -24.5,28.5 + parent: 2 + - uid: 7021 + components: + - type: Transform + pos: -25.5,28.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: -23.5,28.5 + parent: 2 + - uid: 7023 + components: + - 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 + pos: -21.5,29.5 + parent: 2 + - uid: 7031 + components: + - type: Transform + pos: -21.5,30.5 + parent: 2 + - uid: 7032 + components: + - type: Transform + pos: -21.5,31.5 + parent: 2 + - uid: 7033 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 7034 + components: + - type: Transform + pos: -28.5,31.5 + parent: 2 + - uid: 7035 + components: + - type: Transform + pos: -27.5,31.5 + parent: 2 + - uid: 7036 + components: + - type: Transform + pos: -26.5,31.5 + parent: 2 + - uid: 7037 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 7038 + components: + - type: Transform + pos: -24.5,31.5 + parent: 2 + - uid: 7039 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 7227 + components: + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - uid: 7352 + components: + - type: Transform + pos: -19.5,55.5 + parent: 2 + - uid: 7370 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 7378 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 7379 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 7380 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - uid: 7381 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 7389 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -0.5,32.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 7394 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - uid: 7395 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 7396 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 7397 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 7398 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 7399 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 7400 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 + - uid: 7401 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 7402 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 7403 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 7404 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 7405 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - uid: 7406 + components: + - type: Transform + pos: -18.5,55.5 + parent: 2 + - uid: 7407 + components: + - type: Transform + pos: -17.5,55.5 + parent: 2 + - uid: 7408 + components: + - type: Transform + pos: -16.5,55.5 + parent: 2 + - uid: 7409 + components: + - type: Transform + pos: -15.5,55.5 + parent: 2 + - uid: 7410 + components: + - type: Transform + pos: -14.5,55.5 + parent: 2 + - uid: 7411 + components: + - type: Transform + pos: -12.5,55.5 + parent: 2 + - uid: 7412 + components: + - type: Transform + pos: -11.5,55.5 + parent: 2 + - uid: 7413 + components: + - type: Transform + pos: -13.5,55.5 + parent: 2 + - uid: 7414 + components: + - type: Transform + pos: -10.5,55.5 + parent: 2 + - uid: 7415 + components: + - type: Transform + pos: -10.5,54.5 + parent: 2 + - uid: 7416 + components: + - type: Transform + pos: -9.5,54.5 + parent: 2 + - uid: 7417 + components: + - type: Transform + pos: -8.5,54.5 + parent: 2 + - uid: 7418 + components: + - type: Transform + pos: -7.5,54.5 + parent: 2 + - uid: 7419 + components: + - type: Transform + pos: -6.5,54.5 + parent: 2 + - uid: 7420 + components: + - type: Transform + pos: -5.5,54.5 + parent: 2 + - uid: 7421 + components: + - type: Transform + pos: -5.5,55.5 + parent: 2 + - uid: 7422 + components: + - type: Transform + pos: -5.5,56.5 + parent: 2 + - uid: 7423 + components: + - type: Transform + pos: -4.5,54.5 + parent: 2 + - uid: 7424 + components: + - type: Transform + pos: -3.5,54.5 + parent: 2 + - uid: 7425 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 7426 + components: + - type: Transform + pos: -3.5,52.5 + parent: 2 + - uid: 7427 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 7428 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 7429 + components: + - type: Transform + pos: -3.5,49.5 + parent: 2 + - uid: 7430 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 7431 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 7432 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 7433 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 7434 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + pos: -5.5,37.5 + parent: 2 + - uid: 7438 + components: + - type: Transform + pos: -5.5,39.5 + parent: 2 + - uid: 7439 + components: + - type: Transform + pos: -6.5,39.5 + parent: 2 + - uid: 7440 + components: + - type: Transform + pos: -9.5,39.5 + parent: 2 + - uid: 7441 + components: + - type: Transform + pos: -8.5,39.5 + parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -7.5,39.5 + parent: 2 + - uid: 7443 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - uid: 7444 + components: + - type: Transform + pos: -8.5,46.5 + parent: 2 + - uid: 7445 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 7446 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - uid: 7448 + components: + - type: Transform + pos: -6.5,43.5 + parent: 2 + - uid: 7449 + components: + - type: Transform + pos: -7.5,43.5 + parent: 2 + - uid: 7450 + components: + - type: Transform + pos: -8.5,43.5 + parent: 2 + - uid: 7453 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 7454 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 7455 + components: + - type: Transform + pos: -7.5,36.5 + parent: 2 + - uid: 7456 + components: + - type: Transform + pos: -7.5,35.5 + parent: 2 + - uid: 7457 + components: + - type: Transform + pos: -7.5,34.5 + parent: 2 + - uid: 7458 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 7460 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - uid: 7461 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 7462 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 7470 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 7499 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 7500 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 7501 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 7502 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 7503 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 7504 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 7511 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 7512 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 7513 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 7514 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 7515 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 7552 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - uid: 7553 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 7555 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 7568 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 7569 + components: + - type: Transform + pos: 1.5,36.5 + parent: 2 + - uid: 7570 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 7571 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 + - uid: 7572 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 7573 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - uid: 7574 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 7575 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 7576 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 7577 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 7578 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 7579 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 7580 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 7581 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 7582 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 7583 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 7584 + components: + - type: Transform + pos: 7.5,41.5 + parent: 2 + - uid: 7585 + components: + - type: Transform + pos: 7.5,40.5 + parent: 2 + - uid: 7586 + components: + - type: Transform + pos: 7.5,39.5 + parent: 2 + - uid: 7587 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 7588 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - uid: 7589 + components: + - type: Transform + pos: 9.5,40.5 + parent: 2 + - uid: 7590 + components: + - type: Transform + pos: 9.5,41.5 + parent: 2 + - uid: 7591 + components: + - type: Transform + pos: 8.5,37.5 + parent: 2 + - uid: 7592 + components: + - type: Transform + pos: 8.5,36.5 + parent: 2 + - uid: 7593 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - uid: 7594 + components: + - type: Transform + pos: 8.5,38.5 + parent: 2 + - uid: 7595 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - uid: 7596 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 + - uid: 7597 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 7598 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 7599 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 7600 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 7601 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 7602 + components: + - type: Transform + pos: 12.5,35.5 + parent: 2 + - uid: 7603 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 + - uid: 7604 + components: + - type: Transform + pos: 14.5,38.5 + parent: 2 + - uid: 7605 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 7606 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 7607 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 7608 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 7609 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 7610 + components: + - type: Transform + pos: 7.5,28.5 + parent: 2 + - uid: 7611 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 7612 + components: + - type: Transform + pos: 7.5,27.5 + parent: 2 + - uid: 7613 + components: + - type: Transform + pos: 7.5,26.5 + parent: 2 + - uid: 7614 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 + - uid: 7615 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 7616 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 7617 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 7618 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 7619 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 7620 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 7621 + components: + - type: Transform + pos: 12.5,28.5 + parent: 2 + - uid: 7622 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 + - uid: 7623 + components: + - type: Transform + pos: 13.5,30.5 + parent: 2 + - uid: 7624 + components: + - type: Transform + pos: 13.5,29.5 + parent: 2 + - uid: 7625 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 7626 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 7627 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 7628 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 7629 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 7630 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 7631 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 7763 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 7801 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - uid: 7813 + components: + - type: Transform + pos: -18.5,-48.5 + parent: 2 + - uid: 7815 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 7847 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 7848 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 7849 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 + - uid: 7850 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 7851 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - uid: 7852 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 7853 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 7854 + components: + - type: Transform + pos: 21.5,39.5 + parent: 2 + - uid: 7855 + components: + - type: Transform + pos: 21.5,40.5 + parent: 2 + - uid: 7856 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 + - uid: 7857 + components: + - type: Transform + pos: 23.5,40.5 + parent: 2 + - uid: 7858 + components: + - type: Transform + pos: 23.5,42.5 + parent: 2 + - uid: 7859 + components: + - type: Transform + pos: 23.5,43.5 + parent: 2 + - uid: 7860 + components: + - type: Transform + pos: 23.5,44.5 + parent: 2 + - uid: 7861 + components: + - type: Transform + pos: 23.5,45.5 + parent: 2 + - uid: 7862 + components: + - type: Transform + pos: 23.5,46.5 + parent: 2 + - uid: 7872 + components: + - type: Transform + pos: 23.5,47.5 + parent: 2 + - uid: 7882 + components: + - type: Transform + pos: 23.5,48.5 + parent: 2 + - uid: 7883 + components: + - type: Transform + pos: 23.5,49.5 + parent: 2 + - uid: 7884 + components: + - type: Transform + pos: 23.5,52.5 + parent: 2 + - uid: 7885 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 7886 + components: + - type: Transform + pos: 23.5,54.5 + parent: 2 + - uid: 7887 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - uid: 7888 + components: + - type: Transform + pos: 23.5,50.5 + parent: 2 + - uid: 8082 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 8239 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 8240 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 8244 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 8245 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 8246 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 8247 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 8251 + components: + - type: Transform + pos: -7.5,28.5 + parent: 2 + - uid: 8252 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 8255 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 8258 + components: + - type: Transform + pos: -2.5,29.5 + parent: 2 + - uid: 8263 + components: + - type: Transform + pos: -2.5,27.5 + parent: 2 + - uid: 8272 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 8511 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 8512 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 8513 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 8514 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 8679 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 8680 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 8681 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 8682 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 8683 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 8684 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 8685 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 8825 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 + - uid: 8852 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 8853 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 2 + - uid: 8854 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 2 + - uid: 8855 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 2 + - uid: 8856 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 8857 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 8858 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 8859 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - uid: 8860 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - uid: 8861 + components: + - type: Transform + pos: 40.5,-22.5 + parent: 2 + - uid: 8862 + components: + - type: Transform + pos: 41.5,-22.5 + parent: 2 + - uid: 8863 + components: + - type: Transform + pos: 42.5,-22.5 + parent: 2 + - uid: 8864 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 8865 + components: + - type: Transform + pos: 43.5,-21.5 + parent: 2 + - uid: 8866 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - uid: 8867 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - uid: 8868 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 2 + - uid: 8869 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 8870 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 8871 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 8872 + components: + - type: Transform + pos: 41.5,-24.5 + parent: 2 + - uid: 8873 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 8874 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 8875 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 8876 + components: + - type: Transform + pos: 44.5,-25.5 + parent: 2 + - uid: 8877 + components: + - type: Transform + pos: 44.5,-26.5 + parent: 2 + - uid: 8878 + components: + - type: Transform + pos: 44.5,-27.5 + parent: 2 + - uid: 8889 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 8890 + components: + - type: Transform + pos: 23.5,-31.5 + parent: 2 + - uid: 8891 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 8892 + components: + - type: Transform + pos: 25.5,-31.5 + parent: 2 + - uid: 8893 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 8894 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 + - uid: 8917 + components: + - type: Transform + pos: 33.5,-32.5 + parent: 2 + - uid: 8918 + components: + - type: Transform + pos: 33.5,-33.5 + parent: 2 + - uid: 8919 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 2 + - uid: 8920 + components: + - type: Transform + pos: 33.5,-35.5 + parent: 2 + - uid: 8921 + components: + - type: Transform + pos: 33.5,-36.5 + parent: 2 + - uid: 8922 + components: + - type: Transform + pos: 33.5,-37.5 + parent: 2 + - uid: 8923 + components: + - type: Transform + pos: 33.5,-38.5 + parent: 2 + - uid: 8924 + components: + - type: Transform + pos: 33.5,-39.5 + parent: 2 + - uid: 8925 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 8926 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 2 + - uid: 8927 + components: + - type: Transform + pos: 30.5,-39.5 + parent: 2 + - uid: 8928 + components: + - type: Transform + pos: 29.5,-39.5 + parent: 2 + - uid: 8929 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 8930 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - uid: 8931 + components: + - type: Transform + pos: 29.5,-36.5 + parent: 2 + - uid: 8932 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 2 + - uid: 8933 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - uid: 8934 + components: + - type: Transform + pos: 29.5,-33.5 + parent: 2 + - uid: 8935 + components: + - type: Transform + pos: 29.5,-32.5 + parent: 2 + - uid: 8936 + components: + - type: Transform + pos: 31.5,-44.5 + parent: 2 + - uid: 8937 + components: + - type: Transform + pos: 30.5,-44.5 + parent: 2 + - uid: 8938 + components: + - type: Transform + pos: 29.5,-44.5 + parent: 2 + - uid: 8939 + components: + - type: Transform + pos: 31.5,-41.5 + parent: 2 + - uid: 8940 + components: + - type: Transform + pos: 31.5,-40.5 + parent: 2 + - uid: 8941 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 + - uid: 8942 + components: + - type: Transform + pos: 24.5,-39.5 + parent: 2 + - uid: 8943 + components: + - type: Transform + pos: 25.5,-39.5 + parent: 2 + - uid: 8944 + components: + - type: Transform + pos: 26.5,-39.5 + parent: 2 + - uid: 8945 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 + - uid: 8946 + components: + - type: Transform + pos: 24.5,-37.5 + parent: 2 + - uid: 8947 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 8948 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 + - uid: 8949 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 + - uid: 8950 + components: + - type: Transform + pos: 24.5,-35.5 + parent: 2 + - uid: 8951 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 8952 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 8953 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 + - uid: 8954 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 8955 + components: + - type: Transform + pos: 39.5,-35.5 + parent: 2 + - uid: 8956 + components: + - type: Transform + pos: 38.5,-35.5 + parent: 2 + - uid: 8957 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 8958 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 2 + - uid: 8959 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 2 + - uid: 8960 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 2 + - uid: 8961 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 + - uid: 8962 + components: + - type: Transform + pos: 39.5,-37.5 + parent: 2 + - uid: 8963 + components: + - type: Transform + pos: 38.5,-37.5 + parent: 2 + - uid: 8964 + components: + - type: Transform + pos: 36.5,-38.5 + parent: 2 + - uid: 8965 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 + - uid: 8966 + components: + - type: Transform + pos: 38.5,-39.5 + parent: 2 + - uid: 8967 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 + - uid: 8968 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 2 + - uid: 8969 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 8970 + components: + - type: Transform + pos: 36.5,-33.5 + parent: 2 + - uid: 8971 + components: + - type: Transform + pos: 37.5,-33.5 + parent: 2 + - uid: 8978 + components: + - type: Transform + pos: 32.5,-44.5 + parent: 2 + - uid: 8979 + components: + - type: Transform + pos: 33.5,-44.5 + parent: 2 + - uid: 8980 + components: + - type: Transform + pos: 34.5,-44.5 + parent: 2 + - uid: 8981 + components: + - type: Transform + pos: 34.5,-43.5 + parent: 2 + - uid: 8982 + components: + - type: Transform + pos: 35.5,-43.5 + parent: 2 + - uid: 8983 + components: + - type: Transform + pos: 35.5,-42.5 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: 36.5,-42.5 + parent: 2 + - uid: 8985 + components: + - type: Transform + pos: 36.5,-41.5 + parent: 2 + - uid: 8986 + components: + - type: Transform + pos: 36.5,-40.5 + parent: 2 + - uid: 8987 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 8988 + components: + - type: Transform + pos: 26.5,-41.5 + parent: 2 + - uid: 8989 + components: + - type: Transform + pos: 26.5,-42.5 + parent: 2 + - uid: 8990 + components: + - type: Transform + pos: 27.5,-42.5 + parent: 2 + - uid: 8991 + components: + - type: Transform + pos: 27.5,-43.5 + parent: 2 + - uid: 8992 + components: + - type: Transform + pos: 28.5,-43.5 + parent: 2 + - uid: 8993 + components: + - type: Transform + pos: 28.5,-44.5 + parent: 2 + - uid: 9057 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 9060 + components: + - type: Transform + pos: -21.5,35.5 + parent: 2 + - uid: 9128 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 9129 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 9130 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 9131 + components: + - type: Transform + pos: 55.5,-1.5 + parent: 2 + - uid: 9132 + components: + - type: Transform + pos: 56.5,-1.5 + parent: 2 + - uid: 9133 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 2 + - uid: 9134 + components: + - type: Transform + pos: 57.5,-2.5 + parent: 2 + - uid: 9135 + components: + - type: Transform + pos: 58.5,-2.5 + parent: 2 + - uid: 9136 + components: + - type: Transform + pos: 58.5,-1.5 + parent: 2 + - uid: 9137 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 2 + - uid: 9138 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - uid: 9139 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 2 + - uid: 9140 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 2 + - uid: 9141 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 9142 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 9143 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - uid: 9144 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 9145 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 9146 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 9147 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - uid: 9148 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 9149 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 9150 + components: + - type: Transform + pos: 47.5,7.5 + parent: 2 + - uid: 9151 + components: + - type: Transform + pos: 47.5,8.5 + parent: 2 + - uid: 9152 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 9153 + components: + - type: Transform + pos: 48.5,9.5 + parent: 2 + - uid: 9154 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 + - uid: 9155 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 9156 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 9166 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 9167 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 9170 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 9171 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 9172 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 9173 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 9174 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 9175 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 9176 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 9177 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 9178 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 9179 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 9180 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 9181 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 9182 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 9183 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 9184 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 9185 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 9186 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 9187 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 9188 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 9189 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 9190 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 9191 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 9192 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 9193 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 9194 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 9195 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 9196 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 9197 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 9198 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 9199 + components: + - type: Transform + pos: 46.5,4.5 + parent: 2 + - uid: 9200 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 9220 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 9221 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 9222 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 9223 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 9224 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 9225 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 9226 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 9231 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - uid: 9232 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 9233 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 9234 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 9235 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 9236 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 9237 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 9238 + components: + - type: Transform + pos: 46.5,17.5 + parent: 2 + - uid: 9239 + components: + - type: Transform + pos: 47.5,17.5 + parent: 2 + - uid: 9240 + components: + - type: Transform + pos: 48.5,17.5 + parent: 2 + - uid: 9241 + components: + - type: Transform + pos: 49.5,17.5 + parent: 2 + - uid: 9242 + components: + - type: Transform + pos: 43.5,19.5 + parent: 2 + - uid: 9243 + components: + - type: Transform + pos: 42.5,19.5 + parent: 2 + - uid: 9244 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 9245 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 9246 + components: + - type: Transform + pos: 44.5,23.5 + parent: 2 + - uid: 9247 + components: + - type: Transform + pos: 44.5,24.5 + parent: 2 + - uid: 9248 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 9249 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 9250 + components: + - type: Transform + pos: 44.5,27.5 + parent: 2 + - uid: 9251 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 9252 + components: + - type: Transform + pos: 45.5,27.5 + parent: 2 + - uid: 9253 + components: + - type: Transform + pos: 46.5,27.5 + parent: 2 + - uid: 9254 + components: + - type: Transform + pos: 47.5,27.5 + parent: 2 + - uid: 9255 + components: + - type: Transform + pos: 46.5,23.5 + parent: 2 + - uid: 9256 + components: + - type: Transform + pos: 47.5,23.5 + parent: 2 + - uid: 9257 + components: + - type: Transform + pos: 45.5,23.5 + parent: 2 + - uid: 9258 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 9259 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 9260 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 9261 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 9262 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 9263 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 9264 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 9265 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 9266 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 9267 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 9268 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 + - uid: 9269 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 9270 + components: + - type: Transform + pos: 42.5,29.5 + parent: 2 + - uid: 9271 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 9272 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 9273 + components: + - type: Transform + pos: 39.5,29.5 + parent: 2 + - uid: 9274 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 9275 + components: + - type: Transform + pos: 37.5,29.5 + parent: 2 + - uid: 9276 + components: + - type: Transform + pos: 36.5,29.5 + parent: 2 + - uid: 9277 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 9278 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 9279 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 9280 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 9286 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 9287 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 9288 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 9289 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 9290 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 + - uid: 9291 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - uid: 9292 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 9293 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 9294 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 9295 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 9296 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 9307 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 9308 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 9309 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 9310 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 9311 + components: + - type: Transform + pos: 23.5,32.5 + parent: 2 + - uid: 9312 + components: + - type: Transform + pos: 23.5,33.5 + parent: 2 + - uid: 9313 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 9316 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 9317 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 9318 + components: + - type: Transform + pos: 22.5,28.5 + parent: 2 + - uid: 9319 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 9320 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 9321 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 9322 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 9323 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 9324 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 9325 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 9326 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 9327 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 9328 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 9329 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 9330 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 + - uid: 9331 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 9332 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 9333 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 9334 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 9335 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 9336 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 9337 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 9339 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 9340 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 9341 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 9342 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 9343 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 9344 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 9345 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 9346 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 9347 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 9348 + components: + - 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 + parent: 2 + - uid: 9572 + components: + - type: Transform + pos: -38.5,34.5 + parent: 2 + - uid: 9573 + components: + - type: Transform + pos: -38.5,33.5 + parent: 2 + - uid: 9574 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 + - uid: 9575 + components: + - type: Transform + pos: -38.5,31.5 + parent: 2 + - uid: 9576 + components: + - type: Transform + pos: -38.5,30.5 + parent: 2 + - uid: 9577 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 9578 + components: + - type: Transform + pos: -39.5,29.5 + parent: 2 + - uid: 9579 + components: + - type: Transform + pos: -40.5,29.5 + parent: 2 + - uid: 9580 + components: + - type: Transform + pos: -41.5,29.5 + parent: 2 + - uid: 9581 + components: + - type: Transform + pos: -42.5,29.5 + parent: 2 + - uid: 9582 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 + - uid: 9583 + components: + - type: Transform + pos: -42.5,32.5 + parent: 2 + - uid: 9584 + components: + - type: Transform + pos: -42.5,33.5 + parent: 2 + - uid: 9585 + components: + - type: Transform + pos: -41.5,33.5 + parent: 2 + - uid: 9586 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - uid: 9587 + components: + - type: Transform + pos: -39.5,33.5 + parent: 2 + - uid: 9588 + components: + - type: Transform + pos: -37.5,31.5 + parent: 2 + - uid: 9589 + components: + - type: Transform + pos: -36.5,34.5 + parent: 2 + - uid: 9590 + components: + - type: Transform + pos: -36.5,33.5 + parent: 2 + - uid: 9591 + components: + - type: Transform + pos: -36.5,32.5 + parent: 2 + - uid: 9592 + components: + - type: Transform + pos: -36.5,31.5 + parent: 2 + - uid: 9593 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 9594 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 9595 + components: + - type: Transform + pos: -36.5,28.5 + parent: 2 + - uid: 9596 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 9597 + components: + - type: Transform + pos: -33.5,28.5 + parent: 2 + - uid: 9598 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 + - uid: 9599 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 9600 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - uid: 9601 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 9602 + components: + - type: Transform + pos: -32.5,32.5 + parent: 2 + - uid: 9603 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 9604 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - uid: 9615 + components: + - type: Transform + pos: -24.5,32.5 + parent: 2 + - uid: 9642 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 9705 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 9798 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 9799 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 9800 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 9801 + components: + - type: Transform + pos: 31.5,24.5 + parent: 2 + - uid: 9802 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - uid: 9803 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 9804 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 9805 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 9806 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 9807 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 9808 + components: + - type: Transform + pos: 21.5,22.5 + parent: 2 + - uid: 9809 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 9810 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - uid: 9811 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 9812 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 9813 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 9814 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 9815 + components: + - type: Transform + pos: 22.5,26.5 + parent: 2 + - uid: 9816 + components: + - type: Transform + pos: 23.5,26.5 + parent: 2 + - uid: 9817 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 9818 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 9819 + components: + - type: Transform + pos: 22.5,18.5 + parent: 2 + - uid: 9820 + components: + - type: Transform + pos: 21.5,18.5 + parent: 2 + - uid: 9821 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - uid: 9824 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 9825 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 9826 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 9827 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 9828 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 9829 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 9830 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 9831 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 9832 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 9833 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - uid: 9834 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 9835 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 9836 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 9842 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 9843 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 9844 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 9845 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 + - uid: 9846 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 9847 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 + - uid: 9848 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - uid: 9849 + components: + - type: Transform + pos: 39.5,19.5 + parent: 2 + - uid: 9850 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 9851 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 9852 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 9853 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 9854 + components: + - type: Transform + pos: 25.5,15.5 + parent: 2 + - uid: 9855 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 9856 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 9857 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 9858 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 9859 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 9860 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 9861 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 9862 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 9863 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 9864 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 9865 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 9868 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 9869 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 9870 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 9871 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 9872 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 9873 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 9874 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 9875 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 9876 + components: + - type: Transform + pos: 34.5,10.5 + parent: 2 + - uid: 9877 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 9878 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 9879 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 9880 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 9881 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 9882 + components: + - type: Transform + pos: 41.5,8.5 + parent: 2 + - uid: 9883 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 9884 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 9885 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 9886 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 9887 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 9888 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 9889 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 9890 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 9891 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 9892 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 9894 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 9896 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 9897 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 9898 + components: + - type: Transform + pos: 28.5,3.5 + parent: 2 + - uid: 9899 + components: + - type: Transform + pos: 29.5,3.5 + parent: 2 + - uid: 9900 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 9901 + components: + - type: Transform + pos: 31.5,3.5 + parent: 2 + - uid: 9902 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 9904 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 9905 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 9906 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 9907 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 9908 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 9909 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 9964 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 9965 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 9970 + components: + - type: Transform + pos: 20.5,5.5 + parent: 2 + - uid: 9972 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 9975 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - uid: 9976 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 9977 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 9978 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 9982 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - uid: 9984 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 9988 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 9989 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 9990 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 10026 + components: + - type: Transform + pos: -67.5,-30.5 + parent: 2 + - uid: 10052 + components: + - type: Transform + pos: 17.5,0.5 + parent: 2 + - uid: 10053 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 10054 + components: + - type: Transform + pos: 19.5,0.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 10056 + components: + - type: Transform + pos: 20.5,1.5 + parent: 2 + - uid: 10057 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 10058 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 10059 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 10060 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 10061 + components: + - type: Transform + pos: 20.5,-4.5 + parent: 2 + - uid: 10062 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 10063 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 10066 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 10067 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 10068 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 10069 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 10070 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 10071 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 10072 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 10073 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 10074 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 10075 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 10076 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 10077 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 10078 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 10079 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 10080 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 10081 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 10082 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 10083 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 10084 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 10085 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 10086 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 10087 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 10088 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 10089 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 10090 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 10091 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 10092 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 10093 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 10094 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 10095 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 10096 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 10097 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 10098 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 10101 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 10102 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 10103 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 10104 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 10105 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 10123 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 10124 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 10125 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 10126 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 10127 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 10128 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 10129 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 10130 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 10131 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 10132 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 10133 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 10134 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 10135 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 10136 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 10137 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 10138 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 10139 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 10140 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 10141 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 10142 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 10143 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 10144 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 10145 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 10146 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 10147 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 10148 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 10149 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + pos: -36.5,-18.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 10153 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 10154 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 10155 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 10156 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 10157 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 10158 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 + - uid: 10159 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 10160 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 10161 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 10162 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 2 + - uid: 10163 + components: + - type: Transform + pos: -66.5,-30.5 + parent: 2 + - uid: 10164 + components: + - type: Transform + pos: -65.5,-30.5 + parent: 2 + - uid: 10165 + components: + - type: Transform + pos: -63.5,-30.5 + parent: 2 + - uid: 10166 + components: + - type: Transform + pos: -62.5,-30.5 + parent: 2 + - uid: 10167 + components: + - type: Transform + pos: -61.5,-30.5 + parent: 2 + - uid: 10168 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 2 + - uid: 10169 + components: + - type: Transform + pos: -64.5,-30.5 + parent: 2 + - uid: 10170 + components: + - type: Transform + pos: -58.5,-30.5 + parent: 2 + - uid: 10171 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 + - uid: 10172 + components: + - type: Transform + pos: -56.5,-30.5 + parent: 2 + - uid: 10173 + components: + - type: Transform + pos: -55.5,-30.5 + parent: 2 + - uid: 10174 + components: + - type: Transform + pos: -54.5,-30.5 + parent: 2 + - uid: 10175 + components: + - type: Transform + pos: -53.5,-30.5 + parent: 2 + - uid: 10176 + components: + - type: Transform + pos: -59.5,-30.5 + parent: 2 + - uid: 10177 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 2 + - uid: 10178 + components: + - type: Transform + pos: -51.5,-30.5 + parent: 2 + - uid: 10179 + components: + - type: Transform + pos: -50.5,-30.5 + parent: 2 + - uid: 10180 + components: + - type: Transform + pos: -49.5,-30.5 + parent: 2 + - uid: 10181 + components: + - type: Transform + pos: -47.5,-30.5 + parent: 2 + - uid: 10182 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 + - uid: 10183 + components: + - type: Transform + pos: -48.5,-30.5 + parent: 2 + - uid: 10184 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 10185 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 2 + - uid: 10186 + components: + - type: Transform + pos: -61.5,-28.5 + parent: 2 + - uid: 10187 + components: + - type: Transform + pos: -61.5,-29.5 + parent: 2 + - uid: 10188 + components: + - type: Transform + pos: -61.5,-31.5 + parent: 2 + - uid: 10189 + components: + - type: Transform + pos: -61.5,-32.5 + parent: 2 + - uid: 10190 + components: + - type: Transform + pos: -53.5,-32.5 + parent: 2 + - uid: 10191 + components: + - type: Transform + pos: -53.5,-31.5 + parent: 2 + - uid: 10192 + components: + - type: Transform + pos: -53.5,-29.5 + parent: 2 + - uid: 10193 + components: + - type: Transform + pos: -53.5,-28.5 + parent: 2 + - uid: 10194 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - uid: 10195 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 10196 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - uid: 10197 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - uid: 10198 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 10199 + components: + - type: Transform + pos: -40.5,-30.5 + parent: 2 + - uid: 10200 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - uid: 10201 + components: + - type: Transform + pos: -38.5,-30.5 + parent: 2 + - uid: 10203 + components: + - type: Transform + pos: -35.5,-30.5 + parent: 2 + - uid: 10204 + components: + - type: Transform + pos: -34.5,-30.5 + parent: 2 + - uid: 10205 + components: + - type: Transform + pos: -33.5,-30.5 + parent: 2 + - uid: 10206 + components: + - type: Transform + pos: -32.5,-30.5 + parent: 2 + - uid: 10207 + components: + - type: Transform + pos: -31.5,-30.5 + parent: 2 + - uid: 10208 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 10209 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - uid: 10210 + components: + - type: Transform + pos: -30.5,-33.5 + parent: 2 + - uid: 10211 + components: + - type: Transform + pos: -30.5,-34.5 + parent: 2 + - uid: 10212 + components: + - type: Transform + pos: -30.5,-35.5 + parent: 2 + - uid: 10213 + components: + - type: Transform + pos: -30.5,-31.5 + parent: 2 + - uid: 10214 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - uid: 10215 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 10216 + components: + - type: Transform + pos: -30.5,-37.5 + parent: 2 + - uid: 10217 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 10218 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 10219 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 10220 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 + - uid: 10221 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 10222 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - uid: 10223 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 10224 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 2 + - uid: 10225 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 10226 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 10227 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 10229 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 10236 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 2 + - uid: 10237 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 10238 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 10239 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 10240 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 10241 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 10242 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 + - uid: 10243 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 2 + - uid: 10244 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 10245 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - uid: 10246 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 10247 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 10248 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 10249 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 10253 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 10254 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 10255 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 10256 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 10257 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 2 + - uid: 10258 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 10259 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 10260 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 10261 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 10262 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 10263 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 10264 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 10265 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 10266 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 10267 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 10268 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 10269 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 10270 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 10271 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 10272 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 10273 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 10274 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 10275 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 10276 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 10277 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 10278 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 10279 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 10280 + components: + - type: Transform + pos: -6.5,16.5 + parent: 2 + - uid: 10281 + components: + - type: Transform + pos: -5.5,16.5 + parent: 2 + - uid: 10282 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - uid: 10283 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - uid: 10284 + components: + - type: Transform + pos: -2.5,16.5 + parent: 2 + - uid: 10285 + components: + - type: Transform + pos: -1.5,16.5 + parent: 2 + - uid: 10286 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 10287 + components: + - type: Transform + pos: 0.5,16.5 + parent: 2 + - uid: 10288 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 10289 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 10290 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 10291 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 10292 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 10293 + components: + - type: Transform + pos: 6.5,16.5 + parent: 2 + - uid: 10294 + components: + - type: Transform + pos: 7.5,16.5 + parent: 2 + - uid: 10295 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 10296 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 10297 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 10298 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 10299 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 10300 + components: + - type: Transform + pos: 7.5,18.5 + parent: 2 + - uid: 10301 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 10302 + components: + - type: Transform + pos: 7.5,20.5 + parent: 2 + - uid: 10303 + components: + - type: Transform + pos: 7.5,21.5 + parent: 2 + - uid: 10304 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 10305 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 10306 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 10308 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - uid: 10309 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 10310 + components: + - type: Transform + pos: -11.5,0.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + pos: -7.5,-2.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 10313 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 10328 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 10329 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - uid: 10330 + components: + - type: Transform + pos: 16.5,14.5 + parent: 2 + - uid: 10331 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 10332 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 10333 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 10334 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 10335 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 10336 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 10354 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 10415 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 10416 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 10450 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 10456 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 10545 + components: + - type: Transform + pos: -17.5,-48.5 + parent: 2 + - uid: 10925 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 10926 + components: + - type: Transform + pos: -49.5,-12.5 + parent: 2 + - uid: 10927 + components: + - type: Transform + pos: -48.5,-12.5 + parent: 2 + - uid: 10928 + components: + - type: Transform + pos: -47.5,-12.5 + parent: 2 + - uid: 10929 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 + - uid: 10930 + components: + - type: Transform + pos: -44.5,-12.5 + parent: 2 + - uid: 11589 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 11929 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 12085 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 12096 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 12143 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 + - uid: 12189 + components: + - type: Transform + pos: 40.5,-15.5 + parent: 2 + - uid: 12190 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 12193 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 12194 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 + - uid: 12195 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - uid: 12196 + components: + - type: Transform + pos: 34.5,-23.5 + parent: 2 + - uid: 12198 + components: + - type: Transform + pos: 35.5,-23.5 + parent: 2 + - uid: 12199 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 2 + - uid: 12200 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 12201 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 + - uid: 12202 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 2 + - uid: 12203 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 2 + - uid: 12204 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 12205 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 12206 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 12207 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 12208 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 12209 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 12210 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 12570 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 12571 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 12572 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 12573 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 12574 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 12575 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 12576 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 12577 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 12578 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 12580 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 + - uid: 12581 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 12582 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - uid: 12583 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 12584 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 12585 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 12586 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 2 + - uid: 12587 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 12588 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 12589 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 12590 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 12591 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 12592 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 12593 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 12594 + components: + - type: Transform + pos: 30.5,-7.5 + parent: 2 + - uid: 12595 + components: + - type: Transform + pos: 29.5,-7.5 + parent: 2 + - uid: 12596 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 12597 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 12598 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 12599 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 12600 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 12601 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 12602 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 12603 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 12604 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 12605 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 12606 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 12607 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 12618 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 12619 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 12620 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 12621 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 12622 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - uid: 12623 + components: + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - uid: 12624 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - uid: 12625 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 12626 + components: + - type: Transform + pos: 29.5,-30.5 + parent: 2 + - uid: 12627 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 12628 + components: + - type: Transform + pos: 33.5,-31.5 + parent: 2 + - uid: 12629 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 12630 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 12631 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 12632 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 12633 + components: + - type: Transform + pos: 37.5,-30.5 + parent: 2 + - uid: 12634 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 12635 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 12636 + components: + - type: Transform + pos: 40.5,-30.5 + parent: 2 + - uid: 12637 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 2 + - uid: 12638 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 12639 + components: + - type: Transform + pos: 42.5,-32.5 + parent: 2 + - uid: 12640 + components: + - type: Transform + pos: 41.5,-30.5 + parent: 2 + - uid: 12641 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 12642 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 12643 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 2 + - uid: 12644 + components: + - type: Transform + pos: 33.5,-29.5 + parent: 2 + - uid: 12645 + components: + - type: Transform + pos: 33.5,-28.5 + parent: 2 + - uid: 12646 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 2 + - uid: 12647 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 12648 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 12649 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 12650 + components: + - type: Transform + pos: 28.5,-18.5 + parent: 2 + - uid: 12651 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 12652 + components: + - type: Transform + pos: 28.5,-20.5 + parent: 2 + - uid: 12653 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 12654 + components: + - type: Transform + pos: 28.5,-22.5 + parent: 2 + - uid: 12655 + components: + - type: Transform + pos: 28.5,-23.5 + parent: 2 + - uid: 12656 + components: + - type: Transform + pos: 28.5,-24.5 + parent: 2 + - uid: 12657 + components: + - type: Transform + pos: 27.5,-24.5 + parent: 2 + - uid: 12667 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 12668 + components: + - type: Transform + pos: 25.5,-24.5 + parent: 2 + - uid: 12669 + components: + - type: Transform + pos: 24.5,-24.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 12676 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 12677 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 12678 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 12679 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 12680 + components: + - type: Transform + pos: 22.5,-27.5 + parent: 2 + - uid: 12681 + components: + - type: Transform + pos: 21.5,-27.5 + parent: 2 + - uid: 12682 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 12683 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 12684 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 12687 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 12688 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 12689 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - uid: 12690 + components: + - type: Transform + pos: 30.5,-30.5 + parent: 2 + - uid: 12691 + components: + - type: Transform + pos: 30.5,-29.5 + parent: 2 + - uid: 12692 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 2 + - uid: 12693 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 12694 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 12695 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 12696 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 12697 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 12698 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 12699 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 12859 + components: + - type: Transform + pos: -10.5,-44.5 + parent: 2 + - uid: 12890 + components: + - type: Transform + pos: -10.5,-42.5 + parent: 2 + - uid: 13298 + components: + - type: Transform + pos: -10.5,-43.5 + parent: 2 + - uid: 13520 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 13641 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 13642 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 13650 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 2 + - uid: 13651 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - uid: 13652 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 13653 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 13654 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 13655 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 13656 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - uid: 13657 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 13658 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - uid: 13659 + components: + - type: Transform + pos: -27.5,-40.5 + parent: 2 + - uid: 13664 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 + - uid: 13665 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 13666 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 13667 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 2 + - uid: 13668 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 2 + - uid: 13669 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 13940 + components: + - type: Transform + pos: -5.5,40.5 + parent: 2 + - uid: 13941 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 13942 + components: + - type: Transform + pos: -5.5,42.5 + parent: 2 + - uid: 13943 + components: + - type: Transform + pos: -5.5,43.5 + parent: 2 + - uid: 13944 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 13945 + components: + - type: Transform + pos: -5.5,45.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: -5.5,46.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 13953 + components: + - type: Transform + pos: -30.5,31.5 + parent: 2 + - uid: 13954 + components: + - type: Transform + pos: -29.5,31.5 + parent: 2 + - uid: 14193 + components: + - type: Transform + pos: -12.5,-46.5 + parent: 2 + - uid: 14272 + components: + - type: Transform + pos: -68.5,-30.5 + parent: 2 + - uid: 14737 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 14739 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 14740 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 14741 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 14742 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 2 + - uid: 14743 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 2 + - uid: 14744 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 + - uid: 14745 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 14746 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 14926 + components: + - type: Transform + pos: -22.5,38.5 + parent: 2 + - uid: 14937 + components: + - type: Transform + pos: -22.5,39.5 + parent: 2 + - uid: 14938 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - uid: 15081 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 15206 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 15212 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 15239 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 15278 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 15288 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 15294 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 15295 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 15301 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 15310 + components: + - type: Transform + pos: -8.5,-39.5 + parent: 2 + - uid: 15311 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - uid: 15312 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 15313 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 15314 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 15376 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 15377 + components: + - type: Transform + pos: -22.5,46.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 15390 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 15397 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 15398 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 15399 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 15400 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + pos: 43.5,30.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: 45.5,31.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: 46.5,31.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: 47.5,31.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: 48.5,31.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + pos: 49.5,31.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: 50.5,31.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: 51.5,31.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + pos: 51.5,32.5 + parent: 2 + - uid: 15592 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 15634 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 15635 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 15636 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 15637 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 15638 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 2 + - uid: 15767 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 15774 + components: + - type: Transform + pos: -26.5,-13.5 + parent: 2 + - uid: 15775 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 15776 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 15786 + components: + - type: Transform + pos: -52.5,-9.5 + parent: 2 + - uid: 15787 + components: + - type: Transform + pos: -52.5,-10.5 + parent: 2 + - uid: 15788 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 15789 + components: + - type: Transform + pos: -54.5,-9.5 + parent: 2 + - uid: 15790 + components: + - type: Transform + pos: -54.5,-10.5 + parent: 2 + - uid: 15791 + components: + - type: Transform + pos: -54.5,-11.5 + parent: 2 + - uid: 15799 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 15800 + components: + - type: Transform + pos: -22.5,47.5 + parent: 2 + - uid: 15801 + components: + - type: Transform + pos: -20.5,55.5 + parent: 2 + - uid: 15802 + components: + - type: Transform + pos: -20.5,54.5 + parent: 2 + - uid: 15803 + components: + - type: Transform + pos: -21.5,54.5 + parent: 2 + - uid: 15804 + components: + - type: Transform + pos: -22.5,54.5 + parent: 2 + - uid: 15805 + components: + - type: Transform + pos: -22.5,53.5 + parent: 2 + - uid: 15810 + components: + - type: Transform + pos: -22.5,52.5 + parent: 2 + - uid: 15873 + components: + - type: Transform + pos: -21.5,-46.5 + parent: 2 + - uid: 15954 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 15955 + components: + - type: Transform + pos: -42.5,-33.5 + parent: 2 + - uid: 15956 + components: + - type: Transform + pos: -42.5,-34.5 + parent: 2 + - uid: 15957 + components: + - type: Transform + pos: -42.5,-35.5 + parent: 2 + - uid: 15958 + components: + - type: Transform + pos: -42.5,-36.5 + parent: 2 + - uid: 16021 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - uid: 16024 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 16025 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 + - uid: 16026 + components: + - type: Transform + pos: -22.5,48.5 + parent: 2 + - uid: 16031 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 16032 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 16082 + components: + - type: Transform + pos: -16.5,-48.5 + parent: 2 + - uid: 16083 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 + - uid: 16084 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 16089 + components: + - type: Transform + pos: -9.5,53.5 + parent: 2 + - uid: 16112 + components: + - type: Transform + pos: -23.5,54.5 + parent: 2 + - uid: 16113 + components: + - type: Transform + pos: -23.5,55.5 + parent: 2 + - uid: 16114 + components: + - type: Transform + pos: -23.5,56.5 + parent: 2 + - uid: 16115 + components: + - type: Transform + pos: -23.5,57.5 + parent: 2 + - uid: 16117 + components: + - type: Transform + pos: -22.5,36.5 + parent: 2 + - uid: 16129 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 16130 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 16131 + components: + - type: Transform + pos: -18.5,32.5 + parent: 2 + - uid: 16132 + components: + - type: Transform + pos: -17.5,32.5 + parent: 2 + - uid: 16133 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - uid: 16134 + components: + - type: Transform + pos: -13.5,30.5 + parent: 2 + - uid: 16135 + components: + - type: Transform + pos: -13.5,31.5 + parent: 2 + - uid: 16136 + components: + - type: Transform + pos: -13.5,32.5 + parent: 2 +- proto: CableApcStack + entities: + - uid: 5136 + components: + - type: Transform + pos: -23.462934,14.451097 + parent: 2 + - uid: 7468 + components: + - type: Transform + pos: -1.4988699,22.366474 + parent: 2 + - uid: 8286 + components: + - type: Transform + pos: 34.31288,-20.387457 + parent: 2 +- proto: CableApcStack10 + entities: + - uid: 8506 + components: + - type: Transform + pos: 32.530537,-2.0931377 + parent: 2 +- proto: CablecuffsBroken + entities: + - uid: 16042 + components: + - type: Transform + pos: -10.177167,57.967243 + parent: 2 +- proto: CableHV + entities: + - uid: 539 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 1062 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 + - uid: 1063 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 1079 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 35.5,-10.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 1103 + components: + - type: Transform + pos: 53.5,-25.5 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: 33.5,-1.5 + parent: 2 + - uid: 1117 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 2 + - uid: 1121 + components: + - type: Transform + pos: 26.5,-20.5 + parent: 2 + - uid: 1145 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 1167 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 1169 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 1183 + components: + - type: Transform + pos: 52.5,-16.5 + parent: 2 + - uid: 1192 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 1213 + components: + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 1230 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 33.5,52.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 52.5,-24.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 14.5,-50.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 12.5,-51.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: 53.5,-24.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: 53.5,-16.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: 29.5,54.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: 31.5,52.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: 24.5,-11.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 31.5,53.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 32.5,54.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 1553 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 1566 + components: + - type: Transform + pos: 31.5,-15.5 + parent: 2 + - uid: 1568 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 1569 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 1570 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 1571 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 1572 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 1585 + components: + - type: Transform + pos: 53.5,-15.5 + parent: 2 + - uid: 1586 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - uid: 1590 + components: + - type: Transform + pos: 46.5,-22.5 + parent: 2 + - uid: 1603 + components: + - type: Transform + pos: 47.5,-27.5 + parent: 2 + - uid: 1618 + components: + - type: Transform + pos: 29.5,53.5 + parent: 2 + - uid: 1633 + components: + - type: Transform + pos: 54.5,-16.5 + parent: 2 + - uid: 1634 + components: + - type: Transform + pos: 53.5,-26.5 + parent: 2 + - uid: 1636 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - uid: 1993 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 + - uid: 1994 + components: + - type: Transform + pos: 31.5,42.5 + parent: 2 + - uid: 1995 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 1996 + components: + - type: Transform + pos: 31.5,38.5 + parent: 2 + - uid: 2186 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 2542 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 2545 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - uid: 2547 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 2550 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 2551 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 + - uid: 2554 + components: + - type: Transform + pos: 54.5,-24.5 + parent: 2 + - uid: 2560 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 + - uid: 2561 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 2565 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 2587 + components: + - type: Transform + pos: 39.5,-5.5 + parent: 2 + - uid: 2593 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 2596 + components: + - type: Transform + pos: 37.5,-5.5 + parent: 2 + - uid: 2597 + components: + - type: Transform + pos: 53.5,-14.5 + parent: 2 + - uid: 2598 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 + - uid: 2629 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 + - uid: 2645 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 2648 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 2668 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 2680 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 2689 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 2698 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 2 + - uid: 2701 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 + - uid: 2703 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 2710 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 2725 + components: + - type: Transform + pos: 52.5,-13.5 + parent: 2 + - uid: 2729 + components: + - type: Transform + pos: 26.5,-22.5 + parent: 2 + - uid: 2731 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 2736 + components: + - type: Transform + pos: 48.5,-27.5 + parent: 2 + - uid: 2737 + components: + - type: Transform + pos: 50.5,-27.5 + parent: 2 + - uid: 2739 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - uid: 2750 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 2751 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 2756 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 2759 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 2765 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 2766 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 2 + - uid: 2780 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 2 + - uid: 2781 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 2782 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 2783 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 2784 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 2 + - uid: 2785 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 2817 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 2818 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 2819 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 2820 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - uid: 2821 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 2822 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 2 + - uid: 2843 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - uid: 2853 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 2855 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 2856 + components: + - type: Transform + pos: 41.5,-24.5 + parent: 2 + - uid: 2857 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 2858 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 2859 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 2860 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - uid: 2862 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 2863 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 2901 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 2902 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 2903 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 2904 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 2905 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 2907 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 2908 + components: + - type: Transform + pos: 21.5,-20.5 + parent: 2 + - uid: 2909 + components: + - type: Transform + pos: 21.5,-21.5 + parent: 2 + - uid: 2910 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 2911 + components: + - type: Transform + pos: 19.5,-21.5 + parent: 2 + - uid: 2912 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 2 + - uid: 2936 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 2937 + components: + - type: Transform + pos: 33.5,-0.5 + parent: 2 + - uid: 2938 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 2940 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 2941 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 3007 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 3012 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 2 + - uid: 3014 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 3015 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 2 + - uid: 3016 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 2 + - uid: 3017 + components: + - type: Transform + pos: 17.5,-26.5 + parent: 2 + - uid: 3018 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 2 + - uid: 3019 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 3020 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 2 + - uid: 3021 + components: + - type: Transform + pos: 17.5,-23.5 + parent: 2 + - uid: 3040 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 3043 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - uid: 3044 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 3047 + components: + - type: Transform + pos: -13.5,-41.5 + parent: 2 + - uid: 3048 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 2 + - uid: 3049 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 3099 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 3138 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 2 + - uid: 3196 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 3208 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 3209 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 3210 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 3211 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 3212 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 3213 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 3214 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 3215 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 3216 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 3217 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 3218 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 3219 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 3220 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 3221 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 3222 + components: + - type: Transform + pos: -19.5,-29.5 + parent: 2 + - uid: 3223 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - uid: 3224 + components: + - type: Transform + pos: -17.5,-29.5 + parent: 2 + - uid: 3225 + components: + - type: Transform + pos: -16.5,-29.5 + parent: 2 + - uid: 3226 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - uid: 3399 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 3464 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 3601 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 3604 + components: + - type: Transform + pos: 35.5,33.5 + parent: 2 + - uid: 3665 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 3729 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - uid: 3731 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - uid: 3815 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 3895 + components: + - type: Transform + pos: 16.5,-55.5 + parent: 2 + - uid: 3907 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 3935 + components: + - type: Transform + pos: 33.5,-10.5 + parent: 2 + - uid: 3952 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 + - uid: 4036 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 + - uid: 4122 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 + - uid: 4214 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 4220 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 + - uid: 4278 + components: + - type: Transform + pos: 14.5,-51.5 + parent: 2 + - uid: 4351 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 2 + - uid: 4394 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 2 + - uid: 4749 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 4750 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 4751 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 4752 + components: + - type: Transform + pos: -35.5,-15.5 + parent: 2 + - uid: 4753 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 4754 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 4755 + components: + - type: Transform + pos: -33.5,-15.5 + parent: 2 + - uid: 4756 + components: + - type: Transform + pos: -32.5,-15.5 + parent: 2 + - uid: 4757 + components: + - type: Transform + pos: -31.5,-15.5 + parent: 2 + - uid: 4758 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 4759 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 4760 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 4761 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 4762 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 4763 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 4764 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 4765 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 4766 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 4767 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 4768 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 4769 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 4770 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 4771 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 5152 + components: + - type: Transform + pos: 31.5,46.5 + parent: 2 + - uid: 5154 + components: + - type: Transform + pos: 31.5,45.5 + parent: 2 + - uid: 5220 + components: + - type: Transform + pos: 31.5,44.5 + parent: 2 + - uid: 5221 + components: + - type: Transform + pos: 32.5,44.5 + parent: 2 + - uid: 5282 + components: + - type: Transform + pos: 33.5,44.5 + parent: 2 + - uid: 5283 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - uid: 5294 + components: + - type: Transform + pos: 33.5,42.5 + parent: 2 + - uid: 5478 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - uid: 5615 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 5616 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 5617 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 5618 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 5619 + components: + - type: Transform + pos: 9.5,-27.5 + parent: 2 + - uid: 5620 + components: + - type: Transform + pos: 9.5,-26.5 + parent: 2 + - uid: 5621 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 + - uid: 5622 + components: + - type: Transform + pos: 10.5,-26.5 + parent: 2 + - uid: 5623 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 2 + - uid: 5624 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 2 + - uid: 5625 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 2 + - uid: 5745 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 5746 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 5748 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 5757 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 5847 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 5848 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 5849 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 5850 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 5851 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 5852 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 5853 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 5854 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 5855 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 5856 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 5857 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 5858 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 5859 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 5860 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 5861 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 5862 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 5863 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 5864 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 5865 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 5866 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 5867 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 5868 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 5869 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 5870 + components: + - type: Transform + pos: -0.5,-13.5 + parent: 2 + - uid: 5871 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 5872 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - uid: 5873 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 2 + - uid: 5874 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 5875 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - uid: 5876 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 2 + - uid: 5877 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 2 + - uid: 5878 + components: + - type: Transform + pos: -6.5,-13.5 + parent: 2 + - uid: 5879 + components: + - type: Transform + pos: -8.5,-13.5 + parent: 2 + - uid: 5880 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 2 + - uid: 5881 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - uid: 5882 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 2 + - uid: 5890 + components: + - type: Transform + pos: -15.5,-17.5 + parent: 2 + - uid: 5891 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - uid: 5892 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 5893 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 2 + - uid: 5894 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 5895 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 5896 + components: + - type: Transform + pos: -15.5,-23.5 + parent: 2 + - uid: 5897 + components: + - type: Transform + pos: -15.5,-24.5 + parent: 2 + - uid: 5898 + components: + - type: Transform + pos: -15.5,-25.5 + parent: 2 + - uid: 5899 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 2 + - uid: 5900 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 2 + - uid: 5901 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - uid: 5919 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 5920 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 5921 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 5922 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 5923 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 5924 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 5925 + components: + - type: Transform + pos: -12.5,-13.5 + parent: 2 + - uid: 6038 + components: + - type: Transform + pos: -14.5,-41.5 + parent: 2 + - uid: 6047 + components: + - type: Transform + pos: 36.5,-12.5 + parent: 2 + - uid: 6048 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 6050 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 6053 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - uid: 6255 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - uid: 6287 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 2 + - uid: 6305 + components: + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 6356 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 6357 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 6358 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 6363 + components: + - type: Transform + pos: 51.5,-27.5 + parent: 2 + - uid: 6368 + components: + - type: Transform + pos: 52.5,-27.5 + parent: 2 + - uid: 6375 + components: + - type: Transform + pos: 53.5,-27.5 + parent: 2 + - uid: 6380 + components: + - type: Transform + pos: 33.5,-13.5 + parent: 2 + - uid: 6410 + components: + - type: Transform + pos: 34.5,42.5 + parent: 2 + - uid: 6411 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 + - uid: 6412 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 6413 + components: + - type: Transform + pos: 31.5,40.5 + parent: 2 + - uid: 6414 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 6415 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 6417 + components: + - type: Transform + pos: 35.5,40.5 + parent: 2 + - uid: 6418 + components: + - type: Transform + pos: 34.5,40.5 + parent: 2 + - uid: 6419 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - uid: 6420 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 6421 + components: + - type: Transform + pos: 34.5,48.5 + parent: 2 + - uid: 6434 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 + - uid: 6435 + components: + - type: Transform + pos: 33.5,48.5 + parent: 2 + - uid: 6437 + components: + - type: Transform + pos: 31.5,48.5 + parent: 2 + - uid: 6438 + components: + - type: Transform + pos: 35.5,48.5 + parent: 2 + - uid: 6466 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 6467 + components: + - type: Transform + pos: 31.5,49.5 + parent: 2 + - uid: 6472 + components: + - type: Transform + pos: 32.5,50.5 + parent: 2 + - uid: 6642 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 6649 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 6744 + components: + - type: Transform + pos: -11.5,32.5 + parent: 2 + - uid: 6745 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 6746 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 6747 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 6749 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 6751 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - uid: 6752 + components: + - type: Transform + pos: -30.5,31.5 + parent: 2 + - uid: 6753 + components: + - type: Transform + pos: -29.5,31.5 + parent: 2 + - uid: 6754 + components: + - type: Transform + pos: -28.5,31.5 + parent: 2 + - uid: 6755 + components: + - type: Transform + pos: -27.5,31.5 + parent: 2 + - uid: 6756 + components: + - type: Transform + pos: -26.5,31.5 + parent: 2 + - uid: 6757 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 6758 + components: + - type: Transform + pos: -24.5,31.5 + parent: 2 + - uid: 6759 + components: + - type: Transform + pos: -23.5,31.5 + parent: 2 + - uid: 6760 + components: + - type: Transform + pos: -22.5,31.5 + parent: 2 + - uid: 6761 + components: + - type: Transform + pos: -21.5,31.5 + parent: 2 + - uid: 6762 + components: + - type: Transform + pos: -21.5,30.5 + parent: 2 + - uid: 6763 + components: + - type: Transform + pos: -21.5,29.5 + parent: 2 + - uid: 6764 + components: + - type: Transform + pos: -21.5,28.5 + parent: 2 + - uid: 6765 + components: + - type: Transform + pos: -20.5,28.5 + parent: 2 + - uid: 6766 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 6768 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 6769 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 6770 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 6771 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 6772 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 6773 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 6774 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 6776 + components: + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 6777 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 6779 + components: + - type: Transform + pos: -8.5,29.5 + parent: 2 + - uid: 6780 + components: + - type: Transform + pos: -7.5,29.5 + parent: 2 + - uid: 6781 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - uid: 6787 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 6788 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 6789 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 6790 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 6791 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 6795 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 6798 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 6799 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 6800 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 6801 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 6802 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 2 + - uid: 6803 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 2 + - uid: 6804 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 2 + - uid: 6805 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 6806 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 6807 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 6808 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 6809 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 6810 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 6811 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 6812 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 6813 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 6814 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 6815 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 6816 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 6817 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 6818 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 6819 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 6820 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 6821 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 6822 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 6823 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 6824 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 6825 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 6826 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 6827 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 6828 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 6829 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 6830 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 6831 + components: + - type: Transform + pos: 14.5,-13.5 + parent: 2 + - uid: 6832 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 2 + - uid: 6833 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 6834 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 6835 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 6838 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - uid: 7178 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 7179 + components: + - type: Transform + pos: -3.5,35.5 + parent: 2 + - uid: 7185 + components: + - type: Transform + pos: -3.5,37.5 + parent: 2 + - uid: 7190 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 7211 + components: + - type: Transform + pos: -3.5,36.5 + parent: 2 + - uid: 7235 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 7236 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 7237 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 7238 + components: + - type: Transform + pos: -0.5,32.5 + parent: 2 + - uid: 7241 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 7242 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 7243 + components: + - type: Transform + pos: -3.5,40.5 + parent: 2 + - uid: 7244 + components: + - type: Transform + pos: -3.5,41.5 + parent: 2 + - uid: 7245 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 + - uid: 7246 + components: + - type: Transform + pos: -3.5,43.5 + parent: 2 + - uid: 7247 + components: + - type: Transform + pos: -3.5,44.5 + parent: 2 + - uid: 7248 + components: + - type: Transform + pos: -3.5,45.5 + parent: 2 + - uid: 7249 + components: + - type: Transform + pos: -3.5,46.5 + parent: 2 + - uid: 7250 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 7251 + components: + - type: Transform + pos: -3.5,48.5 + parent: 2 + - uid: 7252 + components: + - type: Transform + pos: -3.5,49.5 + parent: 2 + - uid: 7253 + components: + - type: Transform + pos: -3.5,50.5 + parent: 2 + - uid: 7254 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 7255 + components: + - type: Transform + pos: -3.5,52.5 + parent: 2 + - uid: 7256 + components: + - type: Transform + pos: -3.5,53.5 + parent: 2 + - uid: 7257 + components: + - type: Transform + pos: -3.5,54.5 + parent: 2 + - uid: 7258 + components: + - type: Transform + pos: -4.5,54.5 + parent: 2 + - uid: 7259 + components: + - type: Transform + pos: -5.5,54.5 + parent: 2 + - uid: 7260 + components: + - type: Transform + pos: -5.5,55.5 + parent: 2 + - uid: 7261 + components: + - type: Transform + pos: -5.5,56.5 + parent: 2 + - uid: 7262 + components: + - type: Transform + pos: -5.5,57.5 + parent: 2 + - uid: 7263 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 7264 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 7265 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 7266 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 7267 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 + - uid: 7268 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 7270 + components: + - type: Transform + pos: 18.5,-3.5 + parent: 2 + - uid: 7271 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 7272 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 7273 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 7274 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 + - uid: 7275 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 7276 + components: + - type: Transform + pos: 24.5,-3.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 7278 + components: + - type: Transform + pos: 24.5,-0.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: 24.5,-2.5 + parent: 2 + - uid: 7280 + components: + - type: Transform + pos: 24.5,0.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: 25.5,0.5 + parent: 2 + - uid: 7282 + components: + - type: Transform + pos: 26.5,0.5 + parent: 2 + - uid: 7283 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 7284 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: 29.5,0.5 + parent: 2 + - uid: 7286 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 7287 + components: + - type: Transform + pos: 31.5,0.5 + parent: 2 + - uid: 7288 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 7289 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 7290 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 7291 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 7292 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 7293 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 7294 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 7295 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 7296 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 7297 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 7298 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 7299 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 7300 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 7301 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 7302 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 7303 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 7304 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 7305 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 7306 + components: + - type: Transform + pos: 32.5,0.5 + parent: 2 + - uid: 7327 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 7466 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 7476 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 7477 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 7478 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 7685 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - uid: 7710 + components: + - type: Transform + pos: 18.5,27.5 + parent: 2 + - uid: 7755 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 7805 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 7806 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - uid: 7807 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 7808 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - uid: 7809 + components: + - type: Transform + pos: 31.5,37.5 + parent: 2 + - uid: 7810 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 7811 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - uid: 7863 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 7864 + components: + - type: Transform + pos: 29.5,31.5 + parent: 2 + - uid: 7865 + components: + - type: Transform + pos: 30.5,31.5 + parent: 2 + - uid: 7866 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 7867 + components: + - type: Transform + pos: 32.5,31.5 + parent: 2 + - uid: 7868 + components: + - type: Transform + pos: 33.5,31.5 + parent: 2 + - uid: 7869 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 7870 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 7871 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - uid: 7890 + components: + - type: Transform + pos: 33.5,46.5 + parent: 2 + - uid: 7895 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 7951 + components: + - type: Transform + pos: 33.5,-14.5 + parent: 2 + - uid: 8047 + components: + - type: Transform + pos: 39.5,-4.5 + parent: 2 + - uid: 8051 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - uid: 8076 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 + - uid: 8088 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 + - uid: 8093 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 8096 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 8098 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 8114 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 8147 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 2 + - uid: 8148 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 8388 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 8410 + components: + - type: Transform + pos: 14.5,-53.5 + parent: 2 + - uid: 8845 + components: + - type: Transform + pos: 10.5,-55.5 + parent: 2 + - uid: 9082 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 9406 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 9407 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 9408 + components: + - type: Transform + pos: -6.5,31.5 + parent: 2 + - uid: 9409 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - uid: 9410 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 + - uid: 9411 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 9413 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 9414 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - uid: 9415 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 9416 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 9417 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 9418 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 9419 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 9420 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 + - uid: 9421 + components: + - type: Transform + pos: 8.5,24.5 + parent: 2 + - uid: 9422 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - uid: 9423 + components: + - type: Transform + pos: 10.5,24.5 + parent: 2 + - uid: 9424 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 + - uid: 9425 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 9426 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 9427 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 + - uid: 9428 + components: + - type: Transform + pos: 15.5,24.5 + parent: 2 + - uid: 9429 + components: + - type: Transform + pos: 16.5,24.5 + parent: 2 + - uid: 9430 + components: + - type: Transform + pos: 17.5,24.5 + parent: 2 + - uid: 9431 + components: + - type: Transform + pos: 17.5,25.5 + parent: 2 + - uid: 9432 + components: + - type: Transform + pos: 17.5,26.5 + parent: 2 + - uid: 9433 + components: + - type: Transform + pos: 17.5,27.5 + parent: 2 + - uid: 9435 + components: + - type: Transform + pos: 18.5,28.5 + parent: 2 + - uid: 9436 + components: + - type: Transform + pos: 18.5,29.5 + parent: 2 + - uid: 9437 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 9438 + components: + - type: Transform + pos: 18.5,31.5 + parent: 2 + - uid: 9439 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 9440 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 9441 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 9442 + components: + - type: Transform + pos: 22.5,31.5 + parent: 2 + - uid: 9443 + components: + - type: Transform + pos: 23.5,31.5 + parent: 2 + - uid: 9444 + components: + - type: Transform + pos: 23.5,30.5 + parent: 2 + - uid: 9445 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 9446 + components: + - type: Transform + pos: 23.5,28.5 + parent: 2 + - uid: 9447 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 9448 + components: + - type: Transform + pos: 25.5,28.5 + parent: 2 + - uid: 9449 + components: + - type: Transform + pos: 26.5,28.5 + parent: 2 + - uid: 9450 + components: + - type: Transform + pos: 27.5,28.5 + parent: 2 + - uid: 9451 + components: + - type: Transform + pos: 28.5,28.5 + parent: 2 + - uid: 9452 + components: + - type: Transform + pos: 29.5,28.5 + parent: 2 + - uid: 9453 + components: + - type: Transform + pos: 30.5,28.5 + parent: 2 + - uid: 9454 + components: + - type: Transform + pos: 31.5,28.5 + parent: 2 + - uid: 9455 + components: + - type: Transform + pos: 32.5,28.5 + parent: 2 + - uid: 9456 + components: + - type: Transform + pos: 33.5,28.5 + parent: 2 + - uid: 9457 + components: + - type: Transform + pos: 34.5,28.5 + parent: 2 + - uid: 9458 + components: + - type: Transform + pos: 34.5,27.5 + parent: 2 + - uid: 9459 + components: + - type: Transform + pos: 34.5,26.5 + parent: 2 + - uid: 9460 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 9461 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 9462 + components: + - type: Transform + pos: 34.5,23.5 + parent: 2 + - uid: 9463 + components: + - type: Transform + pos: 34.5,22.5 + parent: 2 + - uid: 9464 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 9465 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 9466 + components: + - type: Transform + pos: 37.5,22.5 + parent: 2 + - uid: 9467 + components: + - type: Transform + pos: 38.5,22.5 + parent: 2 + - uid: 9468 + components: + - type: Transform + pos: 39.5,22.5 + parent: 2 + - uid: 9469 + components: + - type: Transform + pos: 40.5,22.5 + parent: 2 + - uid: 9470 + components: + - type: Transform + pos: 41.5,22.5 + parent: 2 + - uid: 9471 + components: + - type: Transform + pos: 42.5,22.5 + parent: 2 + - uid: 9472 + components: + - type: Transform + pos: 43.5,22.5 + parent: 2 + - uid: 9473 + components: + - type: Transform + pos: 44.5,22.5 + parent: 2 + - uid: 9474 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 9475 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 9476 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 9477 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - uid: 9482 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 9483 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 9484 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 9485 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 9486 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 9487 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 9488 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 9489 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 9490 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 9491 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 9492 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 9500 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 9501 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 9502 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 9503 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - uid: 9509 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 9510 + components: + - type: Transform + pos: 12.5,13.5 + parent: 2 + - uid: 9511 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 9512 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 9513 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 9514 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 9515 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 9516 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 9517 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 9518 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 9519 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 9520 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 9521 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 9522 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 9523 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 9524 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 9525 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 9526 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 9527 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 9528 + components: + - type: Transform + pos: -5.5,13.5 + parent: 2 + - uid: 9529 + components: + - type: Transform + pos: -6.5,13.5 + parent: 2 + - uid: 9530 + components: + - type: Transform + pos: -7.5,13.5 + parent: 2 + - uid: 9531 + components: + - type: Transform + pos: -8.5,13.5 + parent: 2 + - uid: 9532 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 9533 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 9534 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 9535 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 9536 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 9537 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 9538 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 9539 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 9540 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 9541 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 9542 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 9543 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - uid: 9544 + components: + - type: Transform + pos: -8.5,0.5 + parent: 2 + - uid: 9545 + components: + - type: Transform + pos: -8.5,-0.5 + parent: 2 + - uid: 9546 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 9547 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 9548 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 9549 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 9550 + components: + - type: Transform + pos: -7.5,-4.5 + parent: 2 + - uid: 9551 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 2 + - uid: 9552 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 2 + - uid: 9553 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 9554 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 9555 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 9556 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 9557 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 9558 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 9559 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 9561 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - uid: 9562 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 9563 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 9564 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 9565 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 9566 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 9567 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 9568 + components: + - type: Transform + pos: 17.5,22.5 + parent: 2 + - uid: 9569 + components: + - type: Transform + pos: 17.5,23.5 + parent: 2 + - uid: 9647 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 2 + - uid: 9973 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 9993 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 11341 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 + - uid: 11488 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - uid: 11571 + components: + - type: Transform + pos: 27.5,32.5 + parent: 2 + - uid: 11583 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - uid: 11585 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 11865 + components: + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - uid: 11866 + components: + - type: Transform + pos: 35.5,-12.5 + parent: 2 + - uid: 11867 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 11869 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 12808 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 12809 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 12810 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 12811 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 13333 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 13429 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 13430 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 13639 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 14040 + components: + - type: Transform + pos: 14.5,-55.5 + parent: 2 + - uid: 14055 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - uid: 14815 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 14816 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 14817 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - uid: 14818 + components: + - type: Transform + pos: 31.5,-6.5 + parent: 2 + - uid: 14819 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + pos: 27.5,30.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + pos: 27.5,29.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 + - uid: 15618 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 15619 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 + - uid: 15620 + components: + - type: Transform + pos: 42.5,-5.5 + parent: 2 + - uid: 15621 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 + - uid: 15622 + components: + - type: Transform + pos: 44.5,-5.5 + parent: 2 + - uid: 15623 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 15624 + components: + - type: Transform + pos: 45.5,-4.5 + parent: 2 + - uid: 15625 + components: + - type: Transform + pos: 45.5,-3.5 + parent: 2 + - uid: 15626 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 15653 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 15654 + components: + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - uid: 15655 + components: + - type: Transform + pos: 39.5,-19.5 + parent: 2 + - uid: 15656 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 15673 + components: + - type: Transform + pos: 33.5,54.5 + parent: 2 + - uid: 15674 + components: + - type: Transform + pos: 35.5,52.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: 34.5,54.5 + parent: 2 +- proto: CableHVStack + entities: + - uid: 5137 + components: + - type: Transform + pos: -23.650434,14.638597 + parent: 2 + - uid: 7465 + components: + - type: Transform + pos: -1.7488699,22.66335 + parent: 2 + - uid: 8505 + components: + - type: Transform + pos: 40.774315,-18.665207 + parent: 2 + - uid: 13722 + components: + - type: Transform + pos: 26.585903,30.50047 + parent: 2 + - uid: 15685 + components: + - type: Transform + pos: 15.405136,-31.387543 + parent: 2 + - uid: 15686 + components: + - type: Transform + pos: 15.623886,-31.668793 + parent: 2 +- proto: CableHVStack10 + entities: + - uid: 8285 + components: + - type: Transform + pos: 34.031036,-10.756867 + parent: 2 +- proto: CableMV + entities: + - uid: 139 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: 39.5,-20.5 + parent: 2 + - uid: 411 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: 12.5,4.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 7.5,-5.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 8.5,-5.5 + parent: 2 + - uid: 494 + components: + - type: Transform + pos: 9.5,-5.5 + parent: 2 + - uid: 498 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 2 + - uid: 499 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 500 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 + - uid: 510 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: 4.5,2.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: 3.5,2.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: 2.5,2.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: 0.5,2.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -0.5,2.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: -1.5,2.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -2.5,3.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 522 + components: + - type: Transform + pos: 6.5,2.5 + parent: 2 + - uid: 523 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: 6.5,4.5 + parent: 2 + - uid: 525 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 526 + components: + - type: Transform + pos: 6.5,6.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 528 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 529 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - uid: 530 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 535 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 538 + components: + - type: Transform + pos: -6.5,-40.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - uid: 542 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 2 + - uid: 543 + components: + - type: Transform + pos: 10.5,0.5 + parent: 2 + - uid: 544 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - uid: 545 + components: + - type: Transform + pos: 10.5,2.5 + parent: 2 + - uid: 546 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 547 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 548 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 + - uid: 549 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - uid: 550 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 12.5,5.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: -4.5,10.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: -4.5,11.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: -4.5,12.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: -4.5,13.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 3.5,13.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 6.5,13.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 6.5,11.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 744 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: -31.5,-41.5 + parent: 2 + - uid: 1056 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 39.5,-10.5 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 38.5,-10.5 + parent: 2 + - uid: 1148 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 1176 + components: + - type: Transform + pos: 49.5,-13.5 + parent: 2 + - uid: 1195 + components: + - type: Transform + pos: 51.5,-13.5 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -6.5,-41.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 43.5,-24.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: 46.5,-16.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: 32.5,-18.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 46.5,-20.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: 46.5,-13.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: 36.5,-3.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: 34.5,-20.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: 54.5,-27.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: 55.5,-27.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: 50.5,-27.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: 48.5,-27.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: 56.5,-27.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: 56.5,-13.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: 49.5,-27.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: 50.5,-13.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: 46.5,-26.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: 48.5,-13.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: 40.5,-11.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 50.5,-26.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 29.5,-17.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: 29.5,-18.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: 56.5,-26.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: 31.5,-18.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 32.5,-12.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: 47.5,-17.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 32.5,-11.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: 56.5,-14.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: 46.5,-25.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - uid: 1552 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 1554 + components: + - type: Transform + pos: 40.5,-5.5 + parent: 2 + - uid: 1577 + components: + - type: Transform + pos: 46.5,-23.5 + parent: 2 + - uid: 1578 + components: + - type: Transform + pos: 46.5,-21.5 + parent: 2 + - uid: 1579 + components: + - type: Transform + pos: 46.5,-24.5 + parent: 2 + - uid: 1580 + components: + - type: Transform + pos: 46.5,-19.5 + parent: 2 + - uid: 1581 + components: + - type: Transform + pos: 46.5,-18.5 + parent: 2 + - uid: 1589 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 1591 + components: + - type: Transform + pos: 41.5,-24.5 + parent: 2 + - uid: 1597 + components: + - type: Transform + pos: 46.5,-15.5 + parent: 2 + - uid: 1598 + components: + - type: Transform + pos: 46.5,-17.5 + parent: 2 + - uid: 1599 + components: + - type: Transform + pos: 47.5,-23.5 + parent: 2 + - uid: 1609 + components: + - type: Transform + pos: 47.5,-13.5 + parent: 2 + - uid: 1637 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 1675 + components: + - type: Transform + pos: 40.5,-4.5 + parent: 2 + - uid: 1769 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - uid: 2011 + components: + - type: Transform + pos: -20.5,-43.5 + parent: 2 + - uid: 2018 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 2113 + components: + - type: Transform + pos: -16.5,-38.5 + parent: 2 + - uid: 2118 + components: + - type: Transform + pos: -18.5,-43.5 + parent: 2 + - uid: 2120 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 + - uid: 2121 + components: + - type: Transform + pos: -18.5,-41.5 + parent: 2 + - uid: 2176 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 2178 + components: + - type: Transform + pos: -18.5,-38.5 + parent: 2 + - uid: 2260 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 2 + - uid: 2263 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 2516 + components: + - type: Transform + pos: 53.5,-13.5 + parent: 2 + - uid: 2531 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 2546 + components: + - type: Transform + pos: -41.5,-33.5 + parent: 2 + - uid: 2553 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - uid: 2575 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 2646 + components: + - type: Transform + pos: 45.5,-24.5 + parent: 2 + - uid: 2669 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 2675 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 + - uid: 2676 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 2677 + components: + - type: Transform + pos: 39.5,-22.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 32.5,-20.5 + parent: 2 + - uid: 2702 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + pos: 38.5,-21.5 + parent: 2 + - uid: 2714 + components: + - type: Transform + pos: 39.5,-23.5 + parent: 2 + - uid: 2740 + components: + - type: Transform + pos: 46.5,-14.5 + parent: 2 + - uid: 2747 + components: + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 2790 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 2796 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 2 + - uid: 2797 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 2798 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 2810 + components: + - type: Transform + pos: 6.5,-28.5 + parent: 2 + - uid: 2896 + components: + - type: Transform + pos: 38.5,-3.5 + parent: 2 + - uid: 2982 + components: + - type: Transform + pos: 53.5,-27.5 + parent: 2 + - uid: 2983 + components: + - type: Transform + pos: 52.5,-27.5 + parent: 2 + - uid: 2985 + components: + - type: Transform + pos: 47.5,-27.5 + parent: 2 + - uid: 3004 + components: + - type: Transform + pos: -15.5,-33.5 + parent: 2 + - uid: 3045 + components: + - type: Transform + pos: -15.5,-40.5 + parent: 2 + - uid: 3046 + components: + - type: Transform + pos: -15.5,-39.5 + parent: 2 + - uid: 3057 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - uid: 3118 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 3366 + components: + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 3367 + components: + - type: Transform + pos: -30.5,-26.5 + parent: 2 + - uid: 3368 + components: + - type: Transform + pos: -29.5,-26.5 + parent: 2 + - uid: 3369 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 3370 + components: + - type: Transform + pos: -27.5,-26.5 + parent: 2 + - uid: 3371 + components: + - type: Transform + pos: -27.5,-25.5 + parent: 2 + - uid: 3372 + components: + - type: Transform + pos: -27.5,-23.5 + parent: 2 + - uid: 3373 + components: + - type: Transform + pos: -27.5,-24.5 + parent: 2 + - uid: 3374 + components: + - type: Transform + pos: -28.5,-23.5 + parent: 2 + - uid: 3375 + components: + - type: Transform + pos: -29.5,-23.5 + parent: 2 + - uid: 3376 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 3377 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 3378 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 3379 + components: + - type: Transform + pos: -25.5,-26.5 + parent: 2 + - uid: 3380 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 3381 + components: + - type: Transform + pos: -26.5,-26.5 + parent: 2 + - uid: 3382 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 3383 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 + - uid: 3385 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 3386 + components: + - type: Transform + pos: -26.5,-28.5 + parent: 2 + - uid: 3387 + components: + - type: Transform + pos: -27.5,-28.5 + parent: 2 + - uid: 3388 + components: + - type: Transform + pos: -27.5,-29.5 + parent: 2 + - uid: 3389 + components: + - type: Transform + pos: -27.5,-30.5 + parent: 2 + - uid: 3390 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 3391 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 3401 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - uid: 3436 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 2 + - uid: 3437 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 2 + - uid: 3438 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 2 + - uid: 3439 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 2 + - uid: 3447 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 3456 + components: + - type: Transform + pos: 46.5,-27.5 + parent: 2 + - uid: 3457 + components: + - type: Transform + pos: 55.5,-13.5 + parent: 2 + - uid: 3559 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - uid: 3580 + components: + - type: Transform + pos: -21.5,-39.5 + parent: 2 + - uid: 3610 + components: + - type: Transform + pos: -32.5,-16.5 + parent: 2 + - uid: 3623 + components: + - type: Transform + pos: 45.5,17.5 + parent: 2 + - uid: 3702 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 3810 + components: + - type: Transform + pos: 39.5,12.5 + parent: 2 + - uid: 3828 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 3904 + components: + - type: Transform + pos: 24.5,-17.5 + parent: 2 + - uid: 3987 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 4032 + components: + - type: Transform + pos: 54.5,-13.5 + parent: 2 + - uid: 4255 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 4304 + components: + - type: Transform + pos: -27.5,-42.5 + parent: 2 + - uid: 4305 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 4308 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - uid: 4309 + components: + - type: Transform + pos: -29.5,-42.5 + parent: 2 + - uid: 4310 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - uid: 4312 + components: + - type: Transform + pos: -26.5,-42.5 + parent: 2 + - uid: 4313 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 4352 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 4363 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 4494 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 4772 + components: + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 4773 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 4774 + components: + - type: Transform + pos: -35.5,-13.5 + parent: 2 + - uid: 4775 + components: + - type: Transform + pos: -35.5,-14.5 + parent: 2 + - uid: 4777 + components: + - type: Transform + pos: -36.5,-14.5 + parent: 2 + - uid: 4778 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 4779 + components: + - type: Transform + pos: -37.5,-15.5 + parent: 2 + - uid: 4780 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 4828 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 2 + - uid: 4830 + components: + - type: Transform + pos: -37.5,-13.5 + parent: 2 + - uid: 4831 + components: + - type: Transform + pos: -37.5,-12.5 + parent: 2 + - uid: 4832 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 4833 + components: + - type: Transform + pos: -39.5,-12.5 + parent: 2 + - uid: 4834 + components: + - type: Transform + pos: -40.5,-12.5 + parent: 2 + - uid: 4835 + components: + - type: Transform + pos: -40.5,-11.5 + parent: 2 + - uid: 4836 + components: + - type: Transform + pos: -40.5,-10.5 + parent: 2 + - uid: 4837 + components: + - type: Transform + pos: -40.5,-9.5 + parent: 2 + - uid: 4838 + components: + - type: Transform + pos: -40.5,-8.5 + parent: 2 + - uid: 4839 + components: + - type: Transform + pos: -40.5,-7.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 4841 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 4842 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 4843 + components: + - type: Transform + pos: -36.5,-7.5 + parent: 2 + - uid: 4844 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 4845 + components: + - type: Transform + pos: -34.5,-7.5 + parent: 2 + - uid: 4846 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - uid: 4852 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - uid: 4853 + components: + - type: Transform + pos: -31.5,-7.5 + parent: 2 + - uid: 4854 + components: + - type: Transform + pos: -30.5,-7.5 + parent: 2 + - uid: 4855 + components: + - type: Transform + pos: -29.5,-7.5 + parent: 2 + - uid: 4856 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 + - uid: 4857 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - uid: 4858 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 4859 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 2 + - uid: 4861 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 2 + - uid: 4862 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 4863 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 2 + - uid: 4864 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 4865 + components: + - type: Transform + pos: -21.5,-9.5 + parent: 2 + - uid: 4866 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 4867 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 4868 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 2 + - uid: 4869 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 4870 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 4871 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 4872 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 4873 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 4874 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 4875 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 4876 + components: + - type: Transform + pos: -21.5,0.5 + parent: 2 + - uid: 4877 + components: + - type: Transform + pos: -43.5,-6.5 + parent: 2 + - uid: 4878 + components: + - type: Transform + pos: -23.5,-4.5 + parent: 2 + - uid: 4879 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 4880 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 4883 + components: + - type: Transform + pos: -43.5,-7.5 + parent: 2 + - uid: 4884 + components: + - type: Transform + pos: -20.5,0.5 + parent: 2 + - uid: 4885 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 2 + - uid: 4886 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 2 + - uid: 4887 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 4888 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 4889 + components: + - type: Transform + pos: -27.5,0.5 + parent: 2 + - uid: 4890 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - uid: 4891 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 4892 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 4893 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - uid: 4894 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - uid: 4895 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 4896 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 + - uid: 4897 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 4898 + components: + - type: Transform + pos: -16.5,0.5 + parent: 2 + - uid: 4899 + components: + - type: Transform + pos: -15.5,0.5 + parent: 2 + - uid: 4900 + components: + - type: Transform + pos: -15.5,-0.5 + parent: 2 + - uid: 4901 + components: + - type: Transform + pos: -15.5,-1.5 + parent: 2 + - uid: 4902 + components: + - type: Transform + pos: -15.5,-2.5 + parent: 2 + - uid: 4904 + components: + - type: Transform + pos: -15.5,-4.5 + parent: 2 + - uid: 4905 + components: + - type: Transform + pos: -15.5,-5.5 + parent: 2 + - uid: 4906 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 + - uid: 4908 + components: + - type: Transform + pos: -16.5,-6.5 + parent: 2 + - uid: 4909 + components: + - type: Transform + pos: -17.5,-6.5 + parent: 2 + - uid: 4910 + components: + - type: Transform + pos: -17.5,-5.5 + parent: 2 + - uid: 4911 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 4912 + components: + - type: Transform + pos: -19.5,-7.5 + parent: 2 + - uid: 4913 + components: + - type: Transform + pos: -18.5,-7.5 + parent: 2 + - uid: 4914 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 4915 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 4922 + components: + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 4983 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 4984 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 2 + - uid: 5016 + components: + - type: Transform + pos: -43.5,-12.5 + parent: 2 + - uid: 5017 + components: + - type: Transform + pos: -42.5,-12.5 + parent: 2 + - uid: 5018 + components: + - type: Transform + pos: -41.5,-12.5 + parent: 2 + - uid: 5036 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 5558 + components: + - type: Transform + pos: 9.5,-30.5 + parent: 2 + - uid: 5580 + components: + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 5596 + components: + - type: Transform + pos: 9.5,-29.5 + parent: 2 + - uid: 5597 + components: + - type: Transform + pos: 9.5,-28.5 + parent: 2 + - uid: 5598 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 5599 + components: + - type: Transform + pos: 7.5,-28.5 + parent: 2 + - uid: 5600 + components: + - type: Transform + pos: 7.5,-27.5 + parent: 2 + - uid: 5607 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 2 + - uid: 5608 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 2 + - uid: 5609 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 5610 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 2 + - uid: 5611 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 2 + - uid: 5612 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 2 + - uid: 5613 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 5614 + components: + - type: Transform + pos: 22.5,-19.5 + parent: 2 + - uid: 5626 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 5627 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - uid: 5628 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 5629 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 5630 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 5631 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 5632 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 2 + - uid: 5633 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 2 + - uid: 5634 + components: + - type: Transform + pos: 0.5,-30.5 + parent: 2 + - uid: 5635 + components: + - type: Transform + pos: 1.5,-30.5 + parent: 2 + - uid: 5636 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 5637 + components: + - type: Transform + pos: 3.5,-30.5 + parent: 2 + - uid: 5638 + components: + - type: Transform + pos: 4.5,-30.5 + parent: 2 + - uid: 5639 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 5649 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 5650 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 2 + - uid: 5651 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 2 + - uid: 5652 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 + - uid: 5653 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - uid: 5654 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 2 + - uid: 5655 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 5656 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 5657 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 5658 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 5659 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 2 + - uid: 5660 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - uid: 5661 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 5662 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 5663 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 5664 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 + - uid: 5665 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - uid: 5666 + components: + - type: Transform + pos: -3.5,-19.5 + parent: 2 + - uid: 5667 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 2 + - uid: 5668 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 5672 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - uid: 5673 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 2 + - uid: 5674 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 2 + - uid: 5675 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 5676 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 5677 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 5678 + components: + - type: Transform + pos: -3.5,-22.5 + parent: 2 + - uid: 5679 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - uid: 5680 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - uid: 5681 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 5682 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 5683 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - uid: 5684 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 2 + - uid: 5685 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 5686 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 2 + - uid: 5687 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 5688 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 2 + - uid: 5689 + components: + - type: Transform + pos: 1.5,-22.5 + parent: 2 + - uid: 5690 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 + - uid: 5691 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 5692 + components: + - type: Transform + pos: 1.5,-25.5 + parent: 2 + - uid: 5693 + components: + - type: Transform + pos: 1.5,-26.5 + parent: 2 + - uid: 5694 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 5696 + components: + - type: Transform + pos: -8.5,-21.5 + parent: 2 + - uid: 5697 + components: + - type: Transform + pos: -9.5,-21.5 + parent: 2 + - uid: 5698 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 + - uid: 5699 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 5700 + components: + - type: Transform + pos: -10.5,-19.5 + parent: 2 + - uid: 5703 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - uid: 5706 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 5707 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 5708 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - uid: 5709 + components: + - type: Transform + pos: -9.5,-33.5 + parent: 2 + - uid: 5710 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - uid: 5711 + components: + - type: Transform + pos: -7.5,-33.5 + parent: 2 + - uid: 5712 + components: + - type: Transform + pos: -7.5,-32.5 + parent: 2 + - uid: 5713 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 + - uid: 5714 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 5715 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 2 + - uid: 5716 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 5717 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 2 + - uid: 5718 + components: + - type: Transform + pos: -4.5,-33.5 + parent: 2 + - uid: 5719 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - uid: 5743 + components: + - type: Transform + pos: -19.5,-43.5 + parent: 2 + - uid: 5744 + components: + - type: Transform + pos: -17.5,-38.5 + parent: 2 + - uid: 5755 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 5756 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 5758 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - uid: 5759 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 2 + - uid: 5760 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - uid: 5761 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 5762 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - uid: 5763 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 + - uid: 5764 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 5765 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 2 + - uid: 5766 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - uid: 5767 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - uid: 5768 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - uid: 5769 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - uid: 5770 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 5771 + components: + - type: Transform + pos: 0.5,-39.5 + parent: 2 + - uid: 5772 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 5773 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 5774 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - uid: 5775 + components: + - type: Transform + pos: 2.5,-37.5 + parent: 2 + - uid: 5776 + components: + - type: Transform + pos: 3.5,-37.5 + parent: 2 + - uid: 5777 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 + - uid: 5778 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 5779 + components: + - type: Transform + pos: 1.5,-33.5 + parent: 2 + - uid: 5780 + components: + - type: Transform + pos: 2.5,-33.5 + parent: 2 + - uid: 5781 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 + - uid: 5782 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 5783 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - uid: 5931 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 5932 + components: + - type: Transform + pos: 7.5,-19.5 + parent: 2 + - uid: 5933 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 + - uid: 5934 + components: + - type: Transform + pos: 8.5,-18.5 + parent: 2 + - uid: 5935 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - uid: 5936 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - uid: 5937 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 + - uid: 5938 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 2 + - uid: 5939 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 + - uid: 5940 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 5941 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 5947 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 2 + - uid: 5948 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 2 + - uid: 5949 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 2 + - uid: 5950 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 2 + - uid: 5951 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 2 + - uid: 5952 + components: + - type: Transform + pos: 10.5,-13.5 + parent: 2 + - uid: 5967 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 2 + - uid: 5968 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 + - uid: 5969 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 5970 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 + - uid: 5972 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 2 + - uid: 5973 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 2 + - uid: 5974 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 2 + - uid: 5975 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 5976 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 5977 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 2 + - uid: 5978 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 5988 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 2 + - uid: 5993 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 2 + - uid: 5994 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 5995 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 2 + - uid: 5996 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 2 + - uid: 5997 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 2 + - uid: 5998 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 5999 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 6000 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 6001 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 6002 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - uid: 6003 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 6004 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 6005 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 6006 + components: + - type: Transform + pos: 13.5,-0.5 + parent: 2 + - uid: 6007 + components: + - type: Transform + pos: 14.5,-0.5 + parent: 2 + - uid: 6008 + components: + - type: Transform + pos: 14.5,-1.5 + parent: 2 + - uid: 6009 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 2 + - uid: 6010 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 2 + - uid: 6011 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 6012 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 6013 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 6046 + components: + - type: Transform + pos: -15.5,-41.5 + parent: 2 + - uid: 6054 + components: + - type: Transform + pos: -15.5,-44.5 + parent: 2 + - uid: 6055 + components: + - type: Transform + pos: -15.5,-43.5 + parent: 2 + - uid: 6056 + components: + - type: Transform + pos: -15.5,-42.5 + parent: 2 + - uid: 6063 + components: + - type: Transform + pos: -29.5,-38.5 + parent: 2 + - uid: 6067 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 6068 + components: + - type: Transform + pos: -31.5,-38.5 + parent: 2 + - uid: 6073 + components: + - type: Transform + pos: -28.5,-40.5 + parent: 2 + - uid: 6075 + components: + - type: Transform + pos: -28.5,-39.5 + parent: 2 + - uid: 6076 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - uid: 6077 + components: + - type: Transform + pos: -30.5,-38.5 + parent: 2 + - uid: 6078 + components: + - type: Transform + pos: -28.5,-41.5 + parent: 2 + - uid: 6097 + components: + - type: Transform + pos: -31.5,-37.5 + parent: 2 + - uid: 6098 + components: + - type: Transform + pos: -31.5,-36.5 + parent: 2 + - uid: 6099 + components: + - type: Transform + pos: -31.5,-35.5 + parent: 2 + - uid: 6100 + components: + - type: Transform + pos: -31.5,-34.5 + parent: 2 + - uid: 6101 + components: + - type: Transform + pos: -32.5,-34.5 + parent: 2 + - uid: 6102 + components: + - type: Transform + pos: -33.5,-34.5 + parent: 2 + - uid: 6103 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 6104 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 6105 + components: + - type: Transform + pos: -37.5,-41.5 + parent: 2 + - uid: 6106 + components: + - type: Transform + pos: -37.5,-40.5 + parent: 2 + - uid: 6107 + components: + - type: Transform + pos: -37.5,-39.5 + parent: 2 + - uid: 6108 + components: + - type: Transform + pos: -37.5,-38.5 + parent: 2 + - uid: 6109 + components: + - type: Transform + pos: -36.5,-38.5 + parent: 2 + - uid: 6110 + components: + - type: Transform + pos: -35.5,-38.5 + parent: 2 + - uid: 6111 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 6112 + components: + - type: Transform + pos: -33.5,-38.5 + parent: 2 + - uid: 6113 + components: + - type: Transform + pos: -32.5,-38.5 + parent: 2 + - uid: 6164 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 6165 + components: + - type: Transform + pos: -15.5,-13.5 + parent: 2 + - uid: 6166 + components: + - type: Transform + pos: -15.5,-12.5 + parent: 2 + - uid: 6167 + components: + - type: Transform + pos: -14.5,-12.5 + parent: 2 + - uid: 6168 + components: + - type: Transform + pos: -13.5,-12.5 + parent: 2 + - uid: 6185 + components: + - type: Transform + pos: -37.5,-42.5 + parent: 2 + - uid: 6186 + components: + - type: Transform + pos: -37.5,-43.5 + parent: 2 + - uid: 6187 + components: + - type: Transform + pos: -36.5,-43.5 + parent: 2 + - uid: 6189 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 + - uid: 6252 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - uid: 6268 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 6318 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 + - uid: 6663 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 6796 + components: + - type: Transform + pos: 0.5,31.5 + parent: 2 + - uid: 6847 + 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 + 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 + 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 + parent: 2 + - uid: 6864 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: -23.5,15.5 + parent: 2 + - uid: 6866 + components: + - type: Transform + pos: -23.5,14.5 + parent: 2 + - uid: 6867 + components: + - type: Transform + pos: -22.5,15.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 + parent: 2 + - uid: 6887 + components: + - type: Transform + pos: -19.5,22.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 + parent: 2 + - uid: 6893 + components: + - type: Transform + pos: -19.5,28.5 + parent: 2 + - uid: 6894 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 6895 + components: + - type: Transform + pos: -17.5,28.5 + parent: 2 + - uid: 6896 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 + - uid: 6897 + components: + - type: Transform + pos: -16.5,29.5 + parent: 2 + - uid: 6898 + components: + - type: Transform + pos: -15.5,29.5 + parent: 2 + - uid: 6899 + components: + - type: Transform + pos: -14.5,29.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: -13.5,29.5 + parent: 2 + - uid: 6901 + components: + - type: Transform + pos: -12.5,29.5 + parent: 2 + - uid: 6902 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 6903 + components: + - type: Transform + pos: -11.5,30.5 + parent: 2 + - uid: 6904 + components: + - type: Transform + pos: -11.5,31.5 + parent: 2 + - uid: 6905 + components: + - 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 + parent: 2 + - uid: 6911 + components: + - type: Transform + pos: -13.5,24.5 + parent: 2 + - uid: 6912 + components: + - type: Transform + pos: -12.5,24.5 + parent: 2 + - uid: 6913 + components: + - type: Transform + pos: -11.5,24.5 + parent: 2 + - uid: 6914 + components: + - type: Transform + pos: -12.5,19.5 + parent: 2 + - uid: 6915 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 6984 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: -33.5,28.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 6988 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - uid: 6989 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 + - uid: 6990 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - uid: 6991 + components: + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 6992 + components: + - type: Transform + pos: -35.5,31.5 + parent: 2 + - uid: 6993 + components: + - type: Transform + pos: -36.5,31.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + pos: -37.5,31.5 + parent: 2 + - uid: 6995 + components: + - type: Transform + pos: -38.5,31.5 + parent: 2 + - uid: 6996 + components: + - type: Transform + pos: -38.5,32.5 + parent: 2 + - uid: 6997 + components: + - type: Transform + pos: -38.5,33.5 + parent: 2 + - uid: 6998 + components: + - type: Transform + pos: -38.5,34.5 + parent: 2 + - uid: 7000 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 7001 + components: + - type: Transform + pos: -15.5,31.5 + parent: 2 + - uid: 7322 + components: + - type: Transform + pos: -7.5,53.5 + parent: 2 + - uid: 7329 + components: + - type: Transform + pos: -9.5,53.5 + parent: 2 + - uid: 7330 + components: + - type: Transform + pos: -9.5,54.5 + parent: 2 + - uid: 7331 + components: + - type: Transform + pos: -8.5,54.5 + parent: 2 + - uid: 7332 + components: + - type: Transform + pos: -7.5,54.5 + parent: 2 + - uid: 7333 + components: + - type: Transform + pos: -6.5,54.5 + parent: 2 + - uid: 7334 + components: + - type: Transform + pos: -5.5,54.5 + parent: 2 + - uid: 7335 + components: + - type: Transform + pos: -5.5,55.5 + parent: 2 + - uid: 7336 + components: + - type: Transform + pos: -5.5,56.5 + parent: 2 + - uid: 7337 + components: + - type: Transform + pos: -5.5,57.5 + parent: 2 + - uid: 7338 + components: + - type: Transform + pos: -7.5,52.5 + parent: 2 + - uid: 7339 + components: + - type: Transform + pos: -7.5,51.5 + parent: 2 + - uid: 7340 + components: + - type: Transform + pos: -7.5,50.5 + parent: 2 + - uid: 7341 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - uid: 7342 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - uid: 7343 + components: + - type: Transform + pos: -7.5,47.5 + parent: 2 + - uid: 7344 + components: + - type: Transform + pos: -7.5,46.5 + parent: 2 + - uid: 7345 + components: + - type: Transform + pos: -7.5,45.5 + parent: 2 + - uid: 7346 + components: + - type: Transform + pos: -7.5,44.5 + parent: 2 + - uid: 7347 + components: + - type: Transform + pos: -7.5,43.5 + parent: 2 + - uid: 7348 + components: + - type: Transform + pos: -7.5,42.5 + parent: 2 + - uid: 7349 + components: + - type: Transform + pos: -7.5,41.5 + parent: 2 + - uid: 7350 + components: + - type: Transform + pos: -7.5,40.5 + parent: 2 + - uid: 7351 + components: + - type: Transform + pos: -7.5,39.5 + parent: 2 + - uid: 7356 + components: + - type: Transform + pos: -5.5,37.5 + parent: 2 + - uid: 7357 + components: + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 7358 + components: + - type: Transform + pos: 2.5,30.5 + parent: 2 + - uid: 7359 + components: + - type: Transform + pos: 1.5,30.5 + parent: 2 + - uid: 7360 + components: + - type: Transform + pos: 0.5,30.5 + parent: 2 + - uid: 7363 + components: + - type: Transform + pos: -0.5,32.5 + parent: 2 + - uid: 7364 + components: + - type: Transform + pos: 0.5,32.5 + parent: 2 + - uid: 7365 + components: + - type: Transform + pos: 1.5,32.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: 2.5,32.5 + parent: 2 + - uid: 7367 + components: + - type: Transform + pos: 3.5,32.5 + parent: 2 + - uid: 7368 + components: + - type: Transform + pos: 4.5,32.5 + parent: 2 + - uid: 7369 + components: + - type: Transform + pos: 5.5,32.5 + parent: 2 + - uid: 7372 + components: + - type: Transform + pos: 0.5,28.5 + parent: 2 + - uid: 7373 + components: + - type: Transform + pos: 0.5,27.5 + parent: 2 + - uid: 7374 + components: + - type: Transform + pos: 0.5,26.5 + parent: 2 + - uid: 7375 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 7376 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 7447 + components: + - type: Transform + pos: 39.5,9.5 + parent: 2 + - uid: 7482 + components: + - type: Transform + pos: 0.5,25.5 + parent: 2 + - uid: 7491 + components: + - type: Transform + pos: 0.5,24.5 + parent: 2 + - uid: 7492 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 7493 + components: + - type: Transform + pos: 0.5,22.5 + parent: 2 + - uid: 7494 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 7495 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 7496 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 7497 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 7498 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 7506 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 7507 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 + - uid: 7520 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - uid: 7521 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 + - uid: 7522 + components: + - type: Transform + pos: 1.5,37.5 + parent: 2 + - uid: 7524 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - uid: 7525 + components: + - type: Transform + pos: 3.5,38.5 + parent: 2 + - uid: 7526 + components: + - type: Transform + pos: 4.5,38.5 + parent: 2 + - uid: 7527 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - uid: 7528 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 7529 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - uid: 7530 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - uid: 7531 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 7532 + components: + - type: Transform + pos: 5.5,33.5 + parent: 2 + - uid: 7533 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - uid: 7534 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - uid: 7535 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 + - uid: 7536 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 7537 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - uid: 7538 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 + - uid: 7539 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 + - uid: 7540 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - uid: 7541 + components: + - type: Transform + pos: 7.5,34.5 + parent: 2 + - uid: 7542 + components: + - type: Transform + pos: 8.5,34.5 + parent: 2 + - uid: 7543 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - uid: 7544 + components: + - type: Transform + pos: 10.5,34.5 + parent: 2 + - uid: 7545 + components: + - type: Transform + pos: 11.5,34.5 + parent: 2 + - uid: 7546 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 7547 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - uid: 7548 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 7549 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 7550 + components: + - type: Transform + pos: 15.5,28.5 + parent: 2 + - uid: 7551 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 7556 + components: + - type: Transform + pos: 6.5,28.5 + parent: 2 + - uid: 7557 + components: + - type: Transform + pos: 5.5,28.5 + parent: 2 + - uid: 7558 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 7559 + components: + - type: Transform + pos: 1.5,24.5 + parent: 2 + - uid: 7560 + components: + - type: Transform + pos: 2.5,24.5 + parent: 2 + - uid: 7561 + components: + - type: Transform + pos: 3.5,24.5 + parent: 2 + - uid: 7562 + components: + - type: Transform + pos: 4.5,24.5 + parent: 2 + - uid: 7563 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 7564 + components: + - type: Transform + pos: 6.5,24.5 + parent: 2 + - uid: 7565 + components: + - type: Transform + pos: 6.5,26.5 + parent: 2 + - uid: 7566 + components: + - type: Transform + pos: 6.5,27.5 + parent: 2 + - uid: 7567 + components: + - type: Transform + pos: 6.5,25.5 + parent: 2 + - uid: 7683 + components: + - type: Transform + pos: 48.5,-0.5 + parent: 2 + - uid: 7711 + components: + - type: Transform + pos: 22.5,-17.5 + parent: 2 + - uid: 7835 + components: + - type: Transform + pos: 15.5,34.5 + parent: 2 + - uid: 7836 + components: + - type: Transform + pos: 15.5,35.5 + parent: 2 + - uid: 7837 + components: + - type: Transform + pos: 15.5,36.5 + parent: 2 + - uid: 7838 + components: + - type: Transform + pos: 15.5,37.5 + parent: 2 + - uid: 7839 + components: + - type: Transform + pos: 15.5,38.5 + parent: 2 + - uid: 7840 + components: + - type: Transform + pos: 16.5,38.5 + parent: 2 + - uid: 7841 + components: + - type: Transform + pos: 17.5,38.5 + parent: 2 + - uid: 7842 + components: + - type: Transform + pos: 18.5,38.5 + parent: 2 + - uid: 7843 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 + - uid: 7844 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 + - uid: 7845 + components: + - type: Transform + pos: 21.5,38.5 + parent: 2 + - uid: 7846 + components: + - type: Transform + pos: 22.5,38.5 + parent: 2 + - uid: 7943 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 7952 + components: + - type: Transform + pos: 23.5,-14.5 + parent: 2 + - uid: 8070 + components: + - type: Transform + pos: 40.5,-6.5 + parent: 2 + - uid: 8182 + components: + - type: Transform + pos: 57.5,-13.5 + parent: 2 + - uid: 8185 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 8235 + components: + - type: Transform + pos: 23.5,-17.5 + parent: 2 + - uid: 8237 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 8253 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - uid: 8254 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 + - uid: 8278 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - uid: 8279 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 8507 + components: + - type: Transform + pos: 45.5,15.5 + parent: 2 + - uid: 8508 + components: + - type: Transform + pos: 45.5,14.5 + parent: 2 + - uid: 8509 + components: + - type: Transform + pos: 45.5,13.5 + parent: 2 + - uid: 8510 + components: + - type: Transform + pos: 45.5,16.5 + parent: 2 + - uid: 8624 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 8625 + components: + - type: Transform + pos: -4.5,27.5 + parent: 2 + - uid: 8626 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 8627 + components: + - type: Transform + pos: -5.5,27.5 + parent: 2 + - uid: 8632 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - uid: 8634 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 + - uid: 8635 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 8636 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 2 + - uid: 8637 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 8638 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - uid: 8639 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 8640 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 8641 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - uid: 8642 + components: + - type: Transform + pos: 17.5,-5.5 + parent: 2 + - uid: 8643 + components: + - type: Transform + pos: 16.5,-5.5 + parent: 2 + - uid: 8644 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 8645 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 2 + - uid: 8646 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 8647 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 8648 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 8649 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 8650 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 8651 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - uid: 8652 + components: + - type: Transform + pos: 15.5,-12.5 + parent: 2 + - uid: 8653 + components: + - type: Transform + pos: 15.5,-13.5 + parent: 2 + - uid: 8654 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 2 + - uid: 8655 + components: + - type: Transform + pos: 17.5,-13.5 + parent: 2 + - uid: 8656 + components: + - type: Transform + pos: 18.5,-13.5 + parent: 2 + - uid: 8657 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 8658 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 2 + - uid: 8678 + components: + - type: Transform + pos: 21.5,-9.5 + parent: 2 + - uid: 8721 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 8787 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 8788 + components: + - type: Transform + pos: 26.5,-31.5 + parent: 2 + - uid: 8789 + components: + - type: Transform + pos: 26.5,-30.5 + parent: 2 + - uid: 8846 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - uid: 8847 + components: + - type: Transform + pos: 38.5,-19.5 + parent: 2 + - uid: 8849 + components: + - type: Transform + pos: 40.5,-19.5 + parent: 2 + - uid: 8850 + components: + - type: Transform + pos: 40.5,-18.5 + parent: 2 + - uid: 8851 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 9066 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 9067 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 9068 + components: + - type: Transform + pos: 42.5,2.5 + parent: 2 + - uid: 9069 + components: + - type: Transform + pos: 42.5,3.5 + parent: 2 + - uid: 9070 + components: + - type: Transform + pos: 42.5,4.5 + parent: 2 + - uid: 9071 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 9072 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 9073 + components: + - type: Transform + pos: 40.5,5.5 + parent: 2 + - uid: 9074 + components: + - type: Transform + pos: 40.5,7.5 + parent: 2 + - uid: 9075 + components: + - type: Transform + pos: 40.5,6.5 + parent: 2 + - uid: 9076 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 9077 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 9078 + components: + - type: Transform + pos: 40.5,1.5 + parent: 2 + - uid: 9090 + components: + - type: Transform + pos: 43.5,4.5 + parent: 2 + - uid: 9091 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 9092 + components: + - type: Transform + pos: 45.5,4.5 + parent: 2 + - uid: 9093 + components: + - type: Transform + pos: 46.5,4.5 + parent: 2 + - uid: 9094 + components: + - type: Transform + pos: 46.5,3.5 + parent: 2 + - uid: 9095 + components: + - type: Transform + pos: 46.5,2.5 + parent: 2 + - uid: 9096 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 9097 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 9098 + components: + - type: Transform + pos: 46.5,-0.5 + parent: 2 + - uid: 9100 + components: + - type: Transform + pos: 47.5,-0.5 + parent: 2 + - uid: 9102 + components: + - type: Transform + pos: 49.5,-0.5 + parent: 2 + - uid: 9103 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 9104 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 9105 + components: + - type: Transform + pos: 52.5,-0.5 + parent: 2 + - uid: 9106 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 2 + - uid: 9107 + components: + - type: Transform + pos: 54.5,-0.5 + parent: 2 + - uid: 9108 + components: + - type: Transform + pos: 55.5,-0.5 + parent: 2 + - uid: 9109 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 9110 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 9112 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - uid: 9113 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 + - uid: 9114 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 9115 + components: + - type: Transform + pos: 48.5,6.5 + parent: 2 + - uid: 9116 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - uid: 9158 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 9159 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 9160 + components: + - type: Transform + pos: 34.5,1.5 + parent: 2 + - uid: 9161 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 9162 + components: + - type: Transform + pos: 36.5,1.5 + parent: 2 + - uid: 9163 + components: + - type: Transform + pos: 37.5,1.5 + parent: 2 + - uid: 9164 + components: + - type: Transform + pos: 38.5,1.5 + parent: 2 + - uid: 9165 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 9202 + components: + - type: Transform + pos: 45.5,21.5 + parent: 2 + - uid: 9203 + components: + - type: Transform + pos: 44.5,20.5 + parent: 2 + - uid: 9204 + components: + - type: Transform + pos: 44.5,19.5 + parent: 2 + - uid: 9205 + components: + - type: Transform + pos: 44.5,21.5 + parent: 2 + - uid: 9206 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - uid: 9211 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 9212 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 9213 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 9214 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 9215 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 9216 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 9217 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 9218 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 9219 + components: + - type: Transform + pos: 44.5,18.5 + parent: 2 + - uid: 9282 + components: + - type: Transform + pos: 25.5,31.5 + parent: 2 + - uid: 9283 + components: + - type: Transform + pos: 26.5,31.5 + parent: 2 + - uid: 9284 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 9285 + components: + - type: Transform + pos: 27.5,32.5 + parent: 2 + - uid: 9298 + components: + - type: Transform + pos: 15.5,30.5 + parent: 2 + - uid: 9299 + components: + - type: Transform + pos: 16.5,30.5 + parent: 2 + - uid: 9300 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 9301 + components: + - type: Transform + pos: 18.5,30.5 + parent: 2 + - uid: 9302 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 9303 + components: + - type: Transform + pos: 19.5,31.5 + parent: 2 + - uid: 9304 + components: + - type: Transform + pos: 20.5,31.5 + parent: 2 + - uid: 9305 + components: + - type: Transform + pos: 21.5,31.5 + parent: 2 + - uid: 9306 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 9605 + components: + - type: Transform + pos: -31.5,28.5 + parent: 2 + - uid: 9606 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - uid: 9633 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 9634 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 9635 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 + - uid: 9636 + components: + - type: Transform + pos: 9.5,-2.5 + parent: 2 + - uid: 9637 + components: + - type: Transform + pos: 9.5,-1.5 + parent: 2 + - uid: 9638 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 2 + - uid: 9660 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - uid: 9661 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 9662 + components: + - type: Transform + pos: -5.5,17.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 9665 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 9666 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 9667 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 9668 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 9669 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 9670 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 9671 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 9672 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 9673 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 9674 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 9675 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 9676 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 9677 + components: + - type: Transform + pos: -6.5,31.5 + parent: 2 + - uid: 9678 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - uid: 9679 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 + - uid: 9680 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 9681 + components: + - type: Transform + pos: -5.5,34.5 + parent: 2 + - uid: 9682 + components: + - type: Transform + pos: -4.5,34.5 + parent: 2 + - uid: 9683 + components: + - type: Transform + pos: -3.5,34.5 + parent: 2 + - uid: 9684 + components: + - type: Transform + pos: -3.5,33.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + pos: -3.5,32.5 + parent: 2 + - uid: 9686 + components: + - type: Transform + pos: -2.5,32.5 + parent: 2 + - uid: 9687 + components: + - 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 + pos: 2.5,41.5 + parent: 2 + - uid: 9693 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 9694 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 9706 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 9707 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 9708 + components: + - type: Transform + pos: 35.5,18.5 + parent: 2 + - uid: 9709 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 9710 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - uid: 9711 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 9712 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - uid: 9713 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 9714 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 9715 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 9716 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 9717 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 9718 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 9719 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 9720 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 9721 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - uid: 9722 + components: + - type: Transform + pos: 22.5,23.5 + parent: 2 + - uid: 9723 + components: + - type: Transform + pos: 22.5,22.5 + parent: 2 + - uid: 9724 + components: + - type: Transform + pos: 23.5,22.5 + parent: 2 + - uid: 9725 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - uid: 9726 + components: + - type: Transform + pos: 25.5,22.5 + parent: 2 + - uid: 9727 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 9728 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - uid: 9729 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 + - uid: 9730 + components: + - type: Transform + pos: 24.5,19.5 + parent: 2 + - uid: 9731 + components: + - type: Transform + pos: 25.5,19.5 + parent: 2 + - uid: 9732 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 9733 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 9734 + components: + - type: Transform + pos: 28.5,19.5 + parent: 2 + - uid: 9735 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 + - uid: 9736 + components: + - type: Transform + pos: 25.5,21.5 + parent: 2 + - uid: 9737 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 + - uid: 9738 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - uid: 9739 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 + - uid: 9740 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 9741 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - uid: 9742 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 9743 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - uid: 9744 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 9745 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 9746 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 9747 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 9748 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 9749 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 9750 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 9751 + components: + - type: Transform + pos: 34.5,8.5 + parent: 2 + - uid: 9752 + components: + - type: Transform + pos: 35.5,8.5 + parent: 2 + - uid: 9753 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 9754 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 9755 + components: + - type: Transform + pos: 38.5,8.5 + parent: 2 + - uid: 9756 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 9757 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 9758 + components: + - type: Transform + pos: 37.5,8.5 + parent: 2 + - uid: 9759 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 9760 + components: + - type: Transform + pos: 34.5,5.5 + parent: 2 + - uid: 9761 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 9762 + components: + - type: Transform + pos: 33.5,4.5 + parent: 2 + - uid: 9763 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 9764 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 + - uid: 9765 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 9766 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 9767 + components: + - type: Transform + pos: 31.5,5.5 + parent: 2 + - uid: 9768 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 9769 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 9770 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 9771 + components: + - type: Transform + pos: 28.5,8.5 + parent: 2 + - uid: 9772 + components: + - type: Transform + pos: 29.5,8.5 + parent: 2 + - uid: 9773 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 9774 + components: + - type: Transform + pos: 25.5,13.5 + parent: 2 + - uid: 9775 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 9776 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 9777 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 9778 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - uid: 9779 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 9780 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 9781 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 9782 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 9783 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - uid: 9784 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 + - uid: 9785 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 9786 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 9787 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 9788 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - uid: 9789 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 9792 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 9793 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 9794 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 9795 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 9796 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 9797 + components: + - type: Transform + pos: 31.5,18.5 + parent: 2 + - uid: 9823 + components: + - type: Transform + pos: 29.5,17.5 + parent: 2 + - uid: 9911 + components: + - type: Transform + pos: 18.5,15.5 + parent: 2 + - uid: 9912 + components: + - type: Transform + pos: 18.5,14.5 + parent: 2 + - uid: 9913 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 9914 + components: + - type: Transform + pos: 19.5,14.5 + parent: 2 + - uid: 9915 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 9916 + components: + - type: Transform + pos: 20.5,13.5 + parent: 2 + - uid: 9917 + components: + - type: Transform + pos: 20.5,12.5 + parent: 2 + - uid: 9918 + components: + - type: Transform + pos: 20.5,11.5 + parent: 2 + - uid: 9919 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 9920 + components: + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 9921 + components: + - type: Transform + pos: 20.5,8.5 + parent: 2 + - uid: 9922 + components: + - type: Transform + pos: 20.5,7.5 + parent: 2 + - uid: 9923 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 9924 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - uid: 9925 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - uid: 9926 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - uid: 9927 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 9928 + components: + - type: Transform + pos: 26.5,6.5 + parent: 2 + - uid: 9929 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 9930 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 9938 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 9939 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 9940 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 9941 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 9942 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 9943 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 9945 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 9946 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 9947 + components: + - type: Transform + pos: -8.5,29.5 + parent: 2 + - uid: 9948 + components: + - type: Transform + pos: -9.5,29.5 + parent: 2 + - uid: 9949 + components: + - type: Transform + pos: -10.5,29.5 + parent: 2 + - uid: 9951 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 9952 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 + - uid: 9953 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 9954 + components: + - type: Transform + pos: -4.5,0.5 + parent: 2 + - uid: 9955 + components: + - type: Transform + pos: -5.5,0.5 + parent: 2 + - uid: 9956 + components: + - type: Transform + pos: -6.5,0.5 + parent: 2 + - uid: 9957 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 2 + - uid: 9958 + components: + - type: Transform + pos: -6.5,-1.5 + parent: 2 + - uid: 9959 + components: + - type: Transform + pos: -6.5,-2.5 + parent: 2 + - uid: 9960 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 2 + - uid: 9969 + components: + - type: Transform + pos: -27.5,-15.5 + parent: 2 + - uid: 9979 + components: + - type: Transform + pos: -20.5,-32.5 + parent: 2 + - uid: 9986 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 9987 + components: + - type: Transform + pos: -13.5,-13.5 + parent: 2 + - uid: 10000 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 2 + - uid: 10001 + components: + - type: Transform + pos: -46.5,-29.5 + parent: 2 + - uid: 10003 + components: + - type: Transform + pos: -45.5,-30.5 + parent: 2 + - uid: 10004 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - uid: 10005 + components: + - type: Transform + pos: -43.5,-30.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - uid: 10007 + components: + - type: Transform + pos: -41.5,-30.5 + parent: 2 + - uid: 10008 + components: + - type: Transform + pos: -41.5,-29.5 + parent: 2 + - uid: 10009 + components: + - type: Transform + pos: -41.5,-28.5 + parent: 2 + - uid: 10010 + components: + - type: Transform + pos: -41.5,-27.5 + parent: 2 + - uid: 10011 + components: + - type: Transform + pos: -41.5,-26.5 + parent: 2 + - uid: 10012 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 10013 + components: + - type: Transform + pos: -41.5,-24.5 + parent: 2 + - uid: 10014 + components: + - type: Transform + pos: -41.5,-23.5 + parent: 2 + - uid: 10015 + components: + - type: Transform + pos: -41.5,-22.5 + parent: 2 + - uid: 10016 + components: + - type: Transform + pos: -41.5,-21.5 + parent: 2 + - uid: 10017 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 10018 + components: + - type: Transform + pos: -41.5,-19.5 + parent: 2 + - uid: 10019 + components: + - type: Transform + pos: -41.5,-18.5 + parent: 2 + - uid: 10020 + components: + - type: Transform + pos: -41.5,-17.5 + parent: 2 + - uid: 10021 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 10022 + components: + - type: Transform + pos: -41.5,-15.5 + parent: 2 + - uid: 10023 + components: + - type: Transform + pos: -40.5,-15.5 + parent: 2 + - uid: 10024 + components: + - type: Transform + pos: -39.5,-15.5 + parent: 2 + - uid: 10025 + components: + - type: Transform + pos: -38.5,-15.5 + parent: 2 + - uid: 10028 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 2 + - uid: 10029 + components: + - type: Transform + pos: 0.5,-12.5 + parent: 2 + - uid: 10030 + components: + - type: Transform + pos: 0.5,-13.5 + parent: 2 + - uid: 10031 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 2 + - uid: 10032 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 2 + - uid: 10033 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 2 + - uid: 10034 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 2 + - uid: 10035 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 10036 + components: + - type: Transform + pos: 5.5,-27.5 + parent: 2 + - uid: 10037 + components: + - type: Transform + pos: 5.5,-26.5 + parent: 2 + - uid: 10038 + components: + - type: Transform + pos: 5.5,-25.5 + parent: 2 + - uid: 10039 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 10040 + components: + - type: Transform + pos: 5.5,-23.5 + parent: 2 + - uid: 10041 + components: + - type: Transform + pos: 5.5,-22.5 + parent: 2 + - uid: 10042 + components: + - type: Transform + pos: 5.5,-21.5 + parent: 2 + - uid: 10043 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 10044 + components: + - type: Transform + pos: 5.5,-19.5 + parent: 2 + - uid: 10045 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 2 + - uid: 10046 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 10047 + components: + - type: Transform + pos: 4.5,-17.5 + parent: 2 + - uid: 10048 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 2 + - uid: 10049 + components: + - type: Transform + pos: 4.5,-16.5 + parent: 2 + - uid: 10050 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 2 + - uid: 10106 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 10107 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 10108 + components: + - type: Transform + pos: -23.5,-15.5 + parent: 2 + - uid: 10109 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 2 + - uid: 10110 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 2 + - uid: 10111 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 2 + - uid: 10112 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 2 + - uid: 10113 + components: + - type: Transform + pos: -18.5,-15.5 + parent: 2 + - uid: 10114 + components: + - type: Transform + pos: -17.5,-15.5 + parent: 2 + - uid: 10115 + components: + - type: Transform + pos: -26.5,-15.5 + parent: 2 + - uid: 10116 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 10117 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 10118 + components: + - type: Transform + pos: -15.5,-16.5 + parent: 2 + - uid: 10119 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 10120 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 10121 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 2 + - uid: 10228 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 10314 + components: + - type: Transform + pos: -27.5,-22.5 + parent: 2 + - uid: 10315 + components: + - type: Transform + pos: -27.5,-21.5 + parent: 2 + - uid: 10316 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 10317 + components: + - type: Transform + pos: -27.5,-19.5 + parent: 2 + - uid: 10318 + components: + - type: Transform + pos: -27.5,-18.5 + parent: 2 + - uid: 10319 + components: + - type: Transform + pos: -27.5,-17.5 + parent: 2 + - uid: 10320 + components: + - type: Transform + pos: -27.5,-16.5 + parent: 2 + - uid: 10321 + components: + - type: Transform + pos: -25.5,-28.5 + parent: 2 + - uid: 10322 + components: + - type: Transform + pos: -24.5,-28.5 + parent: 2 + - uid: 10323 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 10324 + components: + - type: Transform + pos: -22.5,-28.5 + parent: 2 + - uid: 10325 + components: + - type: Transform + pos: -21.5,-28.5 + parent: 2 + - uid: 10326 + components: + - type: Transform + pos: -20.5,-28.5 + parent: 2 + - uid: 10337 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 10338 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 10339 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 10341 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 + - uid: 10342 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - uid: 10343 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 10344 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 10345 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 10347 + components: + - type: Transform + pos: 6.5,17.5 + parent: 2 + - uid: 10348 + components: + - type: Transform + pos: 7.5,17.5 + parent: 2 + - uid: 10349 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 10350 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 10351 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 10352 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 10353 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 10719 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 10754 + components: + - type: Transform + pos: 34.5,-19.5 + parent: 2 + - uid: 10757 + components: + - type: Transform + pos: 27.5,-30.5 + parent: 2 + - uid: 10758 + components: + - type: Transform + pos: 27.5,-29.5 + parent: 2 + - uid: 10801 + components: + - type: Transform + pos: 27.5,-28.5 + parent: 2 + - uid: 10802 + components: + - type: Transform + pos: 27.5,-27.5 + parent: 2 + - uid: 10855 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - uid: 10856 + components: + - type: Transform + pos: 27.5,-25.5 + parent: 2 + - uid: 10908 + components: + - type: Transform + pos: 28.5,-25.5 + parent: 2 + - uid: 10909 + components: + - type: Transform + pos: 29.5,-25.5 + parent: 2 + - uid: 10910 + components: + - type: Transform + pos: 29.5,-24.5 + parent: 2 + - uid: 10911 + components: + - type: Transform + pos: 29.5,-23.5 + parent: 2 + - uid: 10912 + components: + - type: Transform + pos: 29.5,-22.5 + parent: 2 + - uid: 10913 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 + - uid: 10914 + components: + - type: Transform + pos: 29.5,-20.5 + parent: 2 + - uid: 10916 + components: + - type: Transform + pos: 29.5,-19.5 + parent: 2 + - uid: 10917 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 + - uid: 11107 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 11485 + components: + - type: Transform + pos: 33.5,-15.5 + parent: 2 + - uid: 11516 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 11558 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 11559 + components: + - type: Transform + pos: 34.5,-15.5 + parent: 2 + - uid: 11570 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - uid: 11590 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 2 + - uid: 11594 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 11662 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 11663 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - uid: 11686 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 + - uid: 11689 + components: + - type: Transform + pos: 38.5,-15.5 + parent: 2 + - uid: 11884 + components: + - type: Transform + pos: -6.5,-37.5 + parent: 2 + - uid: 12042 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 12213 + components: + - type: Transform + pos: 25.5,-10.5 + parent: 2 + - uid: 12214 + components: + - type: Transform + pos: 25.5,-11.5 + parent: 2 + - uid: 12215 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 + - uid: 12216 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 12217 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 12218 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 12219 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 12220 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 12221 + components: + - type: Transform + pos: 29.5,-14.5 + parent: 2 + - uid: 12222 + components: + - type: Transform + pos: 30.5,-14.5 + parent: 2 + - uid: 12223 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 + - uid: 12233 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 + - uid: 12234 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 12235 + components: + - type: Transform + pos: 32.5,-10.5 + parent: 2 + - uid: 12236 + components: + - type: Transform + pos: 32.5,-9.5 + parent: 2 + - uid: 12237 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 12238 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 12239 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 12240 + components: + - type: Transform + pos: 32.5,-5.5 + parent: 2 + - uid: 12241 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 12242 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 12243 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 12244 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 12318 + components: + - type: Transform + pos: 34.5,-5.5 + parent: 2 + - uid: 12331 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 12343 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - uid: 12383 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 12384 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 12385 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 12397 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 12399 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 12402 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 12422 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 + - uid: 12567 + components: + - type: Transform + pos: 32.5,-2.5 + parent: 2 + - uid: 12568 + components: + - type: Transform + pos: 32.5,-3.5 + parent: 2 + - uid: 12569 + components: + - type: Transform + pos: 32.5,-4.5 + parent: 2 + - uid: 12860 + components: + - type: Transform + pos: -17.5,-32.5 + parent: 2 + - uid: 12931 + components: + - type: Transform + pos: -14.5,-34.5 + parent: 2 + - uid: 13417 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 13426 + components: + - type: Transform + pos: -14.5,-38.5 + parent: 2 + - uid: 13444 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 13450 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - uid: 13538 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 + - uid: 13638 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 2 + - uid: 13640 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 13644 + components: + - type: Transform + pos: -21.5,-26.5 + parent: 2 + - uid: 13645 + components: + - type: Transform + pos: -20.5,-26.5 + parent: 2 + - uid: 13646 + components: + - type: Transform + pos: -19.5,-26.5 + parent: 2 + - uid: 13647 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - uid: 13648 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 13649 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 2 + - uid: 13671 + components: + - type: Transform + pos: -21.5,-43.5 + parent: 2 + - uid: 13672 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 + - uid: 13673 + components: + - type: Transform + pos: -21.5,-41.5 + parent: 2 + - uid: 13866 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 13867 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 13868 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 13869 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + pos: 39.5,10.5 + parent: 2 + - uid: 13995 + components: + - type: Transform + pos: -14.5,-37.5 + parent: 2 + - uid: 14008 + components: + - type: Transform + pos: -17.5,4.5 + parent: 2 + - uid: 14009 + components: + - 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 + pos: -20.5,10.5 + parent: 2 + - uid: 14016 + components: + - type: Transform + pos: -20.5,9.5 + parent: 2 + - uid: 14017 + components: + - type: Transform + pos: -20.5,8.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: -20.5,7.5 + parent: 2 + - uid: 14019 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 + - uid: 14020 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 14021 + components: + - type: Transform + pos: -20.5,4.5 + parent: 2 + - uid: 14022 + components: + - type: Transform + pos: -19.5,4.5 + parent: 2 + - uid: 14023 + components: + - type: Transform + pos: -18.5,4.5 + parent: 2 + - uid: 14104 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 14105 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 14174 + components: + - type: Transform + pos: -15.5,-38.5 + parent: 2 + - uid: 14736 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 14747 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - uid: 14748 + components: + - type: Transform + pos: -11.5,-36.5 + parent: 2 + - uid: 14749 + components: + - type: Transform + pos: -10.5,-36.5 + parent: 2 + - uid: 14750 + components: + - type: Transform + pos: -9.5,-36.5 + parent: 2 + - uid: 14791 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - uid: 14792 + components: + - type: Transform + pos: -3.5,-40.5 + parent: 2 + - uid: 14793 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 14794 + components: + - type: Transform + pos: -3.5,-42.5 + parent: 2 + - uid: 14798 + components: + - type: Transform + pos: -8.5,-38.5 + parent: 2 + - uid: 14799 + components: + - type: Transform + pos: -8.5,-37.5 + parent: 2 + - uid: 14801 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 14802 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 14803 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 14804 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 14805 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 14806 + components: + - type: Transform + pos: -26.5,-38.5 + parent: 2 + - uid: 14807 + components: + - type: Transform + pos: -25.5,-38.5 + parent: 2 + - uid: 14808 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - uid: 14809 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 14810 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 2 + - uid: 14811 + components: + - type: Transform + pos: -21.5,-38.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: -20.5,-38.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - uid: 15203 + components: + - type: Transform + pos: -20.5,-29.5 + parent: 2 + - uid: 15204 + components: + - type: Transform + pos: -20.5,-30.5 + parent: 2 + - uid: 15205 + components: + - type: Transform + pos: -20.5,-31.5 + parent: 2 + - uid: 15207 + components: + - type: Transform + pos: -20.5,-33.5 + parent: 2 + - uid: 15208 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - uid: 15209 + components: + - type: Transform + pos: -20.5,-35.5 + parent: 2 + - uid: 15210 + components: + - type: Transform + pos: -20.5,-36.5 + parent: 2 + - uid: 15211 + components: + - type: Transform + pos: -20.5,-37.5 + parent: 2 + - uid: 15289 + components: + - type: Transform + pos: -7.5,38.5 + parent: 2 + - uid: 15290 + components: + - type: Transform + pos: -7.5,37.5 + parent: 2 + - uid: 15291 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 15292 + components: + - type: Transform + pos: -3.5,6.5 + parent: 2 + - uid: 15293 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 15379 + components: + - type: Transform + pos: 12.5,-13.5 + parent: 2 + - uid: 15380 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - uid: 15381 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - uid: 15382 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 15383 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 15388 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 15402 + components: + - type: Transform + pos: -43.5,-8.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 15404 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 15410 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 15411 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 15412 + components: + - type: Transform + pos: -42.5,-7.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: -41.5,-7.5 + parent: 2 + - uid: 15414 + components: + - type: Transform + pos: -40.5,-6.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + pos: -36.5,-6.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 15628 + components: + - type: Transform + pos: 46.5,-3.5 + parent: 2 + - uid: 15629 + components: + - type: Transform + pos: 46.5,-4.5 + parent: 2 + - uid: 15630 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 15631 + components: + - type: Transform + pos: 45.5,-5.5 + parent: 2 + - uid: 15632 + components: + - type: Transform + pos: 45.5,-6.5 + parent: 2 + - uid: 15633 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 15657 + components: + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 15666 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 15667 + components: + - type: Transform + pos: 24.5,-19.5 + parent: 2 + - uid: 15668 + components: + - type: Transform + pos: 25.5,-19.5 + parent: 2 + - uid: 15669 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 15670 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 15671 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 + - uid: 15771 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 15772 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 15773 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - uid: 15777 + components: + - type: Transform + pos: -32.5,-17.5 + parent: 2 + - uid: 15778 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 15779 + components: + - type: Transform + pos: -31.5,-18.5 + parent: 2 + - uid: 15780 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 15781 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 15782 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 15783 + components: + - type: Transform + pos: -30.5,-15.5 + parent: 2 + - uid: 15784 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - uid: 15785 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 + - uid: 15815 + components: + - type: Transform + pos: 40.5,-20.5 + parent: 2 + - uid: 15816 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 + - uid: 15817 + components: + - type: Transform + pos: 42.5,-19.5 + parent: 2 + - uid: 15818 + components: + - type: Transform + pos: 42.5,-20.5 + parent: 2 + - uid: 15819 + components: + - type: Transform + pos: 42.5,-21.5 + parent: 2 + - uid: 15820 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 + - uid: 15950 + components: + - type: Transform + pos: -42.5,-33.5 + parent: 2 + - uid: 15951 + components: + - type: Transform + pos: -46.5,-30.5 + parent: 2 + - uid: 15952 + components: + - type: Transform + pos: -42.5,-32.5 + parent: 2 + - uid: 15953 + components: + - type: Transform + pos: -42.5,-31.5 + parent: 2 + - uid: 16022 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 2 + - uid: 16023 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 16029 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 16030 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 16153 + components: + - type: Transform + pos: 3.5,39.5 + parent: 2 +- proto: CableMVStack + entities: + - uid: 5135 + components: + - type: Transform + pos: -23.525434,14.607347 + parent: 2 + - uid: 7467 + components: + - type: Transform + pos: -1.6238699,22.53835 + parent: 2 +- proto: CableMVStack10 + entities: + - uid: 8503 + components: + - type: Transform + pos: 31.406631,-18.137457 + parent: 2 + - uid: 8504 + components: + - type: Transform + pos: 40.430565,-18.243332 + parent: 2 +- proto: CableTerminal + entities: + - uid: 1984 + components: + - type: Transform + pos: 33.5,-8.5 + parent: 2 + - uid: 2188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-12.5 + parent: 2 + - uid: 2779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-30.5 + parent: 2 + - uid: 4119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-4.5 + parent: 2 + - uid: 6114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-12.5 + parent: 2 + - uid: 6115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-12.5 + parent: 2 + - uid: 6836 + components: + - type: Transform + pos: -32.5,28.5 + parent: 2 + - uid: 7435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,32.5 + parent: 2 + - uid: 11861 + components: + - type: Transform + pos: 35.5,-8.5 + parent: 2 + - uid: 11868 + components: + - type: Transform + pos: 34.5,-8.5 + parent: 2 + - uid: 15617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-4.5 + parent: 2 + - uid: 15652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-19.5 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 11350 + components: + - type: Transform + pos: -25.491215,-4.7091904 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 1071 + components: + - type: Transform + pos: 40.5,-29.5 + parent: 2 + - uid: 2436 + components: + - type: Transform + pos: 22.5,-39.5 + parent: 2 +- proto: Carpet + entities: + - uid: 6599 + components: + - type: Transform + pos: -11.5,-38.5 + parent: 2 + - uid: 6600 + components: + - type: Transform + pos: -11.5,-39.5 + parent: 2 +- proto: CarpetBlack + entities: + - uid: 3403 + components: + - type: Transform + pos: -33.5,-27.5 + parent: 2 + - uid: 3404 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - uid: 3405 + components: + - type: Transform + pos: -34.5,-27.5 + parent: 2 + - uid: 3406 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 + - uid: 3408 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - uid: 3409 + components: + - type: Transform + pos: -33.5,-23.5 + parent: 2 + - uid: 3410 + components: + - type: Transform + pos: -33.5,-22.5 + parent: 2 + - uid: 3411 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 + - uid: 3412 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - uid: 3413 + components: + - type: Transform + pos: -35.5,-22.5 + parent: 2 + - uid: 3414 + components: + - type: Transform + pos: -34.5,-22.5 + parent: 2 + - uid: 4928 + components: + - type: Transform + pos: -34.5,-25.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 6603 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 6604 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - uid: 6608 + components: + - type: Transform + pos: 9.5,-21.5 + parent: 2 + - uid: 6609 + components: + - type: Transform + pos: 9.5,-22.5 + parent: 2 +- proto: CarpetCyan + entities: + - uid: 6593 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 6594 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 6591 + components: + - type: Transform + pos: 1.5,35.5 + parent: 2 + - uid: 6592 + components: + - type: Transform + pos: 1.5,34.5 + parent: 2 + - uid: 12211 + components: + - type: Transform + pos: 41.5,-15.5 + parent: 2 + - uid: 12230 + components: + - type: Transform + pos: 42.5,-15.5 + parent: 2 +- proto: CarpetPink + entities: + - uid: 6605 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 6606 + components: + - type: Transform + pos: -16.5,7.5 + parent: 2 +- proto: CarrotSeeds + entities: + - uid: 15825 + components: + - type: Transform + pos: 13.83231,6.7838364 + parent: 2 +- proto: Catwalk + entities: + - uid: 171 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 2 + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,30.5 + parent: 2 + - uid: 866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,30.5 + parent: 2 + - uid: 874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - uid: 994 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 2 + - uid: 995 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 2 + - uid: 997 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 998 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 2 + - uid: 1000 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 2 + - uid: 1001 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 2 + - uid: 1002 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + pos: 13.5,-6.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + pos: 13.5,-5.5 + parent: 2 + - uid: 1007 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 2 + - uid: 1008 + components: + - type: Transform + pos: 13.5,-3.5 + parent: 2 + - uid: 1009 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: -1.5,13.5 + parent: 2 + - uid: 1011 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 2.5,13.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 0.5,13.5 + parent: 2 + - uid: 1015 + components: + - type: Transform + pos: 10.5,13.5 + parent: 2 + - uid: 1016 + components: + - type: Transform + pos: 10.5,12.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 + - uid: 1019 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 1020 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 1021 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 1105 + components: + - type: Transform + pos: 33.5,-2.5 + parent: 2 + - uid: 1109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-11.5 + parent: 2 + - uid: 1120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 2 + - uid: 1132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-21.5 + parent: 2 + - uid: 1133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 2 + - uid: 1134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-10.5 + parent: 2 + - uid: 1135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-10.5 + parent: 2 + - uid: 1139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 2 + - uid: 1175 + components: + - type: Transform + pos: 41.5,-3.5 + parent: 2 + - uid: 1177 + components: + - type: Transform + pos: 41.5,-4.5 + parent: 2 + - uid: 1185 + components: + - type: Transform + pos: 42.5,-4.5 + parent: 2 + - uid: 1212 + components: + - type: Transform + pos: 27.5,-12.5 + parent: 2 + - uid: 1214 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 26.5,-2.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-20.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-21.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-19.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-21.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: 37.5,-9.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: 33.5,-6.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: 37.5,-11.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 1555 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - uid: 1556 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - uid: 1558 + components: + - type: Transform + pos: 37.5,-8.5 + parent: 2 + - uid: 1559 + components: + - type: Transform + pos: 37.5,-10.5 + parent: 2 + - uid: 1560 + components: + - type: Transform + pos: 33.5,-5.5 + parent: 2 + - uid: 1567 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 + - uid: 1584 + components: + - type: Transform + pos: -22.5,41.5 + parent: 2 + - uid: 2006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-10.5 + parent: 2 + - uid: 2522 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 + - uid: 2524 + components: + - type: Transform + pos: 43.5,-3.5 + parent: 2 + - uid: 2533 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 2 + - uid: 2552 + components: + - type: Transform + pos: -25.5,-13.5 + parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 2567 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 2570 + components: + - type: Transform + pos: 33.5,-3.5 + parent: 2 + - uid: 2584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-43.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: 40.5,-10.5 + parent: 2 + - uid: 2594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-10.5 + parent: 2 + - uid: 2679 + components: + - type: Transform + pos: 41.5,-9.5 + parent: 2 + - uid: 2684 + components: + - type: Transform + pos: 30.5,-9.5 + parent: 2 + - uid: 2686 + components: + - type: Transform + pos: 30.5,-10.5 + parent: 2 + - uid: 2687 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 2688 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 2711 + components: + - type: Transform + pos: 42.5,-9.5 + parent: 2 + - uid: 2713 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 2719 + components: + - type: Transform + pos: 43.5,-9.5 + parent: 2 + - uid: 2720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-40.5 + parent: 2 + - uid: 2724 + components: + - type: Transform + pos: 33.5,-4.5 + parent: 2 + - uid: 2728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-11.5 + parent: 2 + - uid: 2730 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 + - uid: 2758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-41.5 + parent: 2 + - uid: 2761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-44.5 + parent: 2 + - uid: 2833 + components: + - type: Transform + pos: 16.5,-54.5 + parent: 2 + - uid: 2834 + components: + - type: Transform + pos: 16.5,-50.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + pos: 29.5,49.5 + parent: 2 + - uid: 2943 + components: + - type: Transform + pos: 26.5,-34.5 + parent: 2 + - uid: 2944 + components: + - type: Transform + pos: 26.5,-35.5 + parent: 2 + - uid: 2945 + components: + - type: Transform + pos: 26.5,-36.5 + parent: 2 + - uid: 2946 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 + - uid: 2947 + components: + - type: Transform + pos: 26.5,-38.5 + parent: 2 + - uid: 2948 + components: + - type: Transform + pos: 26.5,-39.5 + parent: 2 + - uid: 2949 + components: + - type: Transform + pos: 26.5,-40.5 + parent: 2 + - uid: 2950 + components: + - type: Transform + pos: 36.5,-34.5 + parent: 2 + - uid: 2951 + components: + - type: Transform + pos: 36.5,-36.5 + parent: 2 + - uid: 2952 + components: + - type: Transform + pos: 36.5,-35.5 + parent: 2 + - uid: 2953 + components: + - type: Transform + pos: 36.5,-38.5 + parent: 2 + - uid: 2954 + components: + - type: Transform + pos: 36.5,-39.5 + parent: 2 + - uid: 2955 + components: + - type: Transform + pos: 36.5,-40.5 + parent: 2 + - uid: 2956 + components: + - type: Transform + pos: 36.5,-37.5 + parent: 2 + - uid: 3042 + components: + - type: Transform + pos: -12.5,-41.5 + parent: 2 + - uid: 3954 + components: + - type: Transform + pos: 23.5,2.5 + parent: 2 + - uid: 4213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,32.5 + parent: 2 + - uid: 4256 + components: + - type: Transform + pos: 16.5,-51.5 + parent: 2 + - uid: 4335 + components: + - type: Transform + pos: -18.5,-46.5 + parent: 2 + - uid: 5067 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 2 + - uid: 5477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-10.5 + parent: 2 + - uid: 5544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,34.5 + parent: 2 + - uid: 5546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,34.5 + parent: 2 + - uid: 5547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,34.5 + parent: 2 + - uid: 5552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,32.5 + parent: 2 + - uid: 5553 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 + - uid: 5554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,30.5 + parent: 2 + - uid: 5576 + components: + - type: Transform + pos: 41.5,-11.5 + parent: 2 + - uid: 5989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + - uid: 5990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-6.5 + parent: 2 + - uid: 5991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 2 + - uid: 5992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 6040 + components: + - type: Transform + pos: -11.5,-41.5 + parent: 2 + - uid: 6041 + components: + - type: Transform + pos: -10.5,-41.5 + parent: 2 + - uid: 6117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-39.5 + parent: 2 + - uid: 6720 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 7121 + components: + - type: Transform + pos: -22.5,40.5 + parent: 2 + - uid: 7913 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 2 + - uid: 8112 + components: + - type: Transform + pos: 14.5,-54.5 + parent: 2 + - uid: 8250 + components: + - type: Transform + pos: 26.5,-27.5 + parent: 2 + - uid: 8287 + components: + - type: Transform + pos: 31.5,45.5 + parent: 2 + - uid: 8288 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - uid: 8289 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 8290 + components: + - type: Transform + pos: 31.5,-21.5 + parent: 2 + - uid: 8291 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 8292 + components: + - type: Transform + pos: 27.5,-21.5 + parent: 2 + - uid: 8293 + components: + - type: Transform + pos: 31.5,-9.5 + parent: 2 + - uid: 8320 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 8321 + components: + - type: Transform + pos: 31.5,-8.5 + parent: 2 + - uid: 8322 + components: + - type: Transform + pos: 25.5,-21.5 + parent: 2 + - uid: 8323 + components: + - type: Transform + pos: 31.5,-22.5 + parent: 2 + - uid: 8324 + components: + - type: Transform + pos: 31.5,-23.5 + parent: 2 + - uid: 8326 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 + - uid: 8336 + components: + - type: Transform + pos: 35.5,-16.5 + parent: 2 + - uid: 8337 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 + - uid: 8338 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 8339 + components: + - type: Transform + pos: 30.5,-27.5 + parent: 2 + - uid: 8340 + components: + - type: Transform + pos: 30.5,-28.5 + parent: 2 + - uid: 8341 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - uid: 8342 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 8343 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 + - uid: 8352 + components: + - type: Transform + pos: 32.5,-28.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: 22.5,-11.5 + parent: 2 + - uid: 8355 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 8358 + components: + - type: Transform + pos: 26.5,-29.5 + parent: 2 + - uid: 8359 + components: + - type: Transform + pos: 42.5,-30.5 + parent: 2 + - uid: 8360 + components: + - type: Transform + pos: 42.5,-31.5 + parent: 2 + - uid: 8361 + components: + - type: Transform + pos: 26.5,-28.5 + parent: 2 + - uid: 8362 + components: + - type: Transform + pos: 38.5,-28.5 + parent: 2 + - uid: 8363 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 2 + - uid: 8364 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 8366 + components: + - type: Transform + pos: 38.5,-29.5 + parent: 2 + - uid: 8367 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 + - uid: 8368 + components: + - type: Transform + pos: 39.5,-27.5 + parent: 2 + - uid: 8369 + components: + - type: Transform + pos: 39.5,-28.5 + parent: 2 + - uid: 8370 + components: + - type: Transform + pos: 39.5,-29.5 + parent: 2 + - uid: 8371 + components: + - type: Transform + pos: 39.5,-30.5 + parent: 2 + - uid: 8372 + components: + - type: Transform + pos: 39.5,-31.5 + parent: 2 + - uid: 8373 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 2 + - uid: 8374 + components: + - type: Transform + pos: 29.5,41.5 + parent: 2 + - uid: 8375 + components: + - type: Transform + pos: 16.5,-37.5 + parent: 2 + - uid: 8376 + components: + - type: Transform + pos: 16.5,-38.5 + parent: 2 + - uid: 8377 + components: + - type: Transform + pos: 16.5,-39.5 + parent: 2 + - uid: 8378 + components: + - type: Transform + pos: 29.5,40.5 + parent: 2 + - uid: 8379 + components: + - type: Transform + pos: 16.5,-41.5 + parent: 2 + - uid: 8380 + components: + - type: Transform + pos: 16.5,-42.5 + parent: 2 + - uid: 8381 + components: + - type: Transform + pos: 16.5,-43.5 + parent: 2 + - uid: 8382 + components: + - type: Transform + pos: 29.5,42.5 + parent: 2 + - uid: 8383 + components: + - type: Transform + pos: 16.5,-45.5 + parent: 2 + - uid: 8384 + components: + - type: Transform + pos: 16.5,-46.5 + parent: 2 + - uid: 8385 + components: + - type: Transform + pos: 16.5,-47.5 + parent: 2 + - uid: 8386 + components: + - type: Transform + pos: 29.5,44.5 + parent: 2 + - uid: 8387 + components: + - type: Transform + pos: 16.5,-49.5 + parent: 2 + - uid: 8389 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 8390 + components: + - type: Transform + pos: 14.5,-46.5 + parent: 2 + - uid: 8391 + components: + - type: Transform + pos: 14.5,-50.5 + parent: 2 + - uid: 8392 + components: + - type: Transform + pos: 14.5,-42.5 + parent: 2 + - uid: 8393 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 2 + - uid: 8394 + components: + - type: Transform + pos: 29.5,46.5 + parent: 2 + - uid: 8395 + components: + - type: Transform + pos: 29.5,45.5 + parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 31.5,37.5 + parent: 2 + - uid: 8397 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 2 + - uid: 8398 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 2 + - uid: 8399 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 2 + - uid: 8400 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 8401 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 2 + - uid: 8402 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 + - uid: 8403 + components: + - type: Transform + pos: 29.5,48.5 + parent: 2 + - uid: 8433 + components: + - type: Transform + pos: 31.5,49.5 + parent: 2 + - uid: 8435 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 8436 + components: + - type: Transform + pos: 29.5,38.5 + parent: 2 + - uid: 8437 + components: + - type: Transform + pos: 29.5,36.5 + parent: 2 + - uid: 8438 + components: + - type: Transform + pos: 29.5,37.5 + parent: 2 + - uid: 8439 + components: + - type: Transform + pos: 34.5,32.5 + parent: 2 + - uid: 8440 + components: + - type: Transform + pos: 34.5,31.5 + parent: 2 + - uid: 8441 + components: + - type: Transform + pos: 35.5,32.5 + parent: 2 + - uid: 8442 + components: + - type: Transform + pos: 35.5,31.5 + parent: 2 + - uid: 8443 + components: + - type: Transform + pos: 36.5,32.5 + parent: 2 + - uid: 8444 + components: + - type: Transform + pos: 36.5,31.5 + parent: 2 + - uid: 8447 + components: + - type: Transform + pos: 51.5,18.5 + parent: 2 + - uid: 8448 + components: + - type: Transform + pos: 51.5,17.5 + parent: 2 + - uid: 8449 + components: + - type: Transform + pos: 52.5,18.5 + parent: 2 + - uid: 8450 + components: + - type: Transform + pos: 52.5,17.5 + parent: 2 + - uid: 8451 + components: + - type: Transform + pos: 51.5,19.5 + parent: 2 + - uid: 8452 + components: + - type: Transform + pos: 51.5,16.5 + parent: 2 + - uid: 8453 + components: + - type: Transform + pos: 54.5,9.5 + parent: 2 + - uid: 8454 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 8455 + components: + - type: Transform + pos: 54.5,7.5 + parent: 2 + - uid: 8456 + components: + - type: Transform + pos: 53.5,7.5 + parent: 2 + - uid: 8458 + components: + - type: Transform + pos: 53.5,9.5 + parent: 2 + - uid: 8459 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 8460 + components: + - type: Transform + pos: 23.5,51.5 + parent: 2 + - uid: 8461 + components: + - type: Transform + pos: 23.5,53.5 + parent: 2 + - uid: 8462 + components: + - type: Transform + pos: 23.5,45.5 + parent: 2 + - uid: 8464 + components: + - 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 + pos: 42.5,-33.5 + parent: 2 + - uid: 8471 + components: + - type: Transform + pos: 23.5,52.5 + parent: 2 + - uid: 8472 + components: + - type: Transform + pos: 23.5,46.5 + parent: 2 + - uid: 8473 + components: + - type: Transform + pos: 23.5,48.5 + parent: 2 + - uid: 8474 + components: + - type: Transform + pos: 23.5,49.5 + parent: 2 + - uid: 8475 + components: + - type: Transform + pos: 23.5,47.5 + parent: 2 + - uid: 8476 + components: + - type: Transform + pos: 44.5,-19.5 + parent: 2 + - uid: 8477 + components: + - type: Transform + pos: 44.5,-20.5 + parent: 2 + - uid: 8478 + components: + - type: Transform + pos: 44.5,-21.5 + parent: 2 + - uid: 8479 + components: + - type: Transform + pos: 39.5,-24.5 + parent: 2 + - uid: 8480 + components: + - type: Transform + pos: 40.5,-24.5 + parent: 2 + - uid: 8481 + components: + - type: Transform + pos: 42.5,-24.5 + parent: 2 + - uid: 9122 + components: + - type: Transform + pos: -3.5,24.5 + parent: 2 + - uid: 9123 + components: + - type: Transform + pos: -2.5,24.5 + parent: 2 + - uid: 9617 + components: + - type: Transform + pos: 16.5,-55.5 + parent: 2 + - uid: 10412 + components: + - type: Transform + pos: 29.5,52.5 + parent: 2 + - uid: 10449 + components: + - type: Transform + pos: 29.5,53.5 + parent: 2 + - uid: 10455 + components: + - type: Transform + pos: 29.5,54.5 + parent: 2 + - uid: 10507 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,55.5 + parent: 2 + - uid: 10518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-41.5 + parent: 2 + - uid: 10519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-42.5 + parent: 2 + - uid: 10520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-41.5 + parent: 2 + - uid: 10521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-42.5 + parent: 2 + - uid: 10522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-41.5 + parent: 2 + - uid: 10523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-42.5 + parent: 2 + - uid: 10524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-35.5 + parent: 2 + - uid: 10525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-36.5 + parent: 2 + - uid: 10526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-37.5 + parent: 2 + - uid: 10527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-38.5 + parent: 2 + - uid: 10533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-45.5 + parent: 2 + - uid: 10534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-45.5 + parent: 2 + - uid: 10536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-46.5 + parent: 2 + - uid: 10538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-46.5 + parent: 2 + - uid: 10542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-46.5 + parent: 2 + - uid: 10544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-46.5 + parent: 2 + - uid: 10546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-46.5 + parent: 2 + - uid: 10547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-45.5 + parent: 2 + - uid: 10548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-44.5 + parent: 2 + - uid: 10549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-43.5 + parent: 2 + - uid: 10550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-42.5 + parent: 2 + - uid: 10551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-41.5 + parent: 2 + - uid: 10560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-27.5 + parent: 2 + - uid: 10561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-25.5 + parent: 2 + - uid: 10562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-27.5 + parent: 2 + - uid: 10563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-26.5 + parent: 2 + - uid: 10564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-25.5 + parent: 2 + - uid: 10565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-26.5 + parent: 2 + - uid: 10566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-22.5 + parent: 2 + - uid: 10567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-21.5 + parent: 2 + - uid: 10568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-20.5 + parent: 2 + - uid: 10569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-19.5 + parent: 2 + - uid: 10571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-15.5 + parent: 2 + - uid: 10572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-15.5 + parent: 2 + - uid: 10573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-14.5 + parent: 2 + - uid: 10574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - uid: 10575 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 + - uid: 10576 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-14.5 + parent: 2 + - uid: 10577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-15.5 + parent: 2 + - uid: 10578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - uid: 10579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + - uid: 10580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + - uid: 10581 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + - uid: 10582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 2 + - uid: 10583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-28.5 + parent: 2 + - uid: 10584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-26.5 + parent: 2 + - uid: 10585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-25.5 + parent: 2 + - uid: 10586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 2 + - uid: 10587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 10588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 + - uid: 10589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 + - uid: 10590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 10591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 2 + - uid: 10592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 2 + - uid: 10593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-29.5 + parent: 2 + - uid: 10594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 2 + - uid: 10595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-29.5 + parent: 2 + - uid: 10596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-27.5 + parent: 2 + - uid: 10597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-28.5 + parent: 2 + - uid: 10598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,5.5 + parent: 2 + - uid: 10599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 2 + - uid: 10600 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,5.5 + parent: 2 + - uid: 10601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,4.5 + parent: 2 + - uid: 10602 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,4.5 + parent: 2 + - uid: 10603 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + - uid: 10604 + components: + - type: Transform + 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 + rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 2 + - uid: 10609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - uid: 10610 + components: + - type: Transform + 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 + rot: 1.5707963267948966 rad + pos: -21.5,29.5 + parent: 2 + - uid: 10613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,31.5 + parent: 2 + - uid: 10614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,32.5 + parent: 2 + - uid: 10615 + components: + - type: Transform + 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 + rot: 1.5707963267948966 rad + pos: -25.5,28.5 + parent: 2 + - uid: 10618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,28.5 + parent: 2 + - uid: 10619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,28.5 + parent: 2 + - uid: 10620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,28.5 + parent: 2 + - uid: 10622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - uid: 10623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,29.5 + parent: 2 + - uid: 10624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,29.5 + parent: 2 + - uid: 10625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,30.5 + parent: 2 + - uid: 10626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,30.5 + parent: 2 + - uid: 10627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,30.5 + parent: 2 + - uid: 10628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,29.5 + parent: 2 + - uid: 10629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,24.5 + parent: 2 + - uid: 10630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 2 + - uid: 10631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,24.5 + parent: 2 + - uid: 10632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - uid: 10633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,26.5 + parent: 2 + - uid: 10634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,27.5 + parent: 2 + - uid: 10635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,28.5 + parent: 2 + - uid: 10636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,29.5 + parent: 2 + - uid: 10637 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,30.5 + parent: 2 + - uid: 10638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,40.5 + parent: 2 + - uid: 10639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,39.5 + parent: 2 + - uid: 10640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,38.5 + parent: 2 + - uid: 10641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,37.5 + parent: 2 + - uid: 10642 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,35.5 + parent: 2 + - uid: 10643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,34.5 + parent: 2 + - uid: 10644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,33.5 + parent: 2 + - uid: 10645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,32.5 + parent: 2 + - uid: 10646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,32.5 + parent: 2 + - uid: 10647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,32.5 + parent: 2 + - uid: 10648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,48.5 + parent: 2 + - uid: 10649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,47.5 + parent: 2 + - uid: 10650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,48.5 + parent: 2 + - uid: 10651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,47.5 + parent: 2 + - uid: 10652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,43.5 + parent: 2 + - uid: 10653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,44.5 + parent: 2 + - uid: 10654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,54.5 + parent: 2 + - uid: 10655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,54.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,53.5 + parent: 2 + - uid: 10657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,53.5 + parent: 2 + - uid: 10658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,55.5 + parent: 2 + - uid: 10659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,55.5 + parent: 2 + - uid: 10660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,55.5 + parent: 2 + - uid: 10661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,54.5 + parent: 2 + - uid: 10662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,55.5 + parent: 2 + - uid: 10663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,54.5 + parent: 2 + - uid: 10664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,55.5 + parent: 2 + - uid: 10665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 + - uid: 10666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - uid: 10667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - uid: 10668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,22.5 + parent: 2 + - uid: 10669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,25.5 + parent: 2 + - uid: 10670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,26.5 + parent: 2 + - uid: 10672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,28.5 + parent: 2 + - uid: 10673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,28.5 + parent: 2 + - uid: 10674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,32.5 + parent: 2 + - uid: 10675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,31.5 + parent: 2 + - uid: 10676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,32.5 + parent: 2 + - uid: 10677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,31.5 + parent: 2 + - uid: 10678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,32.5 + parent: 2 + - uid: 10679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,31.5 + parent: 2 + - uid: 10680 + components: + - type: Transform + pos: 31.5,53.5 + parent: 2 + - uid: 10682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,34.5 + parent: 2 + - uid: 10683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 + - uid: 10684 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,28.5 + parent: 2 + - uid: 10685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - uid: 10686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + - uid: 10687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + - uid: 10688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,28.5 + parent: 2 + - uid: 10689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,28.5 + parent: 2 + - uid: 10690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,28.5 + parent: 2 + - uid: 10691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - uid: 10692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,25.5 + parent: 2 + - uid: 10693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,24.5 + parent: 2 + - uid: 10694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,23.5 + parent: 2 + - uid: 10695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,29.5 + parent: 2 + - uid: 10696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,29.5 + parent: 2 + - uid: 10697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,29.5 + parent: 2 + - uid: 10698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,28.5 + parent: 2 + - uid: 10699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,27.5 + parent: 2 + - uid: 10700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,26.5 + parent: 2 + - uid: 10701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,28.5 + parent: 2 + - uid: 10702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,27.5 + parent: 2 + - uid: 10703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,26.5 + parent: 2 + - uid: 10704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + - uid: 10705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,23.5 + parent: 2 + - uid: 10706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,22.5 + parent: 2 + - uid: 10707 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,24.5 + parent: 2 + - uid: 10708 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,23.5 + parent: 2 + - uid: 10709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,22.5 + parent: 2 + - uid: 10710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - uid: 10711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,22.5 + parent: 2 + - uid: 10712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,22.5 + parent: 2 + - uid: 10713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,17.5 + parent: 2 + - uid: 10714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,18.5 + parent: 2 + - uid: 10715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,19.5 + parent: 2 + - uid: 10720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,12.5 + parent: 2 + - uid: 10721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,11.5 + parent: 2 + - uid: 10722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,20.5 + parent: 2 + - uid: 10723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,20.5 + parent: 2 + - uid: 10724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 2 + - uid: 10725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,9.5 + parent: 2 + - uid: 10726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,9.5 + parent: 2 + - uid: 10727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,8.5 + parent: 2 + - uid: 10728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,7.5 + parent: 2 + - uid: 10729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,7.5 + parent: 2 + - uid: 10730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,5.5 + parent: 2 + - uid: 10731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,4.5 + parent: 2 + - uid: 10732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,5.5 + parent: 2 + - uid: 10733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,4.5 + parent: 2 + - uid: 10734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,2.5 + parent: 2 + - uid: 10735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,3.5 + parent: 2 + - uid: 10736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 2 + - uid: 10737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 2 + - uid: 10738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 52.5,-0.5 + parent: 2 + - uid: 10739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 + - uid: 10740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + - uid: 10741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,1.5 + parent: 2 + - uid: 10742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,1.5 + parent: 2 + - uid: 10743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,2.5 + parent: 2 + - uid: 10744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,3.5 + parent: 2 + - uid: 10745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + - uid: 10746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + - uid: 10747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 10748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - uid: 10749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - uid: 10750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + - uid: 10751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + - uid: 10752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + - uid: 10753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - uid: 10759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-13.5 + parent: 2 + - uid: 10760 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-14.5 + parent: 2 + - uid: 10761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-15.5 + parent: 2 + - uid: 10763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-21.5 + parent: 2 + - uid: 10764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-21.5 + parent: 2 + - uid: 10765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 2 + - uid: 10766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-21.5 + parent: 2 + - uid: 10767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 2 + - uid: 10768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-27.5 + parent: 2 + - uid: 10770 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-27.5 + parent: 2 + - uid: 10771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 2 + - uid: 10772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 2 + - uid: 10773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 2 + - uid: 10774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 2 + - uid: 10778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - uid: 10779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 2 + - uid: 10780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-24.5 + parent: 2 + - uid: 10781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 2 + - uid: 10782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 2 + - uid: 10783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-22.5 + parent: 2 + - uid: 10784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-23.5 + parent: 2 + - uid: 10785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-21.5 + parent: 2 + - uid: 10786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-22.5 + parent: 2 + - uid: 10787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-23.5 + parent: 2 + - uid: 10788 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 2 + - uid: 10789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-30.5 + parent: 2 + - uid: 10790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - uid: 10791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-30.5 + parent: 2 + - uid: 10792 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 2 + - uid: 10793 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-30.5 + parent: 2 + - uid: 10794 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 2 + - uid: 10795 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-24.5 + parent: 2 + - uid: 10796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 2 + - uid: 10797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 2 + - uid: 10798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 2 + - uid: 10807 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - uid: 10808 + components: + - type: Transform + pos: -38.5,-18.5 + parent: 2 + - uid: 10818 + components: + - type: Transform + pos: -39.5,-19.5 + parent: 2 + - uid: 10831 + components: + - type: Transform + pos: 10.5,17.5 + parent: 2 + - uid: 11362 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 11363 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 11364 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 11365 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - uid: 11366 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - uid: 11367 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - uid: 11368 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - uid: 11370 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - uid: 11374 + components: + - type: Transform + pos: 1.5,16.5 + parent: 2 + - uid: 11375 + components: + - type: Transform + pos: 2.5,17.5 + parent: 2 + - uid: 11376 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 11874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-37.5 + parent: 2 + - uid: 12672 + components: + - type: Transform + pos: 16.5,-53.5 + parent: 2 + - uid: 12722 + components: + - type: Transform + pos: 29.5,50.5 + parent: 2 + - uid: 12832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-37.5 + parent: 2 + - uid: 12888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,32.5 + parent: 2 + - uid: 13489 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 + - uid: 13523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,32.5 + parent: 2 + - uid: 13738 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 + - uid: 14037 + components: + - type: Transform + pos: 23.5,-3.5 + parent: 2 + - uid: 14038 + components: + - type: Transform + pos: 17.5,-3.5 + parent: 2 + - uid: 14042 + components: + - type: Transform + pos: -37.5,-18.5 + parent: 2 + - uid: 14043 + components: + - type: Transform + pos: -37.5,-17.5 + parent: 2 + - uid: 14044 + components: + - type: Transform + pos: -38.5,-19.5 + parent: 2 + - uid: 14047 + components: + - type: Transform + pos: -37.5,-19.5 + parent: 2 + - uid: 14059 + components: + - type: Transform + pos: -30.5,-16.5 + parent: 2 + - uid: 14060 + components: + - type: Transform + pos: -30.5,-17.5 + parent: 2 + - uid: 14061 + components: + - type: Transform + pos: -30.5,-18.5 + parent: 2 + - uid: 14062 + components: + - type: Transform + pos: -38.5,-26.5 + parent: 2 + - uid: 14063 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - uid: 14064 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - uid: 14065 + components: + - type: Transform + pos: -31.5,-17.5 + parent: 2 + - uid: 14066 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - uid: 14067 + components: + - type: Transform + pos: -9.5,39.5 + parent: 2 + - uid: 14068 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 14069 + components: + - type: Transform + pos: -39.5,-18.5 + parent: 2 + - uid: 14070 + components: + - type: Transform + pos: -39.5,-17.5 + parent: 2 + - uid: 14071 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - uid: 14072 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 14073 + components: + - type: Transform + pos: 8.5,17.5 + parent: 2 + - uid: 14074 + components: + - type: Transform + pos: 8.5,16.5 + parent: 2 + - uid: 14075 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 14076 + components: + - type: Transform + pos: 9.5,16.5 + parent: 2 + - uid: 14077 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 14078 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 + - uid: 14079 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - uid: 14080 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 14081 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 14082 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - uid: 14083 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - uid: 14084 + components: + - type: Transform + pos: 21.5,-6.5 + parent: 2 + - uid: 14085 + components: + - type: Transform + pos: 23.5,-8.5 + parent: 2 + - uid: 14086 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 14087 + components: + - type: Transform + pos: 23.5,-7.5 + parent: 2 + - uid: 14088 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 14089 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 14090 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 14091 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 14092 + components: + - type: Transform + pos: 21.5,-5.5 + parent: 2 + - uid: 14122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 14142 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - uid: 14143 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - uid: 14144 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - uid: 14145 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - uid: 14146 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - uid: 14147 + components: + - type: Transform + pos: -38.5,-21.5 + parent: 2 + - uid: 14148 + components: + - type: Transform + pos: -38.5,-22.5 + parent: 2 + - uid: 14149 + components: + - type: Transform + pos: -38.5,-23.5 + parent: 2 + - uid: 14150 + components: + - type: Transform + pos: -38.5,-24.5 + parent: 2 + - uid: 14151 + components: + - type: Transform + pos: -38.5,-25.5 + parent: 2 + - uid: 14152 + components: + - type: Transform + pos: -35.5,-17.5 + parent: 2 + - uid: 14153 + components: + - type: Transform + pos: -35.5,-18.5 + parent: 2 + - uid: 14154 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 14155 + components: + - type: Transform + pos: -34.5,-18.5 + parent: 2 + - uid: 14156 + components: + - type: Transform + pos: -33.5,-17.5 + parent: 2 + - uid: 14157 + components: + - type: Transform + pos: -33.5,-18.5 + parent: 2 + - uid: 14223 + components: + - type: Transform + pos: 10.5,20.5 + parent: 2 + - uid: 14224 + components: + - type: Transform + pos: 11.5,20.5 + parent: 2 + - uid: 14269 + components: + - type: Transform + pos: -70.5,-30.5 + parent: 2 + - uid: 14275 + components: + - type: Transform + pos: -70.5,-31.5 + parent: 2 + - uid: 14276 + components: + - type: Transform + pos: -70.5,-29.5 + parent: 2 + - uid: 14277 + components: + - type: Transform + pos: -68.5,-30.5 + parent: 2 + - uid: 14281 + components: + - type: Transform + pos: -52.5,-14.5 + parent: 2 + - uid: 14282 + components: + - 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: 14485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,57.5 + parent: 2 + - uid: 14674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,56.5 + parent: 2 + - uid: 14820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-10.5 + parent: 2 + - uid: 14821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-10.5 + parent: 2 + - uid: 15253 + components: + - type: Transform + pos: -8.5,-40.5 + parent: 2 + - uid: 15315 + components: + - type: Transform + pos: 6.5,-29.5 + parent: 2 + - uid: 15316 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 15327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 15372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-9.5 + parent: 2 + - uid: 15373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,-9.5 + parent: 2 + - uid: 15639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-5.5 + parent: 2 + - uid: 15640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-4.5 + parent: 2 + - uid: 15641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-4.5 + parent: 2 + - uid: 15642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-4.5 + parent: 2 + - uid: 15643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-5.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-6.5 + parent: 2 + - uid: 15645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-6.5 + parent: 2 + - uid: 15646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-6.5 + parent: 2 + - uid: 15647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-5.5 + parent: 2 + - uid: 15727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,38.5 + parent: 2 + - uid: 15728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,37.5 + parent: 2 + - uid: 15729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,36.5 + parent: 2 + - uid: 15839 + components: + - type: Transform + pos: 43.5,-1.5 + parent: 2 + - uid: 16027 + components: + - type: Transform + pos: -22.5,42.5 + parent: 2 + - uid: 16028 + components: + - type: Transform + pos: -22.5,43.5 + parent: 2 + - uid: 16090 + components: + - type: Transform + pos: -22.5,44.5 + parent: 2 + - uid: 16091 + components: + - type: Transform + pos: -22.5,45.5 + parent: 2 + - uid: 16092 + components: + - type: Transform + pos: -22.5,52.5 + parent: 2 + - uid: 16093 + components: + - type: Transform + pos: -22.5,51.5 + parent: 2 + - uid: 16094 + components: + - type: Transform + pos: -22.5,50.5 + parent: 2 + - uid: 16095 + components: + - type: Transform + pos: -21.5,52.5 + parent: 2 + - uid: 16096 + components: + - type: Transform + pos: -21.5,51.5 + parent: 2 + - uid: 16097 + components: + - type: Transform + pos: -21.5,50.5 + parent: 2 + - uid: 16189 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 16191 + components: + - type: Transform + pos: 36.5,-16.5 + parent: 2 +- proto: CellRechargerCircuitboard + entities: + - uid: 8500 + components: + - type: Transform + pos: 28.398209,-2.4964504 + parent: 2 +- proto: CentrifugeMachineCircuitboard + entities: + - uid: 13785 + components: + - type: Transform + pos: 27.671509,37.939373 + parent: 2 +- proto: Chair + entities: + - uid: 211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 2 + - uid: 212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 2 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,0.5 + parent: 2 + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + - uid: 231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 2 + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 1066 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 2 + - uid: 1067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 2 + - uid: 1068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-21.5 + parent: 2 + - uid: 1069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-22.5 + parent: 2 + - uid: 1070 + components: + - type: Transform + pos: 33.5,-19.5 + parent: 2 + - uid: 1684 + components: + - type: Transform + pos: 16.5,-0.5 + parent: 2 + - uid: 1687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 2 + - uid: 2025 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 2146 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 2 + - uid: 2147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-34.5 + parent: 2 + - uid: 2148 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - uid: 4112 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 4113 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 4708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 2 + - uid: 4709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,3.5 + parent: 2 + - uid: 4710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,7.5 + parent: 2 + - uid: 4711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,7.5 + parent: 2 + - uid: 6036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - uid: 6722 + components: + - type: Transform + pos: -29.5,32.5 + parent: 2 + - uid: 6723 + components: + - type: Transform + pos: -27.5,32.5 + parent: 2 + - uid: 7676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,39.5 + parent: 2 + - uid: 7677 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,39.5 + parent: 2 + - uid: 8280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-31.5 + parent: 2 + - uid: 9374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,26.5 + parent: 2 + - uid: 9375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,26.5 + parent: 2 + - uid: 9376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,22.5 + parent: 2 + - uid: 9377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,22.5 + parent: 2 + - uid: 9506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 2 + - uid: 9560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,28.5 + parent: 2 + - uid: 9607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,47.5 + parent: 2 + - uid: 9608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,46.5 + parent: 2 + - uid: 9609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,45.5 + parent: 2 + - uid: 9610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,40.5 + parent: 2 + - uid: 9611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,39.5 + parent: 2 + - uid: 9612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,39.5 + parent: 2 + - uid: 9613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,38.5 + parent: 2 + - uid: 10543 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-42.5 + parent: 2 + - uid: 10919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-13.5 + parent: 2 + - uid: 11099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-13.5 + parent: 2 + - uid: 12614 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 12762 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 13683 + components: + - type: Transform + pos: -10.5,11.5 + parent: 2 + - uid: 13684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 2 + - uid: 14045 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 2 + - uid: 14046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-31.5 + parent: 2 + - uid: 14048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,-31.5 + parent: 2 + - uid: 14049 + components: + - type: Transform + pos: -48.5,-29.5 + parent: 2 + - uid: 14050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-31.5 + parent: 2 + - uid: 14093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-31.5 + parent: 2 + - uid: 14094 + components: + - type: Transform + pos: -50.5,-29.5 + parent: 2 + - uid: 14095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-31.5 + parent: 2 + - uid: 14139 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 14167 + components: + - type: Transform + pos: -57.5,-29.5 + parent: 2 + - uid: 14168 + components: + - type: Transform + pos: -56.5,-29.5 + parent: 2 + - uid: 14204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 2 + - uid: 14630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 2 + - uid: 14631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 2 + - uid: 15360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,30.5 + parent: 2 + - uid: 15361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - uid: 15362 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,30.5 + parent: 2 + - uid: 16041 + components: + - type: Transform + pos: -10.5,58.5 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 1052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.435757,-9.759849 + parent: 2 + - uid: 1310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.538269,-11.297682 + parent: 2 + - uid: 1785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.457573,-17.462608 + parent: 2 + - uid: 2039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.443111,-20.86026 + parent: 2 + - uid: 2151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.96229506,-33.24098 + parent: 2 + - uid: 2157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.384821,-33.347046 + parent: 2 + - uid: 2158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.603571,-33.190796 + parent: 2 + - uid: 2160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.4473205,-26.521994 + parent: 2 + - uid: 2180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.584435,-26.471273 + parent: 2 + - uid: 3053 + components: + - type: Transform + pos: -14.432013,-32.376667 + parent: 2 + - uid: 3120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.02908,-25.40962 + parent: 2 + - uid: 3177 + components: + - type: Transform + pos: -23.448484,-31.486954 + parent: 2 + - uid: 3515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.51934,-33.34789 + parent: 2 + - uid: 4070 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.518196,18.500528 + parent: 2 + - uid: 4071 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.674446,11.875528 + parent: 2 + - uid: 4073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.611946,22.375528 + parent: 2 + - uid: 4117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.911285,4.6227093 + parent: 2 + - uid: 4303 + components: + - type: Transform + pos: 31.581478,22.534786 + parent: 2 + - uid: 4329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.605978,-17.781683 + parent: 2 + - uid: 5014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.566639,23.786427 + parent: 2 + - uid: 5251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.626351,21.034765 + parent: 2 + - uid: 6582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.450543,39.20258 + parent: 2 + - uid: 6583 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5442929,39.57758 + parent: 2 + - uid: 6584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.513042,29.48383 + parent: 2 + - uid: 6625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5669155,30.00437 + parent: 2 + - uid: 6714 + components: + - type: Transform + 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 + pos: 38.620136,-15.528381 + parent: 2 + - uid: 7774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.700035,-41.89003 + parent: 2 + - uid: 7997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.424982,30.67273 + parent: 2 + - uid: 10413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.685745,7.9186025 + parent: 2 + - uid: 10492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.304087,-42.155655 + parent: 2 + - uid: 13676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.503932,-24.622326 + parent: 2 + - uid: 13767 + components: + - type: Transform + pos: 1.0366118,20.373814 + parent: 2 + - uid: 14242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.932013,-36.329792 + parent: 2 + - uid: 14676 + components: + - type: Transform + pos: -17.478888,-32.361042 + parent: 2 + - uid: 15302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.9565754,-16.251305 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 4639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 2 + - uid: 4643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-6.5 + parent: 2 + - uid: 4657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-9.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-9.5 + parent: 2 + - uid: 4659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-9.5 + parent: 2 +- proto: ChairWood + entities: + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 2 + - uid: 279 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 2 + - uid: 304 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.6451235,8.667721 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.7232485,8.198971 + parent: 2 + - uid: 326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.479197,-20.285221 + parent: 2 + - uid: 3554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.498138,-35.535103 + parent: 2 + - uid: 3837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.572947,-19.316471 + parent: 2 + - uid: 4442 + components: + - type: Transform + pos: -30.997639,-8.48168 + parent: 2 + - uid: 4668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.445667,-9.41918 + parent: 2 + - uid: 4669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.508167,-10.45043 + parent: 2 + - uid: 4671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.476917,-10.45043 + parent: 2 + - uid: 4672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.476917,-9.41918 + parent: 2 + - uid: 4673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.476917,-11.41918 + parent: 2 + - uid: 4674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.508167,-11.45043 + parent: 2 + - uid: 9383 + components: + - type: Transform + pos: 37.667343,27.43474 + parent: 2 + - uid: 9384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.386093,26.55974 + parent: 2 + - uid: 9385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.573593,26.55974 + parent: 2 + - uid: 9386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.542343,25.62224 + parent: 2 + - uid: 9387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.479843,24.59099 + parent: 2 + - uid: 12228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.34971,25.555704 + parent: 2 + - uid: 14159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.541697,-19.347721 + parent: 2 + - uid: 14214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.541697,-20.347721 + parent: 2 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 4101 + components: + - type: Transform + pos: 23.545448,26.60982 + parent: 2 +- proto: ChemDispenser + entities: + - uid: 2824 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 3953 + components: + - type: Transform + pos: 27.5,10.5 + parent: 2 +- proto: ChemDispenserEmpty + entities: + - uid: 677 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 +- proto: ChemistryEmptyBottle01 + entities: + - uid: 8823 + components: + - type: Transform + pos: 26.364828,16.346786 + parent: 2 + - uid: 8824 + components: + - type: Transform + pos: 26.505453,16.112411 + parent: 2 + - uid: 13775 + components: + - type: Transform + pos: 26.541677,36.52761 + parent: 2 + - uid: 13776 + components: + - type: Transform + pos: 26.655884,37.423748 + parent: 2 + - uid: 13777 + components: + - type: Transform + pos: 26.385427,37.27761 + parent: 2 +- proto: ChemistryHotplate + entities: + - uid: 979 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 2 + - uid: 3957 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 3958 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 +- proto: ChemMaster + entities: + - uid: 3949 + components: + - type: Transform + pos: 28.5,16.5 + parent: 2 + - uid: 3950 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 +- proto: ChurchBell + entities: + - uid: 3238 + components: + - type: Transform + pos: -34.5,-20.5 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 3243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-21.5 + parent: 2 +- proto: Cigar + entities: + - uid: 14033 + components: + - type: Transform + pos: -11.595309,-34.197083 + parent: 2 +- proto: CigarCase + entities: + - uid: 8614 + components: + - type: Transform + pos: 45.352608,-0.38359332 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 16061 + components: + - type: Transform + parent: 16055 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CigarGold + entities: + - uid: 10369 + components: + - type: Transform + pos: -13.251816,-6.7171874 + parent: 2 +- proto: CigarGoldCase + entities: + - uid: 10368 + components: + - type: Transform + pos: -13.533066,-6.2796874 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 5299 + components: + - type: Transform + pos: -16.5,19.5 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,7.5 + parent: 2 +- proto: ClosetBombFilled + entities: + - uid: 3424 + components: + - type: Transform + pos: 0.5,-20.5 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 2126 + components: + - type: Transform + pos: 1.5,-39.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 253 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: -1.5,14.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 2 + - uid: 297 + components: + - type: Transform + pos: 12.5,-5.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: -22.5,-46.5 + parent: 2 + - uid: 2959 + components: + - type: Transform + pos: 6.5,-21.5 + parent: 2 + - uid: 2960 + components: + - type: Transform + pos: 0.5,-29.5 + parent: 2 + - uid: 2961 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 2 + - uid: 2962 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 2 + - uid: 3067 + components: + - type: Transform + pos: -6.5,52.5 + parent: 2 + - uid: 3090 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 3286 + components: + - type: Transform + pos: -22.5,-29.5 + parent: 2 + - uid: 3290 + components: + - type: Transform + pos: -28.5,-20.5 + parent: 2 + - uid: 3469 + components: + - type: Transform + pos: -2.5,33.5 + parent: 2 + - uid: 4704 + components: + - type: Transform + pos: -23.5,9.5 + parent: 2 + - uid: 4705 + components: + - type: Transform + pos: -23.5,5.5 + parent: 2 + - uid: 4802 + components: + - type: Transform + pos: -42.5,-27.5 + parent: 2 + - uid: 4813 + components: + - type: Transform + pos: -34.5,-15.5 + parent: 2 + - uid: 4821 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 5232 + components: + - type: Transform + pos: 2.5,25.5 + parent: 2 + - uid: 5943 + components: + - type: Transform + pos: -24.5,-13.5 + parent: 2 + - uid: 6150 + components: + - type: Transform + pos: -39.5,-34.5 + parent: 2 + - uid: 6379 + components: + - type: Transform + pos: -20.5,12.5 + parent: 2 + - uid: 7219 + components: + - type: Transform + pos: -8.5,55.5 + parent: 2 + - uid: 7221 + components: + - type: Transform + pos: -10.5,28.5 + parent: 2 + - uid: 9358 + components: + - type: Transform + pos: 23.5,-2.5 + parent: 2 + - uid: 9359 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 9361 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 9370 + components: + - type: Transform + pos: 34.5,21.5 + parent: 2 + - uid: 9372 + components: + - type: Transform + pos: 47.5,24.5 + parent: 2 + - uid: 9373 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 13631 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 14002 + components: + - type: Transform + pos: -14.5,-40.5 + parent: 2 + - uid: 14170 + components: + - type: Transform + pos: -66.5,-31.5 + parent: 2 + - uid: 14203 + components: + - type: Transform + pos: -66.5,-29.5 + parent: 2 + - uid: 14800 + components: + - type: Transform + pos: -7.5,-38.5 + parent: 2 + - uid: 15359 + components: + - type: Transform + pos: 52.5,30.5 + parent: 2 +- proto: ClosetEmergencyN2FilledRandom + entities: + - uid: 321 + components: + - type: Transform + pos: 11.5,-5.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -0.5,14.5 + parent: 2 + - uid: 2963 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 2 + - uid: 2964 + components: + - type: Transform + pos: 6.5,-26.5 + parent: 2 + - uid: 3289 + components: + - type: Transform + pos: -26.5,-25.5 + parent: 2 + - uid: 4812 + components: + - type: Transform + pos: -42.5,-26.5 + parent: 2 + - uid: 6708 + components: + - type: Transform + pos: 1.5,25.5 + parent: 2 + - uid: 11373 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 14171 + components: + - type: Transform + pos: -65.5,-29.5 + parent: 2 +- proto: ClosetFireFilled + entities: + - uid: 712 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 714 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 10.5,-5.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -23.5,-46.5 + parent: 2 + - uid: 2965 + components: + - type: Transform + pos: 1.5,-29.5 + parent: 2 + - uid: 2966 + components: + - type: Transform + pos: 6.5,-22.5 + parent: 2 + - uid: 2967 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 2 + - uid: 2968 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 3006 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 + - uid: 3026 + components: + - type: Transform + pos: -8.5,52.5 + parent: 2 + - uid: 3288 + components: + - type: Transform + pos: -23.5,-29.5 + parent: 2 + - uid: 3291 + components: + - 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 + pos: -35.5,-15.5 + parent: 2 + - uid: 4822 + components: + - 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 + pos: -39.5,-35.5 + parent: 2 + - uid: 6534 + components: + - 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 + pos: -9.5,55.5 + parent: 2 + - uid: 7222 + components: + - type: Transform + pos: -11.5,28.5 + parent: 2 + - uid: 9362 + components: + - type: Transform + pos: 16.5,20.5 + parent: 2 + - uid: 9363 + components: + - type: Transform + pos: 25.5,2.5 + parent: 2 + - uid: 9364 + components: + - type: Transform + pos: 32.5,1.5 + parent: 2 + - uid: 9371 + components: + - type: Transform + pos: 35.5,21.5 + parent: 2 + - uid: 11349 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 2 + - uid: 13634 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 + - uid: 14172 + components: + - type: Transform + pos: -65.5,-31.5 + parent: 2 + - uid: 14795 + components: + - type: Transform + pos: -6.5,-38.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 109 + components: + - type: Transform + pos: -5.5,6.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 425 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 5309 + components: + - type: Transform + pos: -11.5,13.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 3979 + components: + - type: Transform + pos: 24.5,23.5 + parent: 2 + - uid: 3980 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 716 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 10.5,-28.5 + parent: 2 + - uid: 2537 + components: + - type: Transform + pos: -26.5,-11.5 + parent: 2 + - uid: 2663 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 2 + - uid: 2987 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 2 + - uid: 2988 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 2 + - uid: 2989 + components: + - type: Transform + pos: 5.5,-17.5 + parent: 2 + - uid: 2990 + components: + - type: Transform + pos: 9.5,-24.5 + parent: 2 + - uid: 3027 + components: + - type: Transform + pos: 7.5,-29.5 + parent: 2 + - uid: 3259 + components: + - type: Transform + pos: -28.5,-18.5 + parent: 2 + - uid: 3292 + components: + - type: Transform + pos: -25.5,-29.5 + parent: 2 + - uid: 3293 + components: + - type: Transform + pos: -28.5,-27.5 + parent: 2 + - uid: 4503 + components: + - type: Transform + pos: -19.5,6.5 + parent: 2 + - uid: 4815 + components: + - type: Transform + pos: -42.5,-16.5 + parent: 2 + - uid: 6270 + components: + - type: Transform + pos: -39.5,-38.5 + parent: 2 + - uid: 6271 + components: + - type: Transform + pos: -12.5,-42.5 + parent: 2 + - uid: 6610 + components: + - 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 + pos: -2.5,45.5 + parent: 2 + - uid: 7226 + components: + - type: Transform + pos: -19.5,30.5 + parent: 2 + - uid: 7228 + components: + - type: Transform + pos: -4.5,51.5 + parent: 2 + - uid: 7229 + components: + - type: Transform + pos: -14.5,56.5 + parent: 2 + - uid: 7230 + components: + - type: Transform + pos: -6.5,57.5 + parent: 2 + - uid: 9354 + components: + - type: Transform + pos: 48.5,10.5 + parent: 2 + - uid: 9356 + components: + - type: Transform + pos: 45.5,2.5 + parent: 2 + - uid: 9357 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 9367 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 9368 + components: + - type: Transform + pos: 46.5,20.5 + parent: 2 + - uid: 9369 + components: + - type: Transform + pos: 40.5,28.5 + parent: 2 + - uid: 10461 + components: + - type: Transform + pos: 33.5,29.5 + parent: 2 + - uid: 14236 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + pos: 50.5,30.5 + parent: 2 + - uid: 15836 + components: + - type: Transform + pos: 40.5,24.5 + parent: 2 + - uid: 16098 + components: + - type: Transform + pos: -23.5,48.5 + parent: 2 + - uid: 16099 + components: + - type: Transform + pos: -21.5,39.5 + parent: 2 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 2841 + components: + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - uid: 3480 + components: + - type: Transform + pos: -11.5,14.5 + parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 4039 + components: + - type: Transform + pos: 38.5,15.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 4040 + - 4041 + - 4042 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetToolFilled + entities: + - uid: 717 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 2 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 4066 + components: + - type: Transform + pos: 40.518276,13.51988 + parent: 2 + - uid: 5317 + components: + - type: Transform + pos: -26.501179,11.762217 + parent: 2 +- proto: ClothingBeltMercWebbing + entities: + - uid: 13757 + components: + - type: Transform + pos: 48.501804,15.1501465 + parent: 2 +- proto: ClothingBeltUtility + entities: + - uid: 15840 + components: + - type: Transform + pos: 43.650375,-1.3479055 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 8493 + components: + - type: Transform + pos: 37.669296,-5.194439 + parent: 2 +- proto: ClothingEyesGlassesCheapSunglasses + entities: + - uid: 12928 + components: + - type: Transform + parent: 276 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesChemical + entities: + - uid: 16005 + components: + - type: Transform + pos: 24.534243,11.261946 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 6206 + components: + - type: Transform + pos: -38.502537,-43.3137 + parent: 2 + - uid: 8492 + components: + - type: Transform + pos: 33.544296,-20.985401 + parent: 2 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 15821 + components: + - type: Transform + pos: -71.11911,-10.23251 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 15833 + components: + - type: Transform + pos: -70.281,-10.984222 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 6640 + components: + - type: Transform + pos: -2.1804788,22.571062 + parent: 2 +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 15842 + components: + - type: Transform + pos: 42.6035,-1.7385306 + parent: 2 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 2185 + components: + - type: Transform + pos: 32.511948,-28.614052 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 4097 + components: + - type: Transform + pos: 19.522598,21.81431 + parent: 2 + - uid: 16214 + components: + - 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 + components: + - type: Transform + pos: 40.554234,33.41338 + parent: 2 +- proto: ClothingHeadBandBotany + entities: + - uid: 12448 + components: + - type: Transform + pos: -12.38803,-44.514034 + parent: 2 +- proto: ClothingHeadHatBlacksoft + entities: + - uid: 8815 + components: + - type: Transform + pos: 12.405148,19.729553 + parent: 2 +- proto: ClothingHeadHatBrownFlatcap + entities: + - uid: 15268 + components: + - type: Transform + pos: -1.6964862,41.709198 + parent: 2 +- proto: ClothingHeadHatGreysoft + entities: + - uid: 5916 + components: + - type: Transform + pos: -18.721369,-13.081022 + parent: 2 +- proto: ClothingHeadHatHardhatBlue + entities: + - uid: 8496 + components: + - type: Transform + pos: 41.017582,-18.257029 + parent: 2 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 8497 + components: + - type: Transform + pos: 25.797258,-21.152796 + parent: 2 +- proto: ClothingHeadHatHardhatRed + entities: + - uid: 8495 + components: + - type: Transform + pos: 28.048832,-2.223711 + parent: 2 +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 8057 + components: + - type: Transform + pos: 34.468143,-22.170101 + parent: 2 +- proto: ClothingHeadHatSyndieMAA + entities: + - uid: 16057 + components: + - type: Transform + parent: 16055 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatTacticalMaidHeadband + entities: + - uid: 13752 + components: + - type: Transform + pos: 40.42861,31.734486 + parent: 2 +- proto: ClothingHeadHatUshanka + entities: + - uid: 13771 + components: + - type: Transform + pos: -24.322369,35.736732 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 5138 + components: + - type: Transform + pos: -27.38747,14.612673 + parent: 2 + - uid: 6641 + components: + - type: Transform + pos: -3.4045439,19.505665 + parent: 2 + - uid: 8490 + components: + - type: Transform + pos: 28.398157,-8.380317 + parent: 2 +- proto: ClothingHeadHelmetERTJanitor + entities: + - uid: 15269 + components: + - type: Transform + pos: 26.415586,-56.37533 + parent: 2 +- proto: ClothingHeadsetMining + entities: + - uid: 15264 + components: + - type: Transform + pos: -30.629875,-47.521564 + parent: 2 +- proto: ClothingMaskGasMerc + entities: + - uid: 13758 + components: + - type: Transform + pos: 48.470554,15.6188965 + parent: 2 +- proto: ClothingMaskMuzzle + entities: + - uid: 16049 + components: + - type: Transform + pos: -11.790611,57.730843 + parent: 2 +- proto: ClothingMaskSexyClown + entities: + - uid: 7663 + components: + - type: Transform + parent: 275 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSexyMime + entities: + - uid: 12903 + components: + - type: Transform + parent: 273 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSterile + entities: + - uid: 4096 + components: + - type: Transform + pos: 19.491348,21.47056 + parent: 2 + - uid: 16213 + components: + - type: Transform + pos: 26.47891,20.741726 + parent: 2 +- proto: ClothingNeckCloakMiner + entities: + - uid: 3056 + components: + - type: Transform + pos: -8.522433,-43.53152 + parent: 2 +- proto: ClothingNeckCloakNanotrasen + entities: + - uid: 15202 + components: + - type: Transform + pos: 47.53349,-46.383266 + parent: 2 +- proto: ClothingNeckCloakTrans + entities: + - uid: 1602 + components: + - type: Transform + pos: 61.44984,39.56451 + parent: 2 +- proto: ClothingNeckScarfStripedBlack + entities: + - uid: 4040 + components: + - type: Transform + parent: 4039 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 12891 + components: + - type: Transform + parent: 273 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterApronBar + entities: + - uid: 5915 + components: + - type: Transform + pos: -18.721369,-13.487272 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 5701 + components: + - type: Transform + parent: 3430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorReflective + entities: + - uid: 15332 + components: + - type: Transform + parent: 3430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorRiot + entities: + - uid: 15335 + components: + - type: Transform + parent: 3430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatSyndieCap + entities: + - uid: 16060 + components: + - type: Transform + parent: 16055 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterColorBlack + entities: + - uid: 4042 + components: + - type: Transform + parent: 4039 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCombat + entities: + - uid: 16058 + components: + - type: Transform + parent: 16055 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsJack + entities: + - uid: 8243 + components: + - type: Transform + pos: 12.608273,19.495178 + parent: 2 +- proto: ClothingShoesBootsMag + entities: + - uid: 8169 + components: + - type: Transform + pos: 36.593143,-23.441477 + parent: 2 +- proto: ClothingShoesBootsMercFilled + entities: + - uid: 13756 + components: + - type: Transform + pos: 48.533054,14.6188965 + parent: 2 +- proto: ClothingShoesBootsWinter + entities: + - uid: 4041 + components: + - type: Transform + parent: 4039 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUnderSocksCoder + entities: + - uid: 15213 + components: + - type: Transform + pos: 61.35609,38.97076 + parent: 2 +- proto: ClothingUniformJumpskirtJanimaid + entities: + - uid: 13754 + components: + - type: Transform + pos: 48.314304,20.618896 + parent: 2 +- proto: ClothingUniformJumpskirtJanimaidmini + entities: + - uid: 13755 + components: + - type: Transform + pos: 48.564304,20.400146 + parent: 2 +- proto: ClothingUniformJumpskirtTacticalMaid + entities: + - uid: 13751 + components: + - type: Transform + pos: 40.67861,31.453236 + parent: 2 +- proto: ClothingUniformJumpsuitSyndieFormal + entities: + - uid: 16056 + components: + - type: Transform + parent: 16055 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CockroachTimedSpawner + entities: + - uid: 4572 + components: + - type: Transform + pos: -15.5,55.5 + parent: 2 + - uid: 10446 + components: + - type: Transform + pos: -11.5,-46.5 + parent: 2 + - uid: 13524 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 + - uid: 14039 + components: + - type: Transform + pos: 18.5,32.5 + parent: 2 +- proto: ComfyChair + entities: + - uid: 2136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-34.5 + parent: 2 + - uid: 2138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-34.5 + parent: 2 + - uid: 4482 + components: + - type: Transform + pos: -14.5,2.5 + parent: 2 + - uid: 4538 + components: + - type: Transform + pos: -16.5,2.5 + parent: 2 + - uid: 4826 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - uid: 7114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,19.5 + parent: 2 + - uid: 7123 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 8611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 2 + - uid: 8612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - uid: 11096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-4.5 + parent: 2 + - uid: 11316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-35.5 + parent: 2 + - uid: 14028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-36.5 + parent: 2 +- proto: CommandmentCircuitBoard + entities: + - uid: 5494 + components: + - type: Transform + pos: -31.514725,35.67563 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 2248 + components: + - type: Transform + pos: 38.536213,-0.47239208 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 2159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-26.5 + parent: 2 + - uid: 3947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-16.5 + parent: 2 + - uid: 4650 + components: + - type: Transform + pos: -40.5,-5.5 + parent: 2 + - uid: 8089 + components: + - type: Transform + pos: 24.5,-10.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 5030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4350: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 14788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-27.5 + parent: 2 + - uid: 16178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-16.5 + parent: 2 +- proto: computerBodyScanner + entities: + - uid: 4012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,4.5 + parent: 2 + - uid: 5140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,12.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 6712 + components: + - type: Transform + pos: -24.5,33.5 + parent: 2 + - uid: 7682 + components: + - type: Transform + pos: 27.5,38.5 + parent: 2 + - uid: 7731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,30.5 + parent: 2 + - uid: 10235 + components: + - type: Transform + pos: 44.5,32.5 + parent: 2 + - uid: 10426 + components: + - type: Transform + pos: 42.5,-0.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 4638 + components: + - type: Transform + pos: -36.5,-5.5 + parent: 2 + - uid: 6560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,33.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 4246 + components: + - type: Transform + pos: 10.5,30.5 + parent: 2 + - uid: 4247 + components: + - type: Transform + pos: 8.5,30.5 + parent: 2 + - uid: 4637 + components: + - type: Transform + pos: -35.5,-5.5 + parent: 2 +- proto: ComputerCargoShuttle + entities: + - uid: 6561 + components: + - type: Transform + pos: 13.5,39.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 4626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-7.5 + parent: 2 + - uid: 10358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 +- proto: ComputerCrewMonitoring + entities: + - uid: 1771 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-19.5 + parent: 2 + - uid: 3929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 + - uid: 4319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - uid: 8083 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,4.5 + parent: 2 + - uid: 8546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 1046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 + - uid: 1864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 2 + - uid: 2371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 2 + - uid: 3514 + components: + - type: Transform + pos: -36.5,-32.5 + parent: 2 + - uid: 4634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,30.5 + parent: 2 + - uid: 14112 + components: + - type: Transform + pos: -12.5,-32.5 + parent: 2 +- proto: ComputerFrame + entities: + - uid: 13778 + components: + - type: Transform + pos: 43.5,-0.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 1774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 2 + - uid: 4625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 2 + - uid: 10359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 2 +- proto: ComputerMassMedia + entities: + - uid: 4518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-35.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 3908 + components: + - type: Transform + pos: 28.5,5.5 + parent: 2 + - uid: 4317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 12700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,21.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 4651 + components: + - type: Transform + pos: -39.5,-5.5 + parent: 2 + - uid: 6387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 2 + - uid: 16177 + components: + - type: Transform + pos: 35.5,-14.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 4630 + components: + - type: Transform + pos: -41.5,-5.5 + parent: 2 + - uid: 7834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,45.5 + parent: 2 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 4652 + components: + - type: Transform + 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 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,9.5 + parent: 2 + - uid: 12566 + components: + - type: Transform + pos: -10.5,22.5 + parent: 2 +- proto: ComputerRoboticsControl + entities: + - uid: 4217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,8.5 + parent: 2 + - uid: 4653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + - uid: 5125 + components: + - type: Transform + pos: -25.5,17.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 7889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,45.5 + parent: 2 +- proto: ComputerShuttleCargo + entities: + - uid: 4631 + components: + - type: Transform + pos: -37.5,-5.5 + parent: 2 + - uid: 6562 + components: + - type: Transform + pos: 14.5,39.5 + parent: 2 + - uid: 6585 + components: + - type: Transform + pos: 0.5,40.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 2788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-31.5 + parent: 2 + - uid: 4004 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 7779 + components: + - type: Transform + pos: 26.5,32.5 + parent: 2 +- proto: ComputerStationRecords + entities: + - uid: 2029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 2 + - uid: 2042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-26.5 + parent: 2 + - uid: 4624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 2043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 2 + - uid: 4627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-9.5 + parent: 2 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 3186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-35.5 + parent: 2 + - uid: 3194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-30.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 2140 + components: + - type: Transform + pos: 3.5,-32.5 + parent: 2 + - uid: 3519 + components: + - type: Transform + pos: 25.5,4.5 + parent: 2 + - uid: 5670 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - uid: 5803 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - uid: 5804 + components: + - type: Transform + pos: -11.5,-30.5 + parent: 2 + - uid: 6120 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 7772 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 15254 + components: + - type: Transform + pos: -28.5,-11.5 + parent: 2 + - uid: 15305 + components: + - type: Transform + pos: 15.5,31.5 + parent: 2 + - uid: 15306 + components: + - type: Transform + pos: 36.5,-22.5 + parent: 2 +- proto: CondenserMachineCircuitBoard + entities: + - uid: 7473 + components: + - type: Transform + pos: 24.581282,11.533271 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 1550 + components: + - type: Transform + pos: 42.5,-26.5 + parent: 2 + - uid: 1551 + components: + - type: Transform + pos: 42.5,-27.5 + parent: 2 + - uid: 2536 + components: + - type: Transform + pos: 42.5,-28.5 + parent: 2 + - uid: 2733 + components: + - type: Transform + pos: 50.5,-17.5 + parent: 2 + - uid: 6376 + components: + - type: Transform + pos: 50.5,-23.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 3249 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 4212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,1.5 + parent: 2 + - uid: 4219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-1.5 + parent: 2 + - uid: 4264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 2 + - uid: 4265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 2 + - uid: 4266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,27.5 + parent: 2 + - uid: 4277 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 + - uid: 4279 + components: + - type: Transform + pos: 24.5,36.5 + parent: 2 + - uid: 4372 + components: + - type: Transform + pos: 15.5,0.5 + parent: 2 + - uid: 4573 + components: + - type: Transform + pos: 15.5,1.5 + parent: 2 + - uid: 5212 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 + - uid: 5316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,0.5 + parent: 2 + - uid: 5640 + components: + - type: Transform + pos: 15.5,-0.5 + parent: 2 + - uid: 6388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-0.5 + parent: 2 + - uid: 6521 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 6522 + components: + - type: Transform + pos: 6.5,41.5 + parent: 2 + - uid: 6523 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 6524 + components: + - type: Transform + pos: 6.5,39.5 + parent: 2 + - uid: 6525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,39.5 + parent: 2 + - uid: 6526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,40.5 + parent: 2 + - uid: 6527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,41.5 + parent: 2 + - uid: 6528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,42.5 + parent: 2 + - uid: 9349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,8.5 + parent: 2 + - uid: 9508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 2 + - uid: 14113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,8.5 + parent: 2 + - uid: 14114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 50.5,8.5 + parent: 2 + - uid: 14115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,8.5 + parent: 2 + - uid: 14117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,8.5 + parent: 2 + - uid: 14118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,8.5 + parent: 2 + - uid: 14913 + components: + - type: Transform + pos: 24.5,37.5 + parent: 2 +- proto: CorporateCircuitBoard + entities: + - uid: 5484 + components: + - type: Transform + pos: -33.483475,35.58188 + parent: 2 +- proto: CottonSeeds + entities: + - uid: 15826 + components: + - type: Transform + pos: 15.86356,4.7994614 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 4343 + components: + - type: Transform + pos: -24.5,21.5 + parent: 2 + - uid: 4401 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 +- proto: CrateContrabandStorageSecure + entities: + - uid: 3431 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 13465 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 + - uid: 13466 + components: + - type: Transform + pos: 10.5,37.5 + parent: 2 + - uid: 13468 + components: + - type: Transform + pos: 14.5,36.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 +- proto: CrateEngineeringAMEControl + entities: + - uid: 367 + components: + - type: Transform + pos: 39.5,-8.5 + parent: 2 +- proto: CrateEngineeringAMEJar + entities: + - uid: 2634 + components: + - type: Transform + pos: 39.5,-12.5 + parent: 2 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 15672 + components: + - type: Transform + pos: 40.5,-12.5 + parent: 2 +- proto: CrateEngineeringCableBulk + entities: + - uid: 11345 + components: + - type: Transform + pos: 37.5,-12.5 + parent: 2 +- proto: CrateEngineeringSecure + entities: + - uid: 1249 + components: + - type: MetaData + name: secure P.A.C.M.A.N. fuel crate + - type: Transform + pos: 30.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1253 + - 1252 + - 1251 + - 1250 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringShuttle + entities: + - uid: 6177 + components: + - type: Transform + pos: -35.5,-43.5 + parent: 2 +- proto: CrateEngineeringThruster + entities: + - uid: 6179 + components: + - type: Transform + pos: -35.5,-40.5 + parent: 2 + - uid: 6181 + components: + - type: Transform + pos: -36.5,-40.5 + parent: 2 +- proto: CrateFilledSpawner + entities: + - uid: 719 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 2 + - uid: 720 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 2 + - uid: 5308 + components: + - type: Transform + pos: -16.5,-46.5 + parent: 2 + - uid: 6289 + components: + - type: Transform + pos: 8.5,-25.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: 44.5,17.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: -34.5,-45.5 + parent: 2 + - uid: 6292 + components: + - type: Transform + pos: -36.5,-37.5 + parent: 2 + - uid: 9338 + components: + - type: Transform + pos: 19.5,28.5 + parent: 2 + - uid: 10445 + components: + - type: Transform + pos: 47.5,2.5 + parent: 2 + - uid: 10447 + components: + - type: Transform + pos: 41.5,28.5 + parent: 2 + - uid: 10448 + components: + - type: Transform + pos: 29.5,29.5 + parent: 2 + - uid: 10452 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 10453 + components: + - type: Transform + pos: -4.5,50.5 + parent: 2 + - uid: 10454 + components: + - type: Transform + pos: -15.5,30.5 + parent: 2 + - uid: 13458 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 + - uid: 13459 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 13460 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - uid: 13461 + components: + - type: Transform + pos: 10.5,35.5 + parent: 2 + - uid: 13462 + components: + - type: Transform + pos: 14.5,35.5 + parent: 2 + - uid: 13463 + components: + - type: Transform + pos: 13.5,37.5 + parent: 2 + - uid: 13464 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 15770 + components: + - type: Transform + pos: -26.5,-12.5 + parent: 2 +- proto: CrateFreezer + entities: + - uid: 684 + components: + - type: Transform + pos: 10.5,6.5 + parent: 2 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 685 + - 686 + - 687 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 7993 + components: + - type: Transform + pos: 38.5,3.5 + parent: 2 +- proto: CrateFunBoxing + entities: + - uid: 15834 + components: + - type: Transform + pos: -70.5,-10.5 + parent: 2 +- proto: CrateFunInstrumentsVariety + entities: + - uid: 301 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 +- proto: CrateHydroponicsSeeds + entities: + - uid: 2137 + components: + - type: Transform + pos: 2.5,-38.5 + parent: 2 +- proto: CrateHydroponicsTools + entities: + - uid: 2129 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 14195 + components: + - type: Transform + pos: -11.5,-47.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 4065 + components: + - type: Transform + pos: 38.5,5.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 9405 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 +- proto: CratePermaEscapeSpawner + entities: + - uid: 13670 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 + - uid: 15255 + components: + - type: Transform + pos: 51.5,11.5 + parent: 2 +- proto: CrateServiceTheatre + entities: + - uid: 302 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 15296 + components: + - type: Transform + pos: -4.5,5.5 + parent: 2 +- proto: CrateVendingMachineRestockChemVendFilled + entities: + - uid: 13724 + components: + - type: Transform + pos: 27.5,34.5 + parent: 2 +- proto: CrayonBox + entities: + - uid: 12927 + components: + - type: Transform + parent: 276 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Crematorium + entities: + - uid: 3242 + components: + - type: Transform + pos: -30.5,-21.5 + parent: 2 +- proto: CrewMonitoringComputerCircuitboard + entities: + - uid: 2190 + components: + - type: Transform + pos: 35.536213,-1.4411421 + parent: 2 +- proto: CrewMonitoringServer + entities: + - uid: 7947 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 +- proto: CrowbarOrange + entities: + - uid: 16048 + components: + - type: Transform + pos: -11.210674,57.434536 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 8488 + components: + - type: Transform + pos: 25.429407,-27.474827 + parent: 2 +- proto: CrowbarYellow + entities: + - uid: 8487 + components: + - type: Transform + pos: 33.023155,-2.0936623 + parent: 2 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 4167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + - uid: 4168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 4164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - uid: 4166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 3890 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 4069 + components: + - type: Transform + pos: 37.609596,15.503212 + parent: 2 +- proto: CurtainsBlueOpen + entities: + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 2 + - uid: 6602 + components: + - type: Transform + pos: -24.5,1.5 + parent: 2 +- proto: CurtainsCyanOpen + entities: + - uid: 6595 + components: + - type: Transform + pos: 32.5,26.5 + parent: 2 +- proto: CurtainsOrangeOpen + entities: + - uid: 6590 + components: + - type: Transform + pos: 2.5,34.5 + parent: 2 + - uid: 11120 + components: + - type: Transform + pos: 42.5,-14.5 + parent: 2 +- proto: CurtainsPinkOpen + entities: + - uid: 6607 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 +- proto: CurtainsRedOpen + entities: + - uid: 1768 + components: + - type: Transform + pos: -1.5,3.5 + parent: 2 + - uid: 6601 + components: + - type: Transform + pos: -10.5,-39.5 + parent: 2 + - uid: 9644 + components: + - type: Transform + pos: -0.5,3.5 + parent: 2 + - uid: 9645 + components: + - type: Transform + pos: 0.5,3.5 + parent: 2 + - uid: 9646 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 9648 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 9649 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 9650 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 +- proto: CurtainsWhite + entities: + - uid: 14102 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 +- proto: CurtainsWhiteOpen + entities: + - uid: 15933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-34.5 + parent: 2 + - uid: 15934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-36.5 + parent: 2 +- proto: CutterMachine + entities: + - uid: 8261 + components: + - type: Transform + pos: -3.5,21.5 + parent: 2 +- proto: d6Dice + entities: + - uid: 9394 + components: + - type: Transform + pos: 37.667343,26.27849 + parent: 2 + - uid: 9395 + components: + - type: Transform + pos: 37.417343,26.09099 + parent: 2 +- proto: DefaultStationBeaconAI + entities: + - uid: 14283 + components: + - type: Transform + pos: -41.5,31.5 + parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 14284 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 +- proto: DefaultStationBeaconAME + entities: + - uid: 14285 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 +- proto: DefaultStationBeaconAnchor + entities: + - uid: 15648 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 14286 + components: + - type: Transform + pos: -14.5,24.5 + parent: 2 +- proto: DefaultStationBeaconArmory + entities: + - uid: 14287 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 +- proto: DefaultStationBeaconArrivals + entities: + - uid: 14288 + components: + - type: Transform + pos: -7.5,43.5 + parent: 2 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 14289 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 14290 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 +- proto: DefaultStationBeaconBar + entities: + - uid: 14291 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconBotany + entities: + - uid: 14292 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 +- proto: DefaultStationBeaconBridge + entities: + - uid: 14293 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 +- proto: DefaultStationBeaconBrig + entities: + - uid: 14295 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 14299 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 2 +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 14300 + components: + - type: Transform + pos: 10.5,36.5 + parent: 2 +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 14301 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 +- proto: DefaultStationBeaconCERoom + entities: + - uid: 14296 + components: + - type: Transform + pos: 37.5,-15.5 + parent: 2 +- proto: DefaultStationBeaconChapel + entities: + - uid: 14302 + components: + - type: Transform + pos: -34.5,-24.5 + parent: 2 +- proto: DefaultStationBeaconChemistry + entities: + - uid: 14423 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 14297 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 16223 + components: + - type: Transform + pos: -16.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconCryonics + entities: + - uid: 14436 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 14517 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 14532 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconDisposals + entities: + - uid: 14566 + components: + - type: Transform + pos: 48.5,8.5 + parent: 2 +- proto: DefaultStationBeaconDorms + entities: + - uid: 14568 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 14578 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 14579 + components: + - type: Transform + pos: 44.5,25.5 + parent: 2 + - uid: 14580 + components: + - type: Transform + pos: -20.5,6.5 + parent: 2 +- proto: DefaultStationBeaconEvac + entities: + - uid: 14581 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 +- proto: DefaultStationBeaconEVAStorage + entities: + - uid: 14577 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 2 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 14582 + components: + - type: Transform + pos: 41.5,-5.5 + parent: 2 +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 14583 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 14584 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 14585 + components: + - type: Transform + pos: -4.5,8.5 + parent: 2 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 14586 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 14587 + components: + - type: Transform + pos: -20.5,-42.5 + parent: 2 +- proto: DefaultStationBeaconLibrary + entities: + - uid: 14588 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 14589 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 +- proto: DefaultStationBeaconMedical + entities: + - uid: 14590 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 +- proto: DefaultStationBeaconMorgue + entities: + - uid: 14591 + components: + - type: Transform + pos: 41.5,13.5 + parent: 2 +- proto: DefaultStationBeaconPermaBrig + entities: + - uid: 14593 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 14601 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 +- proto: DefaultStationBeaconPsychology + entities: + - uid: 16188 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 14594 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 14595 + components: + - type: Transform + pos: -13.5,9.5 + parent: 2 +- proto: DefaultStationBeaconRND + entities: + - uid: 14598 + components: + - type: Transform + pos: -13.5,19.5 + parent: 2 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 14597 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 14600 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 +- proto: DefaultStationBeaconScience + entities: + - uid: 14599 + components: + - type: Transform + pos: -18.5,15.5 + parent: 2 +- proto: DefaultStationBeaconSecurity + entities: + - uid: 14605 + components: + - type: Transform + pos: -3.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 14602 + components: + - type: Transform + pos: 19.5,-9.5 + parent: 2 + - uid: 14603 + components: + - type: Transform + pos: -34.5,-34.5 + parent: 2 + - uid: 14604 + components: + - 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 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 +- proto: DefaultStationBeaconSingularity + entities: + - uid: 14592 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 + - uid: 16224 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 +- proto: DefaultStationBeaconSolars + entities: + - uid: 14607 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 + - uid: 14608 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 +- proto: DefaultStationBeaconSupply + entities: + - uid: 14609 + components: + - type: Transform + pos: 7.5,25.5 + parent: 2 +- proto: DefaultStationBeaconSurgery + entities: + - uid: 14610 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 +- proto: DefaultStationBeaconTechVault + entities: + - uid: 14612 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 +- proto: DefaultStationBeaconTEG + entities: + - uid: 14611 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 +- proto: DefaultStationBeaconTelecoms + entities: + - uid: 14613 + components: + - type: Transform + pos: 28.5,-2.5 + parent: 2 +- proto: DefaultStationBeaconTheater + entities: + - uid: 14614 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 14615 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 +- proto: DefaultStationBeaconVault + entities: + - uid: 14616 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 14617 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 4321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,17.5 + parent: 2 + - uid: 13950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,6.5 + parent: 2 + - uid: 13951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,2.5 + parent: 2 + - uid: 14424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 2 + - uid: 15297 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 15476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-18.5 + parent: 2 + - uid: 15520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-32.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 1786 + components: + - 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 + pos: -20.581614,-24.363976 + parent: 2 + - uid: 9691 + components: + - type: Transform + pos: 18.654495,7.4186025 + parent: 2 + - uid: 13807 + components: + - type: Transform + pos: 24.404495,12.856102 + parent: 2 + - uid: 13808 + components: + - type: Transform + pos: 9.369369,29.300024 + parent: 2 +- proto: DiceBag + entities: + - uid: 15813 + components: + - type: Transform + pos: -19.0189,-19.28367 + parent: 2 +- proto: DiseaseDiagnoser + entities: + - uid: 4081 + components: + - type: Transform + pos: 19.5,23.5 + parent: 2 +- proto: DiseaseSwab + entities: + - uid: 4091 + components: + - type: Transform + pos: 20.053848,24.47056 + parent: 2 + - uid: 4092 + components: + - type: Transform + pos: 20.241348,24.40806 + parent: 2 +- proto: DisposalBend + entities: + - uid: 458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 2 + - uid: 461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -3.5,0.5 + parent: 2 + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,9.5 + parent: 2 + - uid: 2558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-32.5 + parent: 2 + - uid: 3115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,31.5 + parent: 2 + - uid: 3906 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - uid: 4917 + components: + - type: Transform + pos: 16.5,9.5 + parent: 2 + - uid: 9983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-38.5 + parent: 2 + - uid: 13075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-24.5 + parent: 2 + - uid: 13076 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 + - uid: 13077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 2 + - uid: 13078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 13079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 13080 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 13081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 2 + - uid: 13086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-30.5 + parent: 2 + - uid: 13130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,6.5 + parent: 2 + - uid: 13131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,8.5 + parent: 2 + - uid: 13132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,4.5 + parent: 2 + - uid: 13133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + - uid: 13134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 13135 + components: + - type: Transform + pos: 47.5,6.5 + parent: 2 + - uid: 13136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,4.5 + parent: 2 + - uid: 13137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,1.5 + parent: 2 + - uid: 13138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + - uid: 13139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-3.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - uid: 13143 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - uid: 13144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,8.5 + parent: 2 + - uid: 13145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - uid: 13146 + components: + - type: Transform + 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 + pos: -6.5,41.5 + parent: 2 + - uid: 13208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-11.5 + parent: 2 + - uid: 13210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 2 + - uid: 13249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - uid: 13250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 13251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 2 + - uid: 13254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 2 + - uid: 13256 + components: + - type: Transform + pos: -9.5,0.5 + parent: 2 + - uid: 13278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - uid: 13290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + - uid: 13291 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 13319 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 + - uid: 13320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,34.5 + parent: 2 + - uid: 13328 + components: + - type: Transform + pos: 20.5,14.5 + parent: 2 + - uid: 13422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-38.5 + parent: 2 + - uid: 13423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 2 + - uid: 13424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-16.5 + parent: 2 + - uid: 13425 + components: + - type: Transform + pos: -30.5,-30.5 + parent: 2 + - uid: 13427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-29.5 + parent: 2 + - uid: 13428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-29.5 + parent: 2 + - uid: 14125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-16.5 + parent: 2 + - uid: 14131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - uid: 15993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-36.5 + parent: 2 +- proto: DisposalJunction + entities: + - uid: 484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + - uid: 3586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-30.5 + parent: 2 + - uid: 6116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 2 + - uid: 13169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + - uid: 13248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 13253 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 13255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 2 + - uid: 13280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-21.5 + parent: 2 + - uid: 13281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - uid: 13282 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 2 + - uid: 13283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 + - uid: 13284 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 2 + - uid: 13285 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 13325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,34.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + pos: 20.5,10.5 + parent: 2 + - uid: 13431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-16.5 + parent: 2 + - uid: 13446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-30.5 + parent: 2 + - uid: 14058 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 15990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-34.5 + parent: 2 +- proto: DisposalJunctionFlipped + entities: + - uid: 483 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + - uid: 3838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-26.5 + parent: 2 + - uid: 3839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-30.5 + parent: 2 + - uid: 9981 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - uid: 12997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 13168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 2 + - uid: 13324 + components: + - type: Transform + pos: 7.5,19.5 + parent: 2 + - uid: 13326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 2 + - uid: 13329 + components: + - type: Transform + pos: 20.5,6.5 + parent: 2 + - uid: 13432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 13831 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 13932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,16.5 + parent: 2 + - uid: 13936 + components: + - type: Transform + pos: -6.5,31.5 + parent: 2 + - uid: 14121 + components: + - type: Transform + pos: 7.5,24.5 + parent: 2 +- proto: DisposalPipe + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,0.5 + parent: 2 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 2 + - uid: 464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 2 + - uid: 466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 2 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - uid: 471 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 2 + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 479 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - uid: 610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - uid: 2200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,24.5 + parent: 2 + - uid: 2885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-31.5 + parent: 2 + - uid: 3038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 + - uid: 3039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-28.5 + parent: 2 + - uid: 3420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 2 + - uid: 4485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 2 + - uid: 4499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 2 + - uid: 4500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,7.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,8.5 + parent: 2 + - uid: 4916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,9.5 + parent: 2 + - uid: 5646 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 2 + - uid: 10532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 + - uid: 12906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-24.5 + parent: 2 + - uid: 12940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-24.5 + parent: 2 + - uid: 12941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 + - uid: 12942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-23.5 + parent: 2 + - uid: 12943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-22.5 + parent: 2 + - uid: 12944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-21.5 + parent: 2 + - uid: 12945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-20.5 + parent: 2 + - uid: 12946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-19.5 + parent: 2 + - uid: 12947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-18.5 + parent: 2 + - uid: 12948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-17.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-16.5 + parent: 2 + - uid: 12950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-15.5 + parent: 2 + - uid: 12951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-14.5 + parent: 2 + - uid: 12952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 12953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 2 + - uid: 12954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 2 + - uid: 12955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-10.5 + parent: 2 + - uid: 12956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-9.5 + parent: 2 + - uid: 12957 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 12958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - uid: 12959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 2 + - uid: 12960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - uid: 12961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 2 + - uid: 12962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + - uid: 12963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-6.5 + parent: 2 + - uid: 12964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 + - uid: 12965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 2 + - uid: 12966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 2 + - uid: 12967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-6.5 + parent: 2 + - uid: 12968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-6.5 + parent: 2 + - uid: 12969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 2 + - uid: 12970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 2 + - uid: 12971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - uid: 12972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-7.5 + parent: 2 + - uid: 12973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-8.5 + parent: 2 + - uid: 12974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 12975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-10.5 + parent: 2 + - uid: 12976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-11.5 + parent: 2 + - uid: 12977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 12978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 2 + - uid: 12979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 2 + - uid: 12980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + - uid: 12981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 2 + - uid: 12982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - uid: 12983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 2 + - uid: 12984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-13.5 + parent: 2 + - uid: 12985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 2 + - uid: 12987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 2 + - uid: 12988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - uid: 12989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 12990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 12991 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 2 + - uid: 12992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 2 + - uid: 12993 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + - uid: 12995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 12996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - uid: 12998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - uid: 12999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 + - uid: 13000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 13001 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 + - uid: 13002 + components: + - type: Transform + pos: -8.5,-12.5 + parent: 2 + - uid: 13003 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 2 + - uid: 13004 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - uid: 13005 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 2 + - uid: 13006 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 2 + - uid: 13007 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 2 + - uid: 13008 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 2 + - uid: 13009 + components: + - type: Transform + pos: -8.5,-4.5 + parent: 2 + - uid: 13010 + components: + - type: Transform + pos: -8.5,-3.5 + parent: 2 + - uid: 13011 + components: + - type: Transform + pos: -8.5,-2.5 + parent: 2 + - uid: 13012 + components: + - type: Transform + pos: -8.5,-1.5 + parent: 2 + - uid: 13013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 2 + - uid: 13014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 2 + - uid: 13015 + components: + - type: Transform + pos: -8.5,2.5 + parent: 2 + - uid: 13016 + components: + - type: Transform + pos: -8.5,3.5 + parent: 2 + - uid: 13017 + components: + - type: Transform + pos: -8.5,4.5 + parent: 2 + - uid: 13018 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - uid: 13019 + components: + - type: Transform + pos: -8.5,6.5 + parent: 2 + - uid: 13020 + components: + - type: Transform + pos: -8.5,7.5 + parent: 2 + - uid: 13021 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 13022 + components: + - type: Transform + pos: -8.5,10.5 + parent: 2 + - uid: 13023 + components: + - type: Transform + pos: -8.5,11.5 + parent: 2 + - uid: 13024 + components: + - type: Transform + pos: -8.5,12.5 + parent: 2 + - uid: 13025 + components: + - type: Transform + pos: -8.5,8.5 + parent: 2 + - uid: 13026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 2 + - uid: 13027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - uid: 13028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,13.5 + parent: 2 + - uid: 13029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 + - uid: 13030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 2 + - uid: 13031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 2 + - uid: 13032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,16.5 + parent: 2 + - uid: 13033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - uid: 13034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - uid: 13035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,16.5 + parent: 2 + - uid: 13036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 2 + - uid: 13037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - uid: 13038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,16.5 + parent: 2 + - uid: 13039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,16.5 + parent: 2 + - uid: 13040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 2 + - uid: 13041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - uid: 13042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 2 + - uid: 13043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,16.5 + parent: 2 + - uid: 13044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,16.5 + parent: 2 + - uid: 13045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - uid: 13046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - uid: 13047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - uid: 13048 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 13049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + - uid: 13050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 13051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 + - uid: 13052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 + - uid: 13053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 + - uid: 13054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,13.5 + parent: 2 + - uid: 13055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,12.5 + parent: 2 + - uid: 13056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 2 + - uid: 13058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 2 + - uid: 13059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,8.5 + parent: 2 + - uid: 13060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,7.5 + parent: 2 + - uid: 13061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 2 + - uid: 13062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,4.5 + parent: 2 + - uid: 13063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 + - uid: 13064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,2.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,1.5 + parent: 2 + - uid: 13066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-0.5 + parent: 2 + - uid: 13067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-1.5 + parent: 2 + - uid: 13068 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-2.5 + parent: 2 + - uid: 13069 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-5.5 + parent: 2 + - uid: 13070 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-4.5 + parent: 2 + - uid: 13071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 + - uid: 13072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 + - uid: 13073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 2 + - uid: 13074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + - uid: 13092 + components: + - type: Transform + pos: 7.5,-12.5 + parent: 2 + - uid: 13093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + - uid: 13094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 13095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-16.5 + parent: 2 + - uid: 13096 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-16.5 + parent: 2 + - uid: 13097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-16.5 + parent: 2 + - uid: 13098 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 2 + - uid: 13099 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 13100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-3.5 + parent: 2 + - uid: 13101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-3.5 + parent: 2 + - uid: 13102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 2 + - uid: 13104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-1.5 + parent: 2 + - uid: 13105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-0.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,0.5 + parent: 2 + - uid: 13107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,0.5 + parent: 2 + - uid: 13108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,0.5 + parent: 2 + - uid: 13109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + - uid: 13110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + - uid: 13111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,0.5 + parent: 2 + - uid: 13112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + - uid: 13113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - uid: 13115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - uid: 13116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,1.5 + parent: 2 + - uid: 13117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,1.5 + parent: 2 + - uid: 13118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,1.5 + parent: 2 + - uid: 13119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,1.5 + parent: 2 + - uid: 13120 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 13121 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 13122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,4.5 + parent: 2 + - uid: 13123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,4.5 + parent: 2 + - uid: 13124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,4.5 + parent: 2 + - uid: 13125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,4.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,4.5 + parent: 2 + - uid: 13127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,4.5 + parent: 2 + - uid: 13128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,5.5 + parent: 2 + - uid: 13129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,7.5 + parent: 2 + - uid: 13147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,18.5 + parent: 2 + - uid: 13148 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 13149 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - uid: 13150 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 13151 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 13152 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 13153 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 13154 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - uid: 13155 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - uid: 13156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,8.5 + parent: 2 + - uid: 13157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 2 + - uid: 13158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 2 + - uid: 13159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,7.5 + parent: 2 + - uid: 13160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + - uid: 13161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - uid: 13162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + - uid: 13163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - uid: 13164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 + - uid: 13165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - uid: 13166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - uid: 13170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 + - uid: 13171 + components: + - type: Transform + pos: -6.5,17.5 + parent: 2 + - uid: 13172 + components: + - type: Transform + pos: -6.5,18.5 + parent: 2 + - uid: 13173 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - uid: 13174 + components: + - type: Transform + pos: -6.5,20.5 + parent: 2 + - uid: 13175 + components: + - type: Transform + pos: -6.5,21.5 + parent: 2 + - uid: 13176 + components: + - type: Transform + pos: -6.5,22.5 + parent: 2 + - uid: 13177 + components: + - type: Transform + pos: -6.5,23.5 + parent: 2 + - uid: 13178 + components: + - type: Transform + pos: -6.5,24.5 + parent: 2 + - uid: 13179 + components: + - type: Transform + pos: -6.5,26.5 + parent: 2 + - uid: 13180 + components: + - type: Transform + pos: -6.5,27.5 + parent: 2 + - uid: 13181 + components: + - type: Transform + pos: -6.5,28.5 + parent: 2 + - uid: 13182 + components: + - type: Transform + pos: -6.5,29.5 + parent: 2 + - uid: 13183 + components: + - type: Transform + pos: -6.5,30.5 + parent: 2 + - uid: 13184 + components: + - type: Transform + pos: -6.5,25.5 + parent: 2 + - uid: 13185 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - uid: 13186 + components: + - type: Transform + pos: -6.5,33.5 + parent: 2 + - uid: 13187 + components: + - type: Transform + pos: -6.5,34.5 + parent: 2 + - uid: 13188 + components: + - type: Transform + pos: -6.5,35.5 + parent: 2 + - uid: 13189 + components: + - type: Transform + pos: -6.5,36.5 + parent: 2 + - uid: 13190 + components: + - type: Transform + pos: -6.5,37.5 + parent: 2 + - uid: 13191 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - uid: 13192 + components: + - type: Transform + pos: -6.5,39.5 + parent: 2 + - uid: 13193 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - uid: 13194 + components: + - type: Transform + 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 + rot: -1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 + - uid: 13211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 2 + - uid: 13212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 2 + - uid: 13213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 2 + - uid: 13214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 2 + - uid: 13215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 2 + - uid: 13216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 2 + - uid: 13217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 13218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 2 + - uid: 13219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 2 + - uid: 13220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-7.5 + parent: 2 + - uid: 13221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-7.5 + parent: 2 + - uid: 13222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-7.5 + parent: 2 + - uid: 13223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-7.5 + parent: 2 + - uid: 13224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-7.5 + parent: 2 + - uid: 13225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 2 + - uid: 13226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 2 + - uid: 13227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 2 + - uid: 13228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 2 + - uid: 13229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 2 + - uid: 13230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 13231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 2 + - uid: 13232 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 2 + - uid: 13233 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 2 + - uid: 13234 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 2 + - uid: 13235 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 + - uid: 13236 + components: + - type: Transform + pos: -21.5,-2.5 + parent: 2 + - uid: 13237 + components: + - type: Transform + pos: -21.5,-1.5 + parent: 2 + - uid: 13238 + components: + - type: Transform + pos: -21.5,-0.5 + parent: 2 + - uid: 13239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,0.5 + parent: 2 + - uid: 13240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 2 + - uid: 13241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,0.5 + parent: 2 + - uid: 13242 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,0.5 + parent: 2 + - uid: 13243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 2 + - uid: 13244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + - uid: 13245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 2 + - uid: 13246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,0.5 + parent: 2 + - uid: 13247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,0.5 + parent: 2 + - uid: 13258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 13259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - uid: 13260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 + - uid: 13261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 2 + - uid: 13262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-15.5 + parent: 2 + - uid: 13263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-17.5 + parent: 2 + - uid: 13264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-18.5 + parent: 2 + - uid: 13265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + - uid: 13266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-20.5 + parent: 2 + - uid: 13267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-23.5 + parent: 2 + - uid: 13268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-22.5 + parent: 2 + - uid: 13269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + - uid: 13273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 2 + - uid: 13274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 2 + - uid: 13276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 2 + - uid: 13277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - uid: 13288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 2 + - uid: 13289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + - uid: 13293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 2 + - uid: 13294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 2 + - uid: 13295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2 + - uid: 13296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 + - uid: 13297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 2 + - uid: 13299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,25.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,26.5 + parent: 2 + - uid: 13301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,27.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,28.5 + parent: 2 + - uid: 13303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - uid: 13304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 2 + - uid: 13305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,30.5 + parent: 2 + - uid: 13306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,31.5 + parent: 2 + - uid: 13307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,32.5 + parent: 2 + - uid: 13308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,33.5 + parent: 2 + - uid: 13309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + - uid: 13310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,34.5 + parent: 2 + - uid: 13311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 + - uid: 13312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,34.5 + parent: 2 + - uid: 13313 + components: + - type: Transform + pos: 12.5,35.5 + parent: 2 + - uid: 13314 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - uid: 13315 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 13316 + components: + - type: Transform + pos: 12.5,38.5 + parent: 2 + - uid: 13317 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - uid: 13318 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - uid: 13334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + - uid: 13335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 2 + - uid: 13336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 2 + - uid: 13337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 2 + - uid: 13338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 2 + - uid: 13339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + - uid: 13340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-19.5 + parent: 2 + - uid: 13341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-20.5 + parent: 2 + - uid: 13342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-21.5 + parent: 2 + - uid: 13343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-22.5 + parent: 2 + - uid: 13344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-23.5 + parent: 2 + - uid: 13345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-24.5 + parent: 2 + - uid: 13346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-25.5 + parent: 2 + - uid: 13347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-26.5 + parent: 2 + - uid: 13348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-27.5 + parent: 2 + - uid: 13349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-28.5 + parent: 2 + - uid: 13350 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-29.5 + parent: 2 + - uid: 13351 + components: + - type: Transform + pos: -40.5,-31.5 + parent: 2 + - uid: 13352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-30.5 + parent: 2 + - uid: 13353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-30.5 + parent: 2 + - uid: 13355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-30.5 + parent: 2 + - uid: 13356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-30.5 + parent: 2 + - uid: 13357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-30.5 + parent: 2 + - uid: 13358 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-30.5 + parent: 2 + - uid: 13359 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-30.5 + parent: 2 + - uid: 13360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-30.5 + parent: 2 + - uid: 13361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-30.5 + parent: 2 + - uid: 13362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-30.5 + parent: 2 + - uid: 13363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-30.5 + parent: 2 + - uid: 13364 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-30.5 + parent: 2 + - uid: 13365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-30.5 + parent: 2 + - uid: 13366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-30.5 + parent: 2 + - uid: 13367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-30.5 + parent: 2 + - uid: 13368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-30.5 + parent: 2 + - uid: 13369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-30.5 + parent: 2 + - uid: 13370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-30.5 + parent: 2 + - uid: 13371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-30.5 + parent: 2 + - uid: 13372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-30.5 + parent: 2 + - uid: 13373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-30.5 + parent: 2 + - uid: 13374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-30.5 + parent: 2 + - uid: 13375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-30.5 + parent: 2 + - uid: 13376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-30.5 + parent: 2 + - uid: 13377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-30.5 + parent: 2 + - uid: 13378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-30.5 + parent: 2 + - uid: 13379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-30.5 + parent: 2 + - uid: 13380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-30.5 + parent: 2 + - uid: 13381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-30.5 + parent: 2 + - uid: 13382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 2 + - uid: 13383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 2 + - uid: 13384 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-33.5 + parent: 2 + - uid: 13385 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-34.5 + parent: 2 + - uid: 13386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-35.5 + parent: 2 + - uid: 13387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-36.5 + parent: 2 + - uid: 13388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-37.5 + parent: 2 + - uid: 13389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-38.5 + parent: 2 + - uid: 13390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-38.5 + parent: 2 + - uid: 13391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 + - uid: 13392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-38.5 + parent: 2 + - uid: 13393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-38.5 + parent: 2 + - uid: 13394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-38.5 + parent: 2 + - uid: 13395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-38.5 + parent: 2 + - uid: 13396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-38.5 + parent: 2 + - uid: 13397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-38.5 + parent: 2 + - uid: 13398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-38.5 + parent: 2 + - uid: 13400 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - uid: 13401 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - uid: 13402 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - uid: 13403 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - uid: 13404 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - uid: 13405 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 2 + - uid: 13406 + components: + - type: Transform + pos: -19.5,-30.5 + parent: 2 + - uid: 13407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-29.5 + parent: 2 + - uid: 13408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-29.5 + parent: 2 + - uid: 13409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-29.5 + parent: 2 + - uid: 13410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-28.5 + parent: 2 + - uid: 13411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-27.5 + parent: 2 + - uid: 13412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-26.5 + parent: 2 + - uid: 13413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-25.5 + parent: 2 + - uid: 13414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-24.5 + parent: 2 + - uid: 13415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-23.5 + parent: 2 + - uid: 13416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-22.5 + parent: 2 + - uid: 13418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-20.5 + parent: 2 + - uid: 13419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 2 + - uid: 13420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-18.5 + parent: 2 + - uid: 13421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-17.5 + parent: 2 + - uid: 13433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-17.5 + parent: 2 + - uid: 13434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 2 + - uid: 13435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 2 + - uid: 13436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 2 + - uid: 13437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 2 + - uid: 13438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 2 + - uid: 13439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - uid: 13440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 2 + - uid: 13441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 2 + - uid: 13442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-16.5 + parent: 2 + - uid: 13443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - uid: 13445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - uid: 14120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - uid: 14124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 2 + - uid: 14127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-21.5 + parent: 2 + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 2 + - uid: 14141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 2 + - uid: 14158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 2 + - uid: 14161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-30.5 + parent: 2 + - uid: 15319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - uid: 15320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-30.5 + parent: 2 + - uid: 15321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-26.5 + parent: 2 + - uid: 15322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-26.5 + parent: 2 + - uid: 15323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 15324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 2 + - uid: 15806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,10.5 + parent: 2 + - uid: 15807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,11.5 + parent: 2 + - uid: 15808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 2 + - uid: 15809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 2 + - uid: 15994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-31.5 + parent: 2 + - uid: 15995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-32.5 + parent: 2 + - uid: 15996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-33.5 + parent: 2 + - uid: 15997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-35.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 456 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 457 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 989 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-8.5 + parent: 2 + - uid: 2707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-24.5 + parent: 2 + - uid: 2743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 3116 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 4491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 2 + - uid: 6123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + - uid: 9350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 2 + - uid: 9994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-37.5 + parent: 2 + - uid: 12929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,31.5 + parent: 2 + - uid: 12986 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 13057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,10.5 + parent: 2 + - uid: 13085 + components: + - type: Transform + 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 + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 13089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 13090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-17.5 + parent: 2 + - uid: 13140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,9.5 + parent: 2 + - uid: 13141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 2 + - uid: 13209 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 2 + - uid: 13270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 2 + - uid: 13271 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 13272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-24.5 + parent: 2 + - uid: 13287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-1.5 + parent: 2 + - uid: 13321 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 13322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,31.5 + parent: 2 + - uid: 13323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 2 + - uid: 13330 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - uid: 13331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-19.5 + parent: 2 + - uid: 13332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-32.5 + parent: 2 + - uid: 13448 + components: + - type: Transform + pos: -63.5,-29.5 + parent: 2 + - uid: 14166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-21.5 + parent: 2 + - uid: 15325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 2 + - uid: 15326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 + - uid: 15991 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-34.5 + parent: 2 + - uid: 15992 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-36.5 + parent: 2 +- proto: DisposalUnit + entities: + - uid: 453 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: -3.5,12.5 + parent: 2 + - uid: 1701 + components: + - type: Transform + pos: 18.5,-1.5 + parent: 2 + - uid: 1748 + components: + - type: Transform + pos: 10.5,25.5 + parent: 2 + - uid: 2024 + components: + - type: Transform + pos: -5.5,-24.5 + parent: 2 + - uid: 2049 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 2050 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 4029 + components: + - type: Transform + pos: 32.5,9.5 + parent: 2 + - uid: 4030 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 + - uid: 4488 + components: + - type: Transform + pos: 10.5,-3.5 + parent: 2 + - uid: 4495 + components: + - type: Transform + pos: 16.5,4.5 + parent: 2 + - uid: 6564 + components: + - type: Transform + pos: 12.5,31.5 + parent: 2 + - uid: 6565 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 9991 + components: + - type: Transform + pos: -18.5,-37.5 + parent: 2 + - uid: 10529 + components: + - type: Transform + pos: -6.5,-32.5 + parent: 2 + - uid: 12923 + components: + - type: Transform + pos: 36.5,-24.5 + parent: 2 + - uid: 12930 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 2 + - uid: 12932 + components: + - type: Transform + pos: -40.5,-32.5 + parent: 2 + - uid: 12933 + components: + - type: Transform + pos: -63.5,-29.5 + parent: 2 + - uid: 12934 + components: + - type: Transform + pos: -31.5,-19.5 + parent: 2 + - uid: 12935 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 2 + - uid: 12936 + components: + - type: Transform + pos: -39.5,-11.5 + parent: 2 + - uid: 12937 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 2 + - uid: 12938 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - uid: 12939 + components: + - 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 + pos: -5.5,31.5 + parent: 2 + - uid: 13084 + components: + - type: Transform + pos: -8.5,41.5 + parent: 2 + - uid: 13091 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - uid: 13167 + components: + - type: Transform + pos: 18.5,10.5 + parent: 2 + - uid: 14209 + components: + - type: Transform + pos: -21.5,-21.5 + parent: 2 +- proto: DisposalYJunction + entities: + - uid: 13252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-7.5 + parent: 2 + - uid: 13257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 13286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-3.5 + parent: 2 + - uid: 13447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-30.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 +- proto: DogBed + entities: + - uid: 1779 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 + - uid: 16198 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 1113 + components: + - type: Transform + pos: 34.5,-21.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 5603 + components: + - type: Transform + pos: 37.652336,-3.2465425 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 4595 + components: + - type: Transform + pos: -24.5,0.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 2539 + components: + - type: Transform + pos: 41.5,-14.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 3910 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 541 + components: + - type: Transform + pos: -25.5,-43.5 + parent: 2 + - uid: 2116 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 2 + - uid: 2117 + components: + - type: Transform + pos: -4.5,-38.5 + parent: 2 + - uid: 4693 + components: + - type: Transform + pos: -30.5,-41.5 + parent: 2 + - uid: 6037 + components: + - type: Transform + pos: -25.5,-41.5 + parent: 2 + - uid: 6282 + components: + - type: Transform + pos: -30.5,-43.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 1780 + components: + - type: Transform + pos: 8.5,-22.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 2074 + components: + - type: Transform + pos: -10.5,-38.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 6553 + components: + - type: Transform + pos: 2.5,35.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 5072 + components: + - type: Transform + pos: -16.5,8.5 + parent: 2 +- proto: DrinkAleBottleFull + entities: + - uid: 381 + components: + - type: Transform + pos: 6.423849,-4.213224 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 10504 + components: + - type: Transform + pos: 19.792477,40.87129 + parent: 2 + - uid: 10505 + components: + - type: Transform + pos: 20.022177,40.665478 + parent: 2 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 12901 + components: + - type: Transform + parent: 273 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkDoctorsDelightGlass + entities: + - uid: 12917 + components: + - type: Transform + pos: 32.32895,22.604609 + parent: 2 +- proto: DrinkGinBottleFull + entities: + - uid: 380 + components: + - type: Transform + pos: 6.736349,-4.213224 + parent: 2 + - uid: 4619 + components: + - type: Transform + pos: -27.57755,-1.2557149 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 335 + components: + - type: Transform + pos: 6.3530006,-6.2786508 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: 6.6186256,-6.4817758 + parent: 2 + - uid: 3228 + components: + - type: Transform + pos: -24.046377,-32.343918 + parent: 2 + - uid: 5906 + components: + - type: Transform + pos: -15.652576,-13.328699 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: -15.340076,-13.203699 + parent: 2 + - uid: 5908 + components: + - type: Transform + pos: -15.371326,-13.422449 + parent: 2 + - uid: 15220 + components: + - type: Transform + pos: -31.024319,-11.08423 + parent: 2 + - uid: 15221 + components: + - type: Transform + pos: -30.836819,-11.39673 + parent: 2 +- proto: DrinkGlassCoupeShaped + entities: + - uid: 3282 + components: + - type: Transform + pos: -36.314873,-22.316784 + parent: 2 +- proto: DrinkJigger + entities: + - uid: 804 + components: + - type: Transform + pos: 1.9510839,-3.4217634 + parent: 2 +- proto: DrinkMug + entities: + - uid: 983 + components: + - type: Transform + pos: -1.5759726,-5.276612 + parent: 2 +- proto: DrinkMugBlack + entities: + - uid: 690 + components: + - type: Transform + pos: -0.6466272,1.1383384 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -1.3415977,-5.307862 + parent: 2 + - uid: 5909 + components: + - type: Transform + pos: -17.840076,-14.297449 + parent: 2 + - uid: 5910 + components: + - type: Transform + pos: -17.527576,-14.203699 + parent: 2 + - uid: 5911 + components: + - type: Transform + pos: -17.621326,-14.484949 + parent: 2 +- proto: DrinkMugHeart + entities: + - uid: 691 + components: + - type: Transform + pos: -0.27397442,1.3672779 + parent: 2 +- proto: DrinkMugRed + entities: + - uid: 984 + components: + - type: Transform + pos: -1.4978476,-5.495362 + parent: 2 +- proto: DrinkPwrGameCan + entities: + - uid: 15596 + components: + - type: Transform + pos: 61.82484,39.080135 + parent: 2 +- proto: DrinkRootBeerCan + entities: + - uid: 10506 + components: + - type: Transform + pos: 20.334677,40.696728 + parent: 2 +- proto: DrinkRumBottleFull + entities: + - uid: 382 + components: + - type: Transform + pos: 6.548849,-4.103849 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 802 + components: + - type: Transform + pos: -0.6582911,-3.3905134 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 322 + components: + - type: Transform + pos: -0.09159768,-7.2505407 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -0.0703001,-7.4901342 + parent: 2 + - uid: 9391 + components: + - type: Transform + pos: 37.729843,25.90349 + parent: 2 + - uid: 9392 + components: + - type: Transform + pos: 37.292343,26.40349 + parent: 2 + - uid: 11095 + components: + - type: Transform + pos: -27.343176,-1.2244649 + parent: 2 + - uid: 13770 + components: + - type: Transform + pos: -24.369244,35.330482 + parent: 2 + - uid: 15426 + components: + - type: Transform + pos: -27.343176,-1.5369649 + parent: 2 +- proto: DrinkTeapot + entities: + - uid: 977 + components: + - type: Transform + pos: -1.482403,-5.870692 + parent: 2 +- proto: DrinkVodkaBottleFull + entities: + - uid: 13769 + components: + - type: Transform + pos: -24.799568,35.674232 + parent: 2 +- proto: DrinkWaterJug + entities: + - uid: 15217 + components: + - type: Transform + pos: -31.180569,-11.36548 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 9393 + components: + - type: Transform + pos: 38.761093,24.62224 + parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 3281 + components: + - type: Transform + pos: -36.596123,-22.191784 + parent: 2 +- proto: ElectrolysisUnitMachineCircuitboard + entities: + - uid: 13784 + components: + - type: Transform + pos: 27.642355,37.74729 + parent: 2 +- proto: EmergencyFunnyOxygenTankFilled + entities: + - uid: 13750 + components: + - type: Transform + pos: 14.644749,-25.428099 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 7773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-28.5 + parent: 2 + - uid: 11353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-20.5 + parent: 2 + - uid: 14986 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 15477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 2 + - uid: 15478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 15479 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,20.5 + parent: 2 + - uid: 15482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,23.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - uid: 15484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 + - uid: 15485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,33.5 + parent: 2 + - uid: 15486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,32.5 + parent: 2 + - uid: 15487 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,38.5 + parent: 2 + - uid: 15488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,24.5 + parent: 2 + - uid: 15489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,18.5 + parent: 2 + - uid: 15490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,12.5 + parent: 2 + - uid: 15491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 2 + - uid: 15492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 2 + - uid: 15493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 2 + - uid: 15494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 2 + - uid: 15495 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 15497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,12.5 + parent: 2 + - uid: 15498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-3.5 + parent: 2 + - uid: 15499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-8.5 + parent: 2 + - uid: 15500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-13.5 + parent: 2 + - uid: 15501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-12.5 + parent: 2 + - uid: 15502 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-4.5 + parent: 2 + - uid: 15504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 2 + - uid: 15505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-24.5 + parent: 2 + - uid: 15506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-22.5 + parent: 2 + - uid: 15508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + - uid: 15509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-33.5 + parent: 2 + - uid: 15510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-41.5 + parent: 2 + - uid: 15511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-28.5 + parent: 2 + - uid: 15512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 2 + - uid: 15513 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-7.5 + parent: 2 + - uid: 15515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 2 + - uid: 15516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 + - uid: 15517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-14.5 + parent: 2 + - uid: 15518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 2 + - uid: 15519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-14.5 + parent: 2 + - uid: 15521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 2 + - uid: 15523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 2 + - uid: 15524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - uid: 15525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + - uid: 15526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 15527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 15528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - uid: 15529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 2 + - uid: 15530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 + - uid: 15531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,9.5 + parent: 2 + - uid: 15532 + components: + - type: Transform + pos: -4.5,17.5 + parent: 2 + - uid: 15533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,25.5 + parent: 2 + - uid: 15534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,28.5 + parent: 2 + - uid: 15535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,35.5 + parent: 2 + - uid: 15536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,41.5 + parent: 2 + - uid: 15537 + components: + - type: Transform + 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 + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 2 + - uid: 15545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + - uid: 15546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 2 + - uid: 15547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-10.5 + parent: 2 + - uid: 15548 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 15549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-9.5 + parent: 2 + - uid: 15550 + components: + - type: Transform + pos: -45.5,-11.5 + parent: 2 + - uid: 15551 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-12.5 + parent: 2 + - uid: 15552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-24.5 + parent: 2 + - uid: 15553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-24.5 + parent: 2 + - uid: 15554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-18.5 + parent: 2 + - uid: 15555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 2 + - uid: 15556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-23.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-30.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - uid: 15562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-34.5 + parent: 2 + - uid: 15563 + components: + - type: Transform + pos: 2.5,-36.5 + parent: 2 + - uid: 15564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 2 + - uid: 15565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-36.5 + parent: 2 + - uid: 15566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-43.5 + parent: 2 + - uid: 15567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-33.5 + parent: 2 + - uid: 15568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - uid: 15569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-14.5 + parent: 2 + - uid: 15570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-16.5 + parent: 2 + - uid: 15571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + - uid: 15572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-30.5 + parent: 2 + - uid: 15573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-39.5 + parent: 2 + - uid: 15574 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-36.5 + parent: 2 + - uid: 15575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-35.5 + parent: 2 + - uid: 15576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-41.5 + parent: 2 + - uid: 15577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-31.5 + parent: 2 + - uid: 15578 + components: + - type: Transform + pos: -47.5,-29.5 + parent: 2 + - uid: 15579 + components: + - type: Transform + pos: -63.5,-29.5 + parent: 2 + - uid: 15580 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-22.5 + parent: 2 + - uid: 15581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-18.5 + parent: 2 + - uid: 15582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-3.5 + parent: 2 + - uid: 15583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-16.5 + parent: 2 + - uid: 15584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-33.5 + parent: 2 + - uid: 15585 + components: + - 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 + pos: 12.5,21.5 + parent: 2 + - uid: 15588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,39.5 + parent: 2 + - uid: 15589 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,21.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,17.5 + parent: 2 + - uid: 15595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 2 + - uid: 15893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,18.5 + parent: 2 + - uid: 15904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + - uid: 16019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 +- proto: EmergencyRollerBed + entities: + - uid: 4100 + components: + - type: Transform + pos: 22.420448,17.54732 + parent: 2 +- proto: Emitter + entities: + - uid: 1439 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-26.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: 50.5,-14.5 + parent: 2 + - uid: 2534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-27.5 + parent: 2 + - uid: 2647 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-28.5 + parent: 2 + - uid: 14838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-23.5 + parent: 2 + - uid: 16227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 2 +- proto: EthanolChemistryBottle + entities: + - uid: 385 + components: + - type: Transform + pos: 26.526052,37.62136 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 5127 + components: + - type: Transform + pos: -26.5,14.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 4487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 2 + - uid: 7216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-32.5 + parent: 2 + - uid: 8848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-35.5 + parent: 2 + - uid: 15963 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 15964 + components: + - type: Transform + pos: -27.5,-14.5 + parent: 2 + - uid: 15965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 2 + - uid: 15966 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - uid: 15967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-31.5 + parent: 2 + - uid: 15968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 2 + - uid: 15969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-16.5 + parent: 2 + - uid: 15970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + - uid: 15971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - uid: 15972 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 15973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 2 + - uid: 15974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,31.5 + parent: 2 + - uid: 15975 + components: + - type: Transform + 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 + rot: -1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + - uid: 15978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 15980 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 + - uid: 15981 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,35.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 1776 + components: + - type: Transform + pos: 7.5,-17.5 + parent: 2 + - type: FaxMachine + name: HoP's Office + destinationAddress: HoP's Office + - uid: 4025 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 + - type: FaxMachine + name: Medical + destinationAddress: Medical + - uid: 4072 + components: + - type: Transform + pos: 39.5,-16.5 + parent: 2 + - type: FaxMachine + name: CE's Office + destinationAddress: CE's Office + - uid: 4123 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - type: FaxMachine + name: HoS's Office + destinationAddress: HoS's Office + - uid: 4126 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - type: FaxMachine + name: Security + destinationAddress: Security + - uid: 4589 + components: + - type: Transform + pos: 26.5,-15.5 + parent: 2 + - type: FaxMachine + name: Engineering + destinationAddress: Engineering + - uid: 4947 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - type: FaxMachine + name: Service + destinationAddress: Service + - uid: 7129 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - type: FaxMachine + name: CMO's Office + destinationAddress: CMO's Office + - uid: 9398 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - type: FaxMachine + name: QM's Office + destinationAddress: QM's Office + - uid: 9399 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - 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 + pos: -31.5,-5.5 + parent: 2 + - type: FaxMachine + name: Bridge + destinationAddress: Bridge + - uid: 12855 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - type: FaxMachine + name: Library + destinationAddress: Library +- proto: FaxMachineCaptain + entities: + - uid: 4528 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - type: FaxMachine + destinationAddress: Captain's Office +- proto: filingCabinetDrawerRandom + entities: + - uid: 1792 + components: + - type: Transform + pos: 11.5,-16.5 + parent: 2 + - uid: 2032 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 3112 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 3128 + components: + - type: Transform + pos: -24.5,-25.5 + parent: 2 + - uid: 3283 + components: + - type: Transform + pos: -24.5,-35.5 + parent: 2 + - uid: 4118 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 4120 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 4387 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 2 + - uid: 4467 + components: + - type: Transform + pos: -29.5,-5.5 + parent: 2 + - uid: 6020 + components: + - type: Transform + pos: -17.5,-42.5 + parent: 2 + - uid: 6057 + components: + - type: Transform + pos: -17.5,-41.5 + parent: 2 + - uid: 6576 + components: + - type: Transform + pos: 15.5,39.5 + parent: 2 + - uid: 6577 + components: + - type: Transform + pos: 11.5,30.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 1045 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - uid: 3123 + components: + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 3575 + components: + - type: Transform + pos: -34.5,-33.5 + parent: 2 + - uid: 5502 + components: + - type: Transform + pos: -18.5,22.5 + parent: 2 + - uid: 6581 + components: + - type: Transform + pos: 2.5,40.5 + parent: 2 + - uid: 6648 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 6719 + components: + - type: Transform + pos: -25.5,30.5 + parent: 2 + - uid: 7314 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 9507 + components: + - type: Transform + pos: 5.5,30.5 + parent: 2 +- proto: filingCabinetTallRandom + entities: + - uid: 2153 + components: + - type: Transform + pos: 2.5,-32.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 1264 + components: + - type: MetaData + name: fire alarm (Bar) + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 267 + - 268 + - 269 + - 270 + - 1628 + - uid: 8137 + components: + - type: MetaData + name: fire alarm (Southeast Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 10859 + - 10862 + - 10858 + - 10857 + - 10915 + - 1081 + - 1083 + - uid: 8138 + components: + - type: MetaData + name: fire alarm (East Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 13804 + - 13805 + - 13803 + - 1081 + - 1083 + - 10849 + - 10850 + - 10851 + - uid: 11390 + components: + - type: MetaData + name: fire alarm (Evac) + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 10822 + - 10823 + - 10824 + - uid: 11391 + components: + - type: MetaData + name: fire alarm (West Hall) + - type: Transform + pos: -6.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 10806 + - 10805 + - 10803 + - 10810 + - 10811 + - 10804 + - 1620 + - 1621 + - 1622 + - 10834 + - 10839 + - 1938 + - uid: 11574 + components: + - type: MetaData + name: fire alarm (Spacebucks) + - type: Transform + pos: -19.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 10813 + - 10817 + - 10878 + - 10879 + - 10815 + - 10816 + - 10819 + - 10832 + - 10833 + - 12011 + - uid: 11575 + components: + - type: MetaData + name: fire alarm (Intersection) + - type: Transform + pos: -5.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 6141 + - 10809 + - 10828 + - 10829 + - 10834 + - 10839 + - 1938 + - 12011 + - 10833 + - 10832 + - uid: 11576 + components: + - type: MetaData + name: fire alarm (South Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 10857 + - 10858 + - 10859 + - 10861 + - 10809 + - 10828 + - 10829 + - uid: 12224 + components: + - type: MetaData + name: fire alarm (Northwest Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 10806 + - 10805 + - 10803 + - 10836 + - 10835 + - 10837 + - 10838 + - 4114 + - 10880 + - 10881 + - uid: 12225 + components: + - type: MetaData + name: fire alarm (Arrivals Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,25.5 + parent: 2 + - type: DeviceList + devices: + - 10837 + - 10838 + - 4114 + - 10882 + - 10883 + - 10841 + - 10840 + - uid: 12226 + components: + - type: MetaData + name: fire alarm (Arrivals) + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,45.5 + parent: 2 + - type: DeviceList + devices: + - 10841 + - 10840 + - uid: 13456 + components: + - type: MetaData + name: fire alarm (North Hall) + - type: Transform + pos: 8.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 10846 + - 10847 + - 10848 + - 10836 + - 10835 + - 10844 + - 10845 + - 10907 + - 1630 + - uid: 13457 + components: + - type: MetaData + name: fire alarm (Northeast Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 10852 + - 10853 + - 10854 + - 10851 + - 10850 + - 10849 + - 13809 + - 10905 + - 10846 + - 10847 + - 10848 + - uid: 14119 + components: + - type: MetaData + name: fire alarm (Dorms Hall) + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - type: DeviceList + devices: + - 10820 + - 10826 + - 10825 + - 10827 + - 357 + - uid: 14126 + components: + - type: MetaData + name: fire alarm (Service Hall) + - type: Transform + pos: -38.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 10812 + - 10814 + - 10813 + - 10817 + - uid: 14128 + components: + - type: MetaData + name: fire alarm (Evac Hall) + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - type: DeviceList + devices: + - 10827 + - 10825 + - 10873 + - 10812 + - 10814 + - 10822 + - 10823 + - 10824 + - uid: 14129 + components: + - type: MetaData + name: fire alarm (Southwest Hall) + - type: Transform + pos: -18.5,-27.5 + parent: 2 + - type: DeviceList + devices: + - 14212 + - 14136 + - 10815 + - 10816 + - 10819 + - 10820 + - 10826 + - uid: 14279 + components: + - type: MetaData + name: fire alarm (Bridge) + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 10877 + - 10876 + - 10875 + - 10874 + - uid: 14641 + components: + - type: MetaData + name: fire alarm (Central Service) + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 2 + - type: DeviceList + devices: + - 243 + - 197 + - 267 + - 268 + - 269 + - 270 + - 1620 + - 1621 + - 1622 + - 263 + - 264 + - 265 + - 266 + - 1628 + - 1629 + - uid: 14651 + components: + - type: MetaData + name: fire alarm (Kitchen) + - type: Transform + pos: 9.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 263 + - 264 + - 265 + - 266 + - 1629 + - uid: 14652 + components: + - type: MetaData + name: fire alarm (Backstage) + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 243 + - 197 + - uid: 14653 + components: + - type: MetaData + name: fire alarm (Botany) + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 13809 + - 1630 + - uid: 14654 + components: + - type: MetaData + name: fire alarm (Bridge Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 10878 + - 10879 + - 10876 + - 10877 + - 10810 + - 10811 + - 10804 + - uid: 14655 + components: + - type: MetaData + name: fire alarm (Bridge Evac) + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 10875 + - 10874 + - uid: 14656 + components: + - type: MetaData + name: fire alarm (Evac Checkpoint) + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-33.5 + parent: 2 + - type: DeviceList + devices: + - 10873 + - uid: 14657 + components: + - type: MetaData + name: fire alarm (Brig) + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 10870 + - 10867 + - 10868 + - 10866 + - 10864 + - 10863 + - 15798 + - uid: 14658 + components: + - type: MetaData + name: fire alarm (Security Entrance) + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 10865 + - 6141 + - uid: 14659 + components: + - type: MetaData + name: fire alarm (Security Breakroom) + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 10869 + - uid: 14660 + components: + - type: MetaData + name: fire alarm (Warden's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 10869 + - 10866 + - uid: 14661 + components: + - type: MetaData + name: fire alarm (Perma) + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 10918 + - uid: 14662 + components: + - type: MetaData + name: fire alarm (HoP's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 10861 + - 10862 + - uid: 14663 + components: + - type: MetaData + name: fire alarm (Engineering Checkpoint) + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - type: DeviceList + devices: + - 10915 + - uid: 14664 + components: + - type: MetaData + name: fire alarm (Engineering Locker Room) + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 13803 + - uid: 14665 + components: + - type: MetaData + name: fire alarm (Engineering) + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-13.5 + parent: 2 + - type: DeviceList + devices: + - 13804 + - 13805 + - 13832 + - 13833 + - 13835 + - 13834 + - 13850 + - uid: 14666 + components: + - type: MetaData + name: fire alarm (TEG) + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-25.5 + parent: 2 + - type: DeviceList + devices: + - 13836 + - 13832 + - 13833 + - uid: 14667 + components: + - type: MetaData + name: fire alarm (Atmospherics) + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 13835 + - 13834 + - 13836 + - 13850 + - uid: 14668 + components: + - type: MetaData + name: fire alarm (Medbay Entrance) + - type: Transform + pos: 28.5,9.5 + parent: 2 + - type: DeviceList + devices: + - 10898 + - 10899 + - 10852 + - 10853 + - 10854 + - 13810 + - uid: 14669 + components: + - type: MetaData + name: fire alarm (Medbay) + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 10901 + - 10900 + - 10898 + - 10899 + - uid: 14671 + components: + - type: MetaData + name: fire alarm (Medbay Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 14670 + - 10900 + - 10901 + - 10902 + - 14672 + - uid: 14673 + components: + - type: MetaData + name: fire alarm (Chemistry) + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 14672 + - 14670 + - 10905 + - 4374 + - uid: 14675 + components: + - type: MetaData + name: fire alarm (Medical Locker Room) + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 10902 + - uid: 14677 + components: + - type: MetaData + name: fire alarm (Cargo Reception) + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,29.5 + parent: 2 + - type: DeviceList + devices: + - 10887 + - 10890 + - 10891 + - 10893 + - 10892 + - uid: 14678 + components: + - type: MetaData + name: fire alarm (Cargo Bay) + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 10889 + - 10888 + - 10892 + - 10893 + - 10894 + - 10895 + - uid: 14679 + components: + - type: MetaData + name: fire alarm (Salvage) + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,39.5 + parent: 2 + - type: DeviceList + 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 + name: fire alarm (Medical Reception) + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - type: DeviceList + devices: + - 13810 + - uid: 14684 + components: + - type: MetaData + name: fire alarm (Psychologist's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 2 + - type: DeviceList + devices: + - 10907 + - uid: 14787 + components: + - type: MetaData + name: fire alarm (Cargo Entrance) + - type: Transform + pos: 4.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 12452 + - 12449 + - 12453 + - 10890 + - 10891 + - 10845 + - 10844 + - 10888 + - 10889 + - uid: 15794 + components: + - type: MetaData + name: fire alarm (Library) + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 14212 + - 14136 + - uid: 15796 + components: + - type: MetaData + name: fire alarm (Law Office) + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 357 + - uid: 15797 + components: + - type: MetaData + name: fire alarm (Security South) + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 10918 + - 15798 +- proto: FireAlarmElectronics + entities: + - uid: 2284 + components: + - type: Transform + pos: 37.442463,-3.346447 + parent: 2 +- proto: FireAxeCabinetFilled + entities: + - uid: 2187 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 15812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-12.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 12686 + components: + - type: Transform + pos: 21.09589,40.69616 + parent: 2 +- proto: Firelock + entities: + - uid: 1619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 818 + - 811 + - uid: 1628 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 813 + - 811 + - 14641 + - 1264 + - uid: 2595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + - uid: 2601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-45.5 + parent: 2 + - uid: 2654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 2 + - uid: 3169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,31.5 + parent: 2 + - uid: 3616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-27.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 + rot: -1.5707963267948966 rad + pos: 6.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - 13863 + - 14787 + - 14678 + - uid: 10889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - 13863 + - 14787 + - 14678 + - uid: 10890 + components: + - type: Transform + pos: 13.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13862 + - 13860 + - 14787 + - 14677 + - uid: 10891 + components: + - type: Transform + pos: 14.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13862 + - 13860 + - 14787 + - 14677 + - uid: 10892 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13862 + - 13863 + - 14677 + - 14678 + - uid: 10893 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13862 + - 13863 + - 14677 + - 14678 + - uid: 13804 + components: + - type: Transform + pos: 25.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13800 + - 12732 + - 8138 + - 14665 + - uid: 13805 + components: + - type: Transform + pos: 25.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13800 + - 12732 + - 8138 + - 14665 + - uid: 15853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-27.5 + parent: 2 + - uid: 15903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 2 + - uid: 15905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - uid: 15906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + - uid: 15907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-41.5 + parent: 2 + - uid: 15908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-42.5 + parent: 2 + - uid: 15909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 + - uid: 15910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 2 + - uid: 15911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,28.5 + parent: 2 + - uid: 15912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,52.5 + parent: 2 + - uid: 15913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 2 + - uid: 15914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,29.5 + parent: 2 + - uid: 15915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,27.5 + parent: 2 + - uid: 15916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,29.5 + parent: 2 + - uid: 15917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + - uid: 15918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 2 + - uid: 16100 + components: + - type: Transform + pos: -18.5,55.5 + parent: 2 +- proto: FirelockEdge + entities: + - uid: 197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 818 + - 811 + - 14652 + - 14641 + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 818 + - 811 + - 14652 + - 14641 + - uid: 263 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 814 + - 811 + - 14641 + - 14651 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 814 + - 811 + - 14641 + - 14651 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 814 + - 811 + - 14641 + - 14651 + - uid: 266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 814 + - 811 + - 14641 + - 14651 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 812 + - 811 + - 14641 + - 1264 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 812 + - 811 + - 14641 + - 1264 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 812 + - 811 + - 14641 + - 1264 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 812 + - 811 + - 14641 + - 1264 + - uid: 6141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15300 + - 14658 + - 11575 + - 15328 + - uid: 10861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13795 + - 13796 + - 11576 + - 14662 + - uid: 10865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1868 + - 14658 + - 15300 + - uid: 10866 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11906 + - 11905 + - 14657 + - 14660 + - uid: 10867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14657 + - uid: 10868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14657 + - uid: 10869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11905 + - 11901 + - 14659 + - 14660 + - uid: 10873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 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 + rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13933 + - 13935 + - 12225 + - uid: 10887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - 13862 + - 14677 + - uid: 10895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13863 + - 3340 + - 14678 + - 14679 + - uid: 10905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - 13817 + - 14673 + - 13457 + - uid: 10915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13799 + - 13802 + - 8137 + - 14663 + - uid: 13803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13800 + - 13947 + - 8138 + - 14664 + - uid: 13809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - 816 + - 14653 + - 13457 + - uid: 13810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13811 + - 13812 + - 14668 + - 14683 + - uid: 13850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12673 + - 12724 + - 14667 + - 14665 + - uid: 13853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - 13862 + - uid: 14670 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14671 + - 14673 +- proto: FirelockElectronics + entities: + - uid: 2286 + components: + - type: Transform + pos: 37.723713,-3.502697 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 357 + components: + - type: Transform + pos: -21.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15796 + - 11357 + - 13789 + - 14119 + - uid: 1081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13799 + - 13800 + - 8137 + - 8138 + - uid: 1083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13799 + - 13800 + - 8137 + - 8138 + - uid: 1620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 811 + - 13871 + - 14641 + - 11391 + - uid: 1621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 811 + - 13871 + - 14641 + - 11391 + - uid: 1622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 811 + - 13871 + - 14641 + - 11391 + - uid: 1629 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 814 + - 811 + - 14641 + - 14651 + - uid: 1630 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 816 + - 13851 + - 14653 + - 13456 + - uid: 1938 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - 13871 + - 11575 + - 11391 + - uid: 4114 + components: + - type: Transform + pos: -7.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13870 + - 13933 + - 12224 + - 12225 + - uid: 4374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - 13817 + - 14673 + - uid: 10803 + components: + - type: Transform + pos: -9.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13870 + - 13871 + - 12224 + - 11391 + - uid: 10804 + components: + - type: Transform + pos: -13.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11020 + - 13871 + - 14654 + - 11391 + - uid: 10805 + components: + - type: Transform + pos: -8.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13870 + - 13871 + - 12224 + - 11391 + - uid: 10806 + components: + - type: Transform + pos: -7.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13870 + - 13871 + - 12224 + - 11391 + - uid: 10809 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - 13795 + - 11575 + - 11576 + - uid: 10810 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11020 + - 13871 + - 14654 + - 11391 + - uid: 10811 + components: + - type: Transform + pos: -13.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11020 + - 13871 + - 14654 + - 11391 + - uid: 10812 + components: + - type: Transform + pos: -38.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13790 + - 13793 + - 14128 + - 14126 + - uid: 10813 + components: + - type: Transform + pos: -29.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 13794 + - 14126 + - 11574 + - uid: 10814 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13790 + - 13793 + - 14128 + - 14126 + - uid: 10815 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13791 + - 13794 + - 14129 + - 11574 + - uid: 10816 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13791 + - 13794 + - 14129 + - 11574 + - uid: 10817 + components: + - type: Transform + pos: -29.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - 13794 + - 14126 + - 11574 + - uid: 10819 + components: + - type: Transform + pos: -14.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13791 + - 13794 + - 14129 + - 11574 + - uid: 10820 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13789 + - 13791 + - 14129 + - 14119 + - uid: 10822 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13790 + - 13792 + - 14128 + - 11390 + - uid: 10823 + components: + - type: Transform + pos: -44.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13790 + - 13792 + - 14128 + - 11390 + - uid: 10824 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13790 + - 13792 + - 14128 + - 11390 + - uid: 10825 + components: + - type: Transform + pos: -30.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13789 + - 13790 + - 14119 + - 14128 + - uid: 10826 + components: + - type: Transform + pos: -20.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13789 + - 13791 + - 14129 + - 14119 + - uid: 10827 + components: + - type: Transform + pos: -31.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13789 + - 13790 + - 14119 + - 14128 + - uid: 10828 + components: + - type: Transform + pos: -1.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - 13795 + - 11575 + - 11576 + - uid: 10829 + components: + - type: Transform + pos: -1.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - 13795 + - 11575 + - 11576 + - uid: 10832 + components: + - type: Transform + pos: -10.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - 13794 + - 11574 + - 11575 + - uid: 10833 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - 13794 + - 11574 + - 11575 + - uid: 10834 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - 13871 + - 11575 + - 11391 + - uid: 10835 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13851 + - 13870 + - 12224 + - 13456 + - uid: 10836 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13851 + - 13870 + - 12224 + - 13456 + - uid: 10837 + components: + - type: Transform + pos: -5.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13870 + - 13933 + - 12224 + - 12225 + - uid: 10838 + components: + - type: Transform + pos: -6.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13870 + - 13933 + - 12224 + - 12225 + - uid: 10839 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - 13871 + - 11575 + - 11391 + - uid: 10840 + components: + - type: Transform + pos: -7.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13933 + - 13962 + - 12225 + - 12226 + - uid: 10841 + components: + - type: Transform + pos: -6.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13933 + - 13962 + - 12225 + - 12226 + - uid: 10844 + components: + - type: Transform + pos: 6.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13851 + - 13860 + - 14787 + - 13456 + - uid: 10845 + components: + - type: Transform + pos: 7.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13851 + - 13860 + - 14787 + - 13456 + - uid: 10846 + components: + - type: Transform + pos: 17.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - 13851 + - 13457 + - 13456 + - uid: 10847 + components: + - type: Transform + pos: 17.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - 13851 + - 13457 + - 13456 + - uid: 10848 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - 13851 + - 13457 + - 13456 + - uid: 10849 + components: + - type: Transform + pos: 19.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13800 + - 13806 + - 8138 + - 13457 + - uid: 10850 + components: + - type: Transform + pos: 20.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13800 + - 13806 + - 8138 + - 13457 + - uid: 10851 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13800 + - 13806 + - 8138 + - 13457 + - uid: 10852 + components: + - type: Transform + pos: 22.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - 13811 + - 14668 + - 13457 + - uid: 10853 + components: + - type: Transform + pos: 22.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - 13811 + - 14668 + - 13457 + - uid: 10854 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - 13811 + - 14668 + - 13457 + - uid: 10857 + components: + - type: Transform + pos: 11.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13795 + - 13799 + - 11576 + - 8137 + - uid: 10858 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13795 + - 13799 + - 11576 + - 8137 + - uid: 10859 + components: + - type: Transform + pos: 11.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13795 + - 13799 + - 11576 + - 8137 + - uid: 10862 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13796 + - 8137 + - 14662 + - uid: 10863 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11906 + - 1868 + - 14657 + - uid: 10864 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11906 + - 1868 + - 14657 + - uid: 10870 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11906 + - 11901 + - 14657 + - uid: 10871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-26.5 + parent: 2 + - uid: 10872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-30.5 + parent: 2 + - uid: 10874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11083 + - 11082 + - 14279 + - 14655 + - uid: 10875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11083 + - 11082 + - 14279 + - 14655 + - uid: 10876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11020 + - 11079 + - 14654 + - 14279 + - uid: 10877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11020 + - 11079 + - 14654 + - 14279 + - uid: 10878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11020 + - 11574 + - 14654 + - uid: 10879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 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 + pos: 17.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13863 + - 3340 + - 14678 + - 14679 + - uid: 10898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13811 + - 13813 + - 14668 + - 14669 + - uid: 10899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13811 + - 13813 + - 14668 + - 14669 + - uid: 10900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13813 + - 13816 + - 14669 + - 14671 + - uid: 10901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13813 + - 13816 + - 14669 + - 14671 + - uid: 10902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13819 + - 13816 + - 14671 + - 14675 + - uid: 10907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13851 + - 13852 + - 13456 + - 14684 + - uid: 10918 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14661 + - 15797 + - uid: 12011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13794 + - 11574 + - 11575 + - 15328 + - uid: 13832 + components: + - type: Transform + pos: 30.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - 12708 + - 14665 + - 14666 + - uid: 13833 + components: + - type: Transform + pos: 30.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - 12708 + - 14665 + - 14666 + - uid: 13834 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - 12673 + - 14665 + - 14667 + - uid: 13835 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - 12673 + - 14665 + - 14667 + - uid: 13836 + components: + - type: Transform + pos: 27.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12673 + - 12708 + - 14666 + - 14667 + - uid: 14136 + components: + - type: Transform + pos: -17.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2196 + - 13791 + - 14129 + - 15794 + - uid: 14212 + components: + - type: Transform + pos: -17.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2196 + - 13791 + - 14129 + - 15794 + - uid: 14672 + components: + - type: Transform + pos: 29.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14671 + - 14673 + - uid: 15798 + components: + - type: Transform + pos: -7.5,-31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15797 + - 14657 +- proto: Fireplace + entities: + - uid: 4697 + components: + - type: Transform + pos: 1.5,22.5 + parent: 2 +- proto: FlashlightLantern + entities: + - uid: 8498 + components: + - type: Transform + pos: 25.609758,-21.590296 + parent: 2 + - uid: 8499 + components: + - type: Transform + pos: 34.42089,-8.215996 + parent: 2 +- proto: FlippoLighter + entities: + - uid: 8615 + components: + - type: Transform + pos: 45.758858,-0.47734332 + parent: 2 +- proto: FloorDrain + entities: + - uid: 413 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 886 + components: + - type: Transform + pos: 11.5,5.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3854 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3982 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 3983 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 5315 + components: + - type: Transform + pos: -10.5,17.5 + 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 + pos: -2.5,-40.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 8819 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 15928 + components: + - type: Transform + pos: -43.5,-36.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FluteInstrument + entities: + - uid: 15611 + components: + - type: Transform + pos: -24.556236,1.3912594 + parent: 2 +- proto: FoodBadRecipe + entities: + - uid: 15287 + components: + - type: Transform + pos: -1.4959033,38.699974 + parent: 2 +- proto: FoodBowlBig + entities: + - uid: 805 + components: + - type: Transform + pos: 7.553319,0.8034095 + parent: 2 +- proto: FoodBoxDonkpocketBerry + entities: + - uid: 10514 + components: + - type: Transform + pos: -31.274319,-9.428044 + parent: 2 +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 10515 + components: + - type: Transform + pos: -30.868069,-9.615544 + parent: 2 +- proto: FoodBoxDonut + entities: + - uid: 1057 + components: + - type: Transform + pos: 20.53844,-10.991249 + parent: 2 + - uid: 3479 + components: + - type: Transform + pos: -34.49349,-35.40755 + parent: 2 +- proto: FoodBreadCottonSlice + entities: + - uid: 14516 + components: + - type: Transform + pos: -0.5395994,1.6172779 + parent: 2 +- proto: FoodCartCold + entities: + - uid: 440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 +- proto: FoodCondimentBottleEnzyme + entities: + - uid: 451 + components: + - type: Transform + pos: 11.587742,-1.806004 + parent: 2 +- proto: FoodDonutChocolate + entities: + - uid: 5912 + components: + - type: Transform + pos: -16.465076,-14.328699 + parent: 2 +- proto: FoodMealSashimi + entities: + - uid: 9631 + components: + - type: Transform + pos: 15.508248,1.1803949 + parent: 2 +- proto: FoodMeat + entities: + - uid: 685 + components: + - type: Transform + parent: 684 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 686 + components: + - type: Transform + parent: 684 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 687 + components: + - type: Transform + parent: 684 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodMeatRotten + entities: + - uid: 15257 + components: + - type: Transform + pos: 9.375577,5.707012 + parent: 2 + - uid: 15258 + components: + - type: Transform + pos: 9.531827,5.363262 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 7664 + components: + - type: Transform + parent: 275 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9932 + components: + - type: Transform + parent: 275 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPizzaMoldySlice + entities: + - uid: 15260 + components: + - type: Transform + pos: 7.4782257,-1.3887038 + parent: 2 +- proto: FoodPlateSmall + entities: + - uid: 15064 + components: + - type: Transform + pos: 16.48324,1.8657656 + parent: 2 + - uid: 15259 + components: + - type: Transform + pos: 15.467615,-0.6186094 + parent: 2 +- proto: FoodTartMime + entities: + - uid: 12905 + components: + - type: Transform + parent: 273 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodTinPeachesMaint + entities: + - uid: 2109 + components: + - type: Transform + pos: -18.671104,-48.89921 + parent: 2 +- proto: FoodTinPeachesMaintTrash + entities: + - uid: 16076 + components: + - type: Transform + pos: -16.329556,-49.467247 + parent: 2 +- proto: GameMasterCircuitBoard + entities: + - uid: 5486 + components: + - type: Transform + pos: -31.545975,35.58188 + parent: 2 +- proto: GasAnalyzer + entities: + - uid: 9013 + components: + - type: Transform + pos: 33.72026,-17.034779 + parent: 2 + - uid: 9434 + components: + - type: Transform + pos: 37.078346,15.596962 + parent: 2 +- proto: GasFilterFlipped + entities: + - uid: 2328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-37.5 + parent: 2 + - uid: 2330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-39.5 + parent: 2 + - uid: 2331 + components: + - type: Transform + pos: 28.5,-39.5 + parent: 2 + - uid: 7803 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,14.5 + parent: 2 + - type: GasFilter + filteredGas: CarbonDioxide + - type: AtmosPipeColor + color: '#03FCDFFF' +- proto: GasMinerCarbonDioxide + entities: + - uid: 2340 + components: + - type: Transform + pos: 23.5,-39.5 + parent: 2 +- proto: GasMinerNitrogenStation + entities: + - uid: 2341 + components: + - type: Transform + pos: 23.5,-35.5 + parent: 2 +- proto: GasMinerOxygenStation + entities: + - uid: 2342 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 2343 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 +- proto: GasMixerFlipped + entities: + - uid: 2504 + components: + - type: Transform + pos: 29.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2582 + components: + - type: Transform + pos: 30.5,-35.5 + parent: 2 +- proto: GasOutletInjector + entities: + - uid: 2334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-35.5 + parent: 2 + - uid: 2335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-37.5 + parent: 2 + - uid: 2336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-39.5 + parent: 2 + - uid: 2337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-35.5 + parent: 2 + - uid: 2338 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-37.5 + parent: 2 + - uid: 2339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-39.5 + parent: 2 + - uid: 2622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-43.5 + parent: 2 + - uid: 2891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 2428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-35.5 + parent: 2 + - uid: 2429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 2430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-39.5 + parent: 2 + - uid: 2431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-35.5 + parent: 2 + - uid: 2432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-37.5 + parent: 2 + - uid: 2433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,-39.5 + parent: 2 + - uid: 2497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 2 + - uid: 2709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-29.5 + parent: 2 + - uid: 3448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-43.5 + parent: 2 + - uid: 8325 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 2 + - uid: 11240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,26.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 + pos: -28.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 395 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 832 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-34.5 + parent: 2 + - uid: 2423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-36.5 + parent: 2 + - uid: 2424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-38.5 + parent: 2 + - uid: 2425 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 2426 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 2427 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 2463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-25.5 + parent: 2 + - uid: 2464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-22.5 + parent: 2 + - uid: 2483 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 2 + - uid: 2484 + components: + - type: Transform + pos: 28.5,-17.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-40.5 + parent: 2 + - uid: 2492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-40.5 + parent: 2 + - uid: 2496 + components: + - type: Transform + pos: 28.5,-33.5 + parent: 2 + - uid: 2510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2562 + components: + - type: Transform + pos: -6.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3903 + components: + - type: Transform + pos: 23.5,-24.5 + parent: 2 + - uid: 3905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-31.5 + parent: 2 + - uid: 4260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -48.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4931 + components: + - type: Transform + pos: 42.5,-14.5 + 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 + rot: -1.5707963267948966 rad + pos: 39.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5027 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCDFFF' + - uid: 7814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - uid: 8236 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 2 + - uid: 8524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8558 + components: + - type: Transform + pos: 31.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8630 + components: + - type: Transform + pos: 30.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8798 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8841 + components: + - type: Transform + pos: 36.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8913 + components: + - type: Transform + pos: 33.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8973 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8977 + components: + - type: Transform + pos: 32.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8996 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9026 + components: + - type: Transform + pos: 38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9208 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10436 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10958 + components: + - type: Transform + pos: -33.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10959 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10964 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11045 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,1.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 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,7.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 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11262 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11312 + components: + - type: Transform + pos: -22.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11330 + components: + - type: Transform + pos: -24.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11427 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11431 + components: + - type: Transform + pos: -31.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11432 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11517 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11671 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11672 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11706 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11710 + components: + - type: Transform + pos: -5.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11741 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12178 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12185 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12246 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12248 + components: + - type: Transform + pos: 15.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12257 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12289 + components: + - type: Transform + pos: 8.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12312 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12324 + components: + - type: Transform + pos: -7.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12350 + components: + - type: Transform + pos: -5.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12380 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12417 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12430 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12461 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12480 + components: + - type: Transform + pos: 4.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12481 + components: + - type: Transform + pos: 5.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12534 + components: + - type: Transform + pos: 19.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12540 + components: + - type: Transform + pos: 9.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12541 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13828 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13884 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13889 + components: + - type: Transform + pos: -32.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14278 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14692 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14752 + components: + - type: Transform + pos: -15.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15721 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15722 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCDFFF' + - uid: 15944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-34.5 + 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' +- proto: GasPipeBroken + entities: + - uid: 1058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-24.5 + parent: 2 + - uid: 1061 + components: + - type: Transform + pos: 23.5,-20.5 + parent: 2 + - uid: 1110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-25.5 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 28.5,-21.5 + parent: 2 + - uid: 2549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 2 + - uid: 2699 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 2748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-30.5 + parent: 2 + - uid: 3733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-25.5 + parent: 2 + - uid: 15276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 +- proto: GasPipeFourway + entities: + - uid: 827 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 841 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6468 + components: + - type: Transform + pos: 35.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCDFFF' + - uid: 8536 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8537 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8541 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8554 + components: + - type: Transform + pos: 30.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10556 + components: + - type: Transform + pos: -16.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11112 + components: + - type: Transform + pos: -12.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11184 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11404 + components: + - type: Transform + pos: -31.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11555 + components: + - type: Transform + pos: -38.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11666 + components: + - type: Transform + pos: -8.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11682 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11713 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11780 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11786 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11817 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11955 + components: + - type: Transform + pos: -7.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11957 + components: + - type: Transform + pos: -9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12187 + components: + - type: Transform + pos: 19.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeHalf + entities: + - uid: 2333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-35.5 + parent: 2 + - uid: 2482 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 2 + - uid: 2487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-25.5 + parent: 2 + - uid: 2488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-20.5 + parent: 2 + - uid: 2509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-23.5 + parent: 2 + - uid: 2984 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-18.5 + parent: 2 + - uid: 7746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - uid: 14696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-37.5 + parent: 2 + - uid: 14697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-37.5 + parent: 2 +- proto: GasPipeSensorDistribution + entities: + - uid: 392 + components: + - type: Transform + pos: 33.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeSensorTEGCold + entities: + - uid: 14280 + components: + - type: Transform + pos: 28.5,-19.5 + parent: 2 +- proto: GasPipeSensorTEGHot + entities: + - uid: 1209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-25.5 + parent: 2 +- proto: GasPipeSensorWaste + entities: + - uid: 393 + components: + - type: Transform + pos: 34.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 389 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 852 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 853 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 862 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 864 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 865 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 868 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 875 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 876 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 877 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 879 + components: + - type: Transform + pos: 5.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 881 + components: + - type: Transform + pos: 6.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 882 + components: + - type: Transform + pos: 6.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 888 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 889 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 890 + components: + - type: Transform + pos: 9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 892 + components: + - type: Transform + pos: 10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 893 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 938 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 939 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 940 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 952 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 964 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 965 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1074 + components: + - type: Transform + pos: -7.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 2 + - uid: 1129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + - uid: 1178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 2 + - uid: 1180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 2 + - uid: 1182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 2 + - uid: 1184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-25.5 + parent: 2 + - uid: 1211 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1265 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + - uid: 1639 + components: + - type: Transform + pos: 23.5,-26.5 + parent: 2 + - uid: 1641 + components: + - type: Transform + pos: 23.5,-29.5 + parent: 2 + - uid: 1657 + components: + - type: Transform + pos: 23.5,-30.5 + parent: 2 + - uid: 2374 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-34.5 + parent: 2 + - uid: 2375 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-35.5 + parent: 2 + - uid: 2376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-36.5 + parent: 2 + - uid: 2377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-37.5 + parent: 2 + - uid: 2378 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-38.5 + parent: 2 + - uid: 2379 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 2 + - uid: 2380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-34.5 + parent: 2 + - uid: 2381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-35.5 + parent: 2 + - uid: 2382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-36.5 + parent: 2 + - uid: 2383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-37.5 + parent: 2 + - uid: 2384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-38.5 + parent: 2 + - uid: 2385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-39.5 + parent: 2 + - uid: 2386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-34.5 + parent: 2 + - uid: 2387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-35.5 + parent: 2 + - uid: 2388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-36.5 + parent: 2 + - uid: 2389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-37.5 + parent: 2 + - uid: 2390 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-38.5 + parent: 2 + - uid: 2391 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-39.5 + parent: 2 + - uid: 2392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-34.5 + parent: 2 + - uid: 2393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-35.5 + parent: 2 + - uid: 2394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-36.5 + parent: 2 + - uid: 2395 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-37.5 + parent: 2 + - uid: 2396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-38.5 + parent: 2 + - uid: 2397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-39.5 + parent: 2 + - uid: 2398 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-34.5 + parent: 2 + - uid: 2399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-35.5 + parent: 2 + - uid: 2400 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-36.5 + parent: 2 + - uid: 2401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-37.5 + parent: 2 + - uid: 2402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-38.5 + parent: 2 + - uid: 2403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-39.5 + parent: 2 + - uid: 2404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-34.5 + parent: 2 + - uid: 2405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-36.5 + parent: 2 + - uid: 2406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-38.5 + parent: 2 + - uid: 2407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-39.5 + parent: 2 + - uid: 2408 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-38.5 + parent: 2 + - uid: 2409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-37.5 + parent: 2 + - uid: 2410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-36.5 + parent: 2 + - uid: 2411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-35.5 + parent: 2 + - uid: 2412 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-34.5 + parent: 2 + - uid: 2413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-34.5 + parent: 2 + - uid: 2414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-36.5 + parent: 2 + - uid: 2415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-38.5 + parent: 2 + - uid: 2416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-38.5 + parent: 2 + - uid: 2417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-36.5 + parent: 2 + - uid: 2418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-34.5 + parent: 2 + - uid: 2419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 2 + - uid: 2420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-36.5 + parent: 2 + - uid: 2421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-38.5 + parent: 2 + - uid: 2469 + components: + - type: Transform + pos: 28.5,-38.5 + parent: 2 + - uid: 2470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-40.5 + parent: 2 + - uid: 2473 + components: + - type: Transform + pos: 28.5,-34.5 + parent: 2 + - uid: 2474 + components: + - type: Transform + pos: 28.5,-36.5 + parent: 2 + - uid: 2475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-40.5 + parent: 2 + - uid: 2476 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-40.5 + parent: 2 + - uid: 2477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-40.5 + parent: 2 + - uid: 2478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-40.5 + parent: 2 + - uid: 2479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-38.5 + parent: 2 + - uid: 2480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 2481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2489 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-33.5 + parent: 2 + - uid: 2505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-36.5 + parent: 2 + - uid: 2514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-36.5 + parent: 2 + - uid: 2515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-36.5 + parent: 2 + - uid: 2559 + components: + - type: Transform + pos: 30.5,-34.5 + parent: 2 + - uid: 2571 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2580 + components: + - type: Transform + pos: 30.5,-33.5 + parent: 2 + - uid: 2581 + components: + - type: Transform + pos: 30.5,-32.5 + parent: 2 + - uid: 2621 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 2623 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 2642 + components: + - type: Transform + pos: 20.5,-26.5 + parent: 2 + - uid: 2692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-31.5 + parent: 2 + - uid: 2693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 2 + - uid: 2694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 2 + - uid: 2695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-31.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 2 + - uid: 2721 + components: + - type: Transform + pos: 20.5,-25.5 + parent: 2 + - uid: 2732 + components: + - type: Transform + pos: 23.5,-27.5 + parent: 2 + - uid: 2890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + - uid: 2935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3956 + components: + - type: Transform + pos: 23.5,-25.5 + parent: 2 + - uid: 4245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4919 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4930 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#5883E8FF' + - uid: 5031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#C75F5FFF' + - uid: 5032 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#5883E8FF' + - uid: 5207 + components: + - type: Transform + pos: 28.5,-37.5 + parent: 2 + - uid: 5944 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCDFFF' + - uid: 6039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6130 + components: + - type: Transform + pos: -2.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6147 + components: + - type: Transform + pos: -3.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6149 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6350 + components: + - type: Transform + pos: 33.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6631 + components: + - type: Transform + pos: -19.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6634 + components: + - type: Transform + pos: -19.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6653 + components: + - type: Transform + pos: -19.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7485 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-18.5 + parent: 2 + - uid: 7927 + components: + - type: Transform + pos: -19.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7953 + components: + - type: Transform + pos: 33.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8107 + components: + - type: Transform + pos: 20.5,-27.5 + parent: 2 + - uid: 8234 + components: + - type: Transform + pos: -5.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8538 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8539 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8540 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8542 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8543 + components: + - type: Transform + pos: 30.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8544 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8545 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8548 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8549 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8550 + components: + - type: Transform + pos: 31.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8551 + components: + - type: Transform + pos: 31.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8552 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8553 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8556 + components: + - type: Transform + pos: 31.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8557 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8568 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8569 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8572 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8575 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8576 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8589 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8665 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8668 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8674 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8676 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8688 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8702 + components: + - type: Transform + pos: 40.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8703 + components: + - type: Transform + pos: 40.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8704 + components: + - type: Transform + pos: 40.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8705 + components: + - type: Transform + pos: 40.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8706 + components: + - type: Transform + pos: 40.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8720 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8722 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8764 + components: + - type: Transform + pos: 21.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8765 + components: + - type: Transform + pos: 21.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8766 + components: + - type: Transform + pos: 22.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8770 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8771 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8793 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8809 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8810 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8830 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8831 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8883 + components: + - type: Transform + pos: 33.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8901 + components: + - type: Transform + pos: 31.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8902 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8903 + components: + - type: Transform + pos: 31.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8904 + components: + - type: Transform + pos: 32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8905 + components: + - type: Transform + pos: 32.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8907 + components: + - type: Transform + pos: 32.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8909 + components: + - type: Transform + pos: 32.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8911 + components: + - type: Transform + pos: 32.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8912 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8999 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9000 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9001 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9005 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9020 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9029 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9034 + components: + - type: Transform + pos: 33.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9038 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9063 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9227 + components: + - type: Transform + pos: 28.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9360 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9365 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9366 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9630 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 2 + - uid: 9653 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9935 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9936 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10051 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10441 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10559 + components: + - type: Transform + pos: -19.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10716 + components: + - type: Transform + pos: 22.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11021 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11025 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11026 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11041 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11042 + components: + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11043 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11044 + components: + - type: Transform + pos: -25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11055 + components: + - type: Transform + pos: -24.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11069 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11072 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11073 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11075 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11076 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11077 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-7.5 + 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: 11108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11125 + 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 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11140 + 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 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,10.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' + - 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 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,14.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: 11204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.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 + pos: -20.5,16.5 + 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 + 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 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,24.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' + - uid: 11266 + components: + - type: Transform + pos: -34.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11274 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11276 + components: + - type: Transform + pos: -35.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11278 + components: + - type: Transform + pos: -35.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11279 + components: + - type: Transform + pos: -35.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11280 + components: + - type: Transform + pos: -35.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11281 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11282 + components: + - type: Transform + pos: -35.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11298 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11305 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11323 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11347 + components: + - type: Transform + pos: -19.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11369 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11377 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11378 + components: + - type: Transform + pos: -19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11379 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11380 + components: + - type: Transform + pos: -20.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11381 + components: + - type: Transform + pos: -19.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11401 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11407 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11412 + components: + - type: Transform + pos: -28.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11414 + components: + - type: Transform + pos: -30.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11415 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11417 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11425 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11437 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11440 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11471 + components: + - type: Transform + pos: -16.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11472 + components: + - type: Transform + pos: -16.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11473 + components: + - type: Transform + pos: -16.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11474 + components: + - type: Transform + pos: -16.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11475 + components: + - type: Transform + pos: -16.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11476 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11478 + components: + - type: Transform + pos: -16.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11479 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11480 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11492 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11497 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11515 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11534 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11541 + components: + - type: Transform + pos: -31.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11544 + components: + - type: Transform + pos: -39.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11545 + components: + - type: Transform + pos: -39.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11546 + components: + - type: Transform + pos: -39.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11547 + components: + - type: Transform + pos: -39.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11548 + components: + - type: Transform + pos: -39.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11549 + components: + - type: Transform + pos: -39.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11550 + components: + - type: Transform + pos: -39.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11551 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11552 + components: + - type: Transform + pos: -39.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11553 + components: + - type: Transform + pos: -39.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11554 + components: + - type: Transform + pos: -39.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11556 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11562 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11564 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11578 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11592 + components: + - type: Transform + pos: -19.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11593 + components: + - type: Transform + pos: -19.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11604 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11618 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11661 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11664 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11665 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11667 + components: + - type: Transform + pos: -7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11668 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11683 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11684 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11691 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11709 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11711 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11712 + components: + - type: Transform + pos: -3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11715 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11716 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11717 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11718 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11727 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11733 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11736 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11748 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11772 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11774 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11777 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11778 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11779 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11781 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11794 + components: + - type: Transform + pos: -8.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11809 + components: + - type: Transform + pos: -6.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11813 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11815 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11816 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11830 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11831 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11838 + components: + - type: Transform + pos: -8.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11846 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11855 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11856 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11857 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11858 + components: + - type: Transform + pos: 1.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11859 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11879 + components: + - type: Transform + pos: 1.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11916 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11921 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11922 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11923 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11924 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11925 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11926 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11927 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11928 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11930 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11940 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11943 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11973 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11974 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11982 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11987 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11999 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12000 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12009 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12010 + components: + - type: Transform + pos: -11.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12012 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12013 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12018 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12019 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12021 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12025 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12026 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12033 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12040 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12043 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12045 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12052 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12053 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12054 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12057 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12061 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12064 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12065 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12067 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12068 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12069 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12070 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12071 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12072 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12073 + components: + - type: Transform + pos: 15.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12074 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12075 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12076 + components: + - type: Transform + pos: 15.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12077 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12078 + components: + - type: Transform + pos: 15.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12084 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12088 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12089 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12095 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12110 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12111 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12114 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12131 + components: + - type: Transform + pos: 21.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12132 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12133 + components: + - type: Transform + pos: 21.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12134 + components: + - type: Transform + pos: 21.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12135 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12136 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12138 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12139 + components: + - type: Transform + pos: 21.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12140 + components: + - type: Transform + pos: 21.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12141 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12142 + components: + - type: Transform + pos: 21.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12144 + components: + - type: Transform + pos: 21.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12145 + components: + - type: Transform + pos: 21.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12146 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12148 + components: + - type: Transform + pos: 21.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12149 + components: + - type: Transform + pos: 21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12150 + components: + - type: Transform + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12171 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12181 + components: + - type: Transform + pos: -7.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12302 + components: + - type: Transform + pos: -3.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12303 + components: + - type: Transform + pos: -3.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12304 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12305 + components: + - type: Transform + pos: -3.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12306 + components: + - type: Transform + pos: -7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12314 + components: + - type: Transform + pos: -7.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12319 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12323 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12326 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12330 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12334 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12364 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12365 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12366 + components: + - type: Transform + pos: -6.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12367 + components: + - type: Transform + pos: -6.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12368 + components: + - type: Transform + pos: -6.5,40.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12369 + components: + - type: Transform + pos: -6.5,41.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12370 + components: + - type: Transform + pos: -6.5,42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12371 + components: + - type: Transform + pos: -6.5,43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12372 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12373 + components: + - type: Transform + pos: -6.5,45.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12374 + components: + - type: Transform + pos: -6.5,47.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12375 + components: + - type: Transform + pos: -6.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12376 + components: + - type: Transform + pos: -6.5,49.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12377 + components: + - type: Transform + pos: -6.5,50.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12378 + components: + - type: Transform + pos: -6.5,46.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12379 + components: + - type: Transform + pos: -7.5,48.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12418 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12419 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12420 + components: + - type: Transform + pos: -2.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12421 + components: + - type: Transform + pos: -2.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12443 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12450 + components: + - type: Transform + pos: 8.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12451 + components: + - type: Transform + pos: 8.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12467 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12472 + components: + - type: Transform + pos: 6.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12473 + components: + - type: Transform + pos: 5.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12474 + components: + - type: Transform + pos: 5.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12475 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12476 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12477 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12479 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12492 + components: + - type: Transform + pos: 12.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12498 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12500 + components: + - type: Transform + pos: 9.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12501 + components: + - type: Transform + pos: 12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12503 + components: + - type: Transform + pos: 13.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12504 + components: + - type: Transform + pos: 13.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12505 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12506 + components: + - type: Transform + pos: 14.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12507 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12508 + components: + - type: Transform + pos: 14.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12509 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12517 + components: + - type: Transform + pos: 9.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12518 + components: + - type: Transform + pos: 9.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12519 + components: + - type: Transform + pos: 12.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12526 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12527 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12532 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12533 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12558 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12661 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12662 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12663 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12664 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12665 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12666 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13841 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13877 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13878 + components: + - type: Transform + pos: -32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13908 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13919 + components: + - type: Transform + pos: -28.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13920 + components: + - type: Transform + pos: -28.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14097 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14753 + components: + - type: Transform + pos: -15.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14754 + components: + - type: Transform + pos: -15.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14755 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14756 + components: + - type: Transform + pos: -15.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14757 + components: + - type: Transform + pos: -16.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14758 + components: + - type: Transform + pos: -15.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14844 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15948 + components: + - type: Transform + pos: -42.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15949 + components: + - type: Transform + pos: -42.5,-31.5 + 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' +- proto: GasPipeTJunction + entities: + - uid: 849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + - uid: 855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 2 + - uid: 2472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-36.5 + parent: 2 + - uid: 2485 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2486 + components: + - type: Transform + pos: -14.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2490 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-35.5 + parent: 2 + - uid: 2511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - uid: 3490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3849 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3867 + components: + - type: Transform + pos: -42.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4447 + components: + - type: Transform + pos: -43.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4534 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4617 + components: + - type: Transform + pos: -16.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4722 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,11.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 + rot: -1.5707963267948966 rad + pos: 7.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6042 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6148 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6242 + components: + - type: Transform + pos: -20.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6243 + components: + - type: Transform + pos: -21.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8523 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8592 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8701 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8767 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8768 + components: + - type: Transform + pos: 24.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8783 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8829 + components: + - type: Transform + pos: 22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8840 + components: + - type: Transform + pos: 30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8879 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8880 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8886 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8914 + components: + - type: Transform + pos: 35.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8915 + components: + - type: Transform + pos: 33.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8916 + components: + - type: Transform + pos: 31.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9004 + components: + - type: Transform + pos: 31.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9035 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9652 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9999 + components: + - type: Transform + pos: -16.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10976 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10984 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10985 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10986 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10987 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - 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: 11207 + components: + - type: Transform + pos: -19.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 + rot: 1.5707963267948966 rad + pos: -34.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11277 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11293 + components: + - type: Transform + pos: -28.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11336 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11337 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11338 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-42.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11413 + components: + - type: Transform + pos: -28.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11449 + components: + - type: Transform + pos: -24.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-39.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11484 + components: + - type: Transform + pos: -15.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11514 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11542 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11565 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -52.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11620 + components: + - type: Transform + pos: -54.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11669 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11735 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11743 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11760 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11784 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11798 + components: + - type: Transform + pos: -8.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11812 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11827 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11853 + components: + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11854 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11881 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11934 + components: + - type: Transform + pos: 9.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11949 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11954 + components: + - type: Transform + pos: -8.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12022 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12027 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12063 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12066 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12086 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12166 + components: + - type: Transform + pos: 2.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12175 + components: + - type: Transform + pos: -3.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12245 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12258 + components: + - type: Transform + pos: 5.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12284 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12296 + components: + - type: Transform + pos: -4.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12339 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12363 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12462 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12484 + components: + - type: Transform + pos: 6.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12485 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12488 + components: + - type: Transform + pos: 13.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12489 + components: + - type: Transform + pos: 14.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12494 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12495 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13879 + components: + - type: Transform + pos: -33.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13900 + components: + - type: Transform + pos: -33.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCDFFF' + - uid: 14164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 2574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2626 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-22.5 + parent: 2 + - uid: 5480 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,27.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11238 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,26.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 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1064 + components: + - type: Transform + pos: 34.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-28.5 + parent: 2 + - uid: 2498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-34.5 + parent: 2 + - uid: 2499 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-36.5 + parent: 2 + - uid: 2500 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-38.5 + parent: 2 + - uid: 2501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-38.5 + parent: 2 + - uid: 2502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-36.5 + parent: 2 + - uid: 2503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-34.5 + parent: 2 + - uid: 2618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-41.5 + parent: 2 + - uid: 2619 + components: + - type: Transform + pos: 30.5,-41.5 + parent: 2 + - uid: 3780 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#C75F5FFF' + - uid: 4501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#5883E8FF' + - uid: 7486 + components: + - type: Transform + pos: 20.5,-28.5 + parent: 2 +- proto: GasThermoMachineFreezer + entities: + - uid: 10440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-27.5 + parent: 2 + - uid: 15723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCDFFF' +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 + - type: GasThermoMachine + targetTemperature: 200.15 +- proto: GasThermoMachineHeater + entities: + - uid: 9127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 +- proto: GasValve + entities: + - uid: 1398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-21.5 + parent: 2 + - uid: 2494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-33.5 + parent: 2 +- proto: GasVentPump + entities: + - uid: 368 + components: + - type: Transform + pos: 39.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1136 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 885 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 815 + - uid: 901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 811 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 813 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 814 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 819 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 922 + components: + - type: Transform + pos: 6.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 818 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 822 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 817 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 980 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 816 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 2627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13870 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11020 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 4927 + components: + - type: Transform + pos: 36.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12726 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 5500 + components: + - type: Transform + pos: -27.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11296 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 6333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12673 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 7554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12727 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13819 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13815 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13817 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8713 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13814 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8716 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13813 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13825 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13812 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8744 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13811 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13818 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13824 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8780 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13822 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8790 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13823 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8799 + components: + - type: Transform + pos: 31.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13821 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8811 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16172 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 8975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12708 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12725 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9033 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 9210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13947 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10476 + components: + - type: Transform + pos: 36.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12729 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10477 + components: + - type: Transform + pos: 36.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12730 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10480 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12732 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13800 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11083 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10998 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11082 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11079 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11038 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11015 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11080 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11068 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11081 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11114 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11119 + - 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 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11256 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11255 + - 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 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,12.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 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11257 + components: + - type: Transform + pos: -34.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11289 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11301 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11291 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11358 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11359 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2196 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11397 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11399 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11641 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13792 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -62.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13792 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13790 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11649 + components: + - type: Transform + pos: -38.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13789 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13791 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13794 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1868 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11900 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11905 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11903 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15300 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11904 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11758 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11901 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11898 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11769 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11899 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11897 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11833 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11896 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11894 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11895 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11890 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13797 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13796 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13871 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13795 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13934 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12400 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13935 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13933 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13962 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,51.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13962 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13851 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12415 + components: + - type: Transform + pos: -2.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3078 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13852 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12433 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3330 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12447 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - 14787 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13865 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13864 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13862 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3340 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12542 + components: + - type: Transform + pos: 8.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13863 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12543 + components: + - type: Transform + pos: 11.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13863 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12550 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13798 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13799 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 12658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13802 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13816 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13891 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13876 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13892 + components: + - type: Transform + pos: -37.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13875 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13874 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13873 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 13915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13872 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 14759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14751 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 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 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 815 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 814 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 813 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 819 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 817 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 816 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2691 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 811 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4480 + components: + - type: Transform + pos: -18.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11020 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12727 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 4937 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12726 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 818 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5034 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15300 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5035 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11083 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11250 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 5498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11296 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6074 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-41.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 6146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 7523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1136 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8622 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13819 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13815 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13817 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13814 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8715 + components: + - type: Transform + pos: 37.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13813 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8732 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13825 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13812 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13811 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13818 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8757 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13824 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13822 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8791 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13823 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13821 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 8812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 16172 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12708 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12673 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12724 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12725 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 9209 + components: + - type: Transform + pos: 27.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13947 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10444 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12730 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10479 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12732 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13800 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13797 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10995 + components: + - type: Transform + pos: -32.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11082 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 10996 + components: + - type: Transform + pos: -26.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11079 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11015 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11080 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11067 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11081 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11113 + components: + - type: Transform + pos: -9.5,18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11119 + - 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 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11252 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12612 + - 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 + rot: 3.141592653589793 rad + pos: -26.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11253 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11301 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11289 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11291 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11358 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-42.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11359 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11397 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11409 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11399 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11643 + components: + - type: Transform + pos: -52.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13792 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11644 + components: + - type: Transform + pos: -60.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13792 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11647 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13790 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13793 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11652 + components: + - type: Transform + pos: -22.5,-38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13789 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11655 + components: + - type: Transform + pos: -18.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13791 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13794 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 1868 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11900 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11905 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11724 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11903 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11904 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11901 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11899 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11767 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11898 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11773 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13870 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11897 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11832 + components: + - type: Transform + pos: -10.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11896 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11893 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11894 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11850 + components: + - type: Transform + pos: 4.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11895 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-39.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11890 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11911 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13796 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11935 + components: + - type: Transform + pos: -10.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13871 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12041 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13795 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13934 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13935 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13962 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12406 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13933 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12408 + components: + - type: Transform + pos: -7.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13962 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13851 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3078 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13852 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3330 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13806 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13860 + - 14787 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13865 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12468 + components: + - type: Transform + pos: 2.5,38.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13864 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13862 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 3340 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13863 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,37.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13863 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13798 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13799 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13802 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 12703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12729 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13816 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13893 + components: + - type: Transform + pos: -39.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13876 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13894 + components: + - type: Transform + pos: -37.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13875 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13910 + components: + - type: Transform + pos: -31.5,34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13874 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13873 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 13914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13872 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14180 + components: + - type: Transform + pos: -20.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 2196 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 14760 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 14751 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15330 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15328 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 51.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15453 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15941 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 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: 1123 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-20.5 + parent: 2 + - uid: 1124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-20.5 + parent: 2 + - uid: 1127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-22.5 + parent: 2 + - uid: 1179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-22.5 + parent: 2 +- proto: Girder + entities: + - uid: 2918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 2 + - uid: 2924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-30.5 + parent: 2 + - uid: 2931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-28.5 + parent: 2 + - uid: 2932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-24.5 + parent: 2 + - uid: 2994 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 2 + - uid: 3284 + components: + - type: Transform + pos: -27.5,-27.5 + parent: 2 + - uid: 3287 + components: + - type: Transform + pos: -24.5,-29.5 + parent: 2 + - uid: 4111 + components: + - type: Transform + pos: 17.5,28.5 + parent: 2 + - uid: 4805 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-14.5 + parent: 2 + - uid: 6285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-37.5 + parent: 2 + - uid: 6286 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-46.5 + parent: 2 + - uid: 6614 + components: + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 6615 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 6635 + components: + - type: Transform + pos: 1.5,27.5 + parent: 2 + - uid: 6711 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 + - uid: 6750 + components: + - type: Transform + pos: -11.5,54.5 + parent: 2 + - uid: 7218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,33.5 + parent: 2 + - uid: 7708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,26.5 + parent: 2 + - uid: 7714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,31.5 + parent: 2 + - uid: 7715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,27.5 + parent: 2 + - uid: 8067 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 2 + - uid: 8099 + components: + - type: Transform + pos: 43.5,17.5 + parent: 2 + - uid: 8104 + components: + - type: Transform + pos: 43.5,18.5 + parent: 2 + - uid: 8108 + components: + - type: Transform + pos: 39.5,30.5 + parent: 2 + - uid: 16103 + components: + - type: Transform + pos: -21.5,46.5 + parent: 2 + - uid: 16104 + components: + - type: Transform + pos: -21.5,37.5 + parent: 2 +- proto: GlassBoxLaserFilled + entities: + - uid: 15420 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 +- proto: GoldRing + entities: + - uid: 10376 + components: + - type: Transform + pos: -13.697077,-5.359823 + parent: 2 +- proto: GrassBattlemap + entities: + - uid: 15219 + components: + - type: Transform + pos: -30.493069,-10.42798 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 2525 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 +- proto: Grille + entities: + - uid: 172 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 383 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 387 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: 61.5,-23.5 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 47.5,-10.5 + parent: 2 + - uid: 1116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-11.5 + parent: 2 + - uid: 1150 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 1161 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 2 + - uid: 1171 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-19.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-21.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-19.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-20.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-21.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: 48.5,-12.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 49.5,-12.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 50.5,-12.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 56.5,-12.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 57.5,-12.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 58.5,-12.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 61.5,-15.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 61.5,-16.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 61.5,-17.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 61.5,-25.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 61.5,-24.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 57.5,-28.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 56.5,-28.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 48.5,-28.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 49.5,-28.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 50.5,-28.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 46.5,-30.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 47.5,-30.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 48.5,-30.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 49.5,-30.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 50.5,-30.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 51.5,-30.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 52.5,-30.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 54.5,-30.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 55.5,-30.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 56.5,-30.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 57.5,-30.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 59.5,-30.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 60.5,-30.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 63.5,-27.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 63.5,-26.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 63.5,-25.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: 63.5,-23.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 63.5,-21.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 63.5,-19.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 63.5,-18.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 63.5,-16.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 63.5,-17.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 63.5,-14.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 63.5,-13.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 60.5,-10.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 56.5,-10.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 55.5,-10.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 54.5,-10.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 52.5,-10.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 51.5,-10.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 50.5,-10.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 49.5,-10.5 + parent: 2 + - uid: 1583 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 1735 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 1736 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 1744 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 1754 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 2 + - uid: 1850 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 1853 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 1885 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 1895 + components: + - type: Transform + pos: 39.5,42.5 + parent: 2 + - uid: 1912 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 1920 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 2 + - uid: 1933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 2 + - uid: 1934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - uid: 1942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - uid: 1952 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 1991 + components: + - type: Transform + pos: 48.5,-10.5 + parent: 2 + - uid: 2086 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 2090 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 2105 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 2161 + components: + - type: Transform + pos: -74.5,-21.5 + parent: 2 + - uid: 2203 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 + - uid: 2205 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 2207 + components: + - type: Transform + pos: 27.5,-40.5 + parent: 2 + - uid: 2210 + components: + - type: Transform + pos: 27.5,-39.5 + parent: 2 + - uid: 2216 + components: + - type: Transform + pos: 35.5,-34.5 + parent: 2 + - uid: 2217 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 2 + - uid: 2221 + components: + - type: Transform + pos: 35.5,-39.5 + parent: 2 + - uid: 2238 + components: + - type: Transform + pos: 25.5,-39.5 + parent: 2 + - uid: 2239 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 2240 + components: + - type: Transform + pos: 35.5,-37.5 + parent: 2 + - uid: 2241 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 + - uid: 2247 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 2287 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 2306 + components: + - type: Transform + pos: 35.5,-38.5 + parent: 2 + - uid: 2307 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 2308 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 2309 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 + - uid: 2311 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 2 + - uid: 2312 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 2 + - uid: 2313 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - uid: 2321 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 2344 + components: + - type: Transform + pos: 36.5,-43.5 + parent: 2 + - uid: 2345 + components: + - type: Transform + pos: -74.5,-19.5 + parent: 2 + - uid: 2346 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 + - uid: 2347 + components: + - type: Transform + pos: 38.5,-43.5 + parent: 2 + - uid: 2348 + components: + - type: Transform + pos: 37.5,-43.5 + parent: 2 + - uid: 2349 + components: + - type: Transform + pos: 39.5,-43.5 + parent: 2 + - uid: 2351 + components: + - type: Transform + pos: 44.5,-41.5 + parent: 2 + - uid: 2352 + components: + - type: Transform + pos: 44.5,-40.5 + parent: 2 + - uid: 2353 + components: + - type: Transform + pos: 44.5,-39.5 + parent: 2 + - uid: 2354 + components: + - type: Transform + pos: 44.5,-38.5 + parent: 2 + - uid: 2355 + components: + - type: Transform + pos: 44.5,-37.5 + parent: 2 + - uid: 2356 + components: + - type: Transform + pos: 44.5,-36.5 + parent: 2 + - uid: 2357 + components: + - type: Transform + pos: 44.5,-35.5 + parent: 2 + - uid: 2358 + components: + - type: Transform + pos: 44.5,-34.5 + parent: 2 + - uid: 2359 + components: + - type: Transform + pos: 44.5,-33.5 + parent: 2 + - uid: 2367 + components: + - type: Transform + pos: 26.5,-43.5 + parent: 2 + - uid: 2368 + components: + - type: Transform + pos: 25.5,-43.5 + parent: 2 + - uid: 2369 + components: + - type: Transform + pos: 24.5,-43.5 + parent: 2 + - uid: 2370 + components: + - type: Transform + pos: 23.5,-43.5 + parent: 2 + - uid: 2372 + components: + - type: Transform + pos: 21.5,-43.5 + parent: 2 + - uid: 2373 + components: + - type: Transform + pos: 20.5,-43.5 + parent: 2 + - uid: 2460 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 2461 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - uid: 2465 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 2466 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 2576 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 2577 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 2602 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 2603 + components: + - type: Transform + pos: 31.5,-42.5 + parent: 2 + - uid: 2604 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 2605 + components: + - type: Transform + pos: 36.5,-44.5 + parent: 2 + - uid: 2606 + components: + - type: Transform + pos: 27.5,-44.5 + parent: 2 + - uid: 2607 + components: + - type: Transform + pos: 27.5,-45.5 + parent: 2 + - uid: 2608 + components: + - type: Transform + pos: 27.5,-46.5 + parent: 2 + - uid: 2609 + components: + - type: Transform + pos: 26.5,-44.5 + parent: 2 + - uid: 2610 + components: + - type: Transform + pos: 35.5,-44.5 + parent: 2 + - uid: 2611 + components: + - type: Transform + pos: 35.5,-45.5 + parent: 2 + - uid: 2612 + components: + - type: Transform + pos: 35.5,-46.5 + parent: 2 + - uid: 2613 + components: + - type: Transform + pos: 29.5,-48.5 + parent: 2 + - uid: 2615 + components: + - type: Transform + pos: 31.5,-48.5 + parent: 2 + - uid: 2616 + components: + - type: Transform + pos: 32.5,-48.5 + parent: 2 + - uid: 2617 + components: + - type: Transform + pos: 33.5,-48.5 + parent: 2 + - uid: 2637 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 2683 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 2738 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - uid: 2823 + components: + - type: Transform + pos: -6.5,63.5 + parent: 2 + - uid: 2847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-4.5 + parent: 2 + - uid: 2869 + components: + - type: Transform + pos: -1.5,58.5 + parent: 2 + - uid: 2870 + components: + - type: Transform + pos: -0.5,53.5 + parent: 2 + - uid: 2871 + components: + - type: Transform + pos: -0.5,54.5 + parent: 2 + - uid: 2872 + components: + - type: Transform + pos: -2.5,63.5 + parent: 2 + - uid: 2874 + components: + - type: Transform + pos: -8.5,65.5 + parent: 2 + - uid: 2876 + components: + - type: Transform + pos: -5.5,63.5 + parent: 2 + - uid: 2880 + components: + - type: Transform + pos: -8.5,63.5 + parent: 2 + - uid: 2884 + components: + - type: Transform + pos: -7.5,63.5 + parent: 2 + - uid: 3132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-45.5 + parent: 2 + - uid: 3140 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 2 + - uid: 3148 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 3270 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 3273 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 3417 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 3418 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - uid: 3419 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 2 + - uid: 3474 + components: + - type: Transform + pos: -25.5,21.5 + parent: 2 + - uid: 3512 + components: + - type: Transform + pos: -24.5,19.5 + parent: 2 + - uid: 3608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-28.5 + parent: 2 + - uid: 3630 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-28.5 + parent: 2 + - uid: 3631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-28.5 + parent: 2 + - uid: 3632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-32.5 + parent: 2 + - uid: 3633 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-32.5 + parent: 2 + - uid: 3634 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-32.5 + parent: 2 + - uid: 3635 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-28.5 + parent: 2 + - uid: 3636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-28.5 + parent: 2 + - uid: 3637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 2 + - uid: 3638 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-28.5 + parent: 2 + - uid: 3639 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 2 + - uid: 3640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-28.5 + parent: 2 + - uid: 3641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-32.5 + parent: 2 + - uid: 3642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-32.5 + parent: 2 + - uid: 3643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-32.5 + parent: 2 + - uid: 3644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-32.5 + parent: 2 + - uid: 3645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-32.5 + parent: 2 + - uid: 3646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-32.5 + parent: 2 + - uid: 3670 + components: + - type: Transform + pos: -3.5,-44.5 + parent: 2 + - uid: 3671 + components: + - type: Transform + pos: -2.5,-44.5 + parent: 2 + - uid: 3699 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 3706 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 3707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 2 + - uid: 3715 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 3719 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 3735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-5.5 + parent: 2 + - uid: 3750 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 + - uid: 3937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 3938 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - uid: 3939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - uid: 3940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - uid: 3941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 3974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,43.5 + parent: 2 + - uid: 3992 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,42.5 + parent: 2 + - uid: 4155 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 4165 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 4202 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 4203 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 4252 + components: + - type: Transform + pos: -1.5,-44.5 + parent: 2 + - uid: 4293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-46.5 + parent: 2 + - uid: 4294 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-47.5 + parent: 2 + - uid: 4345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 2 + - uid: 4346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 2 + - uid: 4356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 2 + - uid: 4375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-13.5 + parent: 2 + - uid: 4377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + - uid: 4385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 + - uid: 4403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-4.5 + parent: 2 + - uid: 4416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 2 + - uid: 4436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 2 + - uid: 4439 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 2 + - uid: 4441 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 4450 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 4454 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 4455 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 4470 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 2 + - uid: 4509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 2 + - uid: 4510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-7.5 + parent: 2 + - uid: 4511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-6.5 + parent: 2 + - uid: 4512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-1.5 + parent: 2 + - uid: 4513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 2 + - uid: 4516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 4519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-2.5 + parent: 2 + - uid: 4521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + - uid: 4522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,-3.5 + parent: 2 + - uid: 4523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-1.5 + parent: 2 + - uid: 4525 + components: + - type: Transform + pos: -33.5,-1.5 + parent: 2 + - uid: 4526 + components: + - type: Transform + pos: -32.5,-1.5 + parent: 2 + - uid: 4532 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 4545 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 4591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 4592 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 4621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + - uid: 4622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,1.5 + parent: 2 + - uid: 4633 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 + - uid: 4635 + components: + - type: Transform + pos: -35.5,-1.5 + parent: 2 + - uid: 4688 + components: + - type: Transform + pos: -29.5,3.5 + parent: 2 + - uid: 4689 + components: + - type: Transform + pos: -29.5,4.5 + parent: 2 + - uid: 4690 + components: + - type: Transform + pos: -29.5,5.5 + parent: 2 + - uid: 4691 + components: + - type: Transform + pos: -29.5,8.5 + parent: 2 + - uid: 4692 + components: + - 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 + pos: 39.5,38.5 + parent: 2 + - uid: 5287 + components: + - type: Transform + pos: 39.5,36.5 + parent: 2 + - uid: 5292 + components: + - type: Transform + pos: 39.5,35.5 + parent: 2 + - uid: 5448 + components: + - type: Transform + pos: -40.5,31.5 + parent: 2 + - uid: 5503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,23.5 + parent: 2 + - uid: 5504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,23.5 + parent: 2 + - uid: 5505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,23.5 + parent: 2 + - uid: 5506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,23.5 + parent: 2 + - uid: 5507 + components: + - type: Transform + 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 + rot: -1.5707963267948966 rad + pos: -39.5,39.5 + parent: 2 + - uid: 5511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,39.5 + parent: 2 + - uid: 5513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,39.5 + parent: 2 + - uid: 5514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,39.5 + parent: 2 + - uid: 5515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,39.5 + parent: 2 + - uid: 5516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,39.5 + parent: 2 + - uid: 5518 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,38.5 + parent: 2 + - uid: 5519 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,38.5 + parent: 2 + - uid: 5520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,38.5 + parent: 2 + - uid: 5521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,38.5 + parent: 2 + - uid: 5523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,36.5 + parent: 2 + - uid: 5524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,35.5 + parent: 2 + - uid: 5525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,34.5 + parent: 2 + - uid: 5526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,33.5 + parent: 2 + - uid: 5527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,32.5 + parent: 2 + - uid: 5529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,30.5 + parent: 2 + - uid: 5530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,29.5 + parent: 2 + - uid: 5532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,27.5 + parent: 2 + - uid: 5533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,26.5 + parent: 2 + - uid: 5535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,24.5 + parent: 2 + - uid: 5536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,24.5 + parent: 2 + - uid: 5538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,24.5 + parent: 2 + - uid: 5540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,38.5 + parent: 2 + - uid: 5542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,38.5 + parent: 2 + - uid: 5543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,38.5 + parent: 2 + - uid: 5602 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 6118 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 2 + - uid: 6119 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 2 + - uid: 6169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-45.5 + parent: 2 + - uid: 6313 + components: + - type: Transform + pos: -12.5,-51.5 + parent: 2 + - uid: 6314 + components: + - type: Transform + pos: -11.5,-51.5 + parent: 2 + - uid: 6315 + components: + - type: Transform + pos: -13.5,-51.5 + parent: 2 + - uid: 6319 + components: + - type: Transform + pos: -9.5,-50.5 + parent: 2 + - uid: 6320 + components: + - type: Transform + pos: -8.5,-50.5 + parent: 2 + - uid: 6321 + components: + - type: Transform + pos: -8.5,-49.5 + parent: 2 + - uid: 6322 + components: + - type: Transform + pos: -27.5,-49.5 + parent: 2 + - uid: 6323 + components: + - type: Transform + pos: -26.5,-49.5 + parent: 2 + - uid: 6324 + components: + - type: Transform + pos: -25.5,-49.5 + parent: 2 + - uid: 6325 + components: + - type: Transform + pos: -24.5,-49.5 + parent: 2 + - uid: 6326 + components: + - type: Transform + pos: -23.5,-49.5 + parent: 2 + - uid: 6327 + components: + - type: Transform + pos: -22.5,-49.5 + parent: 2 + - uid: 6334 + components: + - type: Transform + pos: -31.5,-49.5 + parent: 2 + - uid: 6335 + components: + - type: Transform + pos: -30.5,-49.5 + parent: 2 + - uid: 6336 + components: + - type: Transform + pos: -29.5,-49.5 + parent: 2 + - uid: 6337 + components: + - type: Transform + pos: -13.5,-59.5 + parent: 2 + - uid: 6338 + components: + - type: Transform + pos: -13.5,-61.5 + parent: 2 + - uid: 6340 + components: + - type: Transform + pos: -18.5,-59.5 + parent: 2 + - uid: 6341 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 6342 + components: + - type: Transform + pos: -10.5,-61.5 + parent: 2 + - uid: 6343 + components: + - type: Transform + pos: -16.5,-59.5 + parent: 2 + - uid: 6344 + components: + - type: Transform + pos: -12.5,-61.5 + parent: 2 + - uid: 6346 + components: + - type: Transform + pos: -19.5,-59.5 + parent: 2 + - uid: 6347 + components: + - type: Transform + pos: -16.5,-61.5 + parent: 2 + - uid: 6348 + components: + - type: Transform + pos: -18.5,-61.5 + parent: 2 + - uid: 6349 + components: + - type: Transform + pos: -17.5,-59.5 + parent: 2 + - uid: 6351 + components: + - type: Transform + pos: -19.5,-61.5 + parent: 2 + - uid: 6364 + components: + - type: Transform + pos: -10.5,-59.5 + parent: 2 + - uid: 6365 + components: + - type: Transform + pos: -11.5,-59.5 + parent: 2 + - uid: 6367 + components: + - type: Transform + pos: -26.5,-61.5 + parent: 2 + - uid: 6369 + components: + - type: Transform + pos: -24.5,-59.5 + parent: 2 + - uid: 6370 + components: + - type: Transform + pos: -26.5,-59.5 + parent: 2 + - uid: 6371 + components: + - type: Transform + pos: -23.5,-59.5 + parent: 2 + - uid: 6372 + components: + - type: Transform + pos: -24.5,-61.5 + parent: 2 + - uid: 6373 + components: + - type: Transform + pos: -25.5,-59.5 + parent: 2 + - uid: 6396 + components: + - type: Transform + pos: 27.5,-54.5 + parent: 2 + - uid: 6397 + components: + - type: Transform + pos: 27.5,-56.5 + parent: 2 + - uid: 6398 + components: + - type: Transform + pos: 33.5,-54.5 + parent: 2 + - uid: 6399 + components: + - type: Transform + pos: 30.5,-54.5 + parent: 2 + - uid: 6400 + components: + - type: Transform + pos: 30.5,-56.5 + parent: 2 + - uid: 6401 + components: + - type: Transform + pos: 31.5,-56.5 + parent: 2 + - uid: 6402 + components: + - type: Transform + pos: 33.5,-56.5 + parent: 2 + - uid: 6403 + components: + - type: Transform + pos: 32.5,-54.5 + parent: 2 + - uid: 6405 + components: + - type: Transform + pos: 29.5,-56.5 + parent: 2 + - uid: 6406 + components: + - type: Transform + pos: 32.5,-56.5 + parent: 2 + - uid: 6407 + components: + - type: Transform + pos: 29.5,-54.5 + parent: 2 + - uid: 6408 + components: + - type: Transform + pos: 35.5,-54.5 + parent: 2 + - uid: 6409 + components: + - type: Transform + pos: 36.5,-54.5 + parent: 2 + - uid: 6416 + components: + - type: Transform + pos: 35.5,-56.5 + parent: 2 + - uid: 6439 + components: + - type: Transform + pos: 47.5,-45.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: 47.5,-44.5 + parent: 2 + - uid: 6441 + components: + - type: Transform + pos: 47.5,-43.5 + parent: 2 + - uid: 6442 + components: + - type: Transform + pos: 47.5,-42.5 + parent: 2 + - uid: 6443 + components: + - type: Transform + pos: 49.5,-42.5 + parent: 2 + - uid: 6444 + components: + - type: Transform + pos: 49.5,-43.5 + parent: 2 + - uid: 6445 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 6446 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 6447 + components: + - type: Transform + pos: 47.5,-39.5 + parent: 2 + - uid: 6448 + components: + - type: Transform + pos: 47.5,-38.5 + parent: 2 + - uid: 6449 + components: + - type: Transform + pos: 47.5,-37.5 + parent: 2 + - uid: 6450 + components: + - type: Transform + pos: 49.5,-36.5 + parent: 2 + - uid: 6451 + components: + - type: Transform + pos: 49.5,-35.5 + parent: 2 + - uid: 6454 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 2 + - uid: 6456 + components: + - type: Transform + pos: 47.5,-35.5 + parent: 2 + - uid: 6459 + components: + - type: Transform + pos: -23.5,-61.5 + parent: 2 + - uid: 6460 + components: + - type: Transform + pos: -21.5,-59.5 + parent: 2 + - uid: 6461 + components: + - type: Transform + pos: -21.5,-61.5 + parent: 2 + - uid: 6462 + components: + - type: Transform + pos: -28.5,-59.5 + parent: 2 + - uid: 6463 + components: + - type: Transform + pos: -28.5,-60.5 + parent: 2 + - uid: 6464 + components: + - type: Transform + pos: -28.5,-61.5 + parent: 2 + - uid: 6481 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 6511 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 6513 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - uid: 6514 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 6515 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 6516 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 6549 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 6550 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 6551 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 6596 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 6669 + components: + - type: Transform + pos: -25.5,22.5 + parent: 2 + - uid: 6698 + components: + - type: Transform + pos: -28.5,33.5 + parent: 2 + - uid: 6699 + components: + - type: Transform + pos: -29.5,33.5 + parent: 2 + - uid: 6700 + components: + - 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: 7101 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 7104 + components: + - type: Transform + pos: -26.5,53.5 + parent: 2 + - uid: 7105 + components: + - type: Transform + pos: -26.5,47.5 + parent: 2 + - uid: 7106 + components: + - type: Transform + pos: -26.5,46.5 + parent: 2 + - uid: 7145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,57.5 + parent: 2 + - uid: 7194 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,48.5 + parent: 2 + - uid: 7195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,47.5 + parent: 2 + - uid: 7196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,46.5 + parent: 2 + - uid: 7197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,51.5 + parent: 2 + - uid: 7198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,50.5 + parent: 2 + - uid: 7199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,49.5 + parent: 2 + - uid: 7200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,48.5 + parent: 2 + - uid: 7201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,44.5 + parent: 2 + - uid: 7202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,43.5 + parent: 2 + - uid: 7203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,42.5 + parent: 2 + - uid: 7204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,41.5 + parent: 2 + - uid: 7205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,37.5 + parent: 2 + - uid: 7206 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,36.5 + parent: 2 + - uid: 7207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 2 + - uid: 7208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 2 + - uid: 7660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,41.5 + parent: 2 + - uid: 7661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,41.5 + parent: 2 + - uid: 7662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,41.5 + parent: 2 + - uid: 7665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,43.5 + parent: 2 + - uid: 7666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,42.5 + parent: 2 + - uid: 7762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 2 + - uid: 7777 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 + - uid: 7796 + components: + - type: Transform + pos: 39.5,48.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + pos: 39.5,46.5 + parent: 2 + - uid: 7799 + components: + - type: Transform + pos: 39.5,43.5 + parent: 2 + - uid: 7800 + components: + - type: Transform + pos: 39.5,44.5 + parent: 2 + - uid: 7823 + components: + - type: Transform + pos: 21.5,53.5 + parent: 2 + - uid: 7873 + components: + - type: Transform + pos: 21.5,54.5 + parent: 2 + - uid: 7874 + components: + - type: Transform + pos: 21.5,55.5 + parent: 2 + - uid: 7875 + components: + - type: Transform + pos: 22.5,56.5 + parent: 2 + - uid: 7877 + components: + - type: Transform + pos: 24.5,56.5 + parent: 2 + - uid: 7878 + components: + - type: Transform + pos: 25.5,55.5 + parent: 2 + - uid: 7879 + components: + - type: Transform + pos: 25.5,54.5 + parent: 2 + - uid: 7880 + components: + - type: Transform + pos: 25.5,53.5 + parent: 2 + - uid: 7893 + components: + - type: Transform + pos: 46.5,-10.5 + parent: 2 + - uid: 7909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,32.5 + parent: 2 + - uid: 7910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,32.5 + parent: 2 + - uid: 7958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 2 + - uid: 7959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-19.5 + parent: 2 + - uid: 8001 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-3.5 + parent: 2 + - uid: 8034 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,0.5 + parent: 2 + - uid: 8035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,0.5 + parent: 2 + - uid: 8036 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-1.5 + parent: 2 + - uid: 8037 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-1.5 + parent: 2 + - uid: 8038 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,2.5 + parent: 2 + - uid: 8039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,2.5 + parent: 2 + - uid: 8040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,2.5 + parent: 2 + - uid: 8041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,0.5 + parent: 2 + - uid: 8042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-0.5 + parent: 2 + - uid: 8043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-1.5 + parent: 2 + - uid: 8044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-3.5 + parent: 2 + - uid: 8045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-3.5 + parent: 2 + - uid: 8046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 2 + - uid: 8149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,4.5 + parent: 2 + - uid: 8150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-2.5 + parent: 2 + - uid: 8151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-1.5 + parent: 2 + - uid: 8152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,-0.5 + parent: 2 + - uid: 8154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + - uid: 8156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 58.5,4.5 + parent: 2 + - uid: 8157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,4.5 + parent: 2 + - uid: 8158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 55.5,-5.5 + parent: 2 + - uid: 8159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-5.5 + parent: 2 + - uid: 8161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,-5.5 + parent: 2 + - uid: 8163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,3.5 + parent: 2 + - uid: 8164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,-4.5 + parent: 2 + - uid: 8166 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 8171 + components: + - type: Transform + pos: -2.5,58.5 + parent: 2 + - uid: 8176 + components: + - type: Transform + pos: -0.5,57.5 + parent: 2 + - uid: 8188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,37.5 + parent: 2 + - uid: 8189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,36.5 + parent: 2 + - uid: 8190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,35.5 + parent: 2 + - uid: 8191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,37.5 + parent: 2 + - uid: 8192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,36.5 + parent: 2 + - uid: 8194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,34.5 + parent: 2 + - uid: 8196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,30.5 + parent: 2 + - uid: 8197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,29.5 + parent: 2 + - uid: 8198 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,28.5 + parent: 2 + - uid: 8199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,31.5 + parent: 2 + - uid: 8200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,30.5 + parent: 2 + - uid: 8201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,29.5 + parent: 2 + - uid: 8202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,28.5 + parent: 2 + - uid: 8204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,24.5 + parent: 2 + - uid: 8205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,23.5 + parent: 2 + - uid: 8206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,22.5 + parent: 2 + - uid: 8209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,23.5 + parent: 2 + - uid: 8210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,22.5 + parent: 2 + - uid: 8211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,19.5 + parent: 2 + - uid: 8212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,18.5 + parent: 2 + - uid: 8213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,17.5 + parent: 2 + - uid: 8214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,16.5 + parent: 2 + - uid: 8215 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,20.5 + parent: 2 + - uid: 8216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,20.5 + parent: 2 + - uid: 8219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,17.5 + parent: 2 + - uid: 8220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,16.5 + parent: 2 + - uid: 8221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,12.5 + parent: 2 + - uid: 8222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,11.5 + parent: 2 + - uid: 8223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 62.5,11.5 + parent: 2 + - uid: 8224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,11.5 + parent: 2 + - uid: 8225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,10.5 + parent: 2 + - uid: 8226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,9.5 + parent: 2 + - uid: 8227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 60.5,9.5 + parent: 2 + - uid: 8228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,9.5 + parent: 2 + - uid: 8231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,13.5 + parent: 2 + - uid: 8232 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,12.5 + parent: 2 + - uid: 8262 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 8284 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 8294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-10.5 + parent: 2 + - uid: 8295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 + - uid: 8296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 61.5,14.5 + parent: 2 + - uid: 8297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-10.5 + parent: 2 + - uid: 8298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-10.5 + parent: 2 + - uid: 8299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-10.5 + parent: 2 + - uid: 8300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-10.5 + parent: 2 + - uid: 8301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,-10.5 + parent: 2 + - uid: 8302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-10.5 + parent: 2 + - uid: 8305 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,-13.5 + parent: 2 + - uid: 8306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,-13.5 + parent: 2 + - uid: 8307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,-13.5 + parent: 2 + - uid: 8309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,-13.5 + parent: 2 + - uid: 8310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,-13.5 + parent: 2 + - uid: 8312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-13.5 + parent: 2 + - uid: 8313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -69.5,-13.5 + parent: 2 + - uid: 8314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,-13.5 + parent: 2 + - uid: 8315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,63.5 + parent: 2 + - uid: 8317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,63.5 + parent: 2 + - uid: 8318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,63.5 + parent: 2 + - uid: 8319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,65.5 + parent: 2 + - uid: 8328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,65.5 + parent: 2 + - uid: 8329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,65.5 + parent: 2 + - uid: 8330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,65.5 + parent: 2 + - uid: 8331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,65.5 + parent: 2 + - uid: 8332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,65.5 + parent: 2 + - uid: 8333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,65.5 + parent: 2 + - uid: 8334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,65.5 + parent: 2 + - uid: 8335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,65.5 + parent: 2 + - uid: 8344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,63.5 + parent: 2 + - uid: 8346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,63.5 + parent: 2 + - uid: 8347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,63.5 + parent: 2 + - uid: 8348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,63.5 + parent: 2 + - uid: 8349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,63.5 + parent: 2 + - uid: 8350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,63.5 + parent: 2 + - uid: 8351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,63.5 + parent: 2 + - uid: 8404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,40.5 + parent: 2 + - uid: 8405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,39.5 + parent: 2 + - uid: 8407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,37.5 + parent: 2 + - uid: 8408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,38.5 + parent: 2 + - uid: 8409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,39.5 + parent: 2 + - uid: 8412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,32.5 + parent: 2 + - uid: 8413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,34.5 + parent: 2 + - uid: 8414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,33.5 + parent: 2 + - uid: 8415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,32.5 + parent: 2 + - uid: 8416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,29.5 + parent: 2 + - uid: 8417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,30.5 + parent: 2 + - uid: 8418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,28.5 + parent: 2 + - uid: 8419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,30.5 + parent: 2 + - uid: 8420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,28.5 + parent: 2 + - uid: 8421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,29.5 + parent: 2 + - uid: 8422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,30.5 + parent: 2 + - uid: 8423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,31.5 + parent: 2 + - uid: 8424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,32.5 + parent: 2 + - uid: 8425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,29.5 + parent: 2 + - uid: 8426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,25.5 + parent: 2 + - uid: 8427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,24.5 + parent: 2 + - uid: 8428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,23.5 + parent: 2 + - uid: 8429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,22.5 + parent: 2 + - uid: 8430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,25.5 + parent: 2 + - uid: 8431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,24.5 + parent: 2 + - uid: 8432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,22.5 + parent: 2 + - uid: 8687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-48.5 + parent: 2 + - uid: 9036 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 9043 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - uid: 9059 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,39.5 + parent: 2 + - uid: 9079 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 9080 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 9314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-49.5 + parent: 2 + - uid: 9315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-45.5 + parent: 2 + - uid: 9997 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 2 + - uid: 10231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-44.5 + parent: 2 + - uid: 10370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-41.5 + parent: 2 + - uid: 10388 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-40.5 + parent: 2 + - uid: 10530 + components: + - type: Transform + pos: 2.5,-43.5 + parent: 2 + - uid: 10531 + components: + - type: Transform + pos: 3.5,-43.5 + parent: 2 + - uid: 10681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-55.5 + parent: 2 + - uid: 10800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-56.5 + parent: 2 + - uid: 11307 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - uid: 11308 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - uid: 11340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-43.5 + parent: 2 + - uid: 12839 + components: + - type: Transform + pos: -5.5,-44.5 + parent: 2 + - uid: 13354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - uid: 13453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-46.5 + parent: 2 + - uid: 13973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 2 + - uid: 14217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-41.5 + parent: 2 + - uid: 14218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-40.5 + parent: 2 + - uid: 14219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-37.5 + parent: 2 + - uid: 14222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-48.5 + parent: 2 + - uid: 14227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-39.5 + parent: 2 + - uid: 14228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-36.5 + parent: 2 + - uid: 14229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-35.5 + parent: 2 + - uid: 14230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-48.5 + parent: 2 + - uid: 14237 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 14244 + components: + - type: Transform + pos: -74.5,-22.5 + parent: 2 + - uid: 14245 + components: + - type: Transform + pos: -74.5,-23.5 + parent: 2 + - uid: 14246 + components: + - type: Transform + pos: -73.5,-25.5 + parent: 2 + - uid: 14247 + components: + - type: Transform + pos: -73.5,-26.5 + parent: 2 + - uid: 14249 + components: + - type: Transform + pos: -73.5,-28.5 + parent: 2 + - uid: 14250 + components: + - type: Transform + pos: -72.5,-30.5 + parent: 2 + - uid: 14251 + components: + - type: Transform + pos: -72.5,-31.5 + parent: 2 + - uid: 14252 + components: + - type: Transform + pos: -73.5,-17.5 + parent: 2 + - uid: 14253 + components: + - type: Transform + pos: -73.5,-16.5 + parent: 2 + - uid: 14254 + components: + - type: Transform + pos: -73.5,-15.5 + parent: 2 + - uid: 14256 + components: + - type: Transform + pos: -72.5,-12.5 + parent: 2 + - uid: 14257 + components: + - type: Transform + pos: -72.5,-11.5 + parent: 2 + - uid: 14258 + components: + - type: Transform + pos: -71.5,-18.5 + parent: 2 + - uid: 14259 + components: + - type: Transform + pos: -71.5,-17.5 + parent: 2 + - uid: 14260 + components: + - type: Transform + pos: -71.5,-16.5 + parent: 2 + - uid: 14261 + components: + - type: Transform + pos: -71.5,-15.5 + parent: 2 + - uid: 14262 + components: + - type: Transform + pos: -72.5,-20.5 + parent: 2 + - uid: 14263 + components: + - type: Transform + pos: -72.5,-21.5 + parent: 2 + - uid: 14264 + components: + - type: Transform + pos: -72.5,-22.5 + parent: 2 + - uid: 14265 + components: + - type: Transform + pos: -71.5,-24.5 + parent: 2 + - uid: 14266 + components: + - type: Transform + pos: -71.5,-25.5 + parent: 2 + - uid: 14267 + components: + - type: Transform + pos: -71.5,-26.5 + parent: 2 + - uid: 14268 + components: + - type: Transform + pos: -71.5,-27.5 + parent: 2 + - uid: 14460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-42.5 + parent: 2 + - uid: 14796 + components: + - type: Transform + pos: -4.5,-44.5 + parent: 2 + - uid: 14852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 15480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 2 + - uid: 15658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-6.5 + parent: 2 + - uid: 15659 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-7.5 + parent: 2 + - uid: 15676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-47.5 + parent: 2 + - uid: 15677 + components: + - type: Transform + pos: 31.5,56.5 + parent: 2 + - uid: 15678 + components: + - type: Transform + pos: 32.5,56.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + pos: 33.5,56.5 + parent: 2 + - uid: 15680 + components: + - type: Transform + pos: 34.5,56.5 + parent: 2 + - uid: 15681 + components: + - type: Transform + pos: 35.5,56.5 + parent: 2 + - uid: 15682 + components: + - type: Transform + pos: 39.5,50.5 + parent: 2 + - uid: 15683 + components: + - type: Transform + pos: 39.5,51.5 + parent: 2 + - uid: 15684 + components: + - type: Transform + pos: 39.5,52.5 + parent: 2 + - uid: 15731 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-51.5 + parent: 2 + - uid: 15732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-52.5 + parent: 2 + - uid: 15733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-53.5 + parent: 2 + - uid: 15734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-57.5 + parent: 2 + - uid: 15735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-57.5 + parent: 2 + - uid: 15736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-57.5 + parent: 2 + - uid: 15737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-57.5 + parent: 2 + - uid: 15738 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-57.5 + parent: 2 + - uid: 15739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-57.5 + parent: 2 + - uid: 15740 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-57.5 + parent: 2 + - uid: 15741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-56.5 + parent: 2 + - uid: 15742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-53.5 + parent: 2 + - uid: 15743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-52.5 + parent: 2 + - uid: 15744 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-51.5 + parent: 2 + - uid: 15745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-49.5 + parent: 2 + - uid: 15746 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-48.5 + parent: 2 + - uid: 15747 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-47.5 + parent: 2 + - uid: 15748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 2 + - uid: 15749 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 2 + - uid: 15750 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 2 + - uid: 15751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-40.5 + parent: 2 + - uid: 15752 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-39.5 + parent: 2 + - uid: 15753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,56.5 + parent: 2 + - uid: 15754 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-37.5 + parent: 2 + - uid: 15755 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 2 + - uid: 15756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-35.5 + parent: 2 + - uid: 15757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,56.5 + parent: 2 + - uid: 15758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,55.5 + parent: 2 + - uid: 15835 + components: + - type: Transform + pos: -4.5,61.5 + parent: 2 + - uid: 15850 + components: + - type: Transform + pos: -4.5,60.5 + parent: 2 + - uid: 15875 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 + - uid: 15959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-33.5 + parent: 2 + - uid: 15960 + components: + - type: Transform + 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 + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 16127 + components: + - type: Transform + pos: -26.5,48.5 + parent: 2 + - uid: 16138 + components: + - type: Transform + pos: -26.5,55.5 + parent: 2 + - uid: 16139 + components: + - type: Transform + pos: -26.5,56.5 + parent: 2 + - uid: 16140 + components: + - type: Transform + pos: -26.5,57.5 + parent: 2 + - uid: 16141 + components: + - type: Transform + pos: -26.5,44.5 + parent: 2 + - uid: 16142 + components: + - type: Transform + pos: -26.5,43.5 + parent: 2 + - uid: 16143 + components: + - type: Transform + pos: -26.5,42.5 + parent: 2 + - uid: 16144 + components: + - type: Transform + pos: -26.5,41.5 + parent: 2 +- proto: GrilleSpawner + entities: + - uid: 1755 + components: + - type: Transform + pos: -67.5,-13.5 + parent: 2 + - uid: 2826 + components: + - type: Transform + pos: -46.5,-1.5 + parent: 2 + - uid: 2873 + components: + - type: Transform + pos: -1.5,63.5 + parent: 2 + - uid: 2877 + components: + - type: Transform + pos: -7.5,65.5 + parent: 2 + - uid: 2883 + components: + - type: Transform + pos: -0.5,55.5 + parent: 2 + - uid: 3450 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 3451 + components: + - type: Transform + pos: 63.5,-22.5 + parent: 2 + - uid: 3452 + components: + - type: Transform + pos: 63.5,-24.5 + parent: 2 + - uid: 3453 + components: + - type: Transform + pos: 63.5,-15.5 + parent: 2 + - uid: 3454 + components: + - type: Transform + pos: 59.5,-10.5 + parent: 2 + - uid: 3455 + components: + - type: Transform + pos: 58.5,-10.5 + parent: 2 + - uid: 3459 + components: + - type: Transform + pos: -29.5,7.5 + parent: 2 + - uid: 3461 + components: + - type: Transform + pos: -37.5,-1.5 + parent: 2 + - uid: 3472 + components: + - type: Transform + pos: -46.5,31.5 + parent: 2 + - uid: 3473 + components: + - 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 + pos: -42.5,24.5 + parent: 2 + - uid: 3535 + components: + - type: Transform + pos: -46.5,28.5 + parent: 2 + - uid: 3555 + components: + - type: Transform + pos: -37.5,39.5 + parent: 2 + - uid: 3678 + components: + - type: Transform + pos: -73.5,-27.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + pos: -74.5,-20.5 + parent: 2 + - uid: 6339 + components: + - type: Transform + pos: -25.5,-61.5 + parent: 2 + - uid: 6345 + components: + - type: Transform + pos: -12.5,-59.5 + parent: 2 + - uid: 6366 + components: + - type: Transform + pos: -17.5,-61.5 + parent: 2 + - uid: 6374 + components: + - type: Transform + pos: -11.5,-61.5 + parent: 2 + - uid: 6389 + components: + - type: Transform + pos: 31.5,-54.5 + parent: 2 + - uid: 6422 + components: + - type: Transform + pos: -59.5,-10.5 + parent: 2 + - uid: 6452 + components: + - type: Transform + pos: 49.5,-37.5 + parent: 2 + - uid: 7113 + components: + - type: Transform + pos: -26.5,54.5 + parent: 2 + - uid: 7210 + components: + - type: Transform + pos: -73.5,-14.5 + parent: 2 + - uid: 8144 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 8153 + components: + - type: Transform + pos: 62.5,0.5 + parent: 2 + - uid: 8155 + components: + - type: Transform + pos: 57.5,-5.5 + parent: 2 + - uid: 8160 + components: + - type: Transform + pos: 58.5,-5.5 + parent: 2 + - uid: 8162 + components: + - type: Transform + pos: 57.5,4.5 + parent: 2 + - uid: 8170 + components: + - type: Transform + pos: 59.5,35.5 + parent: 2 + - uid: 8175 + components: + - type: Transform + pos: -0.5,56.5 + parent: 2 + - uid: 8195 + components: + - type: Transform + pos: 61.5,31.5 + parent: 2 + - uid: 8203 + components: + - type: Transform + pos: 59.5,24.5 + parent: 2 + - uid: 8208 + components: + - type: Transform + pos: 61.5,25.5 + parent: 2 + - uid: 8217 + components: + - type: Transform + pos: 59.5,18.5 + parent: 2 + - uid: 8218 + components: + - type: Transform + pos: 59.5,19.5 + parent: 2 + - uid: 8230 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 + - uid: 8283 + components: + - type: Transform + pos: -62.5,-13.5 + parent: 2 + - uid: 8303 + components: + - type: Transform + pos: -60.5,-10.5 + parent: 2 + - uid: 8308 + components: + - type: Transform + pos: -67.5,-10.5 + parent: 2 + - uid: 8316 + components: + - type: Transform + pos: -13.5,63.5 + parent: 2 + - uid: 8345 + components: + - type: Transform + pos: -24.5,63.5 + parent: 2 + - uid: 8406 + components: + - type: Transform + pos: -53.5,33.5 + parent: 2 + - uid: 8411 + components: + - type: Transform + pos: -53.5,37.5 + parent: 2 + - uid: 8434 + components: + - type: Transform + pos: -53.5,23.5 + parent: 2 + - uid: 8446 + components: + - type: Transform + pos: -30.5,17.5 + parent: 2 + - uid: 10230 + components: + - type: Transform + pos: 39.5,47.5 + parent: 2 + - uid: 10232 + components: + - type: Transform + pos: 39.5,40.5 + parent: 2 + - uid: 10234 + components: + - type: Transform + pos: 39.5,39.5 + parent: 2 + - uid: 11579 + components: + - type: Transform + pos: 41.5,-43.5 + parent: 2 + - uid: 14182 + components: + - type: Transform + pos: 40.5,-43.5 + parent: 2 + - uid: 14183 + components: + - type: Transform + pos: 22.5,-43.5 + parent: 2 + - uid: 14184 + components: + - type: Transform + pos: 30.5,-48.5 + parent: 2 + - uid: 16145 + components: + - type: Transform + pos: -26.5,40.5 + parent: 2 +- proto: GunSafeDisabler + entities: + - uid: 3427 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 3428 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 3429 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 +- proto: GunSafeShotgunKammerer + entities: + - uid: 3425 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 3422 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 2 +- proto: GyroscopeMachineCircuitboard + entities: + - uid: 6176 + components: + - type: Transform + pos: -39.363934,-43.01706 + parent: 2 +- proto: HeatExchanger + entities: + - uid: 3278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 1901 + components: + - type: MetaData + name: high security door (Armoury) + - type: Transform + pos: -0.5,-21.5 + parent: 2 +- proto: HighSecCommandLocked + entities: + - uid: 537 + components: + - type: MetaData + name: high security door (AI) + - type: Transform + pos: -34.5,31.5 + parent: 2 + - uid: 4459 + components: + - type: MetaData + name: high security door (Vault) + - type: Transform + pos: -15.5,-3.5 + parent: 2 + - uid: 4996 + components: + - type: Transform + pos: 36.5,-2.5 + parent: 2 + - uid: 4997 + components: + - type: MetaData + name: high security door (Gravity Generator) + - type: Transform + pos: 38.5,-5.5 + parent: 2 + - uid: 15433 + components: + - type: MetaData + name: high security door (Station Anchor) + - type: Transform + pos: 44.5,-5.5 + parent: 2 +- proto: HolopadAiCore + entities: + - uid: 14774 + components: + - type: Transform + pos: -32.5,31.5 + parent: 2 +- proto: HolopadAiMain + entities: + - uid: 14775 + components: + - type: Transform + pos: -36.5,31.5 + parent: 2 +- proto: HolopadCargoBay + entities: + - uid: 14790 + components: + - type: Transform + pos: 11.5,33.5 + parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 14778 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 +- proto: HolopadCargoFront + entities: + - uid: 14776 + components: + - type: Transform + pos: 11.5,28.5 + parent: 2 +- proto: HolopadCargoSalvageBay + entities: + - uid: 14777 + components: + - type: Transform + pos: 20.5,37.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 14789 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 14706 + components: + - type: Transform + pos: -38.5,-6.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 14708 + components: + - type: Transform + pos: -24.5,-3.5 + parent: 2 +- proto: HolopadCommandCe + entities: + - uid: 4920 + components: + - type: Transform + pos: 37.5,-14.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 14712 + components: + - type: Transform + pos: 32.5,23.5 + parent: 2 +- proto: HolopadCommandHop + entities: + - uid: 14710 + components: + - type: Transform + pos: 11.5,-18.5 + parent: 2 +- proto: HolopadCommandHos + entities: + - uid: 14713 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 14709 + components: + - type: Transform + pos: -29.5,-8.5 + parent: 2 +- proto: HolopadCommandQm + entities: + - uid: 14714 + components: + - type: Transform + pos: 0.5,37.5 + parent: 2 +- proto: HolopadCommandRd + entities: + - uid: 4935 + components: + - type: Transform + pos: -14.5,9.5 + parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 14716 + components: + - type: Transform + pos: -15.5,-6.5 + parent: 2 +- proto: HolopadEngineeringAME + entities: + - uid: 14765 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 11586 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 14766 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 14772 + components: + - type: Transform + pos: 29.5,-21.5 + parent: 2 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 14767 + components: + - type: Transform + pos: 34.5,-18.5 + parent: 2 +- proto: HolopadEngineeringFront + entities: + - uid: 14768 + components: + - type: Transform + pos: 25.5,-12.5 + parent: 2 +- proto: HolopadEngineeringPower + entities: + - uid: 6043 + components: + - type: Transform + pos: 36.5,-10.5 + parent: 2 +- proto: HolopadEngineeringStorage + entities: + - uid: 14769 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 +- proto: HolopadEngineeringTechVault + entities: + - uid: 14770 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 14771 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 +- proto: HolopadGeneralArrivals + entities: + - uid: 14779 + components: + - type: Transform + pos: -7.5,42.5 + parent: 2 +- proto: HolopadGeneralCryosleep + entities: + - uid: 14780 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 +- proto: HolopadGeneralDisposals + entities: + - uid: 14781 + components: + - type: Transform + pos: 49.5,7.5 + parent: 2 +- proto: HolopadGeneralEvac + entities: + - uid: 14783 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 14782 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 2 +- proto: HolopadGeneralLounge + entities: + - uid: 3579 + components: + - type: Transform + pos: 5.5,0.5 + parent: 2 +- proto: HolopadGeneralTheater + entities: + - uid: 14701 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 +- proto: HolopadGeneralTools + entities: + - uid: 14785 + components: + - type: Transform + pos: -3.5,20.5 + parent: 2 +- proto: HolopadMedicalBreakroom + entities: + - uid: 14723 + components: + - type: Transform + pos: 36.5,18.5 + parent: 2 +- proto: HolopadMedicalChemistry + entities: + - uid: 14722 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 +- proto: HolopadMedicalCryopods + entities: + - uid: 11584 + components: + - type: Transform + pos: 36.5,13.5 + parent: 2 +- proto: HolopadMedicalFront + entities: + - uid: 14724 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 14728 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 +- proto: HolopadMedicalMorgue + entities: + - uid: 14727 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 +- proto: HolopadMedicalParamed + entities: + - uid: 14726 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 +- proto: HolopadMedicalSurgery + entities: + - uid: 14725 + components: + - type: Transform + pos: 36.5,5.5 + parent: 2 +- proto: HolopadMedicalVirology + entities: + - uid: 14729 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 +- proto: HolopadScienceAnomaly + entities: + - uid: 14717 + components: + - type: Transform + pos: -14.5,25.5 + parent: 2 +- proto: HolopadScienceArtifact + entities: + - uid: 14718 + components: + - type: Transform + pos: -20.5,21.5 + parent: 2 +- proto: HolopadScienceFront + entities: + - uid: 14721 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 +- proto: HolopadScienceRnd + entities: + - uid: 14719 + components: + - type: Transform + pos: -17.5,15.5 + parent: 2 +- proto: HolopadScienceRobotics + entities: + - uid: 14720 + components: + - type: Transform + pos: -25.5,16.5 + parent: 2 +- proto: HolopadSecurityArmory + entities: + - uid: 14730 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 2 +- proto: HolopadSecurityArrivalsCheckpoint + entities: + - uid: 16226 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 +- proto: HolopadSecurityBreakroom + entities: + - uid: 15337 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 14735 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 2 +- proto: HolopadSecurityCourtroom + entities: + - uid: 14762 + components: + - type: Transform + pos: -15.5,-34.5 + parent: 2 +- proto: HolopadSecurityDetective + entities: + - uid: 14734 + components: + - type: Transform + pos: -10.5,-21.5 + parent: 2 +- proto: HolopadSecurityEvacCheckpoint + entities: + - uid: 16225 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 +- proto: HolopadSecurityFront + entities: + - uid: 14733 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 2 +- proto: HolopadSecurityLawyer + entities: + - uid: 7747 + components: + - type: Transform + pos: -21.5,-42.5 + parent: 2 +- proto: HolopadSecurityLockerRoom + entities: + - uid: 14764 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 +- proto: HolopadSecurityPerma + entities: + - uid: 14732 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 2 +- proto: HolopadSecurityWarden + entities: + - uid: 14731 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 14698 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 2 +- proto: HolopadServiceBotany + entities: + - uid: 14699 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 14700 + components: + - type: Transform + pos: -34.5,-23.5 + parent: 2 +- proto: HolopadServiceJanitor + entities: + - uid: 14702 + components: + - type: Transform + pos: -4.5,7.5 + parent: 2 +- proto: HolopadServiceKitchen + entities: + - uid: 14703 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 2 +- proto: HolopadServiceLibrary + entities: + - uid: 14704 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 +- proto: HolopadServiceNewsroom + entities: + - uid: 14705 + components: + - type: Transform + pos: -24.5,-33.5 + parent: 2 +- proto: Holoprojector + entities: + - uid: 424 + components: + - type: Transform + pos: -5.465043,8.29865 + parent: 2 +- proto: HoloprojectorSecurity + entities: + - uid: 1054 + components: + - type: Transform + pos: 20.50719,-11.491249 + parent: 2 +- proto: HydrogenChemistryBottle + entities: + - uid: 401 + components: + - type: Transform + pos: 26.343384,37.548748 + parent: 2 +- proto: hydroponicsSoil + entities: + - uid: 14181 + components: + - type: Transform + pos: -13.5,-47.5 + parent: 2 + - uid: 14187 + components: + - type: Transform + pos: -13.5,-45.5 + parent: 2 + - uid: 14188 + components: + - type: Transform + pos: -13.5,-44.5 + parent: 2 + - uid: 14220 + components: + - type: Transform + pos: -13.5,-46.5 + parent: 2 +- proto: HydroponicsToolScythe + entities: + - uid: 15829 + components: + - type: Transform + pos: 16.067547,5.7525864 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 15828 + components: + - type: Transform + pos: 14.176923,7.6900864 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 352 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 353 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 360 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 361 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 + - uid: 365 + components: + - type: Transform + pos: 15.5,5.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 369 + components: + - type: Transform + pos: 17.5,6.5 + parent: 2 + - uid: 370 + components: + - type: Transform + pos: 17.5,5.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 17.5,4.5 + parent: 2 + - uid: 2131 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 2132 + components: + - type: Transform + pos: 4.5,-36.5 + parent: 2 + - uid: 2133 + components: + - type: Transform + pos: 4.5,-37.5 + parent: 2 + - uid: 2134 + components: + - type: Transform + pos: 4.5,-38.5 + parent: 2 + - uid: 2135 + components: + - type: Transform + pos: 3.5,-38.5 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 2243 + components: + - type: Transform + pos: 35.504963,-0.47239208 + parent: 2 +- proto: Igniter + entities: + - uid: 16086 + components: + - type: Transform + pos: 25.53323,-29.068619 + parent: 2 +- proto: InflatableDoor + entities: + - uid: 1107 + components: + - type: Transform + pos: 23.5,29.5 + parent: 2 + - uid: 5946 + components: + - type: Transform + pos: 27.5,-19.5 + parent: 2 + - uid: 13788 + components: + - type: Transform + pos: 28.5,0.5 + parent: 2 + - uid: 16109 + components: + - type: Transform + pos: -22.5,49.5 + parent: 2 + - uid: 16110 + components: + - type: Transform + pos: -21.5,34.5 + parent: 2 +- proto: InflatableWall + entities: + - uid: 1102 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 + - uid: 2999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-26.5 + parent: 2 + - uid: 3000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-23.5 + parent: 2 + - uid: 6030 + components: + - type: Transform + pos: 24.5,-18.5 + parent: 2 + - uid: 7317 + components: + - type: Transform + pos: -6.5,54.5 + parent: 2 + - uid: 7802 + components: + - type: Transform + pos: 26.5,-19.5 + parent: 2 + - uid: 10379 + components: + - type: Transform + pos: -28.5,-44.5 + parent: 2 + - uid: 10381 + components: + - type: Transform + pos: -37.5,-37.5 + parent: 2 + - uid: 10391 + components: + - type: Transform + pos: -42.5,-17.5 + parent: 2 + - uid: 10398 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 10399 + components: + - type: Transform + pos: 16.5,21.5 + parent: 2 + - uid: 10400 + components: + - type: Transform + pos: -1.5,36.5 + parent: 2 + - uid: 10401 + components: + - type: Transform + pos: -2.5,47.5 + parent: 2 + - uid: 10402 + components: + - type: Transform + pos: -20.5,31.5 + parent: 2 + - uid: 10410 + components: + - type: Transform + pos: 21.5,29.5 + parent: 2 + - uid: 10411 + components: + - type: Transform + pos: 22.5,29.5 + parent: 2 + - uid: 10422 + components: + - type: Transform + pos: 46.5,19.5 + parent: 2 + - uid: 10423 + components: + - type: Transform + pos: 42.5,30.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: 44.5,30.5 + parent: 2 + - uid: 16108 + components: + - type: Transform + pos: -21.5,49.5 + parent: 2 +- proto: InflatableWallStack5 + entities: + - uid: 6734 + components: + - type: Transform + pos: -19.439934,7.59067 + parent: 2 + - uid: 10457 + components: + - type: Transform + pos: 30.45203,29.607481 + parent: 2 +- proto: IngotGold + entities: + - uid: 10365 + components: + - type: Transform + pos: -14.439316,-5.3109374 + parent: 2 +- proto: IngotSilver + entities: + - uid: 10373 + components: + - type: Transform + pos: -14.415827,-8.359823 + parent: 2 +- proto: IngotSilver1 + entities: + - uid: 15837 + components: + - type: Transform + pos: -36.2282,-42.78697 + parent: 2 + - type: Stack + count: 2 +- proto: IntercomAll + entities: + - uid: 1594 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 8818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-10.5 + parent: 2 + - uid: 11792 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,30.5 + parent: 2 +- proto: IntercomCommand + entities: + - uid: 4421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 8816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-8.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 4076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,6.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 1053 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 3496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-35.5 + parent: 2 + - uid: 8618 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 15899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 9995 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,26.5 + parent: 2 +- proto: JanitorialTrolley + entities: + - uid: 7354 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 +- proto: JanitorServiceLight + entities: + - uid: 3590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + - uid: 6281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 2 + - uid: 7748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-39.5 + parent: 2 + - uid: 9968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-10.5 + parent: 2 + - uid: 15856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-23.5 + parent: 2 + - uid: 15857 + components: + - type: Transform + pos: -33.5,-29.5 + parent: 2 + - uid: 15858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-39.5 + parent: 2 + - uid: 15859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-39.5 + parent: 2 + - uid: 15872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-36.5 + parent: 2 + - uid: 15878 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-30.5 + parent: 2 + - uid: 15881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-14.5 + parent: 2 + - uid: 15884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-5.5 + parent: 2 + - uid: 15888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,8.5 + parent: 2 + - uid: 15892 + components: + - type: Transform + 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 +- proto: JetpackMiniFilled + entities: + - uid: 1733 + components: + - type: Transform + pos: 15.481375,-19.251846 + parent: 2 + - uid: 1734 + components: + - type: Transform + pos: 15.512625,-19.595596 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 342 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 198 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 298 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 4543 + components: + - type: Transform + pos: 36.5,-18.5 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 299 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 460 + components: + - type: Transform + pos: 11.5,-3.5 + parent: 2 + - uid: 2128 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - uid: 3967 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 15456 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 +- proto: KitchenSpike + entities: + - uid: 435 + components: + - type: Transform + pos: 11.5,6.5 + parent: 2 +- proto: Lamp + entities: + - uid: 7122 + components: + - type: Transform + pos: 0.46948135,19.865473 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 16075 + components: + - type: Transform + pos: -9.509186,58.65886 + parent: 2 +- proto: LargeBeaker + entities: + - uid: 6738 + components: + - type: Transform + pos: -21.578773,20.764584 + parent: 2 + - uid: 8820 + components: + - type: Transform + pos: 24.925497,10.590512 + parent: 2 +- proto: LightReplacer + entities: + - uid: 808 + components: + - type: Transform + pos: -5.531499,8.951555 + parent: 2 +- proto: LiveLetLiveCircuitBoard + entities: + - uid: 5487 + components: + - type: Transform + pos: -33.545975,35.55063 + parent: 2 +- proto: LockableButtonBar + entities: + - uid: 296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-7.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3991: + - Pressed: Toggle + 16217: + - Pressed: Toggle + 16216: + - Pressed: Toggle + 16218: + - Pressed: Toggle +- proto: LockableButtonCaptain + entities: + - uid: 13976 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + pos: -26.5,-0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4881: + - Pressed: Toggle + 13974: + - Pressed: Toggle + 13978: + - Pressed: Toggle + 13977: + - Pressed: Toggle +- proto: LockableButtonCargo + entities: + - uid: 6557 + components: + - type: MetaData + name: lockable button (Loading Bay) + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4269: + - Pressed: Toggle + 4268: + - Pressed: Toggle + - uid: 6559 + components: + - type: MetaData + name: lockable button (Loading Bay) + - type: Transform + pos: 12.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4268: + - Pressed: Toggle + 4269: + - Pressed: Toggle +- proto: LockableButtonChiefEngineer + entities: + - uid: 16183 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8122: + - Pressed: Toggle + 7324: + - Pressed: Toggle + 8123: + - Pressed: Toggle + 7119: + - Pressed: Toggle + 4121: + - Pressed: Toggle + 8126: + - Pressed: Toggle +- proto: LockableButtonChiefMedicalOfficer + entities: + - uid: 16176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16173: + - Pressed: Toggle + 16174: + - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 11097 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4607: + - Pressed: Toggle + 11085: + - Pressed: Toggle + 11086: + - Pressed: Toggle + 11088: + - Pressed: Toggle + 11087: + - Pressed: Toggle + 11089: + - Pressed: Toggle + 11090: + - Pressed: Toggle + 11091: + - Pressed: Toggle + 11092: + - Pressed: Toggle + 11093: + - Pressed: Toggle + 11094: + - Pressed: Toggle + 15279: + - Pressed: Toggle +- proto: LockableButtonDetective + entities: + - uid: 13949 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14003: + - Pressed: Toggle +- proto: LockableButtonHeadOfPersonnel + entities: + - uid: 16196 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16192: + - Pressed: Toggle + 3989: + - Pressed: Toggle + 16194: + - Pressed: Toggle + 16193: + - Pressed: Toggle +- proto: LockableButtonHeadOfSecurity + entities: + - uid: 16185 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16186: + - Pressed: Toggle + 16187: + - Pressed: Toggle +- proto: LockableButtonKitchen + entities: + - uid: 4481 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + pos: 11.5,2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16219: + - Pressed: Toggle + 16221: + - Pressed: Toggle + 16220: + - Pressed: Toggle + 16222: + - Pressed: Toggle +- proto: LockableButtonMedical + entities: + - uid: 9089 + components: + - type: MetaData + name: lockable button (Exit) + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3915: + - Pressed: Open + 3916: + - Pressed: Open + - uid: 13575 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 5080: + - Pressed: Toggle + 4706: + - Pressed: Toggle + - uid: 13768 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + pos: 19.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4706: + - Pressed: Toggle + 5080: + - Pressed: Toggle + - uid: 16210 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16146: + - Pressed: Toggle + 16147: + - Pressed: Toggle +- proto: LockableButtonQuartermaster + entities: + - uid: 16161 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16158: + - Pressed: Toggle + 16159: + - Pressed: Toggle + 16157: + - Pressed: Toggle + 16156: + - Pressed: Toggle + 16155: + - Pressed: Toggle +- proto: LockableButtonResearchDirector + entities: + - uid: 4210 + components: + - type: MetaData + name: lockable button (Shutters) + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7233: + - Pressed: Toggle + 7120: + - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 16002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15998: + - Pressed: Toggle + - uid: 16003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15999: + - Pressed: Toggle + - uid: 16152 + components: + - type: MetaData + name: lockable button (Door Bolt) + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16150: + - Pressed: DoorBolt +- proto: LockerAtmosphericsFilled + entities: + - uid: 2107 + components: + - type: Transform + pos: 29.5,-28.5 + parent: 2 + - uid: 6391 + components: + - type: Transform + pos: 29.5,-27.5 + parent: 2 +- proto: LockerBoozeFilled + entities: + - uid: 336 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - uid: 8603 + components: + - type: Transform + pos: 59.5,-1.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 355 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 10394 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 +- proto: LockerCaptainFilledNoLaser + entities: + - uid: 4620 + components: + - type: Transform + pos: -26.5,1.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 10906 + components: + - type: Transform + pos: 24.5,15.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 2977 + components: + - type: Transform + pos: 41.5,-16.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 3909 + components: + - type: Transform + pos: 30.5,26.5 + parent: 2 +- proto: LockerClown + entities: + - uid: 275 + components: + - type: Transform + pos: 0.5,10.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: + - 7657 + - 7663 + - 7664 + - 9932 + - 9933 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 2028 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 6204 + components: + - type: Transform + pos: -38.5,-40.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 1152 + components: + - type: Transform + pos: 28.5,-10.5 + parent: 2 + - uid: 1164 + components: + - type: Transform + pos: 27.5,-10.5 + parent: 2 + - uid: 8072 + components: + - type: Transform + pos: 26.5,-13.5 + parent: 2 + - uid: 8087 + components: + - type: Transform + pos: 26.5,-14.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 1047 + components: + - type: Transform + pos: 19.5,-11.5 + parent: 2 + - uid: 2026 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 2 + - uid: 2027 + components: + - type: Transform + pos: -10.5,-20.5 + parent: 2 + - uid: 2047 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 2048 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 2 + - uid: 6624 + components: + - type: Transform + pos: -1.5,27.5 + parent: 2 +- proto: LockerFreezerVaultFilled + entities: + - uid: 10364 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 1782 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 2077 + components: + - type: Transform + pos: -12.5,-38.5 + parent: 2 +- proto: LockerMedicalFilled + entities: + - uid: 4043 + components: + - type: Transform + pos: 37.5,17.5 + parent: 2 + - uid: 4044 + components: + - type: Transform + pos: 39.5,17.5 + parent: 2 + - uid: 4045 + components: + - type: Transform + pos: 38.5,17.5 + parent: 2 + - uid: 4046 + components: + - type: Transform + pos: 40.5,17.5 + parent: 2 +- proto: LockerMedicineFilled + entities: + - uid: 3998 + components: + - type: Transform + pos: 33.5,11.5 + parent: 2 + - uid: 3999 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 4000 + components: + - type: Transform + pos: 37.5,11.5 + parent: 2 + - uid: 4001 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 4002 + components: + - type: Transform + pos: 35.5,17.5 + parent: 2 +- proto: LockerMime + entities: + - uid: 273 + components: + - type: Transform + pos: 2.5,10.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: + - 12891 + - 12901 + - 12903 + - 12905 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerParamedicFilled + entities: + - uid: 3930 + components: + - type: Transform + pos: 19.5,17.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 6587 + components: + - type: Transform + pos: 0.5,35.5 + parent: 2 +- proto: LockerResearchDirectorFilled + entities: + - uid: 5076 + components: + - type: Transform + pos: -16.5,6.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 7636 + components: + - type: Transform + pos: 21.5,36.5 + parent: 2 + - uid: 7637 + components: + - type: Transform + pos: 21.5,35.5 + parent: 2 +- proto: LockerScienceFilled + entities: + - uid: 5241 + components: + - type: Transform + pos: -21.5,18.5 + parent: 2 + - uid: 5242 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 5243 + components: + - type: Transform + pos: -19.5,18.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 2019 + components: + - type: Transform + pos: -0.5,-16.5 + parent: 2 + - uid: 2020 + components: + - type: Transform + pos: 0.5,-16.5 + parent: 2 + - uid: 2021 + components: + - type: Transform + pos: 1.5,-16.5 + parent: 2 + - uid: 2022 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 2 + - uid: 3506 + components: + - type: Transform + pos: -33.5,-33.5 + parent: 2 +- proto: LockerSteel + entities: + - uid: 3430 + components: + - type: Transform + pos: 1.5,-20.5 + parent: 2 + - type: AccessReader + access: + - - Armory + - - Captain + - - CentralCommand + - - HeadOfSecurity + - - Security + - 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: + - 15333 + - 15332 + - 5701 + - 15334 + - 15335 + - 15336 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSyndicatePersonal + entities: + - uid: 16055 + components: + - type: Transform + pos: -19.5,-48.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: + - 16061 + - 16060 + - 16059 + - 16058 + - 16057 + - 16056 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerWardenFilled + entities: + - uid: 2023 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 6192 + components: + - type: Transform + pos: -35.5,-41.5 + parent: 2 +- proto: LootSpawnerIndustrialFluff + entities: + - uid: 1997 + components: + - type: Transform + pos: 25.5,-29.5 + parent: 2 + - uid: 2754 + components: + - type: Transform + pos: 33.5,-20.5 + parent: 2 + - uid: 2980 + components: + - type: Transform + pos: 30.5,-12.5 + parent: 2 + - uid: 15262 + components: + - type: Transform + pos: -49.5,30.5 + parent: 2 + - uid: 15263 + components: + - type: Transform + pos: -47.5,33.5 + parent: 2 + - uid: 15602 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 15603 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 15604 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 15605 + components: + - type: Transform + pos: -12.5,-17.5 + parent: 2 + - uid: 15606 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 +- proto: LootSpawnerMedicalMinor + entities: + - uid: 3994 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 4007 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 4008 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 4060 + components: + - type: Transform + pos: 20.5,19.5 + parent: 2 + - uid: 4061 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 4062 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 4063 + components: + - type: Transform + pos: 39.5,20.5 + parent: 2 + - uid: 4550 + components: + - type: Transform + pos: 33.5,19.5 + parent: 2 +- proto: LootSpawnerRandomCrateEngineering + entities: + - uid: 1564 + components: + - type: Transform + pos: 26.5,-8.5 + parent: 2 + - uid: 1565 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 15249 + components: + - type: Transform + pos: 24.5,-14.5 + parent: 2 + - uid: 15250 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 15251 + components: + - type: Transform + pos: 29.5,32.5 + parent: 2 + - uid: 15252 + components: + - type: Transform + pos: -10.5,31.5 + parent: 2 + - uid: 15307 + components: + - type: Transform + pos: 31.5,-20.5 + parent: 2 +- proto: LootSpawnerSecurityBasic + entities: + - uid: 1055 + components: + - type: Transform + pos: 20.5,-10.5 + parent: 2 + - uid: 3577 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - uid: 6638 + components: + - type: Transform + pos: -4.5,-26.5 + parent: 2 + - uid: 6639 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 6645 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 +- proto: LuxuryPen + entities: + - uid: 16204 + components: + - type: Transform + pos: 10.9722595,-19.469482 + parent: 2 +- proto: MachineAnomalyGenerator + entities: + - uid: 5191 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 5288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,23.5 + parent: 2 + - uid: 5289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,23.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 5290 + components: + - type: Transform + pos: -16.5,25.5 + parent: 2 + - uid: 5291 + components: + - type: Transform + pos: -12.5,25.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 4350 + components: + - type: Transform + pos: -23.5,25.5 + parent: 2 + - type: ItemPlacer + placedEntities: + - 15285 +- proto: MachineCentrifuge + entities: + - uid: 3969 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 4088 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 +- proto: MachineElectrolysisUnit + entities: + - uid: 3968 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 +- proto: MachineFrame + entities: + - uid: 7892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,26.5 + parent: 2 + - uid: 10554 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-40.5 + parent: 2 + - uid: 12382 + components: + - type: Transform + pos: 41.5,-0.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 5167 + components: + - type: Transform + pos: -17.5,12.5 + parent: 2 + - uid: 6384 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 + - uid: 9119 + components: + - type: Transform + pos: 35.5,-28.5 + parent: 2 + - uid: 9120 + components: + - type: Transform + pos: 24.5,-12.5 + parent: 2 + - uid: 12381 + components: + - type: Transform + pos: 26.5,35.5 + parent: 2 + - uid: 13732 + components: + - type: Transform + pos: 42.5,32.5 + parent: 2 +- proto: MagazinePistolSubMachineGunTopMounted + entities: + - uid: 5644 + components: + - type: Transform + pos: -11.473943,-33.730816 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 728 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 13636 + components: + - type: Transform + pos: -17.5,55.5 + parent: 2 + - uid: 13689 + components: + - type: Transform + pos: -33.5,-37.5 + parent: 2 + - uid: 13690 + components: + - type: Transform + pos: -33.5,-46.5 + parent: 2 + - uid: 13691 + components: + - type: Transform + pos: -14.5,-36.5 + parent: 2 + - uid: 13692 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 13699 + components: + - type: Transform + pos: -41.5,-20.5 + parent: 2 + - uid: 13700 + components: + - 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 + pos: -4.5,53.5 + parent: 2 + - uid: 13716 + components: + - type: Transform + pos: -6.5,56.5 + parent: 2 + - uid: 13719 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - uid: 13728 + components: + - type: Transform + pos: 19.5,30.5 + parent: 2 + - uid: 13729 + components: + - type: Transform + pos: 46.5,28.5 + parent: 2 + - uid: 13734 + components: + - type: Transform + pos: 38.5,31.5 + parent: 2 + - uid: 13741 + components: + - type: Transform + pos: 31.5,1.5 + parent: 2 + - uid: 13742 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 15449 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 16072 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 16125 + components: + - type: Transform + pos: -19.5,54.5 + parent: 2 +- proto: MaintenancePlantSpawner + entities: + - uid: 372 + components: + - type: Transform + pos: -21.5,11.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + pos: -27.5,-44.5 + parent: 2 + - uid: 13694 + components: + - type: Transform + pos: -30.5,-13.5 + parent: 2 + - uid: 13702 + components: + - 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 + pos: -20.5,32.5 + parent: 2 + - uid: 13710 + components: + - type: Transform + pos: 2.5,27.5 + parent: 2 + - uid: 13720 + components: + - type: Transform + pos: 6.5,12.5 + parent: 2 + - uid: 13721 + components: + - type: Transform + pos: 19.5,26.5 + parent: 2 + - uid: 13727 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 + - uid: 13735 + components: + - type: Transform + pos: 51.5,9.5 + parent: 2 + - uid: 13736 + components: + - type: Transform + pos: 46.5,6.5 + parent: 2 + - uid: 13737 + components: + - type: Transform + pos: 47.5,-1.5 + parent: 2 + - uid: 13746 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 13747 + components: + - type: Transform + pos: 10.5,-31.5 + parent: 2 + - uid: 13748 + components: + - type: Transform + pos: 17.5,-24.5 + parent: 2 + - uid: 15265 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 15838 + components: + - type: Transform + pos: 40.5,-1.5 + parent: 2 + - uid: 15848 + components: + - type: Transform + pos: 27.5,36.5 + parent: 2 + - uid: 16126 + components: + - type: Transform + pos: -21.5,48.5 + parent: 2 + - uid: 16128 + components: + - type: Transform + pos: -23.5,53.5 + parent: 2 +- proto: MaintenanceToolSpawner + entities: + - uid: 726 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 727 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 10233 + components: + - type: Transform + pos: -48.5,31.5 + parent: 2 + - uid: 13688 + components: + - type: Transform + pos: -25.5,-46.5 + parent: 2 + - uid: 13696 + components: + - type: Transform + pos: -35.5,-12.5 + parent: 2 + - uid: 13697 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - uid: 13698 + components: + - type: Transform + pos: -42.5,-14.5 + parent: 2 + - uid: 13701 + components: + - type: Transform + pos: -22.5,9.5 + parent: 2 + - uid: 13707 + components: + - type: Transform + pos: -20.5,30.5 + parent: 2 + - uid: 13713 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 13714 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 13717 + components: + - type: Transform + pos: -2.5,49.5 + parent: 2 + - uid: 13718 + components: + - type: Transform + pos: 0.5,12.5 + parent: 2 + - uid: 13730 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 13731 + components: + - type: Transform + pos: 46.5,24.5 + parent: 2 + - uid: 13740 + components: + - type: Transform + pos: 46.5,15.5 + parent: 2 + - uid: 13743 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 2 + - uid: 13744 + components: + - type: Transform + pos: 6.5,-31.5 + parent: 2 + - uid: 13749 + components: + - type: Transform + pos: 23.5,-15.5 + parent: 2 + - uid: 15261 + components: + - type: Transform + pos: -50.5,33.5 + parent: 2 + - uid: 16073 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 16122 + components: + - type: Transform + pos: -23.5,46.5 + parent: 2 + - uid: 16124 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 725 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 13687 + components: + - type: Transform + pos: -11.5,-42.5 + parent: 2 + - uid: 13704 + components: + - type: Transform + pos: -22.5,5.5 + parent: 2 + - uid: 13706 + components: + - type: Transform + pos: -16.5,30.5 + parent: 2 + - uid: 13733 + components: + - type: Transform + pos: 43.5,31.5 + parent: 2 + - uid: 13745 + components: + - type: Transform + pos: 10.5,-25.5 + parent: 2 + - uid: 15267 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 16071 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 16119 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 +- proto: Mannequin + entities: + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 +- proto: MaterialCloth + entities: + - uid: 1790 + components: + - type: Transform + pos: 13.493376,-17.480558 + parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 10371 + components: + - type: Transform + pos: -13.697077,-8.234823 + parent: 2 + - uid: 10372 + components: + - type: Transform + pos: -13.415827,-8.422323 + parent: 2 + - uid: 10374 + components: + - type: Transform + pos: -13.384577,-8.047323 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 1791 + components: + - type: Transform + pos: 13.618376,-18.105558 + parent: 2 +- proto: Mattress + entities: + - uid: 16062 + components: + - type: Transform + pos: -18.5,-49.5 + parent: 2 + - uid: 16066 + components: + - type: Transform + pos: -15.5,-49.5 + parent: 2 +- proto: MedicalBed + entities: + - uid: 3993 + components: + - type: Transform + pos: 34.5,11.5 + parent: 2 + - uid: 3996 + components: + - type: Transform + pos: 36.5,11.5 + parent: 2 + - uid: 3997 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 4102 + components: + - type: Transform + pos: 25.5,26.5 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 4026 + components: + - type: Transform + pos: 40.5,20.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 4057 + components: + - type: Transform + pos: 19.546352,19.684837 + parent: 2 +- proto: MedkitBruteFilled + entities: + - uid: 4049 + components: + - type: Transform + pos: 37.7809,7.6144543 + parent: 2 +- proto: MedkitBurnFilled + entities: + - uid: 4048 + components: + - type: Transform + pos: 35.550823,19.565094 + parent: 2 +- proto: MedkitCombatFilled + entities: + - uid: 10451 + components: + - type: Transform + pos: 30.625916,22.432798 + parent: 2 +- proto: MedkitFilled + entities: + - uid: 4050 + components: + - type: Transform + pos: 36.554417,17.508957 + parent: 2 + - uid: 4058 + components: + - type: Transform + pos: 19.983852,19.528587 + parent: 2 + - uid: 10503 + components: + - type: Transform + pos: 18.522177,40.602978 + parent: 2 +- proto: MedkitOxygenFilled + entities: + - uid: 4051 + components: + - type: Transform + pos: 36.515846,15.596962 + parent: 2 +- proto: MedkitRadiationFilled + entities: + - uid: 4052 + components: + - type: Transform + pos: 35.483074,7.775511 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 4053 + components: + - type: Transform + pos: 35.608074,7.556761 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 286 + components: + - type: Transform + pos: 1.491827,4.7192316 + parent: 2 +- proto: Mirror + entities: + - uid: 277 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 +- proto: MoonBattlemap + entities: + - uid: 15218 + components: + - type: Transform + pos: -31.399319,-10.05298 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 948 + components: + - type: Transform + pos: -3.5,8.5 + parent: 2 +- proto: MopItem + entities: + - uid: 416 + components: + - type: Transform + pos: -5.576272,7.5283756 + parent: 2 + - uid: 15271 + components: + - type: Transform + pos: 26.634336,-56.68783 + parent: 2 +- proto: Morgue + entities: + - uid: 3117 + components: + - type: Transform + pos: 42.5,15.5 + parent: 2 + - uid: 4017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,13.5 + parent: 2 + - uid: 4018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,12.5 + parent: 2 + - uid: 4019 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - uid: 5601 + components: + - type: Transform + pos: 41.5,15.5 + parent: 2 + - uid: 8256 + components: + - 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 + pos: 43.5,15.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 11351 + components: + - type: Transform + pos: -22.5,4.5 + parent: 2 + - uid: 11352 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 2 + - uid: 16137 + components: + - type: Transform + pos: -17.5,29.5 + parent: 2 +- proto: Multitool + entities: + - uid: 8486 + components: + - type: Transform + pos: 36.18178,-9.866242 + parent: 2 +- proto: NitrogenCanister + entities: + - uid: 1206 + components: + - type: Transform + pos: 37.5,-29.5 + parent: 2 + - uid: 1207 + components: + - type: Transform + pos: 37.5,-28.5 + parent: 2 + - uid: 2434 + components: + - type: Transform + pos: 22.5,-35.5 + parent: 2 + - uid: 5305 + components: + - type: Transform + pos: -20.5,20.5 + parent: 2 + - uid: 6296 + components: + - type: Transform + pos: -32.5,-46.5 + parent: 2 + - uid: 6299 + components: + - type: Transform + pos: -41.5,-14.5 + parent: 2 + - uid: 6775 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 2 + - uid: 10464 + components: + - type: Transform + pos: 44.5,29.5 + parent: 2 +- proto: NitrogenChemistryBottle + entities: + - uid: 13772 + components: + - type: Transform + pos: 26.492949,36.90781 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 2033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-23.5 + parent: 2 + - uid: 4034 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 13678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 2 + - uid: 13679 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 13680 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 2 + - uid: 13681 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 +- proto: NTDefaultCircuitBoard + entities: + - uid: 5488 + components: + - type: Transform + pos: -31.608475,35.51938 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 4559 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 +- proto: NuclearBombKeg + entities: + - uid: 9061 + components: + - type: Transform + pos: -25.5,35.5 + parent: 2 +- proto: NutimovCircuitBoard + entities: + - uid: 5489 + components: + - type: Transform + pos: -33.452225,35.58188 + parent: 2 +- proto: OperatingTable + entities: + - uid: 4009 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 + - uid: 5139 + components: + - type: Transform + pos: -25.5,11.5 + parent: 2 +- proto: OreBox + entities: + - uid: 12685 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 +- proto: OreProcessor + entities: + - uid: 6465 + components: + - type: Transform + pos: 17.5,36.5 + parent: 2 +- proto: OrganHumanTongue + entities: + - uid: 16047 + components: + - type: Transform + pos: -11.115525,58.583477 + parent: 2 +- proto: OxygenCanister + entities: + - uid: 1208 + components: + - type: Transform + pos: 37.5,-27.5 + parent: 2 + - uid: 2435 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 + - uid: 5306 + components: + - type: Transform + pos: -19.5,20.5 + parent: 2 + - uid: 6298 + components: + - type: Transform + pos: -40.5,-14.5 + parent: 2 + - uid: 8110 + components: + - type: Transform + pos: 37.5,-26.5 + parent: 2 + - uid: 10409 + components: + - type: Transform + pos: 7.5,-31.5 + parent: 2 + - uid: 10465 + components: + - type: Transform + pos: 44.5,28.5 + parent: 2 + - uid: 10467 + components: + - type: Transform + pos: 22.5,32.5 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 10621 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 2 +- proto: PairedChopsticks + entities: + - uid: 317 + components: + - type: Transform + pos: 16.513134,-0.47798443 + parent: 2 +- proto: PaladinCircuitBoard + entities: + - uid: 5491 + components: + - type: Transform + pos: -33.639725,35.51938 + parent: 2 +- proto: Paper + entities: + - uid: 6089 + components: + - type: Transform + pos: -19.387535,-41.843155 + parent: 2 + - uid: 6716 + components: + - type: Transform + pos: -25.296253,33.64534 + parent: 2 + - uid: 6717 + components: + - type: Transform + pos: -23.608753,33.42659 + parent: 2 + - uid: 9493 + components: + - type: Transform + pos: 5.4327555,26.56277 + parent: 2 + - uid: 9495 + components: + - type: Transform + pos: 5.6202555,26.75027 + parent: 2 + - uid: 16200 + components: + - type: Transform + pos: 11.2066345,-19.266357 + parent: 2 + - uid: 16201 + components: + - type: Transform + pos: 11.4566345,-19.516357 + parent: 2 + - uid: 16202 + components: + - type: Transform + pos: 11.6441345,-17.469482 + parent: 2 +- proto: PaperBin10 + entities: + - uid: 2041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-19.5 + parent: 2 + - uid: 2152 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 3833 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 4612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - uid: 6022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-43.5 + parent: 2 + - uid: 9498 + components: + - type: Transform + pos: 5.5,27.5 + parent: 2 +- proto: PaperBin20 + entities: + - uid: 1777 + components: + - type: Transform + pos: 7.5,-18.5 + parent: 2 +- proto: PaperCaptainsThoughts + entities: + - uid: 10509 + components: + - type: Transform + pos: -25.462969,-4.2461 + parent: 2 +- proto: PaperOffice + entities: + - uid: 2036 + components: + - type: Transform + pos: -12.318111,-20.23526 + parent: 2 + - uid: 2037 + components: + - type: Transform + pos: -12.661861,-19.79776 + parent: 2 + - uid: 2038 + components: + - type: Transform + pos: -12.599361,-20.07901 + parent: 2 + - uid: 3178 + components: + - type: Transform + pos: -23.604734,-32.455704 + parent: 2 + - uid: 3179 + components: + - type: Transform + pos: -23.323484,-32.455704 + parent: 2 + - uid: 14108 + components: + - type: Transform + pos: -18.34623,-19.472721 + parent: 2 + - uid: 14109 + components: + - type: Transform + pos: -18.59623,-19.347721 + parent: 2 + - uid: 15283 + components: + - type: Transform + pos: 1.3515301,39.507515 + parent: 2 + - uid: 15284 + components: + - type: Transform + pos: 1.6015301,39.382515 + parent: 2 +- proto: ParticleAcceleratorControlBoxUnfinished + entities: + - uid: 1322 + components: + - type: Transform + pos: 40.5,-21.5 + parent: 2 +- proto: ParticleAcceleratorEmitterForeUnfinished + entities: + - uid: 1336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 2 +- proto: ParticleAcceleratorEmitterPortUnfinished + entities: + - uid: 1334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-19.5 + parent: 2 +- proto: ParticleAcceleratorEmitterStarboardUnfinished + entities: + - uid: 1333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,-21.5 + parent: 2 +- proto: ParticleAcceleratorEndCapUnfinished + entities: + - uid: 1325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 2 +- proto: ParticleAcceleratorFuelChamberUnfinished + entities: + - uid: 1335 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,-20.5 + parent: 2 +- proto: ParticleAcceleratorPowerBoxUnfinished + entities: + - uid: 1332 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 2672 + components: + - type: Transform + pos: 33.568344,-21.395197 + parent: 2 + - uid: 6212 + components: + - type: Transform + pos: -39.051434,-43.29831 + parent: 2 +- proto: PartRodMetal10 + entities: + - uid: 1091 + components: + - type: Transform + pos: -2.3867152,22.635649 + parent: 2 +- proto: Pen + entities: + - uid: 2154 + components: + - type: Transform + pos: 1.587295,-32.27223 + parent: 2 + - uid: 3136 + components: + - type: Transform + pos: -21.260447,-18.378971 + parent: 2 + - uid: 3229 + components: + - type: Transform + pos: -22.952627,-32.406418 + parent: 2 + - uid: 6718 + components: + - type: Transform + pos: -23.327503,33.64534 + parent: 2 + - uid: 9499 + components: + - type: Transform + pos: 5.4015055,27.15652 + parent: 2 +- proto: PersonalAI + entities: + - uid: 6312 + components: + - type: Transform + pos: -26.382532,-46.44132 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 15216 + components: + - type: Transform + pos: -31.055569,-10.24702 + parent: 2 +- proto: PhosphorusChemistryBottle + entities: + - uid: 13773 + components: + - type: Transform + pos: 26.336699,36.68906 + parent: 2 +- proto: PianoInstrument + entities: + - uid: 283 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 6316 + components: + - type: Transform + pos: 24.23528,53.91638 + parent: 2 + - uid: 15270 + components: + - type: Transform + pos: -28.46025,-47.427814 + parent: 2 +- proto: PillCanisterRandom + entities: + - uid: 6300 + components: + - type: Transform + pos: -34.72755,-37.414715 + parent: 2 + - uid: 6301 + components: + - type: Transform + pos: -34.4463,-37.227215 + parent: 2 + - uid: 6302 + components: + - type: Transform + pos: -34.3838,-37.539715 + parent: 2 + - uid: 13779 + components: + - type: Transform + pos: 26.677437,37.687145 + parent: 2 + - uid: 13780 + components: + - type: Transform + pos: 26.396187,37.67152 + parent: 2 + - uid: 13781 + components: + - type: Transform + pos: 26.666677,37.02761 + parent: 2 + - uid: 13782 + components: + - type: Transform + pos: 26.291677,37.02761 + parent: 2 + - uid: 13783 + components: + - type: Transform + pos: 26.557302,37.30886 + parent: 2 +- proto: PlaqueAtmos + entities: + - uid: 15273 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 +- proto: PlasmaCanister + entities: + - uid: 1381 + components: + - type: Transform + pos: 40.5,-26.5 + parent: 2 + - uid: 2438 + components: + - type: Transform + pos: 40.5,-37.5 + parent: 2 + - uid: 2726 + components: + - type: Transform + pos: 40.5,-27.5 + parent: 2 +- proto: PlasmaReinforcedWindowDirectional + entities: + - uid: 12827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-23.5 + parent: 2 + - uid: 14649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 14847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 2 + - uid: 14854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-25.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 4613 + components: + - type: Transform + pos: 15.5,-1.5 + parent: 2 + - uid: 5095 + components: + - type: Transform + pos: 15.5,2.5 + parent: 2 + - uid: 6517 + components: + - type: Transform + pos: 6.5,42.5 + parent: 2 + - uid: 6518 + components: + - type: Transform + pos: 6.5,40.5 + parent: 2 + - uid: 6519 + components: + - type: Transform + pos: 10.5,42.5 + parent: 2 + - uid: 6520 + components: + - type: Transform + pos: 10.5,40.5 + parent: 2 + - uid: 8132 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 +- proto: PlasticFlapsClear + entities: + - uid: 4261 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,27.5 + parent: 2 +- proto: PlayerStationAi + entities: + - uid: 5438 + components: + - type: Transform + pos: -41.5,31.5 + parent: 2 +- proto: Plunger + entities: + - uid: 15962 + components: + - type: Transform + pos: -42.11523,-36.54279 + parent: 2 +- proto: PlushieArachind + entities: + - uid: 6311 + components: + - type: Transform + pos: 38.34971,26.524454 + parent: 2 +- proto: PlushieDiona + entities: + - uid: 6310 + components: + - type: Transform + pos: 37.63096,27.430704 + parent: 2 +- proto: PlushieHuman + entities: + - uid: 13455 + components: + - type: Transform + pos: 36.50596,26.524454 + parent: 2 +- proto: PlushieLizardMirrored + entities: + - uid: 13454 + components: + - type: Transform + pos: 36.47471,25.743204 + parent: 2 +- proto: PlushieMoth + entities: + - uid: 7111 + components: + - type: Transform + pos: 1.4897368,21.561314 + parent: 2 + - uid: 12229 + components: + - type: Transform + pos: 37.47471,24.555704 + parent: 2 +- proto: PlushieNuke + entities: + - uid: 13501 + components: + - type: Transform + pos: -44.436142,-3.5562878 + parent: 2 +- proto: PlushieSharkBlue + entities: + - uid: 4208 + components: + - type: Transform + pos: 2.5061994,22.396723 + parent: 2 + - uid: 12818 + components: + - type: Transform + pos: 61.575565,38.50278 + parent: 2 +- proto: PlushieSlime + entities: + - uid: 14208 + components: + - type: Transform + pos: 38.38096,24.430704 + parent: 2 +- proto: PlushieVox + entities: + - uid: 12227 + components: + - type: Transform + pos: 38.28721,25.680704 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 2053 + components: + - type: Transform + pos: 0.5,-22.5 + parent: 2 +- proto: PortableGeneratorJrPacman + entities: + - uid: 923 + components: + - type: Transform + pos: 31.5,-16.5 + parent: 2 + - uid: 1561 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 32.5,-1.5 + parent: 2 + - uid: 2973 + components: + - type: Transform + pos: 6.5,-23.5 + parent: 2 + - uid: 2974 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 2 + - uid: 3294 + components: + - type: Transform + pos: -28.5,-28.5 + parent: 2 + - uid: 4816 + components: + - type: Transform + pos: -42.5,-15.5 + parent: 2 + - uid: 6273 + components: + - type: Transform + pos: -39.5,-37.5 + parent: 2 + - uid: 6611 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 7311 + components: + - type: Transform + pos: -15.5,56.5 + parent: 2 + - uid: 7313 + components: + - type: Transform + pos: -4.5,35.5 + parent: 2 + - uid: 8826 + components: + - type: Transform + pos: 42.5,20.5 + parent: 2 + - uid: 8827 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 16102 + components: + - type: Transform + pos: -21.5,38.5 + parent: 2 +- proto: PortableGeneratorJrPacmanMachineCircuitboard + entities: + - uid: 8501 + components: + - type: Transform + pos: 43.74804,-22.74506 + parent: 2 +- proto: PortableGeneratorPacman + entities: + - uid: 2251 + components: + - type: Transform + pos: 31.5,-17.5 + parent: 2 +- proto: PortableGeneratorSuperPacman + entities: + - uid: 2256 + components: + - type: Transform + pos: 30.5,-8.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 2625 + components: + - type: Transform + pos: 35.5,-26.5 + parent: 2 + - uid: 2628 + components: + - type: Transform + pos: 35.5,-27.5 + parent: 2 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 15272 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 +- proto: PosterContrabandC20r + entities: + - uid: 16064 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 +- proto: PosterContrabandEnlistGorlex + entities: + - uid: 16067 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 16063 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 16054 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo + entities: + - uid: 3227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 2 + - uid: 3230 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-30.5 + parent: 2 +- proto: PottedPlantRandom + entities: + - uid: 4985 + components: + - type: Transform + pos: -24.5,-1.5 + parent: 2 + - uid: 13449 + components: + - type: Transform + pos: -38.5,29.5 + parent: 2 + - uid: 13470 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 13471 + components: + - type: Transform + pos: -16.5,20.5 + parent: 2 + - uid: 13473 + components: + - type: Transform + pos: -16.5,-1.5 + parent: 2 + - uid: 13474 + components: + - type: Transform + pos: -42.5,-9.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 13476 + components: + - type: Transform + pos: -48.5,-13.5 + parent: 2 + - uid: 13478 + components: + - type: Transform + pos: -32.5,-27.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - uid: 13482 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: 23.5,4.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + pos: 32.5,3.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 13486 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 13487 + components: + - type: Transform + pos: 24.5,18.5 + parent: 2 + - uid: 13488 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 13491 + components: + - type: Transform + pos: 15.5,23.5 + parent: 2 + - uid: 13492 + components: + - type: Transform + pos: 4.5,25.5 + parent: 2 + - uid: 13493 + components: + - type: Transform + pos: 16.5,39.5 + parent: 2 + - uid: 13494 + components: + - type: Transform + pos: 4.5,39.5 + parent: 2 + - uid: 13495 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 13496 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 13497 + components: + - type: Transform + pos: -8.5,48.5 + parent: 2 + - uid: 13499 + components: + - type: Transform + pos: -28.5,32.5 + parent: 2 + - uid: 13562 + components: + - type: Transform + pos: -6.5,3.5 + parent: 2 + - uid: 13774 + components: + - type: Transform + pos: -55.5,-11.5 + parent: 2 + - uid: 14024 + components: + - type: Transform + pos: 22.5,15.5 + parent: 2 + - uid: 14029 + components: + - type: Transform + pos: -10.5,-32.5 + parent: 2 + - uid: 14032 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 14034 + components: + - type: Transform + pos: -8.5,28.5 + parent: 2 + - uid: 14051 + components: + - type: Transform + pos: -12.5,-1.5 + parent: 2 + - uid: 14052 + components: + - type: Transform + pos: -17.5,-17.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + pos: -30.5,-29.5 + parent: 2 + - uid: 14054 + components: + - type: Transform + pos: -31.5,-39.5 + parent: 2 + - uid: 14056 + components: + - type: Transform + pos: -22.5,1.5 + parent: 2 + - uid: 14207 + components: + - type: Transform + pos: -12.5,2.5 + parent: 2 + - uid: 15822 + components: + - type: Transform + pos: 15.5,27.5 + parent: 2 + - uid: 16206 + components: + - type: Transform + pos: 39.5,-14.5 + parent: 2 +- proto: PottedPlantRD + entities: + - uid: 7110 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 731 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 3975 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 4178 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 4179 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 4180 + components: + - type: Transform + pos: 21.5,19.5 + parent: 2 + - uid: 5310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,18.5 + parent: 2 + - uid: 6294 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 6575 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 7509 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - uid: 9117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 2 + - uid: 10463 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 13505 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 14211 + components: + - type: Transform + pos: -64.5,-29.5 + parent: 2 + - uid: 16164 + components: + - type: Transform + pos: -13.5,7.5 + parent: 2 +- proto: PoweredDimSmallLight + entities: + - uid: 650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - uid: 1153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-12.5 + parent: 2 + - uid: 3119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-47.5 + parent: 2 + - uid: 3130 + components: + - type: Transform + pos: -12.5,-44.5 + parent: 2 + - uid: 3384 + components: + - type: Transform + pos: 12.5,-9.5 + parent: 2 + - uid: 4011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-8.5 + parent: 2 + - uid: 6512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,43.5 + parent: 2 + - uid: 7169 + components: + - type: Transform + pos: -33.5,28.5 + parent: 2 + - uid: 8073 + components: + - type: Transform + pos: 41.5,-8.5 + parent: 2 + - uid: 8084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-4.5 + parent: 2 + - uid: 8085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 2 + - uid: 8090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 + - uid: 10443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-12.5 + parent: 2 + - uid: 11519 + components: + - type: Transform + pos: -7.5,-37.5 + parent: 2 + - uid: 11863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-41.5 + parent: 2 + - uid: 12701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-24.5 + parent: 2 + - uid: 12704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-15.5 + parent: 2 + - uid: 12709 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 + - uid: 12710 + components: + - type: Transform + pos: 27.5,-5.5 + parent: 2 + - uid: 12717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-28.5 + parent: 2 + - uid: 12718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-24.5 + parent: 2 + - uid: 12719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-26.5 + parent: 2 + - uid: 12737 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 12740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + - uid: 12741 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-31.5 + parent: 2 + - uid: 12743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-30.5 + parent: 2 + - uid: 12790 + components: + - type: Transform + pos: -1.5,17.5 + parent: 2 + - uid: 12791 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 2 + - uid: 12793 + components: + - type: Transform + pos: -34.5,-17.5 + parent: 2 + - uid: 12800 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 + - uid: 12801 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - uid: 12815 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-7.5 + parent: 2 + - uid: 12842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-30.5 + parent: 2 + - uid: 12850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 2 + - uid: 12856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-27.5 + parent: 2 + - uid: 12857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 12864 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 12865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,14.5 + parent: 2 + - uid: 12868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-23.5 + parent: 2 + - uid: 12871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-17.5 + parent: 2 + - uid: 12874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -39.5,-27.5 + parent: 2 + - uid: 12875 + components: + - type: Transform + pos: 4.5,17.5 + parent: 2 + - uid: 12876 + components: + - 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 + rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 2 + - uid: 13529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + - uid: 13530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 2 + - uid: 13532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-26.5 + parent: 2 + - uid: 13534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 13535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + - uid: 13536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-36.5 + parent: 2 + - uid: 13537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-46.5 + parent: 2 + - uid: 13540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-18.5 + parent: 2 + - uid: 13542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-30.5 + parent: 2 + - uid: 13543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 2 + - uid: 13544 + components: + - type: Transform + pos: 19.5,-13.5 + parent: 2 + - uid: 13545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-14.5 + parent: 2 + - uid: 13546 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 13547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 2 + - uid: 13548 + components: + - type: Transform + pos: 43.5,2.5 + parent: 2 + - uid: 13549 + components: + - type: Transform + pos: 50.5,9.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,8.5 + parent: 2 + - uid: 13551 + components: + - type: Transform + pos: 51.5,-0.5 + parent: 2 + - uid: 13552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,17.5 + parent: 2 + - uid: 13553 + components: + - type: Transform + pos: 35.5,22.5 + parent: 2 + - uid: 13554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,27.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,23.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - uid: 13557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,30.5 + parent: 2 + - uid: 13570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,29.5 + parent: 2 + - uid: 13571 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,24.5 + parent: 2 + - uid: 13572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,32.5 + parent: 2 + - uid: 13573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,54.5 + parent: 2 + - uid: 13574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,56.5 + parent: 2 + - uid: 13576 + components: + - type: Transform + pos: -9.5,39.5 + parent: 2 + - uid: 13577 + components: + - type: Transform + pos: -9.5,46.5 + parent: 2 + - uid: 13578 + components: + - type: Transform + 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 + rot: 1.5707963267948966 rad + pos: -20.5,3.5 + parent: 2 + - uid: 13581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 2 + - uid: 13582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-47.5 + parent: 2 + - uid: 13584 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 13586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-32.5 + parent: 2 + - uid: 13587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,31.5 + parent: 2 + - uid: 13629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - uid: 13630 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 2 + - uid: 13955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,34.5 + parent: 2 + - uid: 13956 + components: + - type: Transform + pos: -36.5,35.5 + parent: 2 + - uid: 13957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,27.5 + parent: 2 + - uid: 13966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,28.5 + parent: 2 + - uid: 14202 + components: + - type: Transform + pos: 9.5,17.5 + parent: 2 + - uid: 14273 + components: + - type: Transform + pos: -68.5,-29.5 + parent: 2 + - uid: 14685 + components: + - type: Transform + pos: -53.5,-28.5 + parent: 2 + - uid: 14686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 2 + - uid: 14687 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-14.5 + parent: 2 + - uid: 14688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-14.5 + parent: 2 + - uid: 14689 + components: + - type: Transform + pos: -61.5,-28.5 + parent: 2 + - uid: 14690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,-32.5 + parent: 2 + - uid: 14691 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-32.5 + parent: 2 + - uid: 14711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,56.5 + parent: 2 + - uid: 15370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,-9.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,-9.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,30.5 + parent: 2 + - uid: 15651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,-6.5 + parent: 2 + - uid: 16044 + components: + - type: Transform + pos: -10.5,58.5 + parent: 2 + - uid: 16207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-15.5 + parent: 2 + - uid: 16208 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-12.5 + parent: 2 +- proto: PoweredLEDSmallLight + entities: + - 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 + pos: 25.5,26.5 + parent: 2 + - uid: 13958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,30.5 + parent: 2 + - uid: 13959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,30.5 + parent: 2 + - uid: 13960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,31.5 + parent: 2 + - uid: 13961 + components: + - type: Transform + pos: -41.5,34.5 + parent: 2 + - uid: 13963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 + - uid: 13965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,28.5 + parent: 2 + - uid: 13967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,22.5 + parent: 2 + - uid: 13972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,18.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 318 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -24.5,-19.5 + parent: 2 + - uid: 3612 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + - uid: 3667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-34.5 + parent: 2 + - uid: 7451 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 7452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,25.5 + parent: 2 + - uid: 8139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-31.5 + parent: 2 + - uid: 8179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-31.5 + parent: 2 + - uid: 8276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 2 + - uid: 8277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-22.5 + parent: 2 + - uid: 12702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,-20.5 + parent: 2 + - uid: 12711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-31.5 + parent: 2 + - uid: 12712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-31.5 + parent: 2 + - uid: 12713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-40.5 + parent: 2 + - uid: 12714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-40.5 + parent: 2 + - uid: 12715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-32.5 + parent: 2 + - uid: 12716 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-32.5 + parent: 2 + - uid: 12720 + components: + - type: Transform + pos: 38.5,-14.5 + parent: 2 + - uid: 12723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-25.5 + parent: 2 + - uid: 12738 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 12739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 12788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 12789 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 2 + - uid: 12794 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 12795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 12796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 2 + - uid: 12797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 2 + - uid: 12798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 12799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + - uid: 12802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - uid: 12803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 12805 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,7.5 + parent: 2 + - uid: 12806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - uid: 12807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,4.5 + parent: 2 + - uid: 12814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 2 + - uid: 12816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-14.5 + parent: 2 + - uid: 12817 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 2 + - uid: 12819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-17.5 + parent: 2 + - uid: 12820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-18.5 + parent: 2 + - uid: 12821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 12822 + components: + - type: Transform + pos: -6.5,-24.5 + parent: 2 + - uid: 12823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-22.5 + parent: 2 + - uid: 12824 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 12825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-26.5 + parent: 2 + - uid: 12826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-30.5 + parent: 2 + - uid: 12828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-30.5 + parent: 2 + - uid: 12829 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-21.5 + parent: 2 + - uid: 12830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-26.5 + parent: 2 + - uid: 12831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-35.5 + parent: 2 + - uid: 12833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-34.5 + parent: 2 + - uid: 12834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 2 + - uid: 12835 + components: + - type: Transform + pos: 3.5,-36.5 + parent: 2 + - uid: 12836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-39.5 + parent: 2 + - uid: 12837 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 12844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-32.5 + parent: 2 + - uid: 12845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-34.5 + parent: 2 + - uid: 12851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 2 + - uid: 12852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-20.5 + parent: 2 + - uid: 12853 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-22.5 + parent: 2 + - uid: 12858 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-31.5 + parent: 2 + - uid: 12867 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-37.5 + parent: 2 + - uid: 12869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-35.5 + parent: 2 + - uid: 12870 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - uid: 12873 + components: + - type: Transform + pos: -24.5,-15.5 + parent: 2 + - uid: 12877 + components: + - type: Transform + pos: -40.5,-29.5 + parent: 2 + - uid: 12878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - uid: 12882 + components: + - type: Transform + pos: -59.5,-29.5 + parent: 2 + - uid: 12883 + components: + - type: Transform + pos: -51.5,-29.5 + parent: 2 + - uid: 12884 + components: + - type: Transform + pos: -11.5,2.5 + parent: 2 + - uid: 12885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,9.5 + parent: 2 + - uid: 12886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - uid: 12889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - uid: 12892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,13.5 + parent: 2 + - uid: 12894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 2 + - uid: 12895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,31.5 + parent: 2 + - uid: 12896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,52.5 + parent: 2 + - uid: 12897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,38.5 + parent: 2 + - uid: 12898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,47.5 + parent: 2 + - uid: 12899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,33.5 + parent: 2 + - uid: 12900 + components: + - type: Transform + pos: -8.5,44.5 + parent: 2 + - uid: 12902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,18.5 + parent: 2 + - uid: 12904 + components: + - type: Transform + pos: -18.5,18.5 + parent: 2 + - uid: 13559 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 2 + - uid: 13560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,29.5 + parent: 2 + - uid: 13561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,23.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,32.5 + parent: 2 + - uid: 13564 + components: + - type: Transform + pos: 12.5,39.5 + parent: 2 + - uid: 13565 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - uid: 13566 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,34.5 + parent: 2 + - uid: 13567 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,36.5 + parent: 2 + - uid: 13568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,39.5 + parent: 2 + - uid: 13569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,38.5 + parent: 2 + - uid: 13605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-9.5 + parent: 2 + - uid: 13606 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-9.5 + parent: 2 + - uid: 13607 + components: + - type: Transform + pos: -34.5,-5.5 + parent: 2 + - uid: 13608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 2 + - uid: 13609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-11.5 + parent: 2 + - uid: 13610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-12.5 + parent: 2 + - uid: 13611 + components: + - type: Transform + pos: -25.5,-7.5 + parent: 2 + - uid: 13612 + components: + - type: Transform + pos: -47.5,-11.5 + parent: 2 + - uid: 13613 + components: + - type: Transform + pos: -53.5,-11.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-8.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + pos: -18.5,1.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-8.5 + parent: 2 + - uid: 13620 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-8.5 + parent: 2 + - uid: 13621 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 13625 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 2 + - uid: 13632 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 2 + - uid: 13968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,29.5 + parent: 2 + - uid: 15422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-5.5 + parent: 2 + - uid: 15423 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 + - uid: 15593 + components: + - type: Transform + pos: -6.5,-12.5 + parent: 2 + - uid: 15594 + components: + - type: Transform + pos: 17.5,2.5 + parent: 2 + - uid: 15660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + - uid: 15939 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-35.5 + parent: 2 + - uid: 16079 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-39.5 + parent: 2 +- proto: PoweredlightLED + entities: + - uid: 12907 + components: + - 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 + pos: 36.5,11.5 + parent: 2 + - uid: 13588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,5.5 + parent: 2 + - uid: 13589 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,8.5 + parent: 2 + - uid: 13590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,3.5 + parent: 2 + - uid: 13591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,3.5 + parent: 2 + - uid: 13592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,16.5 + parent: 2 + - uid: 13593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,13.5 + parent: 2 + - uid: 13594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 40.5,13.5 + parent: 2 + - uid: 13595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,15.5 + parent: 2 + - uid: 13596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,10.5 + parent: 2 + - uid: 13597 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,18.5 + parent: 2 + - uid: 13598 + components: + - type: Transform + pos: 30.5,23.5 + parent: 2 + - uid: 13599 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,18.5 + parent: 2 + - uid: 13600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,18.5 + parent: 2 + - uid: 13601 + components: + - type: Transform + pos: 25.5,23.5 + parent: 2 + - uid: 13602 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,23.5 + parent: 2 + - uid: 13628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 2 + - uid: 13964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,30.5 + parent: 2 +- proto: PoweredlightSodium + entities: + - uid: 13969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 2 + - uid: 13970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-23.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + - uid: 3086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-26.5 + parent: 2 + - uid: 3109 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 4124 + components: + - type: Transform + pos: -0.5,6.5 + parent: 2 + - uid: 6509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,41.5 + parent: 2 + - uid: 10327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-34.5 + parent: 2 + - uid: 11521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 2 + - uid: 12707 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 12792 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 + - uid: 12804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 + - uid: 12838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-39.5 + parent: 2 + - uid: 12840 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 12841 + components: + - type: Transform + pos: -23.5,-25.5 + parent: 2 + - uid: 12843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-35.5 + parent: 2 + - uid: 12846 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-25.5 + parent: 2 + - uid: 12847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-22.5 + parent: 2 + - uid: 12848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 12849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,-25.5 + parent: 2 + - uid: 12861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-42.5 + parent: 2 + - uid: 12862 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-42.5 + parent: 2 + - uid: 12863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-42.5 + parent: 2 + - uid: 12866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-42.5 + parent: 2 + - uid: 12872 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 2 + - uid: 12887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-41.5 + parent: 2 + - uid: 12914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,7.5 + parent: 2 + - uid: 12922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,34.5 + parent: 2 + - uid: 12924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,41.5 + parent: 2 + - uid: 12925 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 13603 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 13604 + components: + - type: Transform + pos: -25.5,1.5 + parent: 2 + - uid: 13622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 2 + - uid: 13623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 + - uid: 13624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-41.5 + parent: 2 + - uid: 13626 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 2 + - uid: 13627 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-22.5 + parent: 2 + - uid: 13635 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-1.5 + parent: 2 + - uid: 13726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-34.5 + parent: 2 + - uid: 13854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-39.5 + parent: 2 + - uid: 13855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-37.5 + parent: 2 + - uid: 13856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-35.5 + parent: 2 + - uid: 13857 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-35.5 + parent: 2 + - uid: 13858 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-37.5 + parent: 2 + - uid: 13859 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-39.5 + parent: 2 + - uid: 14111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 2 + - uid: 14200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-20.5 + parent: 2 + - uid: 14241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-26.5 + parent: 2 + - uid: 15256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 2 + - uid: 15448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,30.5 + parent: 2 + - uid: 15730 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,37.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 5298 + components: + - type: Transform + pos: -16.5,18.5 + parent: 2 +- proto: PsychBed + entities: + - uid: 14031 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 +- proto: Rack + entities: + - uid: 337 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 11.5,4.5 + parent: 2 + - uid: 655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 + - uid: 721 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 2 + - uid: 723 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 2 + - uid: 724 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: 51.5,30.5 + parent: 2 + - uid: 1086 + components: + - type: Transform + pos: 37.5,-4.5 + parent: 2 + - uid: 1203 + components: + - type: Transform + pos: 43.5,-31.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 35.5,-3.5 + parent: 2 + - uid: 1563 + components: + - type: Transform + pos: 28.5,-8.5 + parent: 2 + - uid: 1713 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 1841 + components: + - type: Transform + pos: 40.5,-31.5 + parent: 2 + - uid: 2632 + components: + - type: Transform + pos: 22.5,-30.5 + parent: 2 + - uid: 2633 + components: + - type: Transform + pos: 35.5,-18.5 + parent: 2 + - uid: 2671 + components: + - type: Transform + pos: 36.5,-23.5 + parent: 2 + - uid: 2741 + components: + - type: Transform + pos: 35.5,-0.5 + parent: 2 + - uid: 2992 + components: + - type: Transform + pos: 8.5,-24.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,9.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,5.5 + parent: 2 + - uid: 4817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-14.5 + parent: 2 + - uid: 4818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-15.5 + parent: 2 + - uid: 4823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,5.5 + parent: 2 + - uid: 5481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,35.5 + parent: 2 + - uid: 5482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,35.5 + parent: 2 + - uid: 5902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-13.5 + parent: 2 + - uid: 6275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,-37.5 + parent: 2 + - uid: 6276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-37.5 + parent: 2 + - uid: 6277 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-46.5 + parent: 2 + - uid: 6278 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-46.5 + parent: 2 + - uid: 6279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-42.5 + parent: 2 + - uid: 6354 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 6613 + components: + - 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 + pos: -23.5,46.5 + parent: 2 + - uid: 7231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,30.5 + parent: 2 + - uid: 7232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,49.5 + parent: 2 + - uid: 7315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,46.5 + parent: 2 + - uid: 7316 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,53.5 + parent: 2 + - uid: 7916 + components: + - type: Transform + pos: 35.5,-1.5 + parent: 2 + - uid: 7949 + components: + - type: Transform + pos: 37.5,-3.5 + parent: 2 + - uid: 8174 + components: + - type: Transform + pos: 38.5,-1.5 + parent: 2 + - uid: 8178 + components: + - type: Transform + pos: 38.5,-0.5 + parent: 2 + - uid: 8183 + components: + - type: Transform + pos: 35.5,-4.5 + parent: 2 + - uid: 8281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,15.5 + parent: 2 + - uid: 9378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,24.5 + parent: 2 + - uid: 9379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,28.5 + parent: 2 + - uid: 10458 + components: + - type: Transform + pos: 30.5,29.5 + parent: 2 + - uid: 10459 + components: + - type: Transform + pos: 31.5,29.5 + parent: 2 + - uid: 11348 + components: + - type: Transform + pos: 26.5,30.5 + parent: 2 + - uid: 12231 + components: + - type: Transform + pos: 43.5,-6.5 + parent: 2 + - uid: 12742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-31.5 + parent: 2 + - uid: 13711 + components: + - type: Transform + pos: -3.5,25.5 + parent: 2 + - uid: 13712 + components: + - type: Transform + pos: -2.5,25.5 + parent: 2 + - uid: 15266 + components: + - type: Transform + pos: 42.5,17.5 + parent: 2 + - uid: 16045 + components: + - type: Transform + pos: -8.5,57.5 + parent: 2 + - uid: 16105 + components: + - type: Transform + pos: -21.5,36.5 + parent: 2 + - uid: 16106 + components: + - type: Transform + pos: -23.5,47.5 + parent: 2 + - uid: 16107 + components: + - type: Transform + pos: -19.5,54.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 8080 + components: + - type: Transform + pos: 34.015274,-21.277159 + parent: 2 + - uid: 9125 + components: + - type: Transform + pos: 22.335876,-10.484463 + parent: 2 +- proto: RagItem + entities: + - uid: 319 + components: + - type: Transform + pos: 3.0278695,-4.833592 + parent: 2 +- proto: Railing + entities: + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 2 + - uid: 222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 2 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 2 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 2 + - uid: 235 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 2 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 2 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 5.5,2.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 1237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-22.5 + parent: 2 + - uid: 1587 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 1595 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-11.5 + parent: 2 + - uid: 16087 + components: + - type: Transform + pos: 40.5,-0.5 + parent: 2 + - uid: 16088 + components: + - type: Transform + pos: 42.5,-1.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 325 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - uid: 8606 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 327 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 8607 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 +- proto: RandomEngineerCorpseSpawner + entities: + - uid: 15281 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,32.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 331 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 3.5,0.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 7.5,1.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 2162 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 2 + - uid: 2163 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 2 +- proto: RandomPainting + entities: + - uid: 2752 + components: + - type: Transform + pos: -29.5,-3.5 + parent: 2 + - uid: 15457 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 15458 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 15459 + components: + - type: Transform + pos: -28.5,-0.5 + parent: 2 + - uid: 15460 + components: + - 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 + pos: -0.5,35.5 + parent: 2 + - uid: 15464 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 15465 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 15466 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 15467 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 15468 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 15469 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 2 + - uid: 15470 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 15471 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 15472 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 15473 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 + - uid: 15474 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 2 + - uid: 15475 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 +- proto: RandomPosterAny + entities: + - uid: 14831 + components: + - type: Transform + pos: -28.5,14.5 + parent: 2 + - uid: 14845 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 14846 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 14874 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 14992 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 14993 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 14994 + components: + - type: Transform + pos: -36.5,-39.5 + parent: 2 + - uid: 14995 + components: + - type: Transform + pos: -34.5,-42.5 + parent: 2 + - uid: 15017 + components: + - type: Transform + pos: 30.5,30.5 + parent: 2 + - uid: 15018 + components: + - type: Transform + pos: 33.5,30.5 + parent: 2 + - uid: 15019 + components: + - type: Transform + pos: 47.5,25.5 + parent: 2 + - uid: 15020 + components: + - type: Transform + pos: 46.5,29.5 + parent: 2 + - uid: 15021 + components: + - type: Transform + pos: 46.5,21.5 + parent: 2 + - uid: 15022 + components: + - type: Transform + pos: -23.5,6.5 + parent: 2 + - uid: 15023 + components: + - type: Transform + pos: -22.5,10.5 + parent: 2 + - uid: 15024 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 15025 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 12787 + components: + - type: Transform + pos: 47.5,1.5 + parent: 2 + - uid: 14988 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 14989 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 14990 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 14991 + components: + - type: Transform + pos: -9.5,-47.5 + parent: 2 + - uid: 14996 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 14997 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - uid: 14998 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 15007 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 15008 + components: + - type: Transform + pos: 14.5,-23.5 + parent: 2 + - uid: 15009 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 15010 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 15011 + components: + - type: Transform + pos: 59.5,1.5 + parent: 2 + - uid: 15012 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 15013 + components: + - type: Transform + pos: 36.5,28.5 + parent: 2 + - uid: 15014 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 15015 + components: + - type: Transform + pos: 37.5,23.5 + parent: 2 + - uid: 15016 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 15026 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 15027 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 15760 + components: + - type: Transform + pos: 28.5,38.5 + parent: 2 + - uid: 15761 + components: + - type: Transform + pos: 28.5,36.5 + parent: 2 + - uid: 15762 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 + - uid: 16065 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 16068 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 2 + - uid: 16069 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 311 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: -2.5,5.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 2 + - uid: 1604 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 9639 + components: + - type: Transform + pos: 8.5,2.5 + parent: 2 + - uid: 10002 + components: + - type: Transform + pos: -40.5,-36.5 + parent: 2 + - uid: 10540 + components: + - type: Transform + pos: -40.5,-34.5 + parent: 2 + - uid: 10570 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 11356 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - uid: 12671 + components: + - type: Transform + pos: 25.5,39.5 + parent: 2 + - uid: 12786 + components: + - type: Transform + pos: -21.5,19.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: 14827 + components: + - type: Transform + pos: -10.5,19.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 + pos: -21.5,-25.5 + parent: 2 + - uid: 14834 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 14835 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 14836 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 14837 + components: + - type: Transform + pos: -12.5,-27.5 + parent: 2 + - uid: 14839 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 2 + - uid: 14840 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 14841 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 14849 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 14850 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 14853 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 14855 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 2 + - uid: 14856 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 14857 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 14858 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 14859 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 14861 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 14862 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 14863 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 14864 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 14865 + components: + - type: Transform + pos: -23.5,-0.5 + parent: 2 + - uid: 14866 + components: + - 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 + pos: -0.5,21.5 + parent: 2 + - uid: 14873 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 14875 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 14876 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 14877 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 14878 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 14879 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 14880 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 14881 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 14882 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 14883 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 14884 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 14885 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 14886 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - uid: 14887 + components: + - type: Transform + pos: 22.5,36.5 + parent: 2 + - uid: 14888 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 + - uid: 14889 + components: + - type: Transform + pos: 21.5,41.5 + parent: 2 + - uid: 14891 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 14892 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 14893 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 14894 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 14895 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 14896 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - uid: 14897 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 14898 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 14899 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 14900 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 14901 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 14902 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 14903 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 14905 + components: + - type: Transform + pos: 26.5,2.5 + parent: 2 + - uid: 14906 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 14907 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 14908 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 14909 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 14910 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 14911 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 14912 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 14914 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 14915 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 14916 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 14917 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 14918 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 14919 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 14920 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 14921 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - uid: 14922 + components: + - type: Transform + pos: 37.5,-24.5 + parent: 2 + - uid: 14923 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 14924 + components: + - type: Transform + pos: 41.5,-23.5 + parent: 2 + - uid: 14925 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 14927 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 14928 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 14929 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 2 + - uid: 14930 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 14931 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 14932 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 14933 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 14935 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 14936 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 14939 + components: + - type: Transform + pos: 13.5,-2.5 + parent: 2 + - uid: 14940 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 14941 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 14942 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - uid: 14943 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 14944 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 14945 + components: + - type: Transform + pos: 16.5,12.5 + parent: 2 + - uid: 14946 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 14947 + components: + - type: Transform + pos: 17.5,3.5 + parent: 2 + - uid: 14948 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 14949 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 14950 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 14951 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 14952 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 14953 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 14954 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 14956 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 14957 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 14958 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 14959 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 14960 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 2 + - uid: 14961 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 14962 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 2 + - uid: 14963 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 14964 + components: + - type: Transform + pos: 14.5,-9.5 + parent: 2 + - uid: 14965 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 14966 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 14967 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 14968 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 14969 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 14971 + components: + - type: Transform + pos: -13.5,-11.5 + parent: 2 + - uid: 14972 + components: + - type: Transform + pos: -15.5,-11.5 + parent: 2 + - uid: 14973 + components: + - type: Transform + pos: -19.5,-11.5 + parent: 2 + - uid: 14974 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 14975 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 14976 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 14977 + components: + - type: Transform + pos: -36.5,-16.5 + parent: 2 + - uid: 14978 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 14979 + components: + - type: Transform + pos: -29.5,-17.5 + parent: 2 + - uid: 14980 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 2 + - uid: 14981 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 14982 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 14983 + components: + - type: Transform + pos: -32.5,-12.5 + parent: 2 + - uid: 14984 + components: + - type: Transform + pos: -27.5,-11.5 + parent: 2 + - uid: 14987 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 2 + - uid: 14999 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 15000 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 15001 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 15002 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 15003 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 15004 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 15005 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 15006 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 15028 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 15029 + components: + - type: Transform + pos: -24.5,29.5 + parent: 2 + - uid: 15030 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - uid: 15031 + components: + - type: Transform + pos: -29.5,30.5 + parent: 2 + - uid: 15591 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 15616 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 +- proto: RandomProduce + entities: + - uid: 13996 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 +- proto: RandomSpawner100 + entities: + - uid: 455 + components: + - type: Transform + pos: 10.5,-2.5 + parent: 2 + - uid: 4498 + components: + - type: Transform + pos: 10.5,4.5 + parent: 2 + - uid: 6121 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 7124 + components: + - type: Transform + pos: 35.5,-15.5 + parent: 2 + - uid: 7751 + components: + - type: Transform + pos: 0.5,21.5 + parent: 2 + - uid: 8128 + components: + - type: Transform + pos: 31.5,23.5 + parent: 2 + - uid: 11263 + components: + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - uid: 12893 + components: + - type: Transform + pos: -3.5,47.5 + parent: 2 + - uid: 14173 + components: + - type: Transform + pos: -68.5,-29.5 + parent: 2 + - uid: 14205 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 2 + - uid: 14206 + components: + - type: Transform + pos: -1.5,5.5 + parent: 2 + - uid: 14215 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 14303 + components: + - type: Transform + pos: 11.5,16.5 + parent: 2 + - uid: 14304 + components: + - type: Transform + pos: 6.5,19.5 + parent: 2 + - uid: 14306 + components: + - type: Transform + pos: 12.5,24.5 + parent: 2 + - uid: 14307 + components: + - type: Transform + pos: 5.5,24.5 + parent: 2 + - uid: 14308 + components: + - type: Transform + pos: 7.5,29.5 + parent: 2 + - uid: 14309 + components: + - type: Transform + pos: 15.5,29.5 + parent: 2 + - uid: 14310 + components: + - type: Transform + pos: 7.5,33.5 + parent: 2 + - uid: 14311 + components: + - type: Transform + pos: 8.5,39.5 + parent: 2 + - uid: 14312 + components: + - type: Transform + pos: 14.5,34.5 + parent: 2 + - uid: 14313 + components: + - type: Transform + pos: 19.5,34.5 + parent: 2 + - uid: 14314 + components: + - type: Transform + pos: 22.5,40.5 + parent: 2 + - uid: 14315 + components: + - type: Transform + pos: 2.5,37.5 + parent: 2 + - uid: 14316 + components: + - type: Transform + pos: -2.5,30.5 + parent: 2 + - uid: 14317 + components: + - type: Transform + pos: -1.5,24.5 + parent: 2 + - uid: 14318 + components: + - type: Transform + pos: 0.5,29.5 + parent: 2 + - uid: 14319 + components: + - type: Transform + pos: -1.5,32.5 + parent: 2 + - uid: 14320 + components: + - type: Transform + pos: -3.5,39.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + pos: -45.5,-13.5 + parent: 2 + - uid: 14322 + components: + - type: Transform + pos: -4.5,54.5 + parent: 2 + - uid: 14323 + components: + - type: Transform + pos: -9.5,54.5 + parent: 2 + - uid: 14324 + components: + - type: Transform + pos: -8.5,49.5 + parent: 2 + - uid: 14325 + components: + - type: Transform + pos: -6.5,44.5 + parent: 2 + - uid: 14326 + components: + - type: Transform + pos: -8.5,34.5 + parent: 2 + - uid: 14327 + components: + - type: Transform + pos: -5.5,29.5 + parent: 2 + - uid: 14328 + components: + - type: Transform + pos: -8.5,22.5 + parent: 2 + - uid: 14329 + components: + - type: Transform + pos: -11.5,29.5 + parent: 2 + - uid: 14330 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 + - uid: 14331 + components: + - type: Transform + pos: -21.5,31.5 + parent: 2 + - uid: 14332 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 14333 + components: + - type: Transform + pos: -31.5,32.5 + parent: 2 + - uid: 14334 + components: + - type: Transform + pos: -36.5,34.5 + parent: 2 + - uid: 14335 + components: + - type: Transform + pos: -38.5,30.5 + parent: 2 + - uid: 14336 + components: + - type: Transform + pos: -42.5,33.5 + parent: 2 + - uid: 14337 + components: + - type: Transform + pos: -27.5,28.5 + parent: 2 + - uid: 14338 + components: + - type: Transform + pos: -24.5,24.5 + parent: 2 + - uid: 14339 + components: + - type: Transform + pos: -20.5,25.5 + parent: 2 + - uid: 14340 + components: + - type: Transform + pos: -12.5,20.5 + parent: 2 + - uid: 14341 + components: + - type: Transform + pos: -20.5,16.5 + parent: 2 + - uid: 14342 + components: + - type: Transform + pos: -12.5,13.5 + parent: 2 + - uid: 14344 + components: + - type: Transform + pos: -16.5,10.5 + parent: 2 + - uid: 14345 + components: + - type: Transform + pos: -19.5,12.5 + parent: 2 + - uid: 14346 + components: + - type: Transform + pos: -24.5,11.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: -20.5,5.5 + parent: 2 + - uid: 14348 + components: + - type: Transform + pos: -22.5,3.5 + parent: 2 + - uid: 14349 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 14350 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 14351 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 2 + - uid: 14352 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 2 + - uid: 14353 + components: + - type: Transform + pos: -17.5,-7.5 + parent: 2 + - uid: 14354 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 2 + - uid: 14355 + components: + - type: Transform + pos: -25.5,-2.5 + parent: 2 + - uid: 14356 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - uid: 14357 + components: + - type: Transform + pos: -32.5,-6.5 + parent: 2 + - uid: 14358 + components: + - type: Transform + pos: -38.5,-7.5 + parent: 2 + - uid: 14359 + components: + - type: Transform + pos: -36.5,-9.5 + parent: 2 + - uid: 14360 + components: + - type: Transform + pos: -42.5,-11.5 + parent: 2 + - uid: 14361 + components: + - type: Transform + pos: -52.5,-11.5 + parent: 2 + - uid: 14362 + components: + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - uid: 14363 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 + - uid: 14364 + components: + - type: Transform + pos: -37.5,-14.5 + parent: 2 + - uid: 14365 + components: + - type: Transform + pos: -29.5,-13.5 + parent: 2 + - uid: 14366 + components: + - type: Transform + pos: -41.5,-25.5 + parent: 2 + - uid: 14367 + components: + - type: Transform + pos: -41.5,-16.5 + parent: 2 + - uid: 14368 + components: + - type: Transform + pos: -38.5,-20.5 + parent: 2 + - uid: 14369 + components: + - type: Transform + pos: -32.5,-18.5 + parent: 2 + - uid: 14370 + components: + - type: Transform + pos: -25.5,-15.5 + parent: 2 + - uid: 14371 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 14372 + components: + - type: Transform + pos: -15.5,-21.5 + parent: 2 + - uid: 14373 + components: + - type: Transform + pos: -16.5,-13.5 + parent: 2 + - uid: 14374 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 14375 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 2 + - uid: 14376 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 2 + - uid: 14377 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 2 + - uid: 14378 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 2 + - uid: 14379 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 2 + - uid: 14380 + components: + - type: Transform + pos: 8.5,-19.5 + parent: 2 + - uid: 14381 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 2 + - uid: 14382 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 2 + - uid: 14383 + components: + - type: Transform + pos: 14.5,-14.5 + parent: 2 + - uid: 14384 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 2 + - uid: 14385 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 2 + - uid: 14387 + components: + - type: Transform + pos: 22.5,-5.5 + parent: 2 + - uid: 14388 + components: + - type: Transform + pos: 24.5,-9.5 + parent: 2 + - uid: 14389 + components: + - type: Transform + pos: 19.5,-3.5 + parent: 2 + - uid: 14390 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 14391 + components: + - type: Transform + pos: 17.5,-1.5 + parent: 2 + - uid: 14392 + components: + - type: Transform + pos: 21.5,2.5 + parent: 2 + - uid: 14393 + components: + - type: Transform + pos: 19.5,7.5 + parent: 2 + - uid: 14394 + components: + - type: Transform + pos: 22.5,10.5 + parent: 2 + - uid: 14395 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 14396 + components: + - type: Transform + pos: 21.5,15.5 + parent: 2 + - uid: 14397 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 14398 + components: + - type: Transform + pos: 25.5,14.5 + parent: 2 + - uid: 14399 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 14400 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 14401 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 14402 + components: + - type: Transform + pos: 32.5,4.5 + parent: 2 + - uid: 14403 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 14404 + components: + - type: Transform + pos: 36.5,10.5 + parent: 2 + - uid: 14405 + components: + - type: Transform + pos: 40.5,8.5 + parent: 2 + - uid: 14406 + components: + - type: Transform + pos: 42.5,14.5 + parent: 2 + - uid: 14407 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 14408 + components: + - type: Transform + pos: 36.5,19.5 + parent: 2 + - uid: 14409 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 14410 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 14412 + components: + - type: Transform + pos: 24.5,20.5 + parent: 2 + - uid: 14413 + components: + - type: Transform + pos: 25.5,25.5 + parent: 2 + - uid: 14414 + components: + - type: Transform + pos: 21.5,26.5 + parent: 2 + - uid: 14415 + components: + - type: Transform + pos: 31.5,26.5 + parent: 2 + - uid: 14416 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 14417 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 14418 + components: + - type: Transform + pos: 16.5,7.5 + parent: 2 + - uid: 14419 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 14420 + components: + - type: Transform + pos: 10.5,10.5 + parent: 2 + - uid: 14421 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 14422 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - uid: 14425 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 14428 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 2 + - uid: 14431 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 2 + - uid: 14432 + components: + - type: Transform + pos: 3.5,1.5 + parent: 2 + - uid: 14433 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 2 + - uid: 14434 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 2 + - uid: 14435 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + pos: -12.5,0.5 + parent: 2 + - uid: 14439 + components: + - type: Transform + pos: -9.5,3.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + pos: -8.5,9.5 + parent: 2 + - uid: 14441 + components: + - type: Transform + pos: -5.5,15.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + pos: 1.5,17.5 + parent: 2 + - uid: 14443 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 14444 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 14445 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 2 + - uid: 14446 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 2 + - uid: 14447 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 14448 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 2 + - uid: 14449 + components: + - type: Transform + pos: 0.5,-18.5 + parent: 2 + - uid: 14450 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 2 + - uid: 14451 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 14452 + components: + - type: Transform + pos: -8.5,-27.5 + parent: 2 + - uid: 14454 + components: + - type: Transform + pos: -10.5,-28.5 + parent: 2 + - uid: 14455 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - uid: 14456 + components: + - type: Transform + pos: -12.5,-34.5 + parent: 2 + - uid: 14457 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 2 + - uid: 14458 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 14459 + components: + - type: Transform + pos: -2.5,-37.5 + parent: 2 + - uid: 14461 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 14462 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 2 + - uid: 14463 + components: + - type: Transform + pos: 3.5,-34.5 + parent: 2 + - uid: 14464 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 14465 + components: + - type: Transform + pos: 8.5,-28.5 + parent: 2 + - uid: 14466 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 + - uid: 14467 + components: + - type: Transform + pos: 4.5,-18.5 + parent: 2 + - uid: 14468 + components: + - type: Transform + pos: 12.5,-22.5 + parent: 2 + - uid: 14469 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 2 + - uid: 14470 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 14471 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 2 + - uid: 14472 + components: + - type: Transform + pos: 20.5,-31.5 + parent: 2 + - uid: 14473 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 2 + - uid: 14474 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 2 + - uid: 14475 + components: + - type: Transform + pos: 26.5,-12.5 + parent: 2 + - uid: 14476 + components: + - type: Transform + pos: 27.5,-6.5 + parent: 2 + - uid: 14477 + components: + - type: Transform + pos: 32.5,-8.5 + parent: 2 + - uid: 14478 + components: + - type: Transform + pos: 36.5,-11.5 + parent: 2 + - uid: 14479 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 + - uid: 14480 + components: + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - uid: 14481 + components: + - type: Transform + pos: 37.5,-0.5 + parent: 2 + - uid: 14482 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 14483 + components: + - type: Transform + pos: 43.5,-8.5 + parent: 2 + - uid: 14484 + components: + - type: Transform + pos: 42.5,-12.5 + parent: 2 + - uid: 14486 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 14487 + components: + - type: Transform + pos: 43.5,-22.5 + parent: 2 + - uid: 14488 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 + - uid: 14489 + components: + - type: Transform + pos: 34.5,-22.5 + parent: 2 + - uid: 14490 + components: + - type: Transform + pos: 33.5,-21.5 + parent: 2 + - uid: 14491 + components: + - type: Transform + pos: 36.5,-19.5 + parent: 2 + - uid: 14492 + components: + - type: Transform + pos: 23.5,-18.5 + parent: 2 + - uid: 14493 + components: + - type: Transform + pos: 26.5,-24.5 + parent: 2 + - uid: 14494 + components: + - type: Transform + pos: 24.5,-31.5 + parent: 2 + - uid: 14495 + components: + - type: Transform + pos: 28.5,-30.5 + parent: 2 + - uid: 14496 + components: + - type: Transform + pos: 33.5,-34.5 + parent: 2 + - uid: 14497 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 14498 + components: + - type: Transform + pos: 38.5,-27.5 + parent: 2 + - uid: 14499 + components: + - type: Transform + pos: 45.5,-26.5 + parent: 2 + - uid: 14500 + components: + - type: Transform + pos: 47.5,-19.5 + parent: 2 + - uid: 14501 + components: + - type: Transform + pos: 24.5,-1.5 + parent: 2 + - uid: 14502 + components: + - type: Transform + pos: 33.5,0.5 + parent: 2 + - uid: 14503 + components: + - type: Transform + pos: 40.5,3.5 + parent: 2 + - uid: 14504 + components: + - type: Transform + pos: 47.5,0.5 + parent: 2 + - uid: 14505 + components: + - type: Transform + pos: 53.5,-0.5 + parent: 2 + - uid: 14506 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 14507 + components: + - type: Transform + pos: 48.5,9.5 + parent: 2 + - uid: 14508 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 + - uid: 14509 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 14510 + components: + - type: Transform + pos: 47.5,9.5 + parent: 2 + - uid: 14511 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 + - uid: 14512 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 14513 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 + - uid: 14514 + components: + - type: Transform + pos: 45.5,20.5 + parent: 2 + - uid: 14515 + components: + - type: Transform + pos: 41.5,26.5 + parent: 2 + - uid: 14518 + components: + - type: Transform + pos: 36.5,27.5 + parent: 2 + - uid: 14519 + components: + - type: Transform + pos: 43.5,29.5 + parent: 2 + - uid: 14520 + components: + - type: Transform + pos: 44.5,31.5 + parent: 2 + - uid: 14521 + components: + - type: Transform + pos: 38.5,29.5 + parent: 2 + - uid: 14522 + components: + - type: Transform + pos: 44.5,26.5 + parent: 2 + - uid: 14523 + components: + - type: Transform + pos: 36.5,22.5 + parent: 2 + - uid: 14524 + components: + - type: Transform + pos: 34.5,25.5 + parent: 2 + - uid: 14525 + components: + - type: Transform + pos: 28.5,26.5 + parent: 2 + - uid: 14526 + components: + - type: Transform + pos: 24.5,28.5 + parent: 2 + - uid: 14529 + components: + - type: Transform + pos: 20.5,32.5 + parent: 2 + - uid: 14531 + components: + - type: Transform + pos: 17.5,21.5 + parent: 2 + - uid: 14533 + components: + - type: Transform + pos: -24.5,-20.5 + parent: 2 + - uid: 14534 + components: + - type: Transform + pos: -21.5,-22.5 + parent: 2 + - uid: 14535 + components: + - type: Transform + pos: -22.5,-26.5 + parent: 2 + - uid: 14536 + components: + - type: Transform + pos: -23.5,-28.5 + parent: 2 + - uid: 14537 + components: + - type: Transform + pos: -28.5,-26.5 + parent: 2 + - uid: 14538 + components: + - type: Transform + pos: -27.5,-20.5 + parent: 2 + - uid: 14539 + components: + - type: Transform + pos: -32.5,-26.5 + parent: 2 + - uid: 14540 + components: + - type: Transform + pos: -36.5,-25.5 + parent: 2 + - uid: 14541 + components: + - type: Transform + pos: -33.5,-21.5 + parent: 2 + - uid: 14542 + components: + - type: Transform + pos: -33.5,-20.5 + parent: 2 + - uid: 14543 + components: + - type: Transform + pos: -29.5,-22.5 + parent: 2 + - uid: 14544 + components: + - type: Transform + pos: -27.5,-31.5 + parent: 2 + - uid: 14545 + components: + - type: Transform + pos: -24.5,-32.5 + parent: 2 + - uid: 14546 + components: + - type: Transform + pos: -27.5,-35.5 + parent: 2 + - uid: 14547 + components: + - type: Transform + pos: -22.5,-34.5 + parent: 2 + - uid: 14548 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 14549 + components: + - type: Transform + pos: -33.5,-35.5 + parent: 2 + - uid: 14550 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 14551 + components: + - type: Transform + pos: -28.5,-42.5 + parent: 2 + - uid: 14552 + components: + - type: Transform + pos: -27.5,-41.5 + parent: 2 + - uid: 14553 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 14556 + components: + - type: Transform + pos: -32.5,-45.5 + parent: 2 + - uid: 14557 + components: + - type: Transform + pos: -34.5,-38.5 + parent: 2 + - uid: 14558 + components: + - type: Transform + pos: -39.5,-32.5 + parent: 2 + - uid: 14559 + components: + - type: Transform + pos: -36.5,-41.5 + parent: 2 + - uid: 14560 + components: + - type: Transform + pos: -14.5,-42.5 + parent: 2 + - uid: 14561 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 2 + - uid: 14562 + components: + - type: Transform + pos: -32.5,-29.5 + parent: 2 + - uid: 14563 + components: + - type: Transform + pos: -49.5,-29.5 + parent: 2 + - uid: 14564 + components: + - type: Transform + pos: -54.5,-31.5 + parent: 2 + - uid: 14565 + components: + - type: Transform + pos: -58.5,-29.5 + parent: 2 + - uid: 14567 + components: + - type: Transform + pos: -62.5,-30.5 + parent: 2 + - uid: 14569 + components: + - type: Transform + pos: -39.5,-27.5 + parent: 2 + - uid: 14570 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 2 + - uid: 14571 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 2 + - uid: 14572 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 14573 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 2 + - uid: 14574 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 2 + - uid: 14575 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 14576 + components: + - type: Transform + pos: -0.5,12.5 + parent: 2 + - uid: 15317 + components: + - type: Transform + pos: -12.5,-25.5 + parent: 2 + - uid: 15759 + components: + - type: Transform + pos: 23.5,36.5 + parent: 2 + - uid: 15763 + components: + - type: Transform + pos: 28.5,31.5 + parent: 2 + - uid: 15843 + components: + - type: Transform + pos: 41.5,-1.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 1644 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 2521 + components: + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - uid: 12812 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 2 + - uid: 13506 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 + - uid: 13508 + components: + - type: Transform + pos: 8.5,21.5 + parent: 2 + - uid: 13511 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 2 + - uid: 13512 + components: + - type: Transform + pos: -25.5,-17.5 + parent: 2 +- proto: RandomVendingSnacks + entities: + - uid: 1643 + components: + - type: Transform + pos: 22.5,-0.5 + parent: 2 + - uid: 3421 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 12813 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 2 + - uid: 13507 + components: + - type: Transform + pos: -10.5,8.5 + parent: 2 + - uid: 13509 + components: + - type: Transform + pos: 8.5,20.5 + parent: 2 + - uid: 13510 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 2 + - uid: 13513 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 +- proto: RCD + entities: + - uid: 9126 + components: + - type: Transform + pos: 38.32326,-16.403381 + parent: 2 +- proto: ReagentContainerFlour + entities: + - uid: 452 + components: + - type: Transform + pos: 11.927751,-1.3479784 + parent: 2 +- proto: ReagentGrinderMachineCircuitboard + entities: + - uid: 12779 + components: + - type: Transform + pos: -11.57553,-44.420284 + parent: 2 +- proto: Recycler + entities: + - uid: 2827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,37.5 + parent: 2 + - uid: 14116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,8.5 + parent: 2 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: 37.5,-37.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: 37.5,-35.5 + parent: 2 + - uid: 2202 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 + - uid: 2204 + components: + - type: Transform + pos: 25.5,-39.5 + parent: 2 + - uid: 2206 + components: + - type: Transform + pos: 25.5,-35.5 + parent: 2 + - uid: 2291 + components: + - type: Transform + pos: 32.5,-42.5 + parent: 2 + - uid: 2314 + components: + - type: Transform + pos: 22.5,-23.5 + parent: 2 + - uid: 2315 + components: + - type: Transform + pos: 22.5,-24.5 + parent: 2 + - uid: 2317 + components: + - type: Transform + pos: 22.5,-25.5 + parent: 2 + - uid: 2318 + components: + - type: Transform + pos: 30.5,-42.5 + parent: 2 + - uid: 2320 + components: + - type: Transform + pos: 31.5,-42.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 +- proto: ReinforcedWindow + entities: + - uid: 1122 + components: + - type: Transform + pos: 30.5,-22.5 + parent: 2 + - uid: 1125 + components: + - type: Transform + pos: 30.5,-23.5 + parent: 2 + - uid: 1126 + components: + - type: Transform + pos: 30.5,-21.5 + parent: 2 + - uid: 1131 + components: + - type: Transform + pos: 38.5,-11.5 + parent: 2 + - uid: 1165 + components: + - type: Transform + pos: 35.5,-13.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: 37.5,-19.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: 37.5,-21.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: 45.5,-19.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: 45.5,-20.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: 45.5,-21.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 35.5,-40.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: 35.5,-34.5 + parent: 2 + - uid: 1582 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 2 + - uid: 1592 + components: + - type: Transform + pos: 34.5,-16.5 + parent: 2 + - uid: 1737 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 2 + - uid: 1738 + components: + - type: Transform + pos: 14.5,-18.5 + parent: 2 + - uid: 1745 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 1746 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 2 + - uid: 1852 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 1854 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 2 + - uid: 1935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 2 + - uid: 1936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - uid: 1949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 1950 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 2 + - uid: 1951 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - uid: 2083 + components: + - type: Transform + pos: -9.5,-34.5 + parent: 2 + - uid: 2084 + components: + - type: Transform + pos: -9.5,-35.5 + parent: 2 + - uid: 2101 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 2208 + components: + - type: Transform + pos: 35.5,-38.5 + parent: 2 + - uid: 2209 + components: + - type: Transform + pos: 27.5,-34.5 + parent: 2 + - uid: 2218 + components: + - type: Transform + pos: 35.5,-36.5 + parent: 2 + - uid: 2219 + components: + - type: Transform + pos: 35.5,-39.5 + parent: 2 + - uid: 2220 + components: + - type: Transform + pos: 27.5,-39.5 + parent: 2 + - uid: 2222 + components: + - type: Transform + pos: 35.5,-35.5 + parent: 2 + - uid: 2223 + components: + - type: Transform + pos: 35.5,-37.5 + parent: 2 + - uid: 2224 + components: + - type: Transform + pos: 27.5,-38.5 + parent: 2 + - uid: 2281 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - uid: 2282 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 2 + - uid: 2283 + components: + - type: Transform + pos: 27.5,-37.5 + parent: 2 + - uid: 2310 + components: + - type: Transform + pos: 27.5,-40.5 + parent: 2 + - uid: 2517 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - uid: 2541 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 2591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,39.5 + parent: 2 + - uid: 2592 + components: + - type: Transform + pos: 34.5,-14.5 + parent: 2 + - uid: 2631 + components: + - type: Transform + pos: 29.5,14.5 + parent: 2 + - uid: 2666 + components: + - type: Transform + pos: 5.5,-37.5 + parent: 2 + - uid: 2667 + components: + - type: Transform + pos: 5.5,-33.5 + parent: 2 + - uid: 2722 + components: + - type: Transform + pos: 29.5,-11.5 + parent: 2 + - uid: 2727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-11.5 + parent: 2 + - uid: 2892 + components: + - type: Transform + pos: 26.5,-26.5 + parent: 2 + - uid: 3193 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 3556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-46.5 + parent: 2 + - uid: 3647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-28.5 + parent: 2 + - uid: 3648 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-28.5 + parent: 2 + - uid: 3649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-28.5 + parent: 2 + - uid: 3650 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,-32.5 + parent: 2 + - uid: 3651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -66.5,-32.5 + parent: 2 + - uid: 3652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -65.5,-32.5 + parent: 2 + - uid: 3653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-28.5 + parent: 2 + - uid: 3654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-28.5 + parent: 2 + - uid: 3655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-28.5 + parent: 2 + - uid: 3656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,-32.5 + parent: 2 + - uid: 3657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-32.5 + parent: 2 + - uid: 3658 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-32.5 + parent: 2 + - uid: 3659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-28.5 + parent: 2 + - uid: 3660 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-28.5 + parent: 2 + - uid: 3661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-28.5 + parent: 2 + - uid: 3662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -48.5,-32.5 + parent: 2 + - uid: 3663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -49.5,-32.5 + parent: 2 + - uid: 3664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-32.5 + parent: 2 + - uid: 3673 + components: + - type: Transform + pos: -48.5,-14.5 + parent: 2 + - uid: 3679 + components: + - type: Transform + pos: -49.5,-14.5 + parent: 2 + - uid: 3681 + components: + - type: Transform + pos: -50.5,-14.5 + parent: 2 + - uid: 3718 + components: + - type: Transform + pos: -56.5,-11.5 + parent: 2 + - uid: 3720 + components: + - type: Transform + pos: -56.5,-12.5 + parent: 2 + - uid: 3739 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - uid: 4023 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,20.5 + parent: 2 + - uid: 4024 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,20.5 + parent: 2 + - uid: 4292 + components: + - type: Transform + 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 + rot: 1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 + - uid: 4342 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 2 + - uid: 4348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 2 + - uid: 4349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-4.5 + parent: 2 + - uid: 4353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 2 + - uid: 4360 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 4366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 2 + - uid: 4367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 2 + - uid: 4378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 2 + - uid: 4380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + - uid: 4425 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-7.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: -27.5,-8.5 + parent: 2 + - uid: 4557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 4563 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 2 + - uid: 4579 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 2 + - uid: 4581 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 2 + - uid: 4588 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 2 + - uid: 4929 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-7.5 + parent: 2 + - uid: 5074 + 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 + parent: 2 + - uid: 5165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + - uid: 5177 + components: + - type: Transform + pos: -21.5,43.5 + parent: 2 + - uid: 5445 + components: + - type: Transform + pos: -40.5,31.5 + parent: 2 + - uid: 6170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-45.5 + parent: 2 + - uid: 6355 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 6482 + components: + - type: Transform + pos: 3.5,37.5 + parent: 2 + - uid: 6494 + components: + - type: Transform + pos: 15.5,40.5 + parent: 2 + - uid: 6495 + components: + - type: Transform + pos: 14.5,40.5 + parent: 2 + - uid: 6498 + components: + - type: Transform + pos: 13.5,40.5 + parent: 2 + - uid: 6499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,41.5 + parent: 2 + - uid: 6508 + components: + - type: Transform + pos: 5.5,41.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: 11.5,41.5 + parent: 2 + - uid: 6546 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 6547 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 6548 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 6662 + components: + - type: Transform + pos: -21.5,42.5 + parent: 2 + - uid: 6701 + components: + - type: Transform + pos: -27.5,33.5 + parent: 2 + - uid: 6702 + components: + - type: Transform + pos: -28.5,33.5 + parent: 2 + - uid: 6703 + components: + - type: Transform + pos: -29.5,33.5 + parent: 2 + - uid: 7042 + components: + - type: Transform + pos: -9.5,35.5 + parent: 2 + - uid: 7054 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 7056 + components: + - type: Transform + pos: -9.5,43.5 + parent: 2 + - uid: 7057 + components: + - type: Transform + pos: -9.5,41.5 + parent: 2 + - uid: 7059 + components: + - type: Transform + pos: -9.5,34.5 + parent: 2 + - uid: 7061 + components: + - type: Transform + pos: -9.5,37.5 + parent: 2 + - uid: 7063 + components: + - type: Transform + pos: -9.5,36.5 + parent: 2 + - uid: 7064 + components: + - type: Transform + pos: -9.5,44.5 + parent: 2 + - uid: 7065 + components: + - type: Transform + pos: -9.5,48.5 + parent: 2 + - uid: 7066 + components: + - type: Transform + pos: -9.5,49.5 + parent: 2 + - uid: 7067 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 7068 + components: + - type: Transform + pos: -9.5,50.5 + parent: 2 + - uid: 7137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,57.5 + parent: 2 + - uid: 7191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,48.5 + parent: 2 + - uid: 7192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,47.5 + parent: 2 + - uid: 7193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,46.5 + parent: 2 + - uid: 7633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,41.5 + parent: 2 + - uid: 7655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,41.5 + parent: 2 + - uid: 7658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,43.5 + parent: 2 + - uid: 7659 + components: + - type: Transform + 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 + rot: -1.5707963267948966 rad + pos: 32.5,32.5 + parent: 2 + - uid: 7782 + components: + - type: Transform + 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 + rot: 3.141592653589793 rad + pos: 60.5,-0.5 + parent: 2 + - uid: 7904 + components: + - type: Transform + pos: 29.5,-12.5 + parent: 2 + - uid: 8010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,0.5 + parent: 2 + - uid: 8011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,-1.5 + parent: 2 + - uid: 8012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,-1.5 + parent: 2 + - uid: 8016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,2.5 + parent: 2 + - uid: 8017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,2.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,2.5 + parent: 2 + - uid: 8022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,0.5 + parent: 2 + - uid: 8023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,0.5 + parent: 2 + - uid: 8028 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-1.5 + parent: 2 + - uid: 8029 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,-3.5 + parent: 2 + - uid: 8030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,-3.5 + parent: 2 + - uid: 8031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,-3.5 + parent: 2 + - uid: 8054 + components: + - type: Transform + pos: 43.5,33.5 + parent: 2 + - uid: 8092 + components: + - type: Transform + pos: 44.5,-9.5 + parent: 2 + - uid: 8095 + components: + - type: Transform + pos: 38.5,-9.5 + parent: 2 + - uid: 8229 + components: + - type: Transform + pos: 34.5,-4.5 + parent: 2 + - uid: 8249 + components: + - type: Transform + pos: 28.5,-26.5 + parent: 2 + - uid: 9081 + components: + - type: Transform + pos: 44.5,-10.5 + parent: 2 + - uid: 10528 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-42.5 + parent: 2 + - uid: 12879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + - uid: 13451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-48.5 + parent: 2 + - uid: 13452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-48.5 + parent: 2 + - uid: 14225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-46.5 + parent: 2 + - uid: 14226 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-45.5 + parent: 2 + - uid: 14530 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-4.5 + parent: 2 + - uid: 14627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + - uid: 14904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-6.5 + parent: 2 + - uid: 14934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,13.5 + parent: 2 + - uid: 15244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,43.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + pos: 47.5,32.5 + parent: 2 + - uid: 15725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,42.5 + parent: 2 + - uid: 15922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-33.5 + parent: 2 + - uid: 15923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-34.5 + parent: 2 + - uid: 15925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-37.5 + parent: 2 + - uid: 16116 + components: + - type: Transform + pos: -24.5,47.5 + parent: 2 +- proto: RemoteSignaller + entities: + - uid: 16085 + components: + - type: Transform + pos: 40.723774,-31.505486 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 5093 + components: + - type: Transform + pos: -17.5,10.5 + parent: 2 +- proto: RiotBulletShield + entities: + - uid: 15333 + components: + - type: Transform + parent: 3430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RiotLaserShield + entities: + - uid: 15336 + components: + - type: Transform + parent: 3430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RiotShield + entities: + - uid: 15334 + components: + - type: Transform + parent: 3430 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RobocopCircuitBoard + entities: + - uid: 5492 + components: + - type: Transform + pos: -31.577225,35.48813 + parent: 2 +- proto: RollerBedSpawnFolded + entities: + - uid: 4108 + components: + - type: Transform + pos: 33.710236,7.5127764 + parent: 2 + - uid: 4109 + components: + - type: Transform + pos: 35.373035,3.6136804 + parent: 2 +- proto: SalvageMagnet + entities: + - uid: 7881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,54.5 + parent: 2 +- proto: SandBattlemap + entities: + - uid: 15222 + components: + - type: Transform + pos: -31.305569,-10.74048 + parent: 2 +- proto: Saw + entities: + - uid: 16043 + components: + - 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 + components: + - type: Transform + pos: -8.518723,57.69675 + parent: 2 +- proto: SciFlash + entities: + - uid: 6737 + components: + - type: Transform + pos: -27.7082,14.599499 + parent: 2 +- proto: ScrapCamera + entities: + - uid: 15200 + components: + - type: MetaData + name: broken camera (G24 - Service Hall) + - type: Transform + pos: -36.82343,-17.295946 + parent: 2 +- proto: Screen + entities: + - uid: 1210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 + - uid: 4542 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 7764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 2 + - uid: 13525 + components: + - type: Transform + pos: -63.5,-28.5 + parent: 2 + - uid: 14555 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 2 + - uid: 14636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 2 + - uid: 14637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,31.5 + parent: 2 + - uid: 14638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-2.5 + parent: 2 + - uid: 14639 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 14640 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 14642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-12.5 + parent: 2 + - uid: 14643 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 2 + - uid: 14644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-40.5 + parent: 2 + - uid: 14645 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 14646 + components: + - type: Transform + pos: -12.5,-11.5 + parent: 2 + - uid: 14647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 14648 + components: + - type: Transform + 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 +- proto: Screwdriver + entities: + - uid: 6208 + components: + - type: Transform + pos: -38.533787,-43.46995 + parent: 2 + - uid: 8354 + components: + - type: Transform + pos: 35.523155,-18.499912 + parent: 2 + - uid: 15841 + components: + - type: Transform + pos: 42.056625,-1.1604055 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 3426 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 377 + components: + - type: Transform + pos: 16.5,10.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 13739 + components: + - type: Transform + pos: 27.699532,35.007626 + parent: 2 + - uid: 15847 + components: + - type: Transform + pos: 27.340157,37.101376 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 15363 + components: + - type: Transform + pos: 27.305939,-20.319242 + parent: 2 + - uid: 15664 + components: + - type: Transform + pos: 24.850214,-19.334867 + parent: 2 + - uid: 15665 + components: + - type: Transform + pos: 28.334589,-19.319242 + parent: 2 +- proto: SheetGlass + entities: + - uid: 6573 + components: + - 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: 15304 + components: + - type: Transform + pos: -4.4184823,-22.347652 + parent: 2 +- proto: SheetGlass10 + entities: + - uid: 5942 + components: + - type: Transform + pos: 26.304653,30.75047 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 1252 + components: + - type: Transform + parent: 1249 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6743 + components: + - type: Transform + pos: -20.566107,14.581661 + parent: 2 +- proto: SheetPlasteel + entities: + - uid: 1251 + components: + - type: Transform + parent: 1249 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlastic + entities: + - uid: 6572 + components: + - type: Transform + pos: 16.56531,35.453266 + parent: 2 + - uid: 6741 + components: + - type: Transform + pos: -21.485023,14.577084 + parent: 2 +- proto: SheetPlastic10 + entities: + - uid: 1072 + components: + - type: Transform + pos: 27.149055,-15.4506 + parent: 2 +- proto: SheetRGlass + entities: + - uid: 1250 + components: + - type: Transform + parent: 1249 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetSteel + entities: + - uid: 2636 + components: + - type: Transform + pos: 22.577665,-30.35228 + parent: 2 + - uid: 2886 + components: + - type: Transform + pos: 30.537798,-9.373845 + parent: 2 + - uid: 5474 + components: + - type: Transform + pos: 35.47454,-4.4034386 + parent: 2 + - uid: 6213 + components: + - type: Transform + pos: -39.457684,-41.32956 + parent: 2 + - uid: 6574 + components: + - type: Transform + pos: 4.5028095,34.609516 + parent: 2 + - uid: 6740 + components: + - type: Transform + pos: -18.360023,17.670834 + parent: 2 + - uid: 15303 + components: + - type: Transform + pos: -3.4503732,-15.515963 + parent: 2 +- proto: SheetSteel10 + entities: + - uid: 6087 + components: + - type: Transform + pos: 37.594734,-4.4439025 + parent: 2 + - uid: 7812 + components: + - type: Transform + pos: 25.567467,-27.737255 + parent: 2 + - uid: 8273 + components: + - type: Transform + pos: -2.7304652,22.620024 + parent: 2 +- proto: SheetUranium + entities: + - uid: 1253 + components: + - type: Transform + parent: 1249 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShotGunCabinetFilled + entities: + - uid: 2548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 2 +- proto: ShuttersNormal + entities: + - uid: 3991 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 2 + - uid: 4706 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 + - uid: 5080 + components: + - type: Transform + pos: 21.5,16.5 + parent: 2 + - uid: 16216 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 2 + - uid: 16217 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 16218 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 2 + - uid: 16219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 16220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 16221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - uid: 16222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 2332 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 3989 + components: + - type: Transform + pos: 7.5,-16.5 + parent: 2 + - uid: 4121 + components: + - type: Transform + pos: 35.5,-17.5 + parent: 2 + - uid: 4607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-8.5 + parent: 2 + - uid: 4881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-2.5 + parent: 2 + - uid: 7119 + components: + - type: Transform + 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 + pos: 35.5,-13.5 + parent: 2 + - uid: 8122 + components: + - type: Transform + pos: 36.5,-13.5 + parent: 2 + - uid: 8123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-14.5 + parent: 2 + - uid: 8126 + components: + - type: Transform + pos: 36.5,-17.5 + parent: 2 + - uid: 9651 + components: + - type: Transform + pos: 36.5,6.5 + parent: 2 + - uid: 9655 + components: + - type: Transform + pos: 37.5,6.5 + parent: 2 + - uid: 11085 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-7.5 + parent: 2 + - uid: 11086 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + - uid: 11087 + components: + - type: Transform + pos: -41.5,-4.5 + parent: 2 + - uid: 11088 + components: + - type: Transform + pos: -40.5,-4.5 + parent: 2 + - uid: 11089 + components: + - type: Transform + pos: -39.5,-4.5 + parent: 2 + - uid: 11090 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 11091 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 + - uid: 11092 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 + - uid: 11093 + components: + - type: Transform + pos: -33.5,-4.5 + parent: 2 + - uid: 11094 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 + - uid: 13974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 + - uid: 13977 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-3.5 + parent: 2 + - uid: 13978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + - uid: 14003 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 15279 + components: + - type: Transform + pos: -31.5,-4.5 + parent: 2 + - uid: 15998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 2 + - uid: 15999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - uid: 16146 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 16147 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 16155 + components: + - type: Transform + pos: 0.5,41.5 + parent: 2 + - uid: 16156 + components: + - type: Transform + pos: 1.5,41.5 + parent: 2 + - uid: 16157 + components: + - type: Transform + pos: 2.5,41.5 + parent: 2 + - uid: 16158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,39.5 + parent: 2 + - uid: 16159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,37.5 + parent: 2 + - uid: 16173 + components: + - type: Transform + pos: 31.5,20.5 + parent: 2 + - uid: 16174 + components: + - type: Transform + pos: 32.5,20.5 + parent: 2 + - uid: 16186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-34.5 + parent: 2 + - uid: 16187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-35.5 + parent: 2 + - uid: 16192 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 2 + - uid: 16193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 2 + - uid: 16194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 +- proto: ShuttleConsoleCircuitboard + entities: + - uid: 2192 + components: + - type: Transform + pos: 38.504963,-1.4723921 + parent: 2 + - uid: 6178 + components: + - type: Transform + pos: -39.48294,-43.340965 + parent: 2 +- proto: SignAi + entities: + - uid: 2836 + components: + - type: Transform + pos: -18.5,27.5 + parent: 2 + - uid: 2837 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - uid: 2846 + components: + - type: Transform + pos: -22.5,30.5 + parent: 2 +- proto: SignAiUpload + entities: + - uid: 5476 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 +- proto: SignalButtonDirectional + entities: + - uid: 2643 + components: + - type: MetaData + name: signal button (Blast Doors) + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2600: + - 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 + name: signal button (Janitor) + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7748: + - Pressed: Toggle + - uid: 9353 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8133: + - Pressed: Toggle + - uid: 9658 + components: + - type: MetaData + name: signal button (Shutters) + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9655: + - Pressed: Toggle + 9651: + - Pressed: Toggle + 2332: + - Pressed: Toggle + - uid: 10510 + components: + - type: Transform + pos: -26.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9968: + - Pressed: Toggle + - uid: 12608 + components: + - type: MetaData + name: signal button (Blast Door) + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 2468: + - Pressed: Toggle + - uid: 15855 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15902: + - Pressed: Toggle + - uid: 15860 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15859: + - Pressed: Toggle + - uid: 15861 + components: + - type: MetaData + name: signal button (Door Bolt) + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6033: + - Pressed: DoorBolt + - uid: 15865 + components: + - type: MetaData + name: signal button (Door Bolt) + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6303: + - Pressed: DoorBolt + - uid: 15866 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15858: + - Pressed: Toggle + - uid: 15868 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15857: + - Pressed: Toggle + - uid: 15871 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-36.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15872: + - Pressed: Toggle + - uid: 15877 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15878: + - Pressed: Toggle + - uid: 15880 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15856: + - Pressed: Toggle + - uid: 15883 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15881: + - Pressed: Toggle + - uid: 15886 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15884: + - Pressed: Toggle + - uid: 15889 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15888: + - Pressed: Toggle + - uid: 15891 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + pos: 17.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15892: + - Pressed: Toggle + - uid: 15895 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 3590: + - Pressed: Toggle + - uid: 15898 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + pos: -11.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15896: + - Pressed: Toggle + - uid: 15901 + components: + - type: MetaData + name: signal button (Janitor) + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6281: + - Pressed: Toggle +- proto: SignalSwitchDirectional + entities: + - uid: 9640 + components: + - type: MetaData + name: signal switch (Sushi Belt) + - type: Transform + pos: 12.5,2.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4372: + - On: Forward + - Off: Off + 3249: + - On: Forward + - Off: Off + 4573: + - On: Forward + - Off: Off + 5212: + - On: Forward + - Off: Off + 4212: + - On: Forward + - Off: Off + 5316: + - On: Forward + - Off: Off + 6388: + - On: Forward + - Off: Off + 4219: + - On: Forward + - Off: Off + 9508: + - On: Forward + - Off: Off + 5640: + - On: Forward + - Off: Off + - uid: 13472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14970: + - Off: Open + - On: Close + 1927: + - On: Open + - Off: Close + - uid: 13480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13703: + - Off: Open + - On: Close + 1928: + - On: Open + - Off: Close +- proto: SignAnomaly + entities: + - uid: 12760 + components: + - type: Transform + pos: -17.5,20.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 1353 + components: + - type: Transform + pos: -12.5,22.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 12610 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 +- proto: SignAtmos + entities: + - uid: 12611 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 +- proto: SignBar + entities: + - uid: 341 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 2 +- proto: SignBath + entities: + - uid: 15938 + components: + - type: Transform + pos: -43.5,-32.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 12777 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 12778 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 +- proto: SignCans + entities: + - uid: 1377 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 4218 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 6506 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 6507 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 3245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-28.5 + parent: 2 +- proto: SignChem + entities: + - uid: 1930 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - uid: 4110 + components: + - type: Transform + pos: 29.5,12.5 + parent: 2 +- proto: SignCryo + entities: + - uid: 4171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,18.5 + parent: 2 +- proto: SignCryogenicsMed + entities: + - uid: 4068 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 6308 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 +- proto: SignDirectionalBar + entities: + - uid: 8817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.500808,3.695226 + parent: 2 + - uid: 15695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.502514,15.304474 + parent: 2 + - uid: 15720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.497816,-31.694603 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 4803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 2 + - uid: 10513 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.500202,-14.308398 + parent: 2 + - uid: 10842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + - uid: 15032 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 15049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.498962,-4.303126 + parent: 2 + - uid: 15057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.502575,-28.300331 + parent: 2 + - uid: 15706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 2 +- proto: SignDirectionalChapel + entities: + - uid: 15043 + components: + - type: Transform + pos: -6.501937,11.703146 + parent: 2 + - uid: 15699 + components: + - type: Transform + pos: 18.501043,3.6966462 + parent: 2 + - uid: 15700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 2 + - uid: 15704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.503544,-11.694185 + parent: 2 +- proto: SignDirectionalCryo + entities: + - uid: 15039 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5009723,18.302723 + parent: 2 + - uid: 15051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.49643,-4.303126 + parent: 2 + - uid: 15061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.500774,-15.306439 + parent: 2 + - uid: 15066 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.500485,-2.6982727 + parent: 2 + - uid: 15713 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.49847,-40.318554 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 15042 + components: + - type: Transform + pos: -6.501937,11.3047085 + parent: 2 + - uid: 15702 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.499308,-11.308263 + parent: 2 + - uid: 15703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 9659 + components: + - type: Transform + pos: -11.499972,3.3017542 + parent: 2 + - uid: 15036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.4992709,15.697399 + parent: 2 + - uid: 15044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 2 + - uid: 15053 + components: + - type: Transform + pos: 17.5,12.5 + parent: 2 + - uid: 15707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.503008,-27.69876 + parent: 2 + - uid: 15716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.496582,-40.690624 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 15033 + components: + - type: Transform + pos: -2.4973092,15.305614 + parent: 2 + - uid: 15045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.500309,-11.696485 + parent: 2 + - uid: 15052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.501148,-4.691722 + parent: 2 + - uid: 15056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-28.5 + parent: 2 + - uid: 15067 + components: + - type: Transform + pos: -10.497797,-2.3088272 + parent: 2 + - uid: 15712 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,-40.5 + parent: 2 +- proto: SignDirectionalFood + entities: + - uid: 15038 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.501654,-15.687305 + parent: 2 + - uid: 15694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2 + - uid: 15717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.501532,-40.309185 + parent: 2 + - uid: 15718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-31.5 + parent: 2 +- proto: SignDirectionalHop + entities: + - uid: 15040 + components: + - type: Transform + pos: -4.5009723,18.693348 + parent: 2 + - uid: 15047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 2 + - uid: 15062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-14.5 + parent: 2 + - uid: 15693 + components: + - type: Transform + pos: 12.500336,15.676286 + parent: 2 + - uid: 15709 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-36.5 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 15697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,3.5 + parent: 2 + - uid: 15719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.497816,-31.303978 + parent: 2 +- proto: SignDirectionalJanitor + entities: + - uid: 15690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.499603,-2.3048415 + parent: 2 + - uid: 15692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.502863,15.301286 + parent: 2 +- proto: SignDirectionalLibrary + entities: + - uid: 15041 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 15698 + components: + - type: Transform + pos: 18.501043,3.3060212 + parent: 2 + - uid: 15701 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.499308,-11.7067 + parent: 2 + - uid: 15705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.503544,-11.30356 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 15034 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.4973092,15.696239 + parent: 2 + - uid: 15050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-4.5 + parent: 2 + - uid: 15058 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.502575,-28.706581 + parent: 2 + - uid: 15063 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.498185,-14.692113 + parent: 2 + - uid: 15708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.503008,-27.308134 + parent: 2 + - uid: 15715 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-40.5 + parent: 2 + - uid: 15766 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.497168,3.689231 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 10508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.499887,-14.305259 + parent: 2 + - uid: 15046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5038433,-11.3190365 + parent: 2 + - uid: 15054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.49752,12.692756 + parent: 2 + - uid: 15688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-2.5 + parent: 2 + - uid: 15696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.497743,15.694511 + parent: 2 + - uid: 15711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.49644,-36.307407 + parent: 2 + - uid: 15764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 2 +- proto: SignDirectionalSec + entities: + - uid: 4407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.503735,-14.689182 + parent: 2 + - uid: 15035 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 15048 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.498962,-4.693751 + parent: 2 + - uid: 15055 + components: + - type: Transform + pos: 17.496645,12.305314 + parent: 2 + - uid: 15065 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 15714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.49847,-40.701366 + parent: 2 +- proto: SignDirectionalSolar + entities: + - uid: 15068 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 15069 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 15070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 2 + - uid: 15071 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - uid: 15072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,29.5 + parent: 2 + - uid: 15982 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,23.5 + parent: 2 + - uid: 15983 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,6.5 + parent: 2 + - uid: 15984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-2.5 + parent: 2 + - uid: 15985 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,0.5 + parent: 2 + - uid: 15986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,28.5 + parent: 2 + - uid: 15987 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,30.5 + parent: 2 + - uid: 15988 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 2 + - uid: 15989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-29.5 + parent: 2 +- proto: SignDirectionalSupply + entities: + - uid: 15037 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.4992709,15.306774 + parent: 2 + - uid: 15059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-15.5 + parent: 2 + - uid: 15689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.499603,-2.6954665 + parent: 2 + - uid: 15691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - uid: 15710 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.49644,-36.698032 + parent: 2 + - uid: 15765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.497323,3.2987633 + parent: 2 +- proto: SignDisposalSpace + entities: + - uid: 12615 + components: + - type: Transform + pos: 46.5,5.5 + parent: 2 + - uid: 12616 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 1354 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: 44.5,-18.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: 61.5,-12.5 + parent: 2 + - uid: 1600 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 1601 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: -6.5,55.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 5070 + components: + - type: Transform + pos: -34.5,-13.5 + parent: 2 + - uid: 5231 + components: + - type: Transform + pos: -10.5,30.5 + parent: 2 + - uid: 6124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-40.5 + parent: 2 + - uid: 6134 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 6139 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 6283 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 6306 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - uid: 10472 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 11398 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 11477 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 11483 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 2 + - uid: 12776 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 +- proto: SignEngine + entities: + - uid: 12736 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 12744 + components: + - type: Transform + pos: 30.5,-17.5 + parent: 2 + - uid: 12745 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 1447 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 +- proto: SignEscapePods + entities: + - uid: 4820 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - uid: 9380 + components: + - type: Transform + pos: 45.5,25.5 + parent: 2 +- proto: SignEVA + entities: + - uid: 1719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-14.5 + parent: 2 +- proto: SignExamroom + entities: + - uid: 12705 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 +- proto: SignFlammableMed + entities: + - uid: 6138 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 12774 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 12775 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 8365 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 +- proto: SignHead + entities: + - uid: 12706 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 12782 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 +- proto: SignHydro1 + entities: + - uid: 12734 + components: + - type: Transform + pos: 13.5,12.5 + parent: 2 +- proto: SignJanitor + entities: + - uid: 410 + components: + - type: Transform + pos: -5.5,11.5 + parent: 2 + - uid: 426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 +- proto: SignKitchen + entities: + - uid: 343 + components: + - type: Transform + pos: 7.5,2.5 + parent: 2 +- proto: SignLawyer + entities: + - uid: 9985 + components: + - type: Transform + pos: -17.5,-31.5 + parent: 2 + - uid: 15874 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 2194 + components: + - type: Transform + pos: -17.5,-23.5 + parent: 2 +- proto: SignMagneticsMed + entities: + - uid: 15687 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 +- proto: SignMaterials + entities: + - uid: 12670 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 1065 + components: + - type: Transform + pos: 22.5,8.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 4020 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,10.5 + parent: 2 +- proto: SignNews + entities: + - uid: 12735 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 12769 + components: + - type: Transform + pos: 34.5,-41.5 + parent: 2 + - uid: 12770 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 12772 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 10366 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 +- proto: SignPsychology + entities: + - uid: 4211 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 +- proto: SignRND + entities: + - uid: 12750 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 12747 + components: + - type: Transform + pos: -22.5,14.5 + parent: 2 +- proto: SignSalvage + entities: + - uid: 12749 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 +- proto: SignScience + entities: + - uid: 12748 + components: + - type: Transform + pos: -8.5,15.5 + parent: 2 +- proto: SignSecureMed + entities: + - uid: 4492 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 12761 + components: + - 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 + pos: -22.5,32.5 + parent: 2 + - uid: 12766 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - uid: 12767 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 +- proto: SignSecureMedRed + entities: + - uid: 11572 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 11573 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 +- proto: SignSecurity + entities: + - uid: 6622 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 6636 + components: + - type: Transform + pos: -6.5,-15.5 + parent: 2 + - uid: 6646 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 8633 + components: + - 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 + components: + - type: Transform + pos: -53.5,-27.5 + parent: 2 + - uid: 12617 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 15792 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 15793 + components: + - type: Transform + pos: -61.5,-27.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 6034 + components: + - type: Transform + pos: 32.5,16.5 + parent: 2 + - uid: 6091 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 12768 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 12771 + components: + - 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 + components: + - 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 + pos: 30.5,32.5 + parent: 2 + - uid: 12754 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 12755 + components: + - type: Transform + pos: 38.5,-23.5 + parent: 2 + - uid: 12756 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 12757 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 2 + - uid: 12758 + components: + - type: Transform + pos: -38.5,-44.5 + parent: 2 + - uid: 16101 + components: + - type: Transform + pos: -22.5,55.5 + parent: 2 +- proto: SignSurgery + entities: + - uid: 4067 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 7999 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 +- proto: SignTheater + entities: + - uid: 344 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 +- proto: SignToolStorage + entities: + - uid: 8238 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 +- proto: SignVault + entities: + - uid: 12759 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 +- proto: SignVirology + entities: + - uid: 3978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 +- proto: SilverRingDiamond + entities: + - uid: 10375 + components: + - 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 + components: + - type: Transform + pos: -24.550694,26.571077 + parent: 2 +- proto: Sink + entities: + - uid: 2697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,11.5 + parent: 2 + - uid: 3986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,5.5 + parent: 2 + - uid: 3988 + components: + - type: Transform + pos: 37.5,19.5 + parent: 2 + - uid: 4021 + components: + - type: Transform + pos: 41.5,9.5 + parent: 2 + - uid: 4074 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,5.5 + parent: 2 + - uid: 4107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - uid: 5918 + components: + - type: Transform + pos: -18.5,-12.5 + parent: 2 + - uid: 11860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-41.5 + parent: 2 + - uid: 15935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-34.5 + parent: 2 + - uid: 15936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-33.5 + parent: 2 +- proto: SinkWide + entities: + - uid: 115 + components: + - type: Transform + pos: 9.5,1.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 + - uid: 428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - uid: 2122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-39.5 + parent: 2 + - uid: 3984 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,23.5 + parent: 2 + - uid: 3985 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - uid: 4075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,11.5 + parent: 2 + - uid: 4086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,21.5 + parent: 2 + - uid: 5204 + components: + - type: Transform + pos: -10.5,18.5 + parent: 2 + - uid: 5313 + components: + - type: Transform + pos: -24.5,12.5 + parent: 2 + - uid: 15823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 +- proto: SMESAdvanced + entities: + - uid: 6049 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 6051 + components: + - type: Transform + pos: 35.5,-11.5 + parent: 2 + - uid: 6052 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 6126 + components: + - type: Transform + pos: 35.5,-9.5 + parent: 2 + - uid: 6127 + components: + - type: Transform + pos: 34.5,-9.5 + parent: 2 + - uid: 6307 + components: + - type: Transform + pos: 33.5,-9.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 6837 + components: + - type: MetaData + name: SMES (AI Satellite) + - type: Transform + pos: -32.5,27.5 + parent: 2 + - uid: 7668 + components: + - type: MetaData + name: SMES (North Solar) + - type: Transform + pos: 28.5,32.5 + parent: 2 + - uid: 7780 + components: + - type: MetaData + name: SMES (South Solar) + - type: Transform + pos: 12.5,-29.5 + parent: 2 + - uid: 8097 + components: + - type: MetaData + name: SMES (Gravity Generator) + - type: Transform + pos: 39.5,-3.5 + parent: 2 + - uid: 11343 + components: + - type: MetaData + name: SMES (Particle Accelerator) + - type: Transform + pos: 39.5,-18.5 + parent: 2 + - uid: 15434 + components: + - type: MetaData + name: SMES (Station Anchor) + - type: Transform + pos: 45.5,-3.5 + parent: 2 +- proto: SMESMachineCircuitboard + entities: + - uid: 15614 + components: + - type: Transform + pos: 30.43975,-11.320211 + parent: 2 +- proto: SoapNT + entities: + - uid: 807 + components: + - type: Transform + pos: -3.4796343,10.296192 + parent: 2 +- proto: SodaDispenser + entities: + - uid: 313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 5905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-14.5 + parent: 2 + - uid: 8605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 59.5,-0.5 + parent: 2 +- proto: SolarPanel + entities: + - uid: 1296 + components: + - type: Transform + pos: 12.5,-45.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 11.5,-45.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 10.5,-45.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 10.5,-47.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 14.5,-47.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 12.5,-47.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 14.5,-49.5 + parent: 2 + - uid: 2764 + components: + - type: Transform + pos: 13.5,-51.5 + parent: 2 + - uid: 2767 + components: + - type: Transform + pos: 11.5,-49.5 + parent: 2 + - uid: 2778 + components: + - type: Transform + pos: 13.5,-53.5 + parent: 2 + - uid: 2838 + components: + - type: Transform + pos: 31.5,54.5 + parent: 2 + - uid: 2844 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 2 + - uid: 2845 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 2848 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 2 + - uid: 2849 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 2 + - uid: 2850 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 2 + - uid: 2851 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 2 + - uid: 2852 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 2 + - uid: 2854 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 + - uid: 2861 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 2 + - uid: 2864 + components: + - type: Transform + pos: 10.5,-41.5 + parent: 2 + - uid: 2866 + components: + - type: Transform + pos: 14.5,-41.5 + parent: 2 + - uid: 2867 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - uid: 2868 + components: + - type: Transform + pos: 13.5,-43.5 + parent: 2 + - uid: 2881 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - uid: 2882 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 2 + - uid: 3783 + components: + - type: Transform + pos: 14.5,-53.5 + parent: 2 + - uid: 4276 + components: + - type: Transform + pos: 33.5,54.5 + parent: 2 + - uid: 6426 + components: + - type: Transform + pos: 34.5,38.5 + parent: 2 + - uid: 6427 + components: + - type: Transform + pos: 34.5,40.5 + parent: 2 + - uid: 6429 + components: + - type: Transform + pos: 33.5,36.5 + parent: 2 + - uid: 6430 + components: + - type: Transform + pos: 35.5,40.5 + parent: 2 + - uid: 6431 + components: + - type: Transform + pos: 31.5,48.5 + parent: 2 + - uid: 6433 + components: + - type: Transform + pos: 35.5,48.5 + parent: 2 + - uid: 6436 + components: + - type: Transform + pos: 32.5,48.5 + parent: 2 + - uid: 6470 + components: + - type: Transform + pos: 31.5,50.5 + parent: 2 + - uid: 7756 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 7761 + components: + - type: Transform + pos: 31.5,40.5 + parent: 2 + - uid: 7794 + components: + - type: Transform + pos: 31.5,38.5 + parent: 2 + - uid: 7795 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 7817 + components: + - type: Transform + pos: 35.5,42.5 + parent: 2 + - uid: 7818 + components: + - type: Transform + pos: 35.5,36.5 + parent: 2 + - uid: 7821 + components: + - type: Transform + pos: 33.5,42.5 + parent: 2 + - uid: 7822 + components: + - type: Transform + pos: 31.5,46.5 + parent: 2 + - uid: 7824 + components: + - type: Transform + pos: 34.5,44.5 + parent: 2 + - uid: 7825 + components: + - type: Transform + pos: 31.5,36.5 + parent: 2 + - uid: 7826 + components: + - type: Transform + pos: 32.5,44.5 + parent: 2 + - uid: 7828 + components: + - type: Transform + pos: 31.5,44.5 + parent: 2 + - uid: 7830 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 7831 + components: + - type: Transform + pos: 35.5,46.5 + parent: 2 + - uid: 7832 + components: + - type: Transform + pos: 35.5,38.5 + parent: 2 + - uid: 7833 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - uid: 10393 + components: + - type: Transform + pos: 32.5,52.5 + parent: 2 + - uid: 10517 + components: + - type: Transform + pos: 34.5,52.5 + parent: 2 + - uid: 11342 + components: + - type: Transform + pos: 34.5,54.5 + parent: 2 + - uid: 14527 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 +- proto: SolarPanelBroken + entities: + - uid: 1299 + components: + - type: Transform + pos: 11.5,-39.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: 14.5,-45.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: 32.5,54.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + pos: 11.5,-55.5 + parent: 2 + - uid: 2755 + components: + - type: Transform + pos: 13.5,-47.5 + parent: 2 + - uid: 2757 + components: + - type: Transform + pos: 13.5,-49.5 + parent: 2 + - uid: 2762 + components: + - type: Transform + pos: 12.5,-49.5 + parent: 2 + - uid: 2763 + components: + - type: Transform + pos: 11.5,-47.5 + parent: 2 + - uid: 2787 + components: + - type: Transform + pos: 13.5,-45.5 + parent: 2 + - uid: 2791 + components: + - type: Transform + pos: 10.5,-49.5 + parent: 2 + - uid: 2806 + components: + - type: Transform + pos: 12.5,-51.5 + parent: 2 + - uid: 2829 + components: + - type: Transform + pos: 14.5,-55.5 + parent: 2 + - uid: 2865 + components: + - type: Transform + pos: 14.5,-51.5 + parent: 2 + - uid: 2875 + components: + - type: Transform + pos: 14.5,-43.5 + parent: 2 + - uid: 2878 + components: + - type: Transform + pos: 13.5,-41.5 + parent: 2 + - uid: 2879 + components: + - type: Transform + pos: 12.5,-43.5 + parent: 2 + - uid: 3790 + components: + - type: Transform + pos: 12.5,-53.5 + parent: 2 + - uid: 6424 + components: + - type: Transform + pos: 33.5,50.5 + parent: 2 + - uid: 6428 + components: + - type: Transform + pos: 34.5,46.5 + parent: 2 + - uid: 6432 + components: + - type: Transform + pos: 33.5,40.5 + parent: 2 + - uid: 7760 + components: + - type: Transform + pos: 33.5,48.5 + parent: 2 + - uid: 7793 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 7819 + components: + - type: Transform + pos: 31.5,42.5 + parent: 2 + - uid: 7820 + components: + - type: Transform + pos: 34.5,48.5 + parent: 2 + - uid: 7827 + components: + - type: Transform + pos: 33.5,44.5 + parent: 2 + - uid: 7829 + components: + - type: Transform + pos: 33.5,38.5 + parent: 2 + - uid: 13759 + components: + - type: Transform + pos: 31.5,52.5 + parent: 2 +- proto: SolarTracker + entities: + - uid: 2532 + components: + - type: Transform + pos: 29.5,54.5 + parent: 2 + - uid: 11339 + components: + - type: Transform + pos: 16.5,-55.5 + parent: 2 +- proto: SolidSecretDoor + entities: + - uid: 13675 + components: + - type: Transform + pos: -16.5,-47.5 + parent: 2 +- proto: SpaceCash10 + entities: + - uid: 9388 + components: + - type: Transform + pos: 37.667343,25.55974 + parent: 2 + - uid: 9389 + components: + - type: Transform + pos: 37.323593,25.80974 + parent: 2 + - uid: 13861 + components: + - type: Transform + pos: 1.4609051,40.070015 + parent: 2 + - uid: 14955 + components: + - type: Transform + pos: 1.5546551,40.007515 + parent: 2 + - uid: 15159 + components: + - type: Transform + pos: 1.5077801,39.89814 + parent: 2 +- proto: SpaceCash1000 + entities: + - uid: 9390 + components: + - type: Transform + pos: 37.667343,26.62224 + parent: 2 +- proto: SpaceHeaterAnchored + entities: + - uid: 8075 + components: + - type: Transform + pos: 24.5,-30.5 + parent: 2 + - uid: 10439 + components: + - type: Transform + pos: 25.5,-30.5 + parent: 2 +- proto: SpacemenFigureSpawner + entities: + - uid: 8463 + components: + - type: Transform + pos: -12.5,10.5 + parent: 2 + - uid: 15225 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 15226 + components: + - type: Transform + pos: -19.5,-24.5 + parent: 2 + - uid: 15227 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 15228 + components: + - type: Transform + pos: -35.5,-20.5 + parent: 2 + - uid: 15229 + components: + - type: Transform + pos: -46.5,-13.5 + parent: 2 + - uid: 15230 + components: + - type: Transform + pos: -64.5,-31.5 + parent: 2 + - uid: 15232 + components: + - type: Transform + pos: -9.5,-24.5 + parent: 2 + - uid: 15233 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 15234 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 15235 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 15236 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 15237 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 15238 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 15240 + components: + - type: Transform + pos: -42.5,31.5 + parent: 2 + - uid: 15241 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - uid: 15242 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 15245 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 15246 + components: + - type: Transform + pos: 19.5,40.5 + parent: 2 + - uid: 15247 + components: + - type: Transform + pos: 23.5,-10.5 + parent: 2 + - uid: 15248 + components: + - type: Transform + pos: 25.5,-28.5 + parent: 2 + - uid: 16215 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 +- proto: SpaceVillainArcadeFilled + entities: + - uid: 13998 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 2 + - uid: 13999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 2 +- proto: SpawnMobAlexander + entities: + - uid: 13515 + components: + - type: Transform + pos: 11.5,0.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 15274 + components: + - type: Transform + pos: -3.5,2.5 + parent: 2 +- proto: SpawnMobCatBingus + entities: + - uid: 16162 + components: + - type: Transform + pos: -13.5,11.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 13518 + components: + - type: Transform + pos: 36.5,14.5 + parent: 2 +- proto: SpawnMobCatFloppa + entities: + - uid: 15280 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 13517 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 7355 + components: + - type: Transform + pos: -3.5,10.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 16205 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 13526 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 4527 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 2 +- proto: SpawnMobLizard + entities: + - uid: 13695 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 13522 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 801 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 2 +- proto: SpawnMobParrot + entities: + - uid: 16182 + components: + - type: Transform + pos: 39.5,-15.5 + parent: 2 +- proto: SpawnMobPossumMorty + entities: + - uid: 15231 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 +- proto: SpawnMobRaccoonMorticia + entities: + - uid: 13528 + components: + - type: Transform + pos: 10.5,33.5 + parent: 2 +- proto: SpawnMobShiva + entities: + - uid: 13521 + components: + - type: Transform + pos: -11.5,-35.5 + parent: 2 +- proto: SpawnMobSlothPaperwork + entities: + - uid: 15275 + components: + - type: Transform + pos: -24.5,-22.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 13527 + components: + - type: Transform + pos: -14.5,18.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 13516 + components: + - type: Transform + pos: 25.5,16.5 + parent: 2 +- proto: SpawnPointAtmos + entities: + - uid: 1228 + components: + - type: Transform + pos: 38.5,-30.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 +- proto: SpawnPointBartender + entities: + - uid: 345 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 2 +- proto: SpawnPointBorg + entities: + - uid: 13845 + components: + - type: Transform + pos: -36.5,30.5 + parent: 2 + - uid: 14773 + components: + - type: Transform + pos: -36.5,32.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 350 + components: + - type: Transform + pos: 10.5,9.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 +- proto: SpawnPointCaptain + entities: + - uid: 4675 + components: + - type: Transform + pos: -31.5,-8.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 10498 + components: + - type: Transform + pos: 5.5,34.5 + parent: 2 + - uid: 10499 + components: + - type: Transform + pos: 11.5,29.5 + parent: 2 + - uid: 10500 + components: + - type: Transform + pos: 13.5,38.5 + parent: 2 +- proto: SpawnPointChaplain + entities: + - uid: 10491 + components: + - type: Transform + pos: -34.5,-21.5 + parent: 2 +- proto: SpawnPointChef + entities: + - uid: 346 + components: + - type: Transform + pos: 13.5,0.5 + parent: 2 +- proto: SpawnPointChemist + entities: + - uid: 10468 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 10469 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 +- proto: SpawnPointChiefEngineer + entities: + - uid: 4517 + components: + - type: Transform + pos: -32.5,-9.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 4602 + components: + - type: Transform + pos: -29.5,-9.5 + parent: 2 +- proto: SpawnPointClown + entities: + - uid: 347 + components: + - type: Transform + pos: 0.5,9.5 + parent: 2 +- proto: SpawnPointDetective + entities: + - uid: 13677 + components: + - type: Transform + pos: -11.5,-21.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 4606 + components: + - type: Transform + pos: -32.5,-10.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 4603 + components: + - type: Transform + pos: -32.5,-11.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 987 + components: + - type: Transform + pos: -4.5,9.5 + parent: 2 + - uid: 4226 + components: + - type: Transform + pos: -4.5,6.5 + parent: 2 +- proto: SpawnPointLawyer + entities: + - uid: 7804 + components: + - type: Transform + pos: -18.5,-42.5 + parent: 2 +- proto: SpawnPointLibrarian + entities: + - uid: 10489 + components: + - type: Transform + pos: -23.5,-26.5 + parent: 2 +- proto: SpawnPointMedicalDoctor + entities: + - uid: 8081 + components: + - type: Transform + pos: 37.5,4.5 + parent: 2 + - uid: 10470 + components: + - type: Transform + pos: 36.5,8.5 + parent: 2 + - uid: 10471 + components: + - type: Transform + pos: 39.5,18.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 10474 + components: + - type: Transform + pos: 37.5,18.5 + parent: 2 + - uid: 10475 + components: + - type: Transform + pos: 38.5,18.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 348 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 349 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 4275 + components: + - type: Transform + pos: 1.5,0.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 10473 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 +- proto: SpawnPointPassenger + entities: + - uid: 3030 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 5284 + components: + - type: Transform + pos: -31.5,-42.5 + parent: 2 + - uid: 5747 + components: + - type: Transform + pos: -30.5,-42.5 + parent: 2 + - uid: 6092 + components: + - type: Transform + pos: -25.5,-42.5 + parent: 2 + - uid: 7798 + components: + - type: Transform + pos: -2.5,21.5 + parent: 2 + - uid: 9974 + components: + - type: Transform + pos: -24.5,-42.5 + parent: 2 + - uid: 13938 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 13939 + components: + - type: Transform + pos: -2.5,20.5 + parent: 2 + - uid: 14814 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 7126 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 +- proto: SpawnPointQuartermaster + entities: + - uid: 4604 + components: + - type: Transform + pos: -29.5,-10.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 10490 + components: + - type: Transform + pos: -23.5,-34.5 + parent: 2 +- proto: SpawnPointResearchAssistant + entities: + - uid: 10496 + components: + - type: Transform + pos: -20.5,17.5 + parent: 2 + - uid: 10497 + components: + - type: Transform + pos: -19.5,17.5 + parent: 2 +- proto: SpawnPointResearchDirector + entities: + - uid: 4600 + components: + - type: Transform + pos: -29.5,-11.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 10501 + components: + - type: Transform + pos: 20.5,35.5 + parent: 2 + - uid: 10502 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 +- proto: SpawnPointScientist + entities: + - uid: 9124 + components: + - type: Transform + pos: -19.5,21.5 + parent: 2 + - uid: 10493 + components: + - type: Transform + pos: -21.5,17.5 + parent: 2 + - uid: 10494 + components: + - type: Transform + pos: -25.5,15.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 10483 + components: + - type: Transform + pos: 1.5,-17.5 + parent: 2 + - uid: 10484 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 +- proto: SpawnPointSecurityOfficer + entities: + - uid: 10485 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 10486 + components: + - type: Transform + pos: -4.5,-21.5 + parent: 2 + - uid: 10487 + components: + - type: Transform + pos: -6.5,-26.5 + parent: 2 +- proto: SpawnPointServiceWorker + entities: + - uid: 1022 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 2 +- proto: SpawnPointStationEngineer + entities: + - uid: 2300 + components: + - type: Transform + pos: 35.5,-21.5 + parent: 2 + - uid: 2301 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 + - uid: 9118 + components: + - type: Transform + pos: 27.5,-14.5 + parent: 2 + - uid: 14822 + components: + - type: Transform + pos: 34.5,-10.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 1229 + components: + - type: Transform + pos: 28.5,-11.5 + parent: 2 + - uid: 2296 + components: + - type: Transform + pos: 27.5,-11.5 + parent: 2 +- proto: SpawnPointWarden + entities: + - uid: 10488 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 2 +- proto: SpawnVendingMachineRestockFoodDrink + entities: + - uid: 1625 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 2 + - uid: 1626 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 2 +- proto: Spoon + entities: + - uid: 806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.568944,0.33465952 + parent: 2 +- proto: SprayBottleSpaceCleaner + entities: + - uid: 419 + components: + - type: Transform + pos: -5.576272,8.528376 + parent: 2 +- proto: StairWood + entities: + - uid: 3 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - uid: 4 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 +- proto: StasisBed + entities: + - uid: 3995 + components: + - type: Transform + pos: 42.5,8.5 + parent: 2 +- proto: StationAiUploadComputer + entities: + - uid: 5475 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 +- proto: StationAnchor + entities: + - uid: 14528 + components: + - type: Transform + pos: 47.5,-5.5 + parent: 2 +- proto: StationEfficiencyCircuitBoard + entities: + - uid: 5493 + components: + - type: Transform + pos: -33.670975,35.61313 + parent: 2 +- proto: StationMap + entities: + - uid: 14618 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 14619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + - uid: 14620 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - uid: 14621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,43.5 + parent: 2 + - uid: 14622 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,22.5 + parent: 2 + - uid: 14623 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,15.5 + parent: 2 + - uid: 14624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - uid: 14625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-27.5 + parent: 2 + - uid: 14626 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 14629 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 15927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -41.5,-32.5 + parent: 2 +- proto: StationMapBroken + entities: + - uid: 14628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-21.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 1309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 2 + - uid: 2016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 2 + - uid: 2017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-18.5 + parent: 2 +- proto: Stool + entities: + - uid: 1631 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.4206195,5.6465745 + parent: 2 +- proto: StoolBar + entities: + - uid: 213 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 2 + - uid: 217 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 2 + - uid: 218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 2 + - uid: 241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - uid: 1688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 2 + - uid: 1696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,1.5 + parent: 2 + - uid: 8608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,1.5 + parent: 2 + - uid: 8609 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 + - uid: 8610 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,-0.5 + parent: 2 + - uid: 9641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-0.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 1399 + components: + - type: Transform + pos: 38.5,-26.5 + parent: 2 + - uid: 2439 + components: + - type: Transform + pos: 40.5,-35.5 + parent: 2 + - uid: 2555 + components: + - type: Transform + pos: 39.5,-26.5 + parent: 2 +- proto: SubstationBasic + entities: + - uid: 674 + components: + - type: MetaData + name: substation (Central Service) + - type: Transform + pos: 12.5,-10.5 + parent: 2 + - uid: 1151 + components: + - type: MetaData + name: substation (Gravity Generator) + - type: Transform + pos: 40.5,-3.5 + parent: 2 + - uid: 2708 + components: + - type: MetaData + name: substation (Engineering) + - type: Transform + pos: 24.5,-15.5 + parent: 2 + - uid: 2777 + components: + - type: MetaData + name: substation (South Solar) + - type: Transform + pos: 13.5,-29.5 + parent: 2 + - uid: 3207 + components: + - type: MetaData + name: substation (South Service) + - type: Transform + pos: -30.5,-27.5 + parent: 2 + - uid: 4139 + components: + - type: MetaData + name: substation (Medical) + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 4748 + components: + - type: MetaData + name: substation (Bridge) + - type: Transform + pos: -35.5,-11.5 + parent: 2 + - uid: 4804 + components: + - type: MetaData + name: substation (Particle Accelerator) + - type: Transform + pos: 38.5,-18.5 + parent: 2 + - uid: 5234 + components: + - type: MetaData + name: substation (Security) + - type: Transform + pos: 9.5,-31.5 + parent: 2 + - uid: 6633 + components: + - type: MetaData + name: substation (Cargo) + - type: Transform + pos: 3.5,30.5 + parent: 2 + - uid: 6681 + components: + - type: MetaData + name: substation (Science) + - type: Transform + pos: -11.5,32.5 + parent: 2 + - uid: 6748 + components: + - type: MetaData + name: substation (AI Satellite) + - type: Transform + pos: -31.5,27.5 + parent: 2 + - uid: 7212 + components: + - type: MetaData + name: substation (Arrivals) + - type: Transform + pos: -5.5,57.5 + parent: 2 + - uid: 7778 + components: + - type: MetaData + name: substation (North Solar) + - type: Transform + pos: 27.5,32.5 + parent: 2 + - uid: 15507 + components: + - type: MetaData + name: substation (Station Anchor) + - type: Transform + pos: 46.5,-3.5 + parent: 2 +- proto: SubstationMachineCircuitboard + entities: + - uid: 2293 + components: + - type: Transform + pos: 37.464836,-3.5121675 + parent: 2 +- proto: SuitStorageAtmos + entities: + - uid: 2899 + components: + - type: Transform + pos: 38.5,-31.5 + parent: 2 + - uid: 3943 + components: + - type: Transform + pos: 39.5,-31.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 4449 + components: + - type: Transform + pos: -26.5,0.5 + parent: 2 +- proto: SuitStorageCE + entities: + - uid: 2538 + components: + - type: Transform + pos: 42.5,-16.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 4078 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 +- proto: SuitStorageEngi + entities: + - uid: 8055 + components: + - type: Transform + pos: 37.5,-6.5 + parent: 2 + - uid: 8068 + components: + - type: Transform + pos: 36.5,-6.5 + parent: 2 + - uid: 8069 + components: + - type: Transform + pos: 35.5,-6.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 1726 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 2 + - uid: 1727 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 2 + - uid: 1728 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 2 +- proto: SuitStorageEVAAlternate + entities: + - uid: 1729 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 2 + - uid: 1730 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 2 + - uid: 1731 + components: + - type: Transform + pos: 19.5,-19.5 + parent: 2 + - uid: 4250 + components: + - type: Transform + pos: -36.5,-45.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: 6617 + components: + - type: Transform + pos: -10.5,26.5 + parent: 2 + - uid: 6618 + components: + - type: Transform + pos: -9.5,26.5 + parent: 2 + - uid: 6619 + components: + - type: Transform + pos: -9.5,24.5 + parent: 2 + - uid: 6620 + components: + - type: Transform + pos: -10.5,24.5 + parent: 2 + - uid: 13761 + components: + - type: Transform + pos: 49.5,18.5 + parent: 2 + - uid: 14453 + components: + - type: Transform + pos: -22.5,56.5 + parent: 2 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 2142 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 2 + - uid: 2143 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 2078 + components: + - type: Transform + pos: -12.5,-39.5 + parent: 2 +- proto: SuitStorageNTSRA + entities: + - uid: 2991 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 5077 + components: + - type: Transform + pos: -17.5,6.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 7646 + components: + - type: Transform + pos: 24.5,40.5 + parent: 2 + - uid: 7654 + components: + - type: Transform + pos: 24.5,39.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 1878 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 1884 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 2 + - uid: 1894 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 1897 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 2045 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 2 +- proto: SurveillanceCameraCommand + entities: + - uid: 112 + components: + - type: MetaData + name: camera (C07 - Bridge Evac West) + - type: Transform + pos: -55.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C07 - Bridge Evac West + - uid: 11518 + components: + - type: MetaData + name: camera (B07 - AI Entrance) + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: B07 - AI Entrance + - uid: 11882 + components: + - type: MetaData + name: camera (B04 - AI Upload) + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: B04 - AI Upload + - uid: 12781 + components: + - type: MetaData + name: camera (B05 - AI Utility Closet) + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: B05 - AI Utility Closet + - uid: 12783 + components: + - type: MetaData + name: camera (B02 - AI Main) + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: B02 - AI Main + - uid: 12784 + components: + - type: MetaData + name: camera (B01 - AI) + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: B01 - AI + - uid: 12785 + components: + - type: MetaData + name: B03 - AI Core + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: B03 - AI Core + - uid: 14860 + components: + - type: MetaData + name: camera (C19 - QM's Office) + - type: Transform + pos: 0.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C19 - QM's Office + - uid: 15073 + components: + - type: MetaData + name: camera (B06 - AI Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: B06 - AI Hall + - uid: 15074 + components: + - type: MetaData + name: camera (C01 - Bridge Entrance East) + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C01 - Bridge Entrance East + - uid: 15075 + components: + - type: MetaData + name: camera (C03 - Bridge Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C03 - Bridge Hall + - uid: 15076 + components: + - type: MetaData + name: camera (C02 - Bridge Entrance South) + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C02 - Bridge Entrance South + - uid: 15077 + components: + - type: MetaData + name: camera (C09 - Captain's Office) + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C09 - Captain's Office + - uid: 15078 + components: + - type: MetaData + name: camera (C10 - Captain's Bedroom) + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C10 - Captain's Bedroom + - uid: 15079 + components: + - type: MetaData + name: camera (C04 - Bridge Conference Room) + - type: Transform + pos: -31.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C04 - Bridge Conference Room + - uid: 15080 + components: + - type: MetaData + name: camera (C05 - Bridge) + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C05 - Bridge + - uid: 15082 + components: + - type: MetaData + name: camera (C06 - Bridge Evac East) + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C06 - Bridge Evac East + - uid: 15083 + components: + - type: MetaData + name: camera (C08 - Vault) + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C08 - Vault + - uid: 15085 + components: + - type: MetaData + name: camera (C20 - QM's Bedroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - 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 + name: camera (C18 - CMO's Bedroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C18 - CMO's Bedroom + - uid: 15089 + components: + - type: MetaData + name: camera (C17 - CMO's Office) + - type: Transform + pos: 28.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C17 - CMO's Office + - uid: 15090 + components: + - type: MetaData + name: camera (C15 - CE's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C15 - CE's Office + - uid: 15091 + components: + - type: MetaData + name: camera (C16 - CE's Bedroom) + - type: Transform + pos: 41.5,-16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C16 - CE's Bedroom + - uid: 15092 + components: + - type: MetaData + name: camera (C13 - HoS's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C13 - HoS's Office + - uid: 15093 + components: + - type: MetaData + name: camera (C14 - HoS's Bedroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C14 - HoS's Bedroom + - uid: 15094 + components: + - type: MetaData + name: camera (C11 - HoP's Office) + - type: Transform + pos: 11.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C11 - HoP's Office + - uid: 15095 + components: + - type: MetaData + name: camera (C12 - HoP's Bedroom) + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: C12 - HoP's Bedroom +- proto: SurveillanceCameraEngineering + entities: + - uid: 15096 + components: + - type: MetaData + name: camera (E19 - Station Anchor) + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E19 - Station Anchor + - uid: 15097 + components: + - type: MetaData + name: camera (E01 - Engineering Entrance) + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,-5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E01 - Engineering Entrance + - uid: 15098 + components: + - type: MetaData + name: camera (E02 - SMES Array) + - type: Transform + pos: 34.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E02 - SMES Array + - uid: 15099 + components: + - type: MetaData + name: camera (E03 - Engineering North) + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E03 - Engineering North + - uid: 15100 + components: + - type: MetaData + name: camera (E06 - Storage Closet) + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E06 - Storage Closet + - uid: 15101 + components: + - type: MetaData + name: camera (E07 - Tech Vault) + - type: Transform + pos: 37.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E07 - Tech Vault + - uid: 15102 + components: + - type: MetaData + name: camera (E09 - Telecomms) + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E09 - Telecomms + - uid: 15103 + components: + - type: MetaData + name: camera (E05 - Locker Room) + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E05 - Locker Room + - uid: 15104 + components: + - type: MetaData + name: camera (E15 - AME Chamber) + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E15 - AME Chamber + - uid: 15105 + components: + - type: MetaData + name: camera (E08 - Gravity Generator) + - type: Transform + pos: 41.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E08 - Gravity Generator + - uid: 15106 + components: + - type: MetaData + name: camera (E11 - Particle Accelerator) + - type: Transform + pos: 38.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E11 - Particle Accelerator + - uid: 15107 + components: + - type: MetaData + name: camera (E04 - Engineering South) + - type: Transform + pos: 35.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E04 - Engineering South + - uid: 15108 + components: + - type: MetaData + name: camera (E10 - TEG) + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E10 - TEG + - uid: 15109 + components: + - type: MetaData + name: camera (E12 - Atmos West) + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E12 - Atmos West + - uid: 15110 + components: + - type: MetaData + name: camera (E13 - Atmos East) + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E13 - Atmos East + - uid: 15111 + components: + - type: MetaData + name: camera (E14 - Atmos South) + - type: Transform + pos: 33.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E14 - Atmos South + - uid: 15112 + components: + - type: MetaData + name: camera (E16 - Containment Field) + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: E16 - Containment Field +- proto: SurveillanceCameraGeneral + entities: + - uid: 15133 + components: + - type: MetaData + name: camera (G20 - Cryosleep) + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G20 - Cryosleep + - uid: 15177 + components: + - type: MetaData + name: camera (G02 - Arrivals South) + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G02 - Arrivals South + - uid: 15179 + components: + - type: MetaData + name: camera (G01 - Arrivals North) + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,48.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G01 - Arrivals North + - uid: 15180 + components: + - type: MetaData + name: camera (G03 - Arrivals Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G03 - Arrivals Hall + - uid: 15181 + components: + - type: MetaData + name: camera (G04 - Northwest Hall) + - type: Transform + pos: -6.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G04 - Northwest Hall + - uid: 15182 + components: + - type: MetaData + name: camera (G07 - East hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G07 - East Hall + - uid: 15183 + components: + - type: MetaData + name: camera (G06 - Northeast Hall) + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G06 - Northeast Hall + - uid: 15185 + components: + - type: MetaData + name: camera (G05 - North Hall) + - type: Transform + pos: 7.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G05 - North Hall + - uid: 15186 + components: + - type: MetaData + name: camera (G10 - Intersection) + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G10 - Intersection + - uid: 15187 + components: + - type: MetaData + name: camera (G08 - Southeast Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G08 - Southeast Hall + - uid: 15188 + components: + - type: MetaData + name: camera (G11 - West Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G11 - West Hall + - uid: 15189 + components: + - type: MetaData + name: camera (G09 - South Hall) + - type: Transform + pos: 5.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G09 - South Hall + - uid: 15190 + components: + - type: MetaData + name: camera (G12 - Southwest Hall) + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G12 - Southwest Hall + - uid: 15191 + components: + - type: MetaData + name: camera (G14 - Dorms Hall West) + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G14 - Dorms Hall West + - uid: 15192 + components: + - type: MetaData + name: camera (G13 - Dorms Hall East) + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G13 - Dorms Hall East + - uid: 15193 + components: + - type: MetaData + name: camera (G16 - Evac East) + - type: Transform + pos: -51.5,-31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G16 - Evac East + - uid: 15194 + components: + - type: MetaData + name: camera (G15 - Evac Hall) + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G15 - Evac Hall + - uid: 15195 + components: + - type: MetaData + name: camera (G17 - Evac West) + - type: Transform + rot: 3.141592653589793 rad + pos: -63.5,-29.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G17 - Evac West + - uid: 15196 + components: + - type: MetaData + name: camera (G18 - Dorm A) + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G18 - Dorm A + - uid: 15197 + components: + - type: MetaData + name: camera (G19 - Dorm B) + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G19 - Dorm B + - uid: 15198 + components: + - type: MetaData + name: camera (G21 - Tool Room) + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G21 - Tool Room + - uid: 15199 + components: + - type: MetaData + name: camera (G22 - EVA Storage) + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G22 - EVA Storage + - uid: 15201 + components: + - type: MetaData + name: camera (G23 - Disposals) + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: G23 - Disposals +- proto: SurveillanceCameraMedical + entities: + - uid: 15113 + components: + - type: MetaData + name: camera (M01 - Medbay Entrance) + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M01 - Medbay Entrance + - uid: 15114 + components: + - type: MetaData + name: camera (M02 - Medbay) + - type: Transform + pos: 33.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M02 - Medbay + - uid: 15115 + components: + - type: MetaData + name: camera (M03 - Surgery) + - type: Transform + pos: 34.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M03 - Surgery + - uid: 15116 + components: + - type: MetaData + name: camera (M07 - Morgue) + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M07 - Morgue + - uid: 15117 + components: + - type: MetaData + name: camera (M08 - Cryogenics) + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M08 - Cryogenics + - uid: 15118 + components: + - type: MetaData + name: camera (M04 - Medbay Hall South) + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M04 - Medbay Hall South + - uid: 15119 + components: + - type: MetaData + name: camera (M05 - Medbay Hall North) + - type: Transform + pos: 24.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M05 - Medbay Hall North + - uid: 15120 + components: + - type: MetaData + name: camera (M10 - Paramedic's Office) + - type: Transform + pos: 19.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M10 - Paramedic's Office + - uid: 15121 + components: + - type: MetaData + name: camera (M09 - Chemistry) + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M09 - Chemistry + - uid: 15122 + components: + - type: MetaData + name: camera (M12 - Virology) + - type: Transform + pos: 19.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M12 - Virology + - uid: 15123 + components: + - type: MetaData + name: camera (M06 - Locker Room) + - type: Transform + rot: 3.141592653589793 rad + pos: 40.5,20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M06 - Locker Room + - uid: 15124 + components: + - type: MetaData + name: camera (M13 - Quarantine) + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M13 - Quarantine + - uid: 15126 + components: + - type: MetaData + name: camera (M11 - Virology Entrance) + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M11 - Virology Entrance + - uid: 15168 + components: + - type: MetaData + name: camera (M14 - Psychologist's Office) + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: M14 - Psychologist's Office +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 5454 + components: + - type: Transform + pos: -37.5,35.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 5455 + components: + - type: Transform + pos: -35.5,35.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 5456 + components: + - type: Transform + pos: -37.5,34.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 5457 + components: + - type: Transform + pos: -35.5,34.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 5458 + components: + - type: Transform + pos: -37.5,28.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 5459 + components: + - type: Transform + pos: -35.5,28.5 + parent: 2 +- proto: SurveillanceCameraRouterService + entities: + - uid: 5460 + components: + - type: Transform + pos: -37.5,27.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 5461 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 15127 + components: + - type: MetaData + name: camera (N01 - Science Entrance) + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: N01 - Science Entrace + - uid: 15128 + components: + - type: MetaData + name: camera (N03 - Locker Room) + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: N03 - Locker Room + - uid: 15129 + components: + - type: MetaData + name: camera (N08 - Server Room) + - type: Transform + pos: -16.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: N08 - Server Room + - uid: 15130 + components: + - type: MetaData + name: camera (N04 - Robotics) + - type: Transform + pos: -27.5,14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: N04 - Robotics + - uid: 15131 + components: + - type: MetaData + name: camera (N07 - Anomaly Generator) + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,24.5 + parent: 2 + - type: SurveillanceCamera + 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: 15134 + components: + - type: MetaData + name: camera (N02 - Science) + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: N02 - Science + - 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 +- proto: SurveillanceCameraSecurity + entities: + - uid: 15125 + components: + - type: MetaData + name: camera (S01 - Security Entrance) + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S01 - Security Entrance + - uid: 15135 + components: + - type: MetaData + name: camera (S02 - Brig) + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S02 - Brig + - uid: 15136 + components: + - type: MetaData + name: camera (S09 - Cell A) + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S09 - Cell A + - uid: 15137 + components: + - type: MetaData + name: camera (S10 - Cell B) + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S10 - Cell B + - uid: 15138 + components: + - type: MetaData + name: camera (S03 - Security South) + - type: Transform + pos: -8.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S03 - Security South + - uid: 15139 + components: + - type: MetaData + name: camera (S04 - Breakroom) + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S04 - Breakroom + - uid: 15140 + components: + - type: MetaData + name: camera (S05 - Locker Room) + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S05 - Locker Room + - uid: 15141 + components: + - type: MetaData + name: camera (S06 - Armoury) + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S06 - Armoury + - uid: 15142 + components: + - type: MetaData + name: camera (S08 - Warden's Office) + - type: Transform + pos: -3.5,-28.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S08 - Warden's Office + - uid: 15143 + components: + - type: MetaData + name: camera (S07 - Detective's Office) + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S07 - Detective's Office + - uid: 15144 + components: + - type: MetaData + name: camera (S11 - Perma Entrance) + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S11 - Perma Entrance + - uid: 15145 + components: + - type: MetaData + name: camera (S13 - Perma Kitchen) + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S13 - Perma Kitchen + - uid: 15146 + components: + - type: MetaData + name: camera (S12 - Perma Rec Room) + - type: Transform + pos: 1.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S12 - Perma Rec Room + - uid: 15148 + components: + - type: MetaData + name: camera (S14 - Perma Bedroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S14 - Perma Bedroom + - uid: 15149 + components: + - type: MetaData + name: camera (S15 - Perma Bathroom) + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S15 - Perma Bathroom + - uid: 15170 + components: + - type: MetaData + name: camera (S16 - Arrivals Checkpoint) + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,30.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S16 - Arrivals Checkpoint + - uid: 15171 + components: + - type: MetaData + name: camera (S17 - Engineering Checkpoint) + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S17 - Engineering Checkpoint + - uid: 15172 + components: + - type: MetaData + name: camera (S18 - Evac Checkpoint) + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: S18 - Evac Checkpoint +- proto: SurveillanceCameraService + entities: + - uid: 412 + components: + - type: MetaData + name: camera (V11 - Janitor's Closet) + - type: Transform + pos: -5.5,5.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V11 - Janitor's Closet + - uid: 15147 + components: + - type: MetaData + name: camera (V01 - Lounge) + - type: Transform + pos: -1.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V01 - Lounge + - uid: 15150 + components: + - type: MetaData + name: camera (V02 - Bar) + - type: Transform + pos: -0.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V02 - Bar + - uid: 15151 + components: + - type: MetaData + name: camera (V03 - Bar Backroom) + - type: Transform + pos: 5.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V03 - Bar Backroom + - uid: 15152 + components: + - type: MetaData + name: camera (V04 - Kitchen) + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V04 - Kitchen + - uid: 15153 + components: + - type: MetaData + name: camera (V09 - Botany) + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V09 - Botany + - uid: 15154 + components: + - type: MetaData + name: camera (V05 - Freezer) + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V05 - Freezer + - uid: 15155 + components: + - type: MetaData + name: camera (V06 - Stage) + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V06 - Stage + - uid: 15156 + components: + - type: MetaData + name: camera (V10 - Botany Backroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V10 - Botany Backroom + - uid: 15157 + components: + - type: MetaData + name: camera (V07 - Backstage) + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V07 - Backstage + - uid: 15158 + components: + - type: MetaData + name: camera (V08 - Theatre) + - type: Transform + pos: -0.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V08 - Theatre + - uid: 15160 + components: + - type: MetaData + name: camera (V13 - Library) + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V13 - Library + - uid: 15161 + components: + - type: MetaData + name: camera (V14 - Library Backroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V14 - Library Backroom + - uid: 15162 + components: + - type: MetaData + name: camera (V15 - Newsroom Entrance) + - type: Transform + pos: -28.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V15 - Newsroom Entrance + - uid: 15163 + components: + - type: MetaData + name: camera (V16 - Newsroom) + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-31.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V16 - Newsroom + - uid: 15164 + components: + - type: MetaData + name: camera (V17 - Chapel) + - type: Transform + pos: -36.5,-27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V17 - Chapel + - uid: 15165 + components: + - type: MetaData + name: camera (V19 - Lawyer's Office) + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-41.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V19 - Lawyer's Office + - uid: 15166 + components: + - type: MetaData + name: camera (V18 - Crematorium) + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-22.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V18 - Crematorium + - uid: 15167 + components: + - type: MetaData + name: camera (V20 - Courtroom) + - type: Transform + pos: -16.5,-36.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V20 - Courtroom + - uid: 15169 + components: + - type: MetaData + name: camera (V12 - Spacebucks) + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: V12 - Spacebucks +- proto: SurveillanceCameraSupply + entities: + - uid: 15173 + components: + - type: MetaData + name: camera (U02 - Cargo Reception) + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,27.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: U02 - Cargo Reception + - uid: 15174 + components: + - type: MetaData + name: camera (U01 - Cargo Entrance) + - type: Transform + pos: 8.5,23.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: U01 - Cargo Entrance + - uid: 15175 + components: + - type: MetaData + name: camera (U03 - Cargo Bay West) + - type: Transform + pos: 4.5,32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: U03 - Cargo Bay West + - uid: 15176 + components: + - type: MetaData + name: camera (U04 - Cargo Bay East) + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,39.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: U04 - Cargo Bay East + - uid: 15178 + components: + - type: MetaData + name: camera (U05 - Salvage) + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,40.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: U05 - Salvage +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 3187 + components: + - type: Transform + pos: -28.5,-31.5 + parent: 2 +- proto: SurveillanceWirelessCameraAnchoredEntertainment + entities: + - uid: 3173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-33.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Reporter's Studio Camera +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 3182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-35.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEntertainment + nameSet: True + id: Reporter's Field Camera +- proto: SyndicateBusinessCard + entities: + - uid: 16059 + components: + - type: Transform + parent: 16055 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SyndieFlag + entities: + - uid: 16077 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 +- proto: SyndieHandyFlag + entities: + - uid: 16078 + components: + - type: Transform + pos: -15.5326805,-49.545372 + parent: 2 +- proto: Table + entities: + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + - uid: 195 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 2 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + - uid: 206 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 2 + - uid: 1596 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-18.5 + parent: 2 + - uid: 1673 + components: + - type: Transform + pos: 16.5,2.5 + parent: 2 + - uid: 1681 + components: + - type: Transform + pos: 16.5,-1.5 + parent: 2 + - uid: 2568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-22.5 + parent: 2 + - uid: 2670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-21.5 + parent: 2 + - uid: 6395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-22.5 + parent: 2 + - uid: 8134 + components: + - type: Transform + 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 + rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 2 + - uid: 8260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-20.5 + parent: 2 + - uid: 9618 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - uid: 9619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - uid: 9620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + - uid: 9624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - uid: 9625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,1.5 + parent: 2 + - uid: 9626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + - uid: 9627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-0.5 + parent: 2 + - uid: 9628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 2 + - uid: 11371 + components: + - type: Transform + pos: -5.5,41.5 + parent: 2 + - uid: 11372 + components: + - type: Transform + pos: -5.5,44.5 + parent: 2 + - uid: 11700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,-21.5 + parent: 2 + - uid: 11791 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,-20.5 + parent: 2 + - uid: 12880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 2 + - uid: 12881 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,23.5 + parent: 2 + - uid: 13682 + components: + - type: Transform + pos: -10.5,10.5 + parent: 2 + - uid: 14025 + components: + - type: Transform + pos: -12.5,-36.5 + parent: 2 + - uid: 14035 + components: + - type: Transform + pos: -8.5,42.5 + parent: 2 + - uid: 14036 + components: + - type: Transform + pos: -8.5,43.5 + parent: 2 + - uid: 14106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-17.5 + parent: 2 + - uid: 14107 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -39.5,-32.5 + parent: 2 + - uid: 14210 + components: + - type: Transform + pos: -64.5,-29.5 + parent: 2 + - uid: 15215 + components: + - type: Transform + pos: -64.5,-31.5 + parent: 2 +- proto: TableCarpet + entities: + - uid: 8613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + - uid: 9381 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 + - uid: 9382 + components: + - type: Transform + pos: 37.5,25.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,1.5 + parent: 2 + - uid: 202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 12.5,-1.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 2 + - uid: 293 + components: + - type: Transform + pos: 11.5,1.5 + parent: 2 + - uid: 294 + components: + - type: Transform + pos: 12.5,1.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 2 + - uid: 316 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 2 + - uid: 406 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,9.5 + parent: 2 + - uid: 407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 2 + - uid: 408 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 2 + - uid: 445 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-2.5 + parent: 2 + - uid: 625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: -1.5,39.5 + parent: 2 + - uid: 729 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 2 + - uid: 1623 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - uid: 1624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 + - uid: 1694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 2 + - uid: 1695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 2 + - uid: 3137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - uid: 3170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-32.5 + parent: 2 + - uid: 3171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-32.5 + parent: 2 + - uid: 3176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-32.5 + parent: 2 + - uid: 3241 + components: + - type: Transform + pos: -29.5,-24.5 + parent: 2 + - uid: 3931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 + - uid: 3932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,19.5 + parent: 2 + - uid: 3933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,19.5 + parent: 2 + - uid: 4003 + components: + - type: Transform + pos: 36.5,17.5 + parent: 2 + - uid: 4013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,12.5 + parent: 2 + - uid: 4014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,13.5 + parent: 2 + - uid: 4047 + components: + - type: Transform + pos: 35.5,19.5 + parent: 2 + - uid: 4176 + components: + - type: Transform + pos: 12.5,21.5 + parent: 2 + - uid: 4177 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 4259 + components: + - type: Transform + pos: 9.5,29.5 + parent: 2 + - uid: 4411 + components: + - type: Transform + pos: -32.5,-5.5 + parent: 2 + - uid: 4453 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 4456 + components: + - type: Transform + pos: -31.5,-5.5 + parent: 2 + - uid: 5293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,18.5 + parent: 2 + - uid: 5302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,17.5 + parent: 2 + - uid: 5303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,20.5 + parent: 2 + - uid: 5304 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,20.5 + parent: 2 + - uid: 5887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-14.5 + parent: 2 + - uid: 5888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-14.5 + parent: 2 + - uid: 5889 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-14.5 + parent: 2 + - uid: 6026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-41.5 + parent: 2 + - uid: 6404 + components: + - type: Transform + pos: 16.5,11.5 + parent: 2 + - uid: 6566 + components: + - type: Transform + pos: 4.5,34.5 + parent: 2 + - uid: 6567 + components: + - type: Transform + pos: 4.5,35.5 + parent: 2 + - uid: 6568 + components: + - type: Transform + pos: 4.5,36.5 + parent: 2 + - uid: 6569 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - uid: 6571 + components: + - type: Transform + pos: 16.5,33.5 + parent: 2 + - uid: 6650 + components: + - type: Transform + pos: -2.5,22.5 + parent: 2 + - uid: 6651 + components: + - type: Transform + pos: -1.5,22.5 + parent: 2 + - uid: 6735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,14.5 + parent: 2 + - uid: 6736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,14.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: -3.5,22.5 + parent: 2 + - uid: 7489 + components: + - type: Transform + pos: -1.5,21.5 + parent: 2 + - uid: 7673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,40.5 + parent: 2 + - uid: 7674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,40.5 + parent: 2 + - uid: 7675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,40.5 + parent: 2 + - uid: 8259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - uid: 9401 + components: + - type: Transform + pos: -18.5,14.5 + parent: 2 + - uid: 9504 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,27.5 + parent: 2 + - uid: 9505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 2 + - uid: 11100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,-13.5 + parent: 2 + - uid: 11101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-13.5 + parent: 2 + - uid: 11346 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-43.5 + parent: 2 + - uid: 12728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 + - uid: 12780 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-44.5 + parent: 2 + - uid: 13531 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 13725 + components: + - type: Transform + pos: 26.5,36.5 + parent: 2 + - uid: 14001 + components: + - type: Transform + pos: -30.5,-19.5 + parent: 2 + - uid: 14004 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 14005 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 14006 + components: + - type: Transform + pos: 18.5,11.5 + parent: 2 + - uid: 14007 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 14185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-44.5 + parent: 2 + - uid: 15846 + components: + - type: Transform + pos: 26.5,37.5 + parent: 2 + - uid: 16070 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - uid: 16074 + components: + - type: Transform + pos: -17.5,-49.5 + parent: 2 + - uid: 16080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-42.5 + parent: 2 + - uid: 16148 + components: + - type: Transform + pos: 28.5,2.5 + parent: 2 +- proto: TableCounterWood + entities: + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 2 + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 2 + - uid: 210 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 + - uid: 274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + - uid: 309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + - uid: 310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 2 + - uid: 3061 + components: + - type: Transform + pos: -15.5,-35.5 + parent: 2 + - uid: 3093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-24.5 + parent: 2 + - uid: 3094 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-24.5 + parent: 2 + - uid: 3233 + components: + - type: Transform + pos: -36.5,-22.5 + parent: 2 + - uid: 3236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-20.5 + parent: 2 + - uid: 3237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-20.5 + parent: 2 + - uid: 4553 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 2 + - uid: 4618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-3.5 + parent: 2 + - uid: 6272 + components: + - type: Transform + pos: -16.5,-35.5 + parent: 2 + - uid: 8025 + components: + - type: Transform + pos: 1.5,19.5 + parent: 2 + - uid: 8597 + components: + - type: Transform + pos: 57.5,1.5 + parent: 2 + - uid: 8598 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 8599 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 2 + - uid: 8600 + components: + - type: Transform + pos: 57.5,-1.5 + parent: 2 + - uid: 8601 + components: + - type: Transform + pos: 59.5,0.5 + parent: 2 + - uid: 8602 + components: + - type: Transform + pos: 59.5,-0.5 + parent: 2 + - uid: 10671 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 + - uid: 11317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-35.5 + parent: 2 + - uid: 13765 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,19.5 + parent: 2 + - uid: 15421 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + pos: -25.5,-5.5 + parent: 2 +- proto: TableFancyBlue + entities: + - uid: 4662 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-11.5 + parent: 2 + - uid: 4663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,-10.5 + parent: 2 + - uid: 4664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-11.5 + parent: 2 + - uid: 4665 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,-10.5 + parent: 2 + - uid: 4666 + components: + - type: Transform + pos: -31.5,-9.5 + parent: 2 + - uid: 4667 + components: + - type: Transform + pos: -30.5,-9.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 4035 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 4059 + components: + - type: Transform + pos: 38.5,7.5 + parent: 2 + - uid: 4206 + components: + - type: Transform + pos: 36.5,7.5 + parent: 2 + - uid: 4590 + components: + - type: Transform + pos: 37.5,7.5 + parent: 2 + - uid: 4941 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 5073 + components: + - type: Transform + pos: 42.5,7.5 + parent: 2 + - uid: 5081 + components: + - type: Transform + pos: 34.5,3.5 + parent: 2 + - uid: 5084 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,20.5 + parent: 2 + - uid: 6721 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,19.5 + parent: 2 + - uid: 9040 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 13519 + components: + - type: Transform + pos: 23.5,8.5 + parent: 2 + - uid: 13766 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 16211 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2 + - uid: 16212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,20.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 1025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 2 + - uid: 1044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 + - uid: 1049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 2 + - uid: 1050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 2 + - uid: 1638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 2 + - uid: 1772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-18.5 + parent: 2 + - uid: 1773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 2 + - uid: 1775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 2 + - uid: 1788 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 2 + - uid: 1789 + components: + - type: Transform + pos: 13.5,-18.5 + parent: 2 + - uid: 1807 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-25.5 + parent: 2 + - uid: 1812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 2 + - uid: 1865 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 2 + - uid: 1874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 2 + - uid: 1882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-26.5 + parent: 2 + - uid: 1931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - uid: 1932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - uid: 1999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 2030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-20.5 + parent: 2 + - uid: 2031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-19.5 + parent: 2 + - uid: 2044 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 2052 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 2054 + components: + - type: Transform + pos: -4.5,-22.5 + parent: 2 + - uid: 2079 + components: + - type: Transform + pos: -11.5,-32.5 + parent: 2 + - uid: 2080 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 2081 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 2123 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 2 + - uid: 2124 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 2 + - uid: 2127 + components: + - type: Transform + pos: 1.5,-40.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 2 + - uid: 2189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-28.5 + parent: 2 + - uid: 2543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - uid: 2745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 2 + - uid: 2809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 2 + - uid: 2942 + components: + - type: Transform + pos: 32.5,21.5 + parent: 2 + - uid: 2958 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + - uid: 3423 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 + - uid: 3505 + components: + - type: Transform + pos: -36.5,-35.5 + parent: 2 + - uid: 3513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-32.5 + parent: 2 + - uid: 3517 + components: + - type: Transform + pos: -35.5,-35.5 + parent: 2 + - uid: 3572 + components: + - type: Transform + pos: -34.5,-35.5 + parent: 2 + - uid: 3942 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - uid: 3959 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 3960 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 3961 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 3962 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 3963 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 3964 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 3965 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 3966 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 3990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 2 + - uid: 4054 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 4055 + components: + - type: Transform + pos: 30.5,22.5 + parent: 2 + - uid: 4082 + components: + - type: Transform + pos: 19.5,24.5 + parent: 2 + - uid: 4083 + components: + - type: Transform + pos: 20.5,24.5 + parent: 2 + - uid: 4084 + components: + - type: Transform + pos: 19.5,21.5 + parent: 2 + - uid: 4085 + components: + - type: Transform + pos: 20.5,21.5 + parent: 2 + - uid: 4125 + components: + - type: Transform + pos: -4.5,-20.5 + parent: 2 + - uid: 4195 + components: + - type: Transform + pos: -39.5,-41.5 + parent: 2 + - uid: 4197 + components: + - type: Transform + pos: -39.5,-43.5 + parent: 2 + - uid: 4198 + components: + - type: Transform + pos: -39.5,-42.5 + parent: 2 + - uid: 4299 + components: + - type: Transform + pos: -25.5,33.5 + parent: 2 + - uid: 4940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-16.5 + parent: 2 + - uid: 5083 + components: + - type: Transform + pos: -13.5,10.5 + parent: 2 + - uid: 5128 + components: + - type: Transform + pos: -27.5,14.5 + parent: 2 + - uid: 5129 + components: + - type: Transform + pos: -26.5,11.5 + parent: 2 + - uid: 5130 + components: + - type: Transform + pos: -24.5,14.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 + parent: 2 + - uid: 6207 + components: + - type: Transform + pos: -38.5,-43.5 + parent: 2 + - uid: 6293 + components: + - type: Transform + pos: -34.5,-46.5 + parent: 2 + - uid: 6361 + components: + - type: Transform + pos: 25.5,-27.5 + parent: 2 + - uid: 6390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 2 + - uid: 6578 + components: + - type: Transform + pos: 1.5,38.5 + parent: 2 + - uid: 6579 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 6580 + components: + - type: Transform + pos: 1.5,40.5 + parent: 2 + - uid: 6623 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 6647 + components: + - type: Transform + pos: -1.5,29.5 + parent: 2 + - uid: 6713 + components: + - type: Transform + pos: -23.5,33.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 + rot: 1.5707963267948966 rad + pos: -4.5,29.5 + parent: 2 + - uid: 7912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,-25.5 + parent: 2 + - uid: 8091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - uid: 10099 + components: + - type: Transform + pos: -14.5,-5.5 + parent: 2 + - uid: 10100 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 2 + - uid: 10356 + components: + - type: Transform + pos: -17.5,-8.5 + parent: 2 + - uid: 10357 + components: + - type: Transform + pos: -16.5,-8.5 + parent: 2 + - uid: 10360 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 10363 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 10462 + components: + - type: Transform + pos: 24.5,32.5 + parent: 2 + - uid: 13503 + components: + - type: Transform + pos: -19.5,-1.5 + parent: 2 + - uid: 13504 + components: + - type: Transform + pos: -18.5,-1.5 + parent: 2 + - uid: 14985 + components: + - 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 + rot: 3.141592653589793 rad + pos: 38.5,-16.5 + parent: 2 + - uid: 16197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-17.5 + parent: 2 + - uid: 16199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 2 +- proto: TableWood + entities: + - uid: 2139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 2 + - uid: 2149 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 2 + - uid: 2150 + components: + - type: Transform + pos: 1.5,-32.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: -15.5,2.5 + parent: 2 + - uid: 6256 + components: + - type: Transform + pos: -17.5,-33.5 + parent: 2 + - uid: 6257 + components: + - type: Transform + pos: -14.5,-33.5 + parent: 2 + - uid: 6588 + components: + - type: Transform + pos: 0.5,34.5 + parent: 2 + - uid: 12854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-19.5 + parent: 2 + - uid: 14133 + components: + - type: Transform + pos: -21.5,-18.5 + parent: 2 + - uid: 14134 + components: + - type: Transform + pos: -20.5,-18.5 + parent: 2 + - uid: 14233 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 2 + - uid: 14235 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 +- proto: TegCenter + entities: + - uid: 1155 + components: + - type: Transform + pos: 26.5,-21.5 + parent: 2 +- proto: TegCirculator + entities: + - uid: 2459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-20.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 2462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-22.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServerCircuitboard + entities: + - uid: 8502 + components: + - type: Transform + pos: 27.554459,-3.581936 + parent: 2 +- proto: TelecomServerFilledCargo + entities: + - uid: 2705 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 +- proto: TelecomServerFilledCommand + entities: + - uid: 2897 + components: + - type: Transform + pos: 26.5,-1.5 + parent: 2 +- proto: TelecomServerFilledCommon + entities: + - uid: 1617 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 +- proto: TelecomServerFilledEngineering + entities: + - uid: 5575 + components: + - type: Transform + pos: 29.5,-1.5 + parent: 2 +- proto: TelecomServerFilledMedical + entities: + - uid: 2706 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 +- proto: TelecomServerFilledScience + entities: + - uid: 5604 + components: + - type: Transform + pos: 28.5,-1.5 + parent: 2 +- proto: TelecomServerFilledSecurity + entities: + - uid: 2716 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 +- proto: TelecomServerFilledService + entities: + - uid: 5605 + components: + - type: Transform + pos: 28.5,-3.5 + parent: 2 +- proto: TeslaCoil + entities: + - uid: 1431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 54.5,-16.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 53.5,-24.5 + parent: 2 + - uid: 2535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-27.5 + parent: 2 + - uid: 2572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-28.5 + parent: 2 + - uid: 6378 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-26.5 + parent: 2 +- proto: TeslaGenerator + entities: + - uid: 1174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-20.5 + parent: 2 +- proto: TeslaGroundingRod + entities: + - uid: 1443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-27.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,-16.5 + parent: 2 + - uid: 2700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,-24.5 + parent: 2 + - uid: 6377 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,-28.5 + parent: 2 +- proto: ThrusterFlatpack + entities: + - uid: 6180 + components: + - type: Transform + pos: -39.499214,-42.028465 + parent: 2 +- proto: ThrusterMachineCircuitboard + entities: + - uid: 6182 + components: + - type: Transform + pos: -39.499214,-42.809715 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 2164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-26.5 + parent: 2 + - uid: 2165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-30.5 + parent: 2 + - uid: 10762 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-36.5 + parent: 2 + - uid: 11236 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-34.5 + parent: 2 + - uid: 13539 + components: + - type: Transform + pos: -4.5,-40.5 + parent: 2 +- proto: ToolboxElectricalFilled + entities: + - uid: 7464 + components: + - type: Transform + pos: -3.4153347,22.762032 + parent: 2 + - uid: 7914 + components: + - type: Transform + pos: 27.78968,-15.309975 + parent: 2 + - uid: 8064 + components: + - type: Transform + pos: 27.561893,-3.311582 + parent: 2 + - uid: 8485 + components: + - type: Transform + pos: 34.843536,-10.163117 + parent: 2 +- proto: ToolboxEmergencyFilled + entities: + - uid: 8494 + components: + - type: Transform + pos: 37.66633,-5.694439 + parent: 2 +- proto: ToolboxGoldFilled + entities: + - uid: 10367 + components: + - type: Transform + pos: -17.025555,-8.357649 + 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: 7469 + components: + - type: Transform + pos: -3.4778347,22.480782 + parent: 2 + - uid: 8056 + components: + - type: Transform + pos: 34.280643,-20.732601 + parent: 2 + - uid: 12232 + components: + - type: Transform + pos: 43.536335,-6.2626333 + parent: 2 +- proto: ToyFigurineCaptain + entities: + - uid: 15427 + components: + - type: Transform + pos: -25.499426,-3.5023074 + parent: 2 +- proto: ToyFigurineFootsoldier + entities: + - uid: 15224 + components: + - type: Transform + pos: -31.586819,-10.64673 + parent: 2 +- proto: ToyFigurineNukie + entities: + - uid: 15600 + components: + - type: Transform + pos: -2.5772243,56.650303 + parent: 2 +- proto: ToyFigurineNukieCommander + entities: + - uid: 15599 + components: + - type: Transform + pos: -3.1240993,57.072178 + parent: 2 +- proto: ToyFigurineNukieElite + entities: + - uid: 15597 + components: + - type: Transform + pos: -3.684544,56.77658 + parent: 2 +- proto: ToyFigurineSecurity + entities: + - uid: 15223 + components: + - type: Transform + pos: -30.743069,-10.52173 + parent: 2 +- proto: ToyNuke + entities: + - uid: 15598 + components: + - type: Transform + pos: -3.2022243,56.353428 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 15961 + components: + - type: Transform + pos: -43.505856,-35.69904 + parent: 2 +- proto: ToySword + entities: + - uid: 15601 + components: + - type: Transform + pos: -3.0147243,56.947857 + parent: 2 +- proto: TrashBag + entities: + - uid: 417 + components: + - type: Transform + pos: -5.373147,9.606501 + parent: 2 + - uid: 418 + components: + - type: Transform + pos: -5.498147,9.419001 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 7657 + components: + - type: Transform + parent: 275 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9933 + components: + - type: Transform + parent: 275 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TreasureCoinGold + entities: + - uid: 10377 + components: + - type: Transform + pos: -13.572077,-7.641073 + parent: 2 +- proto: TreasureCoinSilver + entities: + - uid: 10378 + components: + - type: Transform + pos: -13.290827,-7.359823 + parent: 2 +- proto: TromboneInstrument + entities: + - uid: 15613 + components: + - type: Transform + pos: 10.550298,-22.537308 + parent: 2 +- proto: TrumpetInstrument + entities: + - uid: 15609 + components: + - type: Transform + pos: 0.51695275,34.581173 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 4267 + components: + - type: Transform + pos: 12.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4266: + - Left: Forward + - Right: Reverse + - Middle: Off + 4265: + - Left: Forward + - Right: Reverse + - Middle: Off + 4264: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 6529 + components: + - type: Transform + pos: 5.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6524: + - Left: Forward + - Right: Reverse + - Middle: Off + 6523: + - Left: Forward + - Right: Reverse + - Middle: Off + 6522: + - Left: Forward + - Right: Reverse + - Middle: Off + 6521: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 6530 + components: + - type: Transform + pos: 11.5,39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6528: + - Left: Forward + - Right: Reverse + - Middle: Off + 6527: + - Left: Forward + - Right: Reverse + - Middle: Off + 6526: + - Left: Forward + - Right: Reverse + - Middle: Off + 6525: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 9351 + components: + - type: Transform + pos: 49.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 14116: + - Left: Forward + - Right: Reverse + - Middle: Off + 14113: + - Left: Forward + - Right: Reverse + - Middle: Off + 14114: + - Left: Forward + - Right: Reverse + - Middle: Off + 14118: + - Left: Forward + - Right: Reverse + - Middle: Off + 14117: + - Left: Forward + - Right: Reverse + - Middle: Off + 9349: + - Left: Forward + - Right: Reverse + - Middle: Off + 14115: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 15084 + components: + - type: Transform + pos: 23.5,37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4277: + - Left: Forward + - Right: Reverse + - Middle: Off + 2827: + - Left: Forward + - Right: Reverse + - Middle: Off + 4279: + - Left: Forward + - Right: Reverse + - Middle: Off + 14913: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 4196 + components: + - type: Transform + pos: -39.5,-40.5 + parent: 2 + - uid: 6183 + components: + - type: Transform + pos: -35.5,-42.5 + parent: 2 + - uid: 9121 + components: + - type: Transform + pos: 23.5,-12.5 + parent: 2 + - uid: 15844 + components: + - type: Transform + pos: 43.5,32.5 + parent: 2 +- proto: UniformPrinter + entities: + - uid: 1787 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 2 +- proto: UniformShortsRed + entities: + - uid: 15831 + components: + - type: Transform + pos: -71.21286,-10.656272 + parent: 2 +- proto: UniformShortsRedWithTop + entities: + - uid: 15832 + components: + - type: Transform + pos: -70.76537,-10.921722 + parent: 2 +- proto: Urn + entities: + - uid: 3244 + components: + - type: Transform + pos: -29.522558,-24.31136 + parent: 2 +- proto: Vaccinator + entities: + - uid: 4089 + components: + - type: Transform + pos: 19.5,22.5 + parent: 2 +- proto: VariantCubeBox + entities: + - uid: 689 + components: + - type: Transform + pos: 11.476221,4.6113887 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 379 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 314 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 2 + - uid: 8593 + components: + - type: Transform + pos: 58.5,1.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 6558 + components: + - type: Transform + pos: 9.5,32.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 1778 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 3231 + components: + - type: Transform + pos: -30.5,-24.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 4490 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 113 + components: + - type: Transform + pos: 9.5,-3.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 3948 + components: + - type: Transform + pos: 24.5,16.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 3951 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 450 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 2141 + components: + - type: Transform + pos: -0.5,-32.5 + parent: 2 + - uid: 13500 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 2 + - uid: 13514 + components: + - type: Transform + pos: -23.5,-17.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 4174 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 5904 + components: + - type: Transform + pos: -19.5,-12.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 1627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 2 +- proto: VendingMachineCuraDrobe + entities: + - uid: 3111 + components: + - type: Transform + pos: -22.5,-25.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 2040 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 608 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 +- proto: VendingMachineDonut + entities: + - uid: 5903 + components: + - type: Transform + pos: -19.5,-13.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 8071 + components: + - type: Transform + pos: 26.5,-10.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 6381 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 +- proto: VendingMachineGames + entities: + - uid: 3133 + components: + - type: Transform + pos: -21.5,-23.5 + parent: 2 +- proto: VendingMachineHappyHonk + entities: + - uid: 13685 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 5106 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 405 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 6019 + components: + - type: Transform + pos: -17.5,-43.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 4028 + components: + - type: Transform + pos: 34.5,7.5 + parent: 2 +- proto: VendingMachineMediDrobe + entities: + - uid: 4027 + components: + - type: Transform + pos: 38.5,20.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 13583 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - uid: 14198 + components: + - type: Transform + pos: -9.5,-46.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 5124 + components: + - type: Transform + pos: -26.5,17.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 7669 + components: + - type: Transform + pos: 21.5,34.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 2051 + components: + - type: Transform + pos: -5.5,-20.5 + parent: 2 +- proto: VendingMachineSecDrobe + entities: + - uid: 5671 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 376 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 14196 + components: + - type: Transform + pos: -9.5,-45.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 2125 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 7908 + components: + - type: Transform + pos: 38.5,-24.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1202 + components: + - type: Transform + pos: 43.5,-30.5 + parent: 2 + - uid: 1732 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 2 + - uid: 4199 + components: + - type: Transform + pos: -36.5,-46.5 + parent: 2 + - uid: 7672 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 + - uid: 10799 + components: + - type: Transform + pos: 48.5,18.5 + parent: 2 + - uid: 14030 + components: + - type: Transform + pos: -22.5,57.5 + parent: 2 + - uid: 14274 + components: + - type: Transform + pos: -68.5,-31.5 + parent: 2 +- proto: VendingMachineTheater + entities: + - uid: 307 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 4173 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 +- proto: VendingMachineVendomat + entities: + - uid: 5126 + components: + - type: Transform + pos: -27.5,17.5 + parent: 2 + - uid: 8100 + components: + - type: Transform + pos: -1.5,19.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 4087 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 +- proto: VendingMachineWinter + entities: + - uid: 4175 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 +- proto: VendingMachineYouTool + entities: + - uid: 6353 + components: + - type: Transform + pos: 31.5,-5.5 + parent: 2 + - uid: 8242 + components: + - type: Transform + pos: -1.5,20.5 + parent: 2 +- proto: ViolinInstrument + entities: + - uid: 15608 + components: + - type: Transform + pos: 32.47162,26.28853 + parent: 2 +- proto: WallReinforced + entities: + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-10.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-10.5 + parent: 2 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-11.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-11.5 + parent: 2 + - uid: 170 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 1027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-12.5 + parent: 2 + - uid: 1030 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-12.5 + parent: 2 + - uid: 1033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - uid: 1034 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-10.5 + parent: 2 + - uid: 1042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 2 + - uid: 1059 + components: + - type: Transform + pos: 24.5,-26.5 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: 25.5,-4.5 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: 36.5,-27.5 + parent: 2 + - uid: 1082 + components: + - type: Transform + pos: 32.5,-0.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: 34.5,-0.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 28.5,-0.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + pos: 25.5,-1.5 + parent: 2 + - uid: 1101 + components: + - type: Transform + pos: 38.5,-6.5 + parent: 2 + - uid: 1114 + components: + - type: Transform + pos: 34.5,0.5 + parent: 2 + - uid: 1137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 2 + - uid: 1138 + components: + - type: Transform + pos: 22.5,-15.5 + parent: 2 + - uid: 1154 + components: + - type: Transform + pos: 40.5,-2.5 + parent: 2 + - uid: 1158 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 1159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 2 + - uid: 1188 + components: + - type: Transform + pos: 29.5,-16.5 + parent: 2 + - uid: 1189 + components: + - type: Transform + pos: 24.5,-16.5 + parent: 2 + - uid: 1191 + components: + - type: Transform + pos: 26.5,-16.5 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: 36.5,-25.5 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 42.5,-7.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: 43.5,-15.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: 43.5,-16.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 38.5,-17.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 41.5,-17.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-12.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-12.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-23.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-23.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-18.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-23.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-17.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-25.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-25.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-28.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-29.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: 37.5,-32.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: 25.5,-40.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-22.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: 38.5,-40.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 39.5,-40.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-13.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 53.5,-12.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: 51.5,-12.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: 55.5,-12.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: 61.5,-20.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: 61.5,-18.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: 53.5,-28.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: 54.5,-28.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: 60.5,-28.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 61.5,-28.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 47.5,-28.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 43.5,-29.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 61.5,-12.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 61.5,-13.5 + parent: 2 + - uid: 1557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 2 + - uid: 1611 + components: + - type: Transform + pos: 22.5,-20.5 + parent: 2 + - uid: 1613 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-22.5 + parent: 2 + - uid: 1615 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-22.5 + parent: 2 + - uid: 1632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-19.5 + parent: 2 + - uid: 1640 + components: + - type: Transform + pos: 36.5,-28.5 + parent: 2 + - uid: 1658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,9.5 + parent: 2 + - uid: 1659 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 2 + - uid: 1692 + components: + - type: Transform + pos: 38.5,-8.5 + parent: 2 + - uid: 1703 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 2 + - uid: 1706 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 2 + - uid: 1707 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 2 + - uid: 1708 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 1711 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 2 + - uid: 1716 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 2 + - uid: 1718 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 2 + - uid: 1722 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 2 + - uid: 1723 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 2 + - uid: 1739 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 2 + - uid: 1740 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 2 + - uid: 1742 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 2 + - uid: 1743 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 2 + - uid: 1749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-18.5 + parent: 2 + - uid: 1751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-20.5 + parent: 2 + - uid: 1753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-20.5 + parent: 2 + - uid: 1757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 1758 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-22.5 + parent: 2 + - uid: 1759 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 1761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 2 + - uid: 1764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 2 + - uid: 1765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-22.5 + parent: 2 + - uid: 1794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + - uid: 1797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + - uid: 1802 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 1805 + components: + - type: Transform + pos: 3.5,-21.5 + parent: 2 + - uid: 1806 + components: + - type: Transform + pos: 3.5,-27.5 + parent: 2 + - uid: 1808 + components: + - type: Transform + pos: 3.5,-20.5 + parent: 2 + - uid: 1810 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 2 + - uid: 1811 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 2 + - uid: 1813 + components: + - type: Transform + pos: -0.5,-22.5 + parent: 2 + - uid: 1814 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-24.5 + parent: 2 + - uid: 1815 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 2 + - uid: 1816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 2 + - uid: 1818 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 2 + - uid: 1821 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 2 + - uid: 1823 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 2 + - uid: 1825 + components: + - type: Transform + pos: 3.5,-22.5 + parent: 2 + - uid: 1826 + components: + - type: Transform + pos: 3.5,-25.5 + parent: 2 + - uid: 1828 + components: + - type: Transform + pos: 3.5,-24.5 + parent: 2 + - uid: 1831 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 2 + - uid: 1834 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 2 + - uid: 1836 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 2 + - uid: 1838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 2 + - uid: 1845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-23.5 + parent: 2 + - uid: 1846 + components: + - type: Transform + pos: 4.5,-19.5 + parent: 2 + - uid: 1847 + components: + - type: Transform + pos: 4.5,-20.5 + parent: 2 + - uid: 1849 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 2 + - uid: 1856 + components: + - type: Transform + pos: -0.5,-19.5 + parent: 2 + - uid: 1857 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 2 + - uid: 1859 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 1861 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 2 + - uid: 1862 + components: + - type: Transform + pos: 4.5,-22.5 + parent: 2 + - uid: 1867 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 2 + - uid: 1869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 2 + - uid: 1872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-15.5 + parent: 2 + - uid: 1873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 2 + - uid: 1877 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-20.5 + parent: 2 + - uid: 1879 + components: + - type: Transform + pos: 0.5,-27.5 + parent: 2 + - uid: 1881 + components: + - type: Transform + pos: 1.5,-27.5 + parent: 2 + - uid: 1886 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-16.5 + parent: 2 + - uid: 1887 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-19.5 + parent: 2 + - uid: 1888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 2 + - uid: 1889 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 2 + - uid: 1896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 2 + - uid: 1902 + components: + - type: Transform + pos: 1.5,-28.5 + parent: 2 + - uid: 1906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-23.5 + parent: 2 + - uid: 1911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-24.5 + parent: 2 + - uid: 1915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-27.5 + parent: 2 + - uid: 1917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-27.5 + parent: 2 + - uid: 1919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 1921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-30.5 + parent: 2 + - uid: 1922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-31.5 + parent: 2 + - uid: 1924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-31.5 + parent: 2 + - uid: 1926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-31.5 + parent: 2 + - uid: 1941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-22.5 + parent: 2 + - uid: 1945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 2 + - uid: 1946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 2 + - uid: 1954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 2 + - uid: 1957 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 2 + - uid: 1962 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 1963 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 1964 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 1965 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 1967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 2 + - uid: 1968 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 2 + - uid: 1973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 2 + - uid: 1975 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 1977 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 1981 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - uid: 1982 + components: + - type: Transform + pos: -13.5,-33.5 + parent: 2 + - uid: 1983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 2 + - uid: 1998 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 2002 + components: + - type: Transform + pos: 2.5,-39.5 + parent: 2 + - uid: 2003 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 2004 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 2 + - uid: 2005 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 2008 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 2010 + components: + - type: Transform + pos: 4.5,-31.5 + parent: 2 + - uid: 2059 + components: + - type: Transform + pos: -13.5,-35.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + pos: -12.5,-37.5 + parent: 2 + - uid: 2063 + components: + - type: Transform + pos: -10.5,-37.5 + parent: 2 + - uid: 2065 + components: + - type: Transform + pos: -13.5,-39.5 + parent: 2 + - uid: 2066 + components: + - type: Transform + pos: -13.5,-40.5 + parent: 2 + - uid: 2068 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 2 + - uid: 2070 + components: + - type: Transform + pos: -9.5,-40.5 + parent: 2 + - uid: 2085 + components: + - type: Transform + pos: 5.5,-32.5 + parent: 2 + - uid: 2089 + components: + - type: Transform + pos: 5.5,-36.5 + parent: 2 + - uid: 2092 + components: + - type: Transform + pos: 5.5,-39.5 + parent: 2 + - uid: 2093 + components: + - type: Transform + pos: 3.5,-35.5 + parent: 2 + - uid: 2097 + components: + - type: Transform + pos: -7.5,-39.5 + parent: 2 + - uid: 2106 + components: + - type: Transform + pos: 1.5,-35.5 + parent: 2 + - uid: 2108 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 2111 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 2182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 2 + - uid: 2184 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 2 + - uid: 2191 + components: + - type: Transform + pos: 19.5,-30.5 + parent: 2 + - uid: 2212 + components: + - type: Transform + pos: 21.5,-35.5 + parent: 2 + - uid: 2213 + components: + - type: Transform + pos: 21.5,-36.5 + parent: 2 + - uid: 2214 + components: + - type: Transform + pos: 21.5,-37.5 + parent: 2 + - uid: 2225 + components: + - type: Transform + pos: 22.5,-34.5 + parent: 2 + - uid: 2227 + components: + - type: Transform + pos: 24.5,-34.5 + parent: 2 + - uid: 2228 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 + - uid: 2231 + components: + - type: Transform + pos: 24.5,-36.5 + parent: 2 + - uid: 2232 + components: + - type: Transform + pos: 25.5,-36.5 + parent: 2 + - uid: 2233 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 + - uid: 2235 + components: + - type: Transform + pos: 24.5,-38.5 + parent: 2 + - uid: 2236 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 + - uid: 2237 + components: + - type: Transform + pos: 28.5,-41.5 + parent: 2 + - uid: 2242 + components: + - type: Transform + pos: 27.5,-32.5 + parent: 2 + - uid: 2245 + components: + - type: Transform + pos: 27.5,-33.5 + parent: 2 + - uid: 2246 + components: + - type: Transform + pos: 38.5,-32.5 + parent: 2 + - uid: 2250 + components: + - type: Transform + pos: 27.5,-41.5 + parent: 2 + - uid: 2254 + components: + - type: Transform + pos: 26.5,-32.5 + parent: 2 + - uid: 2255 + components: + - type: Transform + pos: 22.5,-32.5 + parent: 2 + - uid: 2258 + components: + - type: Transform + pos: 21.5,-32.5 + parent: 2 + - uid: 2261 + components: + - type: Transform + pos: 41.5,-39.5 + parent: 2 + - uid: 2262 + components: + - type: Transform + pos: 41.5,-34.5 + parent: 2 + - uid: 2264 + components: + - type: Transform + pos: 41.5,-37.5 + parent: 2 + - uid: 2266 + components: + - type: Transform + pos: 41.5,-35.5 + parent: 2 + - uid: 2270 + components: + - type: Transform + pos: 38.5,-34.5 + parent: 2 + - uid: 2272 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 2 + - uid: 2273 + components: + - type: Transform + pos: 40.5,-36.5 + parent: 2 + - uid: 2274 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 + - uid: 2275 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 + - uid: 2276 + components: + - type: Transform + pos: 38.5,-38.5 + parent: 2 + - uid: 2277 + components: + - type: Transform + pos: 29.5,-42.5 + parent: 2 + - uid: 2278 + components: + - type: Transform + pos: 40.5,-38.5 + parent: 2 + - uid: 2279 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 2288 + components: + - type: Transform + pos: 44.5,-30.5 + parent: 2 + - uid: 2294 + components: + - type: Transform + pos: 34.5,-42.5 + parent: 2 + - uid: 2295 + components: + - type: Transform + pos: 21.5,-39.5 + parent: 2 + - uid: 2298 + components: + - type: Transform + pos: 22.5,-40.5 + parent: 2 + - uid: 2299 + components: + - type: Transform + pos: 21.5,-40.5 + parent: 2 + - uid: 2302 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - uid: 2305 + components: + - type: Transform + pos: 44.5,-32.5 + parent: 2 + - uid: 2319 + components: + - type: Transform + pos: 33.5,-42.5 + parent: 2 + - uid: 2350 + components: + - type: Transform + pos: -69.5,-31.5 + parent: 2 + - uid: 2364 + components: + - type: Transform + pos: 31.5,-46.5 + parent: 2 + - uid: 2365 + components: + - type: Transform + pos: 29.5,-46.5 + parent: 2 + - uid: 2366 + components: + - type: Transform + pos: 29.5,-43.5 + parent: 2 + - uid: 2518 + components: + - type: Transform + pos: 36.5,0.5 + parent: 2 + - uid: 2527 + components: + - type: Transform + pos: 40.5,-13.5 + parent: 2 + - uid: 2528 + components: + - type: Transform + pos: 38.5,-7.5 + parent: 2 + - uid: 2529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-2.5 + parent: 2 + - uid: 2530 + components: + - type: Transform + pos: 24.5,-27.5 + parent: 2 + - uid: 2544 + components: + - type: Transform + pos: 44.5,-13.5 + parent: 2 + - uid: 2557 + components: + - type: Transform + pos: 34.5,-7.5 + parent: 2 + - uid: 2573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-13.5 + parent: 2 + - uid: 2599 + components: + - type: Transform + pos: 33.5,-45.5 + parent: 2 + - uid: 2630 + components: + - type: Transform + pos: 25.5,-5.5 + parent: 2 + - uid: 2638 + components: + - type: Transform + pos: 20.5,-30.5 + parent: 2 + - uid: 2639 + components: + - type: Transform + pos: 20.5,-32.5 + parent: 2 + - uid: 2649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,9.5 + parent: 2 + - uid: 2650 + components: + - type: Transform + pos: 6.5,-32.5 + parent: 2 + - uid: 2653 + components: + - type: Transform + pos: 9.5,-32.5 + parent: 2 + - uid: 2656 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 2 + - uid: 2659 + components: + - type: Transform + pos: 18.5,-32.5 + parent: 2 + - uid: 2662 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 2 + - uid: 2664 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 2 + - uid: 2665 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 2 + - uid: 2717 + components: + - type: Transform + pos: 39.5,-13.5 + parent: 2 + - uid: 2746 + components: + - type: Transform + pos: 28.5,-9.5 + parent: 2 + - uid: 2771 + components: + - type: Transform + pos: 11.5,-30.5 + parent: 2 + - uid: 2774 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 2 + - uid: 2789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-31.5 + parent: 2 + - uid: 2804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-16.5 + parent: 2 + - uid: 2957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,45.5 + parent: 2 + - uid: 2978 + components: + - type: Transform + pos: 24.5,-29.5 + parent: 2 + - uid: 2993 + components: + - type: Transform + pos: -31.5,29.5 + parent: 2 + - uid: 3031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-42.5 + parent: 2 + - uid: 3135 + components: + - type: Transform + pos: -20.5,-2.5 + parent: 2 + - uid: 3197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,-28.5 + parent: 2 + - uid: 3200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 2 + - uid: 3201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-26.5 + parent: 2 + - uid: 3202 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-25.5 + parent: 2 + - uid: 3432 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 + - uid: 3442 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 + - uid: 3443 + components: + - type: Transform + pos: -27.5,27.5 + parent: 2 + - uid: 3446 + components: + - type: Transform + pos: -30.5,-46.5 + parent: 2 + - uid: 3449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-29.5 + parent: 2 + - uid: 3465 + components: + - type: Transform + pos: 30.5,-4.5 + parent: 2 + - uid: 3467 + components: + - type: Transform + pos: -27.5,30.5 + parent: 2 + - uid: 3471 + components: + - type: Transform + pos: -0.5,30.5 + parent: 2 + - uid: 3476 + components: + - type: Transform + pos: -59.5,-27.5 + parent: 2 + - uid: 3478 + components: + - type: Transform + pos: -47.5,-28.5 + parent: 2 + - uid: 3482 + components: + - type: Transform + pos: -46.5,-32.5 + parent: 2 + - uid: 3487 + components: + - type: Transform + pos: -53.5,-33.5 + parent: 2 + - uid: 3489 + components: + - type: Transform + pos: -51.5,-27.5 + parent: 2 + - uid: 3491 + components: + - type: Transform + pos: -63.5,-28.5 + parent: 2 + - uid: 3492 + components: + - type: Transform + pos: -45.5,-32.5 + parent: 2 + - uid: 3495 + components: + - type: Transform + pos: -32.5,-32.5 + parent: 2 + - uid: 3497 + components: + - type: Transform + pos: -33.5,-32.5 + parent: 2 + - uid: 3498 + components: + - type: Transform + pos: -33.5,-36.5 + parent: 2 + - uid: 3500 + components: + - type: Transform + pos: -37.5,-34.5 + parent: 2 + - uid: 3516 + components: + - type: Transform + pos: -37.5,-35.5 + parent: 2 + - uid: 3520 + components: + - type: Transform + pos: -32.5,-35.5 + parent: 2 + - uid: 3538 + components: + - type: Transform + pos: -27.5,-46.5 + parent: 2 + - uid: 3540 + components: + - type: Transform + pos: -26.5,-47.5 + parent: 2 + - uid: 3542 + components: + - type: Transform + pos: -24.5,-47.5 + parent: 2 + - uid: 3543 + components: + - type: Transform + pos: -23.5,-47.5 + parent: 2 + - uid: 3545 + components: + - type: Transform + pos: -21.5,-47.5 + parent: 2 + - uid: 3546 + components: + - type: Transform + pos: -20.5,-47.5 + parent: 2 + - uid: 3550 + components: + - type: Transform + pos: -51.5,-33.5 + parent: 2 + - uid: 3551 + components: + - type: Transform + pos: -63.5,-33.5 + parent: 2 + - uid: 3558 + components: + - 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: 3573 + components: + - type: Transform + pos: -36.5,-36.5 + parent: 2 + - uid: 3574 + components: + - type: Transform + pos: -37.5,-36.5 + parent: 2 + - uid: 3576 + components: + - type: Transform + pos: -35.5,-36.5 + parent: 2 + - uid: 3584 + components: + - type: Transform + pos: -59.5,-32.5 + parent: 2 + - uid: 3589 + components: + - type: Transform + pos: -44.5,-28.5 + parent: 2 + - uid: 3600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-32.5 + parent: 2 + - uid: 3606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-28.5 + parent: 2 + - uid: 3607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -67.5,-32.5 + parent: 2 + - uid: 3614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-38.5 + parent: 2 + - uid: 3668 + components: + - type: Transform + pos: -49.5,-10.5 + parent: 2 + - uid: 3677 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 3682 + components: + - type: Transform + pos: -16.5,-2.5 + parent: 2 + - uid: 3685 + components: + - type: Transform + pos: -55.5,-15.5 + parent: 2 + - uid: 3687 + components: + - type: Transform + pos: -51.5,-14.5 + parent: 2 + - uid: 3688 + components: + - type: Transform + pos: -53.5,-15.5 + parent: 2 + - uid: 3693 + components: + - type: Transform + pos: -51.5,-13.5 + parent: 2 + - uid: 3696 + components: + - type: Transform + pos: -43.5,-27.5 + parent: 2 + - uid: 3697 + components: + - type: Transform + pos: -18.5,-2.5 + parent: 2 + - uid: 3698 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 2 + - uid: 3700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-5.5 + parent: 2 + - uid: 3708 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 + - uid: 3709 + components: + - type: Transform + pos: -56.5,-13.5 + parent: 2 + - uid: 3716 + components: + - type: Transform + pos: -48.5,-10.5 + parent: 2 + - uid: 3717 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 3725 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,17.5 + parent: 2 + - uid: 3738 + components: + - type: Transform + pos: -42.5,-20.5 + parent: 2 + - uid: 3741 + components: + - type: Transform + pos: -42.5,-24.5 + parent: 2 + - uid: 3743 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 2 + - uid: 3747 + components: + - type: Transform + pos: -42.5,-22.5 + parent: 2 + - uid: 3748 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 2 + - uid: 3749 + components: + - type: Transform + pos: -42.5,-21.5 + parent: 2 + - uid: 3755 + components: + - type: Transform + pos: -43.5,-26.5 + parent: 2 + - uid: 3768 + components: + - type: Transform + pos: 18.5,20.5 + parent: 2 + - uid: 3779 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,17.5 + parent: 2 + - uid: 3781 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,17.5 + parent: 2 + - uid: 3782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + - uid: 3801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,13.5 + parent: 2 + - uid: 3804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,16.5 + parent: 2 + - uid: 3805 + components: + - type: Transform + pos: 23.5,17.5 + parent: 2 + - uid: 3830 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 3832 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 3834 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 3835 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 3836 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 3840 + components: + - type: Transform + pos: 33.5,22.5 + parent: 2 + - uid: 3842 + components: + - type: Transform + pos: 33.5,24.5 + parent: 2 + - uid: 3844 + components: + - type: Transform + pos: 30.5,24.5 + parent: 2 + - uid: 3845 + components: + - type: Transform + pos: 29.5,25.5 + parent: 2 + - uid: 3846 + components: + - type: Transform + pos: 29.5,26.5 + parent: 2 + - uid: 3848 + components: + - type: Transform + pos: 31.5,27.5 + parent: 2 + - uid: 3850 + components: + - type: Transform + pos: 33.5,27.5 + parent: 2 + - uid: 3852 + components: + - type: Transform + pos: 33.5,26.5 + parent: 2 + - uid: 3853 + components: + - type: Transform + pos: 33.5,25.5 + parent: 2 + - uid: 3857 + components: + - type: Transform + pos: 24.5,24.5 + parent: 2 + - uid: 3858 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 3859 + components: + - type: Transform + pos: 23.5,24.5 + parent: 2 + - uid: 3862 + components: + - type: Transform + pos: 24.5,27.5 + parent: 2 + - uid: 3863 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 3865 + components: + - type: Transform + pos: 23.5,27.5 + parent: 2 + - uid: 3870 + components: + - type: Transform + pos: 20.5,27.5 + parent: 2 + - uid: 3872 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 3874 + components: + - type: Transform + pos: 18.5,21.5 + parent: 2 + - uid: 3876 + components: + - type: Transform + pos: 18.5,24.5 + parent: 2 + - uid: 3878 + components: + - type: Transform + pos: 20.5,20.5 + parent: 2 + - uid: 3881 + components: + - type: Transform + pos: 21.5,20.5 + parent: 2 + - uid: 3884 + components: + - type: Transform + pos: 18.5,25.5 + parent: 2 + - uid: 3899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,9.5 + parent: 2 + - uid: 3911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,45.5 + parent: 2 + - uid: 3936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - uid: 4005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,54.5 + parent: 2 + - uid: 4010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,52.5 + parent: 2 + - uid: 4031 + components: + - type: Transform + pos: 30.5,-26.5 + parent: 2 + - uid: 4127 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 4133 + components: + - type: Transform + pos: 44.5,0.5 + parent: 2 + - uid: 4135 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 + - uid: 4137 + components: + - type: Transform + pos: 41.5,1.5 + parent: 2 + - uid: 4257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-48.5 + parent: 2 + - uid: 4289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 2 + - uid: 4290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-42.5 + parent: 2 + - uid: 4291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,-40.5 + parent: 2 + - uid: 4298 + components: + - type: Transform + pos: -24.5,29.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + pos: -30.5,28.5 + parent: 2 + - uid: 4302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-31.5 + parent: 2 + - uid: 4322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 + - uid: 4330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 2 + - uid: 4331 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-8.5 + parent: 2 + - uid: 4334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + - uid: 4336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 + - uid: 4337 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 4344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 2 + - uid: 4354 + components: + - type: Transform + pos: -34.5,-4.5 + parent: 2 + - uid: 4357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 + - uid: 4362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 2 + - uid: 4365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-10.5 + parent: 2 + - uid: 4371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,-10.5 + parent: 2 + - uid: 4373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 4376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 4381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 2 + - uid: 4383 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-13.5 + parent: 2 + - uid: 4386 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 2 + - uid: 4388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - uid: 4391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-4.5 + parent: 2 + - uid: 4393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-18.5 + parent: 2 + - uid: 4396 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-11.5 + parent: 2 + - uid: 4397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 2 + - uid: 4398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + - uid: 4402 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-10.5 + parent: 2 + - uid: 4406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 4408 + components: + - type: Transform + pos: -41.5,-13.5 + parent: 2 + - uid: 4413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-11.5 + parent: 2 + - uid: 4414 + components: + - type: Transform + pos: -10.5,-3.5 + parent: 2 + - uid: 4418 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-11.5 + parent: 2 + - uid: 4419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 2 + - uid: 4420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-13.5 + parent: 2 + - uid: 4424 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-9.5 + parent: 2 + - uid: 4429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 2 + - uid: 4430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + - uid: 4433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-8.5 + parent: 2 + - uid: 4434 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 2 + - uid: 4444 + components: + - type: Transform + pos: -11.5,-2.5 + parent: 2 + - uid: 4448 + components: + - type: Transform + pos: -13.5,-2.5 + parent: 2 + - uid: 4460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 2 + - uid: 4462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 2 + - uid: 4463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + - uid: 4465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 2 + - uid: 4471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + - uid: 4479 + components: + - type: Transform + pos: -42.5,-13.5 + parent: 2 + - uid: 4548 + components: + - type: Transform + pos: -23.5,2.5 + parent: 2 + - uid: 4549 + components: + - type: Transform + pos: -24.5,2.5 + parent: 2 + - uid: 4551 + components: + - type: Transform + pos: -26.5,2.5 + parent: 2 + - uid: 4555 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 2 + - uid: 4558 + components: + - type: Transform + pos: -27.5,1.5 + parent: 2 + - uid: 4560 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 4561 + components: + - type: Transform + pos: -14.5,-4.5 + parent: 2 + - uid: 4562 + components: + - type: Transform + pos: -13.5,-4.5 + parent: 2 + - uid: 4569 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 2 + - uid: 4577 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 2 + - uid: 4580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 + - uid: 4582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-0.5 + parent: 2 + - uid: 4585 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,1.5 + parent: 2 + - uid: 4587 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + - uid: 4593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + - uid: 4601 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 2 + - uid: 4605 + components: + - type: Transform + pos: -43.5,-13.5 + parent: 2 + - uid: 4614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,5.5 + parent: 2 + - uid: 4615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,6.5 + parent: 2 + - uid: 4616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-1.5 + parent: 2 + - uid: 4670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,6.5 + parent: 2 + - uid: 4676 + components: + - type: Transform + pos: -24.5,3.5 + parent: 2 + - uid: 4678 + components: + - type: Transform + pos: -27.5,6.5 + parent: 2 + - uid: 4679 + components: + - type: Transform + pos: -26.5,6.5 + parent: 2 + - uid: 4682 + components: + - type: Transform + pos: -24.5,7.5 + parent: 2 + - uid: 4683 + components: + - 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 + rot: 3.141592653589793 rad + pos: -18.5,8.5 + parent: 2 + - uid: 4720 + components: + - type: Transform + 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 + rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 2 + - uid: 4729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,9.5 + parent: 2 + - uid: 4730 + components: + - type: Transform + 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 + rot: 3.141592653589793 rad + pos: -43.5,-14.5 + parent: 2 + - uid: 4744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-16.5 + parent: 2 + - uid: 4745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-17.5 + parent: 2 + - uid: 4747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-11.5 + parent: 2 + - uid: 4819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,-24.5 + parent: 2 + - uid: 4850 + components: + - type: Transform + pos: -33.5,-12.5 + parent: 2 + - uid: 4882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,-0.5 + parent: 2 + - uid: 4945 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 2 + - uid: 5085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,36.5 + parent: 2 + - uid: 5088 + components: + - type: Transform + pos: -18.5,12.5 + parent: 2 + - uid: 5090 + components: + - type: Transform + pos: -17.5,13.5 + parent: 2 + - uid: 5096 + 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 + parent: 2 + - uid: 5148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,19.5 + parent: 2 + - uid: 5149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,19.5 + parent: 2 + - uid: 5151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,17.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 + parent: 2 + - uid: 5166 + components: + - type: Transform + pos: -21.5,27.5 + parent: 2 + - uid: 5170 + components: + - type: Transform + pos: -13.5,28.5 + parent: 2 + - uid: 5171 + components: + - type: Transform + 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 + pos: -15.5,28.5 + parent: 2 + - uid: 5187 + components: + - type: Transform + pos: -12.5,28.5 + parent: 2 + - uid: 5188 + components: + - type: Transform + pos: -16.5,27.5 + parent: 2 + - uid: 5194 + components: + - type: Transform + pos: 49.5,-4.5 + parent: 2 + - uid: 5195 + components: + - 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 + pos: -11.5,27.5 + parent: 2 + - uid: 5227 + components: + - type: Transform + pos: 4.5,30.5 + parent: 2 + - uid: 5229 + components: + - type: Transform + pos: 4.5,28.5 + parent: 2 + - uid: 5230 + components: + - type: Transform + pos: 4.5,31.5 + parent: 2 + - uid: 5250 + components: + - type: Transform + pos: -11.5,19.5 + parent: 2 + - uid: 5259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,27.5 + parent: 2 + - uid: 5260 + components: + - type: Transform + 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 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 2 + - uid: 5312 + components: + - type: Transform + pos: -8.5,19.5 + parent: 2 + - uid: 5331 + components: + - type: Transform + pos: -26.5,30.5 + parent: 2 + - uid: 5333 + components: + - type: Transform + pos: -25.5,29.5 + parent: 2 + - uid: 5336 + components: + - type: Transform + pos: -26.5,33.5 + parent: 2 + - uid: 5338 + components: + - type: Transform + pos: -25.5,34.5 + parent: 2 + - uid: 5340 + components: + - type: Transform + pos: -23.5,34.5 + parent: 2 + - uid: 5345 + components: + - type: Transform + pos: -22.5,32.5 + parent: 2 + - uid: 5347 + components: + - type: Transform + pos: -30.5,36.5 + parent: 2 + - uid: 5348 + components: + - type: Transform + pos: -30.5,35.5 + parent: 2 + - uid: 5350 + components: + - type: Transform + pos: -31.5,33.5 + parent: 2 + - uid: 5351 + components: + - type: Transform + pos: -30.5,29.5 + parent: 2 + - uid: 5352 + components: + - type: Transform + pos: -33.5,33.5 + parent: 2 + - uid: 5355 + components: + - type: Transform + pos: -33.5,36.5 + parent: 2 + - uid: 5356 + components: + - type: Transform + pos: -34.5,35.5 + parent: 2 + - uid: 5359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,41.5 + parent: 2 + - uid: 5360 + components: + - type: Transform + pos: -31.5,36.5 + parent: 2 + - uid: 5365 + components: + - type: Transform + pos: -30.5,26.5 + parent: 2 + - uid: 5366 + components: + - type: Transform + pos: -30.5,34.5 + parent: 2 + - uid: 5368 + components: + - type: Transform + pos: -33.5,26.5 + parent: 2 + - uid: 5371 + components: + - type: Transform + pos: -33.5,29.5 + parent: 2 + - uid: 5372 + components: + - type: Transform + pos: -34.5,27.5 + parent: 2 + - uid: 5376 + components: + - type: Transform + pos: -34.5,32.5 + parent: 2 + - uid: 5380 + components: + - type: Transform + pos: -38.5,37.5 + parent: 2 + - uid: 5382 + components: + - type: Transform + pos: -36.5,36.5 + parent: 2 + - uid: 5383 + components: + - type: Transform + pos: -35.5,36.5 + parent: 2 + - uid: 5386 + components: + - type: Transform + pos: -35.5,37.5 + parent: 2 + - uid: 5387 + components: + - type: Transform + pos: -34.5,37.5 + parent: 2 + - uid: 5390 + components: + - type: Transform + pos: -35.5,26.5 + parent: 2 + - uid: 5391 + components: + - type: Transform + pos: -38.5,27.5 + parent: 2 + - uid: 5392 + components: + - type: Transform + pos: -38.5,28.5 + parent: 2 + - uid: 5393 + components: + - type: Transform + pos: -38.5,26.5 + parent: 2 + - uid: 5397 + components: + - type: Transform + pos: -38.5,35.5 + parent: 2 + - uid: 5398 + components: + - type: Transform + pos: -38.5,36.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + pos: -37.5,37.5 + parent: 2 + - uid: 5401 + components: + - type: Transform + pos: -36.5,25.5 + parent: 2 + - uid: 5402 + components: + - type: Transform + pos: -34.5,25.5 + parent: 2 + - uid: 5403 + components: + - type: Transform + pos: -38.5,25.5 + parent: 2 + - uid: 5405 + components: + - type: Transform + pos: -39.5,26.5 + parent: 2 + - uid: 5407 + components: + - type: Transform + pos: -40.5,26.5 + parent: 2 + - uid: 5409 + components: + - type: Transform + pos: -41.5,26.5 + parent: 2 + - uid: 5410 + components: + - type: Transform + pos: -41.5,27.5 + parent: 2 + - uid: 5412 + components: + - type: Transform + pos: -42.5,27.5 + parent: 2 + - uid: 5413 + components: + - type: Transform + pos: -39.5,35.5 + parent: 2 + - uid: 5415 + components: + - type: Transform + pos: -40.5,35.5 + parent: 2 + - uid: 5417 + components: + - type: Transform + pos: -41.5,35.5 + parent: 2 + - uid: 5418 + components: + - type: Transform + pos: -42.5,36.5 + parent: 2 + - uid: 5419 + components: + - type: Transform + pos: -40.5,36.5 + parent: 2 + - uid: 5420 + components: + - type: Transform + pos: -42.5,35.5 + parent: 2 + - uid: 5421 + components: + - type: Transform + pos: -43.5,35.5 + parent: 2 + - uid: 5422 + components: + - type: Transform + pos: -43.5,27.5 + parent: 2 + - uid: 5425 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 + - uid: 5426 + components: + - type: Transform + pos: -43.5,31.5 + parent: 2 + - uid: 5427 + components: + - type: Transform + pos: -43.5,32.5 + parent: 2 + - uid: 5430 + components: + - type: Transform + pos: -44.5,28.5 + parent: 2 + - uid: 5432 + components: + - type: Transform + pos: -44.5,30.5 + parent: 2 + - uid: 5434 + components: + - type: Transform + pos: -44.5,32.5 + parent: 2 + - uid: 5435 + components: + - type: Transform + pos: -44.5,33.5 + parent: 2 + - uid: 5439 + components: + - type: Transform + pos: -41.5,30.5 + parent: 2 + - uid: 5442 + components: + - type: Transform + pos: -43.5,26.5 + parent: 2 + - uid: 5443 + components: + - type: Transform + pos: -44.5,35.5 + parent: 2 + - uid: 5444 + components: + - type: Transform + pos: -43.5,36.5 + parent: 2 + - uid: 5447 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - uid: 5473 + components: + - type: Transform + pos: 40.5,-7.5 + parent: 2 + - uid: 6128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-38.5 + parent: 2 + - uid: 6136 + components: + - type: Transform + pos: -12.5,-48.5 + parent: 2 + - uid: 6162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-11.5 + parent: 2 + - uid: 6173 + components: + - type: Transform + pos: -33.5,-47.5 + parent: 2 + - uid: 6174 + components: + - type: Transform + pos: -32.5,-47.5 + parent: 2 + - uid: 6188 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -38.5,-44.5 + parent: 2 + - uid: 6209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,-17.5 + parent: 2 + - uid: 6383 + components: + - type: Transform + pos: 41.5,-31.5 + parent: 2 + - uid: 6386 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 6478 + components: + - type: Transform + pos: 3.5,34.5 + parent: 2 + - uid: 6485 + components: + - type: Transform + pos: 4.5,40.5 + parent: 2 + - uid: 6488 + components: + - type: Transform + pos: 11.5,42.5 + parent: 2 + - uid: 6490 + components: + - type: Transform + pos: 8.5,42.5 + parent: 2 + - uid: 6492 + components: + - type: Transform + pos: 11.5,40.5 + parent: 2 + - uid: 6497 + components: + - type: Transform + pos: 17.5,40.5 + parent: 2 + - uid: 6501 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,41.5 + parent: 2 + - uid: 6531 + components: + - type: Transform + pos: 3.5,41.5 + parent: 2 + - uid: 6535 + components: + - type: Transform + pos: -0.5,38.5 + parent: 2 + - uid: 6536 + components: + - type: Transform + pos: -0.5,37.5 + parent: 2 + - uid: 6537 + components: + - type: Transform + pos: -0.5,36.5 + parent: 2 + - uid: 6541 + components: + - type: Transform + pos: 0.5,33.5 + parent: 2 + - uid: 6542 + components: + - type: Transform + pos: 1.5,33.5 + parent: 2 + - uid: 6543 + components: + - type: Transform + pos: 2.5,33.5 + parent: 2 + - uid: 6544 + components: + - type: Transform + pos: 2.5,36.5 + parent: 2 + - uid: 6545 + components: + - type: Transform + pos: 0.5,36.5 + parent: 2 + - uid: 6597 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 + - uid: 6627 + components: + - type: Transform + pos: 2.5,31.5 + parent: 2 + - uid: 6629 + components: + - type: Transform + pos: 2.5,28.5 + parent: 2 + - uid: 6658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,30.5 + parent: 2 + - uid: 6661 + components: + - type: Transform + pos: -20.5,33.5 + parent: 2 + - uid: 6664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,42.5 + parent: 2 + - uid: 6680 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,32.5 + parent: 2 + - uid: 6685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,30.5 + parent: 2 + - uid: 6686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,33.5 + parent: 2 + - uid: 6688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,33.5 + parent: 2 + - uid: 6689 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,33.5 + parent: 2 + - uid: 6709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,40.5 + parent: 2 + - uid: 6782 + components: + - type: Transform + pos: -4.5,31.5 + parent: 2 + - uid: 6786 + components: + - type: Transform + pos: -2.5,31.5 + parent: 2 + - uid: 6792 + components: + - type: Transform + pos: -0.5,28.5 + parent: 2 + - uid: 6793 + components: + - type: Transform + pos: -0.5,27.5 + parent: 2 + - uid: 7046 + components: + - type: Transform + pos: -17.5,33.5 + parent: 2 + - uid: 7047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,45.5 + parent: 2 + - uid: 7048 + components: + - type: Transform + pos: -16.5,33.5 + parent: 2 + - uid: 7049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,40.5 + parent: 2 + - uid: 7050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,47.5 + parent: 2 + - uid: 7052 + components: + - type: Transform + pos: -14.5,33.5 + parent: 2 + - uid: 7069 + components: + - type: Transform + pos: -9.5,53.5 + parent: 2 + - uid: 7071 + components: + - type: Transform + pos: -10.5,45.5 + parent: 2 + - uid: 7072 + components: + - type: Transform + pos: -9.5,52.5 + parent: 2 + - uid: 7073 + components: + - type: Transform + pos: -10.5,38.5 + parent: 2 + - uid: 7074 + components: + - type: Transform + pos: -10.5,40.5 + parent: 2 + - uid: 7078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,54.5 + parent: 2 + - uid: 7079 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,54.5 + parent: 2 + - uid: 7080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,54.5 + parent: 2 + - uid: 7082 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,54.5 + parent: 2 + - uid: 7083 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,54.5 + parent: 2 + - uid: 7087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,36.5 + parent: 2 + - uid: 7089 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,53.5 + parent: 2 + - uid: 7092 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,53.5 + parent: 2 + - uid: 7093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,38.5 + parent: 2 + - uid: 7095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,45.5 + parent: 2 + - uid: 7099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,39.5 + parent: 2 + - uid: 7100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,38.5 + parent: 2 + - uid: 7102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,56.5 + parent: 2 + - uid: 7103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,55.5 + parent: 2 + - uid: 7115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,52.5 + parent: 2 + - uid: 7116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,49.5 + parent: 2 + - uid: 7117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,51.5 + parent: 2 + - uid: 7125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,56.5 + parent: 2 + - uid: 7128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,56.5 + parent: 2 + - uid: 7131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,56.5 + parent: 2 + - uid: 7134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,49.5 + parent: 2 + - uid: 7136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,57.5 + parent: 2 + - uid: 7140 + components: + - type: Transform + pos: -14.5,-49.5 + parent: 2 + - uid: 7149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,44.5 + parent: 2 + - uid: 7159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,49.5 + parent: 2 + - uid: 7172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,50.5 + parent: 2 + - uid: 7176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,54.5 + parent: 2 + - uid: 7177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,55.5 + parent: 2 + - uid: 7184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,58.5 + parent: 2 + - uid: 7187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,55.5 + parent: 2 + - uid: 7188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,56.5 + parent: 2 + - uid: 7214 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,55.5 + parent: 2 + - uid: 7362 + components: + - type: Transform + pos: -3.5,26.5 + parent: 2 + - uid: 7635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,44.5 + parent: 2 + - uid: 7639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,41.5 + parent: 2 + - uid: 7641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,39.5 + parent: 2 + - uid: 7689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,31.5 + parent: 2 + - uid: 7690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,33.5 + parent: 2 + - uid: 7692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,33.5 + parent: 2 + - uid: 7693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,33.5 + parent: 2 + - uid: 7695 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,33.5 + parent: 2 + - uid: 7697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,32.5 + parent: 2 + - uid: 7699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,30.5 + parent: 2 + - uid: 7702 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,30.5 + parent: 2 + - uid: 7703 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,30.5 + parent: 2 + - uid: 7705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,30.5 + parent: 2 + - uid: 7723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 2 + - uid: 7739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,31.5 + parent: 2 + - uid: 7741 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,32.5 + parent: 2 + - uid: 7742 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,32.5 + parent: 2 + - uid: 7744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + - uid: 7754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,33.5 + parent: 2 + - uid: 7758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,37.5 + parent: 2 + - uid: 7775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-8.5 + parent: 2 + - uid: 7776 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,39.5 + parent: 2 + - uid: 7783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - uid: 7786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,30.5 + parent: 2 + - uid: 7816 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,33.5 + parent: 2 + - uid: 7897 + components: + - type: Transform + pos: 27.5,-4.5 + parent: 2 + - uid: 7898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-10.5 + parent: 2 + - uid: 7899 + components: + - type: Transform + pos: 25.5,-9.5 + parent: 2 + - uid: 7900 + components: + - type: Transform + pos: 26.5,-9.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + pos: 29.5,-10.5 + parent: 2 + - uid: 7905 + components: + - type: Transform + pos: 31.5,-4.5 + parent: 2 + - uid: 7906 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 7907 + components: + - type: Transform + pos: 36.5,-7.5 + parent: 2 + - uid: 7917 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,29.5 + parent: 2 + - uid: 7919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,26.5 + parent: 2 + - uid: 7921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,24.5 + parent: 2 + - uid: 7922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,22.5 + parent: 2 + - uid: 7923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 2 + - uid: 7924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,21.5 + parent: 2 + - uid: 7926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,51.5 + parent: 2 + - uid: 7930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,19.5 + parent: 2 + - uid: 7931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,19.5 + parent: 2 + - uid: 7933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,18.5 + parent: 2 + - uid: 7934 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 + - uid: 7935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,16.5 + parent: 2 + - uid: 7938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,15.5 + parent: 2 + - uid: 7939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,14.5 + parent: 2 + - uid: 7940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,13.5 + parent: 2 + - uid: 7944 + components: + - type: Transform + pos: 22.5,-29.5 + parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 21.5,-28.5 + parent: 2 + - uid: 7965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,29.5 + parent: 2 + - uid: 7966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 52.5,7.5 + parent: 2 + - uid: 7967 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,11.5 + parent: 2 + - uid: 7970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,10.5 + parent: 2 + - uid: 7971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,2.5 + parent: 2 + - uid: 7972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,4.5 + parent: 2 + - uid: 7976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,5.5 + parent: 2 + - uid: 7986 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,10.5 + parent: 2 + - uid: 7989 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 50.5,6.5 + parent: 2 + - uid: 7994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 49.5,0.5 + parent: 2 + - uid: 8000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,-2.5 + parent: 2 + - uid: 8002 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 48.5,-1.5 + parent: 2 + - uid: 8005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 53.5,-1.5 + parent: 2 + - uid: 8006 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,0.5 + parent: 2 + - uid: 8007 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,1.5 + parent: 2 + - uid: 8014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,1.5 + parent: 2 + - uid: 8018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 60.5,-2.5 + parent: 2 + - uid: 8020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 59.5,-3.5 + parent: 2 + - uid: 8024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,-3.5 + parent: 2 + - uid: 8027 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,-1.5 + parent: 2 + - uid: 8032 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,0.5 + parent: 2 + - uid: 8048 + components: + - type: Transform + pos: 45.5,-7.5 + parent: 2 + - uid: 8052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 2 + - uid: 8059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-2.5 + parent: 2 + - uid: 8060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-1.5 + parent: 2 + - uid: 8062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,-3.5 + parent: 2 + - uid: 8074 + components: + - type: Transform + pos: 41.5,-7.5 + parent: 2 + - uid: 8078 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 44.5,-3.5 + parent: 2 + - uid: 8109 + components: + - type: Transform + pos: 43.5,-32.5 + parent: 2 + - uid: 8143 + components: + - type: Transform + pos: 37.5,-24.5 + parent: 2 + - uid: 8165 + components: + - type: Transform + pos: 38.5,-12.5 + parent: 2 + - uid: 8168 + components: + - type: Transform + pos: 44.5,-6.5 + parent: 2 + - uid: 8172 + components: + - type: Transform + pos: 37.5,-2.5 + parent: 2 + - uid: 8177 + components: + - type: Transform + pos: 31.5,-1.5 + parent: 2 + - uid: 8207 + components: + - type: Transform + pos: 35.5,-2.5 + parent: 2 + - uid: 8311 + components: + - type: Transform + pos: 25.5,37.5 + parent: 2 + - uid: 8465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,49.5 + parent: 2 + - uid: 8828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,47.5 + parent: 2 + - uid: 9041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,35.5 + parent: 2 + - uid: 10537 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 2 + - uid: 10539 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - uid: 10924 + components: + - type: Transform + pos: -45.5,-14.5 + parent: 2 + - uid: 11793 + components: + - type: Transform + pos: 39.5,-17.5 + parent: 2 + - uid: 11876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-37.5 + parent: 2 + - uid: 11907 + components: + - type: Transform + pos: -7.5,58.5 + parent: 2 + - uid: 12926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,42.5 + parent: 2 + - uid: 13467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,46.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-3.5 + parent: 2 + - uid: 13723 + components: + - type: Transform + pos: 25.5,35.5 + parent: 2 + - uid: 14190 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-44.5 + parent: 2 + - uid: 14197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-47.5 + parent: 2 + - uid: 14199 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-44.5 + parent: 2 + - uid: 14232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-47.5 + parent: 2 + - uid: 14305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,57.5 + parent: 2 + - uid: 14426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,58.5 + parent: 2 + - uid: 14429 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,55.5 + parent: 2 + - uid: 14890 + components: + - type: Transform + pos: 48.5,-3.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + pos: 48.5,32.5 + parent: 2 + - uid: 15350 + components: + - type: Transform + pos: 51.5,33.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + pos: 53.5,33.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: 53.5,30.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + pos: 53.5,29.5 + parent: 2 + - uid: 15354 + components: + - type: Transform + pos: 51.5,29.5 + parent: 2 + - uid: 15368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,-9.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,-8.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: 48.5,-7.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + pos: 49.5,-7.5 + parent: 2 + - uid: 15924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-35.5 + parent: 2 + - uid: 16034 + components: + - type: Transform + pos: -8.5,59.5 + parent: 2 + - uid: 16036 + components: + - type: Transform + pos: -12.5,58.5 + parent: 2 + - uid: 16037 + components: + - type: Transform + pos: -12.5,59.5 + parent: 2 + - uid: 16038 + components: + - type: Transform + pos: -11.5,59.5 + parent: 2 + - uid: 16050 + components: + - type: Transform + pos: -14.5,-50.5 + parent: 2 + - uid: 16051 + components: + - type: Transform + pos: -17.5,-50.5 + parent: 2 + - uid: 16052 + components: + - type: Transform + pos: -20.5,-49.5 + parent: 2 + - uid: 16053 + components: + - type: Transform + pos: -19.5,-49.5 + parent: 2 +- proto: WallReinforcedRust + entities: + - uid: 9 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 2 + - uid: 12 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: 13.5,-11.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 8.5,-29.5 + parent: 2 + - uid: 20 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 2 + - uid: 22 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 + - uid: 26 + components: + - type: Transform + pos: 18.5,-12.5 + parent: 2 + - uid: 29 + components: + - type: Transform + pos: 19.5,-12.5 + parent: 2 + - uid: 33 + components: + - type: Transform + pos: 21.5,-12.5 + parent: 2 + - uid: 35 + components: + - type: Transform + pos: 21.5,-11.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 + - uid: 41 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 2 + - uid: 49 + components: + - type: Transform + pos: 31.5,-0.5 + parent: 2 + - uid: 51 + components: + - type: Transform + pos: 29.5,-0.5 + parent: 2 + - uid: 53 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 57 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 58 + components: + - type: Transform + pos: 25.5,-2.5 + parent: 2 + - uid: 61 + components: + - type: Transform + pos: 25.5,-3.5 + parent: 2 + - uid: 66 + components: + - type: Transform + pos: 35.5,-7.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 35.5,0.5 + parent: 2 + - uid: 75 + components: + - type: Transform + pos: 29.5,-26.5 + parent: 2 + - uid: 76 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 79 + components: + - type: Transform + pos: 25.5,-15.5 + parent: 2 + - uid: 81 + components: + - type: Transform + pos: 38.5,-13.5 + parent: 2 + - uid: 82 + components: + - type: Transform + pos: 25.5,-8.5 + parent: 2 + - uid: 83 + components: + - type: Transform + pos: 18.5,-23.5 + parent: 2 + - uid: 87 + components: + - type: Transform + pos: 34.5,-13.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: 42.5,-2.5 + parent: 2 + - uid: 89 + components: + - type: Transform + pos: 37.5,-17.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: 28.5,-16.5 + parent: 2 + - uid: 94 + components: + - type: Transform + pos: 25.5,-16.5 + parent: 2 + - uid: 95 + components: + - type: Transform + pos: 27.5,-16.5 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: 36.5,-26.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 23.5,-16.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 42.5,-17.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 43.5,-17.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: 40.5,-17.5 + parent: 2 + - uid: 110 + components: + - type: Transform + pos: 45.5,-12.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 37.5,-18.5 + parent: 2 + - uid: 123 + components: + - type: Transform + pos: 40.5,-23.5 + parent: 2 + - uid: 126 + components: + - type: Transform + pos: 42.5,-23.5 + parent: 2 + - uid: 127 + components: + - type: Transform + pos: 44.5,-22.5 + parent: 2 + - uid: 130 + components: + - type: Transform + pos: 45.5,-22.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: 45.5,-18.5 + parent: 2 + - uid: 136 + components: + - type: Transform + pos: 38.5,-25.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: 40.5,-25.5 + parent: 2 + - uid: 140 + components: + - type: Transform + pos: 24.5,-40.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 41.5,-26.5 + parent: 2 + - uid: 148 + components: + - type: Transform + pos: 41.5,-27.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 37.5,-25.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 37.5,-40.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: 52.5,-12.5 + parent: 2 + - uid: 163 + components: + - type: Transform + pos: 54.5,-12.5 + parent: 2 + - uid: 165 + components: + - type: Transform + pos: 61.5,-22.5 + parent: 2 + - uid: 167 + components: + - type: Transform + pos: 61.5,-21.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 61.5,-19.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 51.5,-28.5 + parent: 2 + - uid: 183 + components: + - type: Transform + pos: 52.5,-28.5 + parent: 2 + - uid: 184 + components: + - type: Transform + pos: 55.5,-28.5 + parent: 2 + - uid: 185 + components: + - type: Transform + pos: 59.5,-28.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 61.5,-27.5 + parent: 2 + - uid: 189 + components: + - type: Transform + pos: 61.5,-26.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: 46.5,-28.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: 42.5,-29.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: 44.5,-29.5 + parent: 2 + - uid: 555 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,-3.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 45.5,-29.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: 46.5,-29.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: 60.5,-12.5 + parent: 2 + - uid: 705 + components: + - type: Transform + pos: 59.5,-12.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: 61.5,-14.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: 43.5,-14.5 + parent: 2 + - uid: 921 + components: + - type: Transform + pos: 43.5,-13.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 27.5,-9.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: 46.5,-12.5 + parent: 2 + - uid: 1026 + components: + - type: Transform + pos: 34.5,-1.5 + parent: 2 + - uid: 1028 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 2 + - uid: 1031 + components: + - type: Transform + pos: 22.5,-18.5 + parent: 2 + - uid: 1032 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 1035 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 1036 + components: + - type: Transform + pos: 27.5,9.5 + parent: 2 + - uid: 1041 + components: + - type: Transform + pos: 39.5,-7.5 + parent: 2 + - uid: 1073 + components: + - type: Transform + pos: -12.5,-23.5 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: 18.5,-15.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 2 + - uid: 1096 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 2 + - uid: 1099 + components: + - type: Transform + pos: 19.5,-20.5 + parent: 2 + - uid: 1100 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 2 + - uid: 1112 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 2 + - uid: 1115 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 6.5,-17.5 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 6.5,-19.5 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 + - uid: 1163 + components: + - type: Transform + pos: 10.5,-20.5 + parent: 2 + - uid: 1166 + components: + - type: Transform + pos: 11.5,-20.5 + parent: 2 + - uid: 1168 + components: + - type: Transform + pos: 7.5,-21.5 + parent: 2 + - uid: 1170 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 2 + - uid: 1172 + components: + - type: Transform + pos: 8.5,-23.5 + parent: 2 + - uid: 1173 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 2 + - uid: 1187 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 2 + - uid: 1190 + components: + - type: Transform + pos: 3.5,-18.5 + parent: 2 + - uid: 1194 + components: + - type: Transform + pos: 3.5,-19.5 + parent: 2 + - uid: 1197 + components: + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: 4.5,-25.5 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 2 + - uid: 1222 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -4.5,-28.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -0.5,-15.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: 4.5,-21.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,52.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 3.5,-26.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: -4.5,-19.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: -3.5,-29.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 3.5,-23.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -5.5,-19.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 42.5,33.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -6.5,-20.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: -10.5,-15.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: 0.5,-28.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: 3.5,-28.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -10.5,-23.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -11.5,-23.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: -13.5,-26.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: -12.5,-31.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: -10.5,-31.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: -3.5,-31.5 + parent: 2 + - uid: 1573 + components: + - type: Transform + pos: -4.5,-39.5 + parent: 2 + - uid: 1574 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 2 + - uid: 1575 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 1576 + components: + - type: Transform + pos: 2.5,-35.5 + parent: 2 + - uid: 1607 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 2 + - uid: 1610 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 1612 + components: + - type: Transform + pos: -2.5,-31.5 + parent: 2 + - uid: 1635 + components: + - type: Transform + pos: -13.5,-32.5 + parent: 2 + - uid: 1645 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - uid: 1647 + components: + - type: Transform + pos: -9.5,-37.5 + parent: 2 + - uid: 1648 + components: + - type: Transform + pos: 2.5,-40.5 + parent: 2 + - uid: 1651 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 2 + - uid: 1654 + components: + - type: Transform + pos: 3.5,-39.5 + parent: 2 + - uid: 1655 + components: + - type: Transform + pos: 4.5,-39.5 + parent: 2 + - uid: 1660 + components: + - type: Transform + pos: 3.5,-31.5 + parent: 2 + - uid: 1661 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: -13.5,-36.5 + parent: 2 + - uid: 1666 + components: + - type: Transform + pos: -13.5,-37.5 + parent: 2 + - uid: 1669 + components: + - type: Transform + pos: -13.5,-38.5 + parent: 2 + - uid: 1679 + components: + - type: Transform + pos: -12.5,-40.5 + parent: 2 + - uid: 1690 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 2 + - uid: 1697 + components: + - type: Transform + pos: -9.5,-39.5 + parent: 2 + - uid: 1702 + components: + - type: Transform + pos: -9.5,-38.5 + parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 5.5,-34.5 + parent: 2 + - uid: 1709 + components: + - type: Transform + pos: 5.5,-35.5 + parent: 2 + - uid: 1714 + components: + - type: Transform + pos: 5.5,-38.5 + parent: 2 + - uid: 1715 + components: + - type: Transform + pos: 4.5,-35.5 + parent: 2 + - uid: 1720 + components: + - type: Transform + pos: -6.5,-39.5 + parent: 2 + - uid: 1721 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - uid: 1724 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 2 + - uid: 1725 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 1741 + components: + - type: Transform + pos: 19.5,-32.5 + parent: 2 + - uid: 1752 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 2 + - uid: 1756 + components: + - type: Transform + pos: 21.5,-34.5 + parent: 2 + - uid: 1760 + components: + - type: Transform + pos: 21.5,-38.5 + parent: 2 + - uid: 1762 + components: + - type: Transform + pos: 23.5,-34.5 + parent: 2 + - uid: 1763 + components: + - type: Transform + pos: 22.5,-36.5 + parent: 2 + - uid: 1766 + components: + - type: Transform + pos: 23.5,-36.5 + parent: 2 + - uid: 1795 + components: + - type: Transform + pos: 23.5,-38.5 + parent: 2 + - uid: 1796 + components: + - type: Transform + pos: 23.5,-32.5 + parent: 2 + - uid: 1799 + components: + - type: Transform + pos: 25.5,-32.5 + parent: 2 + - uid: 1800 + components: + - type: Transform + pos: 28.5,-42.5 + parent: 2 + - uid: 1801 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 2 + - uid: 1809 + components: + - type: Transform + pos: 41.5,-38.5 + parent: 2 + - uid: 1819 + components: + - type: Transform + pos: 41.5,-36.5 + parent: 2 + - uid: 1820 + components: + - type: Transform + pos: 39.5,-34.5 + parent: 2 + - uid: 1822 + components: + - type: Transform + pos: 40.5,-34.5 + parent: 2 + - uid: 1824 + components: + - type: Transform + pos: 39.5,-38.5 + parent: 2 + - uid: 1827 + components: + - type: Transform + pos: 39.5,-36.5 + parent: 2 + - uid: 1829 + components: + - type: Transform + pos: 21.5,-30.5 + parent: 2 + - uid: 1830 + components: + - type: Transform + pos: 40.5,-40.5 + parent: 2 + - uid: 1832 + components: + - type: Transform + pos: 35.5,-33.5 + parent: 2 + - uid: 1833 + components: + - type: Transform + pos: 41.5,-40.5 + parent: 2 + - uid: 1835 + components: + - type: Transform + pos: 23.5,-40.5 + parent: 2 + - uid: 1843 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 2 + - uid: 1844 + components: + - type: Transform + pos: 44.5,-31.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + pos: 29.5,-45.5 + parent: 2 + - uid: 1858 + components: + - type: Transform + pos: 30.5,-46.5 + parent: 2 + - uid: 1860 + components: + - type: Transform + pos: 32.5,-46.5 + parent: 2 + - uid: 1880 + components: + - type: Transform + pos: 37.5,-7.5 + parent: 2 + - uid: 1883 + components: + - type: Transform + pos: 33.5,-46.5 + parent: 2 + - uid: 1890 + components: + - type: Transform + pos: 33.5,-43.5 + parent: 2 + - uid: 1891 + components: + - type: Transform + pos: 44.5,-4.5 + parent: 2 + - uid: 1892 + components: + - type: Transform + pos: 34.5,-41.5 + parent: 2 + - uid: 1898 + components: + - type: Transform + pos: 35.5,-41.5 + parent: 2 + - uid: 1899 + components: + - type: Transform + pos: 7.5,-32.5 + parent: 2 + - uid: 1900 + components: + - type: Transform + pos: 8.5,-32.5 + parent: 2 + - uid: 1903 + components: + - type: Transform + pos: 10.5,-32.5 + parent: 2 + - uid: 1904 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 2 + - uid: 1907 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 2 + - uid: 1908 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 2 + - uid: 1909 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 1910 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 1913 + components: + - type: Transform + pos: 37.5,-13.5 + parent: 2 + - uid: 1914 + components: + - type: Transform + pos: 44.5,-8.5 + parent: 2 + - uid: 1916 + components: + - type: Transform + pos: 29.5,-9.5 + parent: 2 + - uid: 1918 + components: + - type: Transform + pos: 26.5,-4.5 + parent: 2 + - uid: 1923 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 2 + - uid: 1925 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 2 + - uid: 1943 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 2 + - uid: 1944 + components: + - type: Transform + pos: 11.5,-29.5 + parent: 2 + - uid: 1947 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 1960 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 2 + - uid: 1961 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 2 + - uid: 1966 + components: + - type: Transform + pos: 29.5,-8.5 + parent: 2 + - uid: 1969 + components: + - type: Transform + pos: 22.5,-12.5 + parent: 2 + - uid: 1971 + components: + - type: Transform + pos: 25.5,-26.5 + parent: 2 + - uid: 1972 + components: + - type: Transform + pos: 34.5,-17.5 + parent: 2 + - uid: 1976 + components: + - type: Transform + pos: 42.5,-13.5 + parent: 2 + - uid: 1978 + components: + - type: Transform + pos: 22.5,-21.5 + parent: 2 + - uid: 1979 + components: + - type: Transform + pos: 24.5,-28.5 + parent: 2 + - uid: 1980 + components: + - type: Transform + pos: 41.5,-32.5 + parent: 2 + - uid: 1985 + components: + - type: Transform + pos: -6.5,-42.5 + parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -9.5,-42.5 + parent: 2 + - uid: 1989 + components: + - type: Transform + pos: -9.5,-43.5 + parent: 2 + - uid: 2000 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 2001 + components: + - type: Transform + pos: -30.5,-28.5 + parent: 2 + - uid: 2007 + components: + - type: Transform + pos: -31.5,-28.5 + parent: 2 + - uid: 2009 + components: + - type: Transform + pos: -30.5,-25.5 + parent: 2 + - uid: 2012 + components: + - type: Transform + pos: -29.5,-25.5 + parent: 2 + - uid: 2060 + components: + - type: Transform + pos: -29.5,-27.5 + parent: 2 + - uid: 2061 + components: + - 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 + pos: 28.5,-4.5 + parent: 2 + - uid: 2071 + components: + - type: Transform + pos: 29.5,-4.5 + parent: 2 + - uid: 2072 + components: + - type: Transform + pos: -29.5,30.5 + parent: 2 + - uid: 2087 + components: + - type: Transform + pos: -59.5,-28.5 + parent: 2 + - uid: 2088 + components: + - type: Transform + pos: -51.5,-28.5 + parent: 2 + - uid: 2091 + components: + - type: Transform + pos: -55.5,-32.5 + parent: 2 + - uid: 2094 + components: + - type: Transform + pos: -51.5,-32.5 + parent: 2 + - uid: 2098 + components: + - type: Transform + pos: -55.5,-33.5 + parent: 2 + - uid: 2104 + components: + - type: Transform + pos: -47.5,-32.5 + parent: 2 + - uid: 2110 + components: + - type: Transform + pos: -61.5,-27.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + pos: -18.5,54.5 + parent: 2 + - uid: 2193 + components: + - type: Transform + pos: -53.5,-27.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: -32.5,-33.5 + parent: 2 + - uid: 2198 + components: + - type: Transform + pos: -32.5,-36.5 + parent: 2 + - uid: 2199 + components: + - type: Transform + pos: -63.5,-27.5 + parent: 2 + - uid: 2201 + components: + - type: Transform + pos: -37.5,-32.5 + parent: 2 + - uid: 2211 + components: + - type: Transform + pos: -37.5,-33.5 + parent: 2 + - uid: 2215 + components: + - type: Transform + pos: -55.5,-28.5 + parent: 2 + - uid: 2229 + components: + - type: Transform + pos: -29.5,-46.5 + parent: 2 + - uid: 2230 + components: + - type: Transform + pos: -28.5,-46.5 + parent: 2 + - uid: 2234 + components: + - type: Transform + pos: -27.5,-47.5 + parent: 2 + - uid: 2244 + components: + - type: Transform + pos: -25.5,-47.5 + parent: 2 + - uid: 2253 + components: + - type: Transform + pos: -22.5,-47.5 + parent: 2 + - uid: 2265 + components: + - type: Transform + pos: -63.5,-32.5 + parent: 2 + - uid: 2267 + components: + - type: Transform + pos: -44.5,-32.5 + parent: 2 + - uid: 2268 + components: + - type: Transform + pos: -31.5,-46.5 + parent: 2 + - uid: 2269 + components: + - type: Transform + pos: -36.5,-48.5 + parent: 2 + - uid: 2280 + components: + - type: Transform + pos: -34.5,-36.5 + parent: 2 + - uid: 2289 + components: + - type: Transform + pos: -34.5,-32.5 + parent: 2 + - uid: 2292 + components: + - type: Transform + pos: -61.5,-33.5 + parent: 2 + - uid: 2297 + components: + - type: Transform + pos: -59.5,-33.5 + parent: 2 + - uid: 2303 + components: + - type: Transform + pos: -46.5,-28.5 + parent: 2 + - uid: 2322 + components: + - type: Transform + pos: -45.5,-28.5 + parent: 2 + - uid: 2361 + components: + - type: Transform + pos: -43.5,-28.5 + parent: 2 + - uid: 2362 + components: + - type: Transform + pos: -68.5,-32.5 + parent: 2 + - uid: 2363 + components: + - type: Transform + pos: -69.5,-28.5 + parent: 2 + - uid: 2519 + components: + - type: Transform + pos: -68.5,-28.5 + parent: 2 + - uid: 2635 + components: + - type: Transform + pos: -40.5,-37.5 + parent: 2 + - uid: 2640 + components: + - type: Transform + pos: -40.5,-39.5 + parent: 2 + - uid: 2641 + components: + - type: Transform + pos: -40.5,-44.5 + parent: 2 + - uid: 2651 + components: + - type: Transform + pos: -39.5,-44.5 + parent: 2 + - uid: 2652 + components: + - type: Transform + pos: -55.5,-10.5 + parent: 2 + - uid: 2655 + components: + - type: Transform + pos: -40.5,-41.5 + parent: 2 + - uid: 2657 + components: + - type: Transform + pos: -46.5,-10.5 + parent: 2 + - uid: 2658 + components: + - type: Transform + pos: -42.5,-19.5 + parent: 2 + - uid: 2660 + components: + - type: Transform + pos: -17.5,-2.5 + parent: 2 + - uid: 2661 + components: + - type: Transform + pos: -51.5,-10.5 + parent: 2 + - uid: 2715 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 2723 + components: + - type: Transform + pos: -16.5,-3.5 + parent: 2 + - uid: 2742 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 2 + - uid: 2744 + components: + - type: Transform + pos: -53.5,-14.5 + parent: 2 + - uid: 2760 + components: + - type: Transform + pos: -55.5,-13.5 + parent: 2 + - uid: 2769 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 2770 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 2 + - uid: 2772 + components: + - type: Transform + pos: -42.5,-23.5 + parent: 2 + - uid: 2773 + components: + - type: Transform + pos: -42.5,-18.5 + parent: 2 + - uid: 2775 + components: + - type: Transform + pos: -55.5,-14.5 + parent: 2 + - uid: 2776 + components: + - type: Transform + pos: -43.5,-25.5 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 2807 + components: + - type: Transform + pos: 29.5,11.5 + parent: 2 + - uid: 2815 + components: + - type: Transform + pos: 29.5,10.5 + parent: 2 + - uid: 2816 + components: + - type: Transform + pos: 24.5,13.5 + parent: 2 + - uid: 2889 + components: + - type: Transform + pos: 23.5,15.5 + parent: 2 + - uid: 2893 + components: + - type: Transform + pos: 33.5,20.5 + parent: 2 + - uid: 2894 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 2895 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 2898 + components: + - type: Transform + pos: 29.5,24.5 + parent: 2 + - uid: 2900 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 2913 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 2914 + components: + - type: Transform + pos: 33.5,23.5 + parent: 2 + - uid: 2916 + components: + - type: Transform + pos: 32.5,24.5 + parent: 2 + - uid: 2917 + components: + - type: Transform + pos: 29.5,27.5 + parent: 2 + - uid: 2920 + components: + - type: Transform + pos: 32.5,27.5 + parent: 2 + - uid: 2922 + components: + - type: Transform + pos: 30.5,27.5 + parent: 2 + - uid: 2925 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 2927 + components: + - type: Transform + pos: 23.5,21.5 + parent: 2 + - uid: 2979 + components: + - type: Transform + pos: 25.5,24.5 + parent: 2 + - uid: 2981 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 3003 + components: + - type: Transform + pos: 25.5,27.5 + parent: 2 + - uid: 3005 + components: + - type: Transform + pos: 20.5,26.5 + parent: 2 + - uid: 3008 + components: + - type: Transform + pos: 20.5,25.5 + parent: 2 + - uid: 3009 + components: + - type: Transform + pos: 23.5,20.5 + parent: 2 + - uid: 3010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-34.5 + parent: 2 + - uid: 3028 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 3029 + components: + - type: Transform + pos: 18.5,22.5 + parent: 2 + - uid: 3032 + components: + - type: Transform + pos: 18.5,23.5 + parent: 2 + - uid: 3033 + components: + - type: Transform + pos: 19.5,20.5 + parent: 2 + - uid: 3035 + components: + - type: Transform + pos: 22.5,20.5 + parent: 2 + - uid: 3037 + components: + - type: Transform + pos: 19.5,25.5 + parent: 2 + - uid: 3062 + components: + - type: Transform + pos: 28.5,17.5 + parent: 2 + - uid: 3063 + components: + - type: Transform + pos: 43.5,3.5 + parent: 2 + - uid: 3066 + components: + - type: Transform + pos: 44.5,3.5 + parent: 2 + - uid: 3068 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 3069 + components: + - type: Transform + pos: 44.5,1.5 + parent: 2 + - uid: 3070 + components: + - type: Transform + pos: 43.5,0.5 + parent: 2 + - uid: 3072 + components: + - type: Transform + pos: 41.5,0.5 + parent: 2 + - uid: 3076 + components: + - type: Transform + pos: 41.5,2.5 + parent: 2 + - uid: 3077 + components: + - type: Transform + pos: -40.5,-43.5 + parent: 2 + - uid: 3079 + components: + - type: Transform + pos: -23.5,29.5 + parent: 2 + - uid: 3088 + components: + - type: Transform + pos: 8.5,-30.5 + parent: 2 + - uid: 3092 + components: + - type: Transform + pos: -19.5,-2.5 + parent: 2 + - uid: 3095 + components: + - type: Transform + pos: -20.5,-10.5 + parent: 2 + - uid: 3096 + components: + - type: Transform + pos: -35.5,-10.5 + parent: 2 + - uid: 3100 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 2 + - uid: 3101 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 2 + - uid: 3103 + components: + - type: Transform + pos: -39.5,-10.5 + parent: 2 + - uid: 3105 + components: + - type: Transform + pos: -29.5,-12.5 + parent: 2 + - uid: 3125 + components: + - type: Transform + pos: -43.5,-9.5 + parent: 2 + - uid: 3134 + components: + - type: Transform + pos: -10.5,-11.5 + parent: 2 + - uid: 3143 + components: + - type: Transform + pos: -47.5,-10.5 + parent: 2 + - uid: 3146 + components: + - type: Transform + pos: -30.5,-12.5 + parent: 2 + - uid: 3155 + components: + - type: Transform + pos: -43.5,-5.5 + parent: 2 + - uid: 3157 + components: + - type: Transform + pos: -38.5,-10.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: -20.5,-11.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 2 + - uid: 3166 + components: + - type: Transform + pos: -11.5,-11.5 + parent: 2 + - uid: 3167 + components: + - type: Transform + pos: -16.5,-9.5 + parent: 2 + - uid: 3168 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 2 + - uid: 3174 + components: + - type: Transform + pos: -45.5,-10.5 + parent: 2 + - uid: 3199 + components: + - type: Transform + pos: -14.5,-11.5 + parent: 2 + - uid: 3203 + components: + - type: Transform + pos: -18.5,-9.5 + parent: 2 + - uid: 3204 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 3234 + components: + - type: Transform + pos: -40.5,-13.5 + parent: 2 + - uid: 3258 + components: + - type: Transform + pos: -16.5,-11.5 + parent: 2 + - uid: 3260 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-37.5 + parent: 2 + - uid: 3265 + components: + - type: Transform + pos: -10.5,-4.5 + parent: 2 + - uid: 3269 + components: + - type: Transform + pos: -39.5,-13.5 + parent: 2 + - uid: 3272 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 3274 + components: + - type: Transform + pos: -12.5,-2.5 + parent: 2 + - uid: 3285 + components: + - type: Transform + pos: -18.5,-11.5 + parent: 2 + - uid: 3394 + components: + - type: Transform + pos: -18.5,-5.5 + parent: 2 + - uid: 3396 + components: + - type: Transform + pos: -12.5,-5.5 + parent: 2 + - uid: 3434 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 2 + - uid: 3435 + components: + - type: Transform + pos: -10.5,-2.5 + parent: 2 + - uid: 3444 + components: + - type: Transform + pos: -12.5,6.5 + parent: 2 + - uid: 3460 + components: + - type: Transform + pos: -25.5,2.5 + parent: 2 + - uid: 3468 + components: + - type: Transform + pos: -27.5,2.5 + parent: 2 + - uid: 3477 + components: + - 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 + pos: -26.5,-6.5 + parent: 2 + - uid: 3486 + components: + - type: Transform + pos: -23.5,0.5 + parent: 2 + - uid: 3488 + components: + - type: Transform + pos: -24.5,-0.5 + parent: 2 + - uid: 3494 + components: + - type: Transform + pos: -34.5,-10.5 + parent: 2 + - uid: 3499 + components: + - type: Transform + pos: -34.5,-11.5 + parent: 2 + - uid: 3501 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 3509 + components: + - type: Transform + pos: -25.5,6.5 + parent: 2 + - uid: 3518 + components: + - 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 + pos: -24.5,10.5 + parent: 2 + - uid: 3527 + components: + - type: Transform + pos: -23.5,10.5 + parent: 2 + - uid: 3532 + components: + - type: Transform + pos: -18.5,5.5 + parent: 2 + - uid: 3536 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 3537 + components: + - 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 + pos: -11.5,8.5 + parent: 2 + - uid: 3547 + components: + - type: Transform + pos: -11.5,11.5 + parent: 2 + - uid: 3548 + components: + - 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 + pos: -43.5,-15.5 + parent: 2 + - uid: 3553 + components: + - type: Transform + pos: -36.5,-12.5 + parent: 2 + - uid: 3557 + components: + - 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: 3588 + components: + - type: Transform + pos: -17.5,18.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 + pos: -9.5,23.5 + parent: 2 + - uid: 3672 + components: + - 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 + pos: -22.5,27.5 + parent: 2 + - uid: 3680 + components: + - type: Transform + pos: -10.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 + pos: -26.5,29.5 + parent: 2 + - uid: 3713 + components: + - type: Transform + pos: -26.5,32.5 + parent: 2 + - uid: 3714 + components: + - type: Transform + pos: -24.5,34.5 + parent: 2 + - uid: 3721 + components: + - type: Transform + pos: -22.5,34.5 + parent: 2 + - uid: 3722 + components: + - type: Transform + pos: -22.5,29.5 + parent: 2 + - uid: 3724 + components: + - type: Transform + pos: -22.5,30.5 + parent: 2 + - uid: 3730 + components: + - type: Transform + pos: -22.5,33.5 + parent: 2 + - uid: 3734 + components: + - type: Transform + pos: -34.5,34.5 + parent: 2 + - uid: 3736 + components: + - type: Transform + pos: -34.5,33.5 + parent: 2 + - uid: 3740 + components: + - type: Transform + pos: -32.5,36.5 + parent: 2 + - uid: 3742 + components: + - type: Transform + pos: -34.5,36.5 + parent: 2 + - uid: 3746 + components: + - type: Transform + pos: -31.5,26.5 + parent: 2 + - uid: 3751 + components: + - type: Transform + pos: -30.5,30.5 + parent: 2 + - uid: 3753 + components: + - type: Transform + pos: -30.5,33.5 + parent: 2 + - uid: 3754 + components: + - type: Transform + pos: -30.5,27.5 + parent: 2 + - uid: 3756 + components: + - type: Transform + pos: -30.5,32.5 + parent: 2 + - uid: 3761 + components: + - type: Transform + pos: -32.5,26.5 + parent: 2 + - uid: 3763 + components: + - type: Transform + pos: -34.5,26.5 + parent: 2 + - uid: 3764 + components: + - type: Transform + pos: -34.5,30.5 + parent: 2 + - uid: 3765 + components: + - type: Transform + pos: -34.5,28.5 + parent: 2 + - uid: 3766 + components: + - type: Transform + pos: -34.5,29.5 + parent: 2 + - uid: 3770 + components: + - type: Transform + pos: -36.5,37.5 + parent: 2 + - uid: 3775 + components: + - type: Transform + pos: -37.5,36.5 + parent: 2 + - uid: 3777 + components: + - type: Transform + pos: -37.5,26.5 + parent: 2 + - uid: 3785 + components: + - type: Transform + pos: -36.5,26.5 + parent: 2 + - uid: 3788 + components: + - type: Transform + pos: -38.5,34.5 + parent: 2 + - uid: 3792 + components: + - type: Transform + pos: -35.5,25.5 + parent: 2 + - uid: 3793 + components: + - type: Transform + pos: -37.5,25.5 + parent: 2 + - uid: 3794 + components: + - type: Transform + pos: -39.5,27.5 + parent: 2 + - uid: 3795 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 + - uid: 3796 + components: + - type: Transform + pos: -42.5,26.5 + parent: 2 + - uid: 3798 + components: + - type: Transform + pos: -39.5,36.5 + parent: 2 + - uid: 3800 + components: + - type: Transform + pos: -41.5,36.5 + parent: 2 + - uid: 3803 + components: + - type: Transform + pos: -43.5,28.5 + parent: 2 + - uid: 3807 + components: + - type: Transform + pos: -43.5,29.5 + parent: 2 + - uid: 3809 + components: + - type: Transform + pos: -43.5,33.5 + parent: 2 + - uid: 3812 + components: + - type: Transform + pos: -43.5,34.5 + parent: 2 + - uid: 3814 + components: + - type: Transform + pos: -44.5,29.5 + parent: 2 + - uid: 3816 + components: + - type: Transform + pos: -44.5,31.5 + parent: 2 + - uid: 3818 + components: + - type: Transform + pos: -44.5,34.5 + parent: 2 + - uid: 3820 + components: + - type: Transform + pos: -40.5,30.5 + parent: 2 + - uid: 3821 + components: + - type: Transform + pos: -41.5,32.5 + parent: 2 + - uid: 3822 + components: + - type: Transform + pos: -44.5,27.5 + parent: 2 + - uid: 3826 + components: + - type: Transform + pos: 30.5,-16.5 + parent: 2 + - uid: 3831 + components: + - type: Transform + pos: -10.5,-48.5 + parent: 2 + - uid: 3841 + components: + - type: Transform + pos: -14.5,-48.5 + parent: 2 + - uid: 3843 + components: + - type: Transform + pos: -35.5,-47.5 + parent: 2 + - uid: 3847 + components: + - type: Transform + pos: -34.5,-47.5 + parent: 2 + - uid: 3851 + components: + - type: Transform + pos: 34.5,-2.5 + parent: 2 + - uid: 3855 + components: + - type: Transform + pos: 36.5,-29.5 + parent: 2 + - uid: 3856 + components: + - type: Transform + pos: 23.5,-13.5 + parent: 2 + - uid: 3860 + components: + - type: Transform + pos: 44.5,33.5 + parent: 2 + - uid: 3861 + components: + - type: Transform + pos: 3.5,31.5 + parent: 2 + - uid: 3864 + components: + - type: Transform + pos: 3.5,33.5 + parent: 2 + - uid: 3866 + components: + - type: Transform + pos: 3.5,35.5 + parent: 2 + - uid: 3868 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 3869 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,53.5 + parent: 2 + - uid: 3871 + components: + - type: Transform + pos: 3.5,40.5 + parent: 2 + - uid: 3873 + components: + - type: Transform + pos: 5.5,40.5 + parent: 2 + - uid: 3875 + components: + - type: Transform + pos: 17.5,41.5 + parent: 2 + - uid: 3877 + components: + - type: Transform + pos: 8.5,40.5 + parent: 2 + - uid: 3879 + components: + - type: Transform + pos: 5.5,42.5 + parent: 2 + - uid: 3880 + components: + - type: Transform + pos: 12.5,40.5 + parent: 2 + - uid: 3883 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 + - uid: 3887 + components: + - type: Transform + pos: 22.5,41.5 + parent: 2 + - uid: 3888 + components: + - type: Transform + pos: -0.5,41.5 + parent: 2 + - uid: 3889 + components: + - type: Transform + pos: -0.5,40.5 + parent: 2 + - uid: 3892 + components: + - type: Transform + pos: -0.5,35.5 + parent: 2 + - uid: 3893 + components: + - type: Transform + pos: -0.5,34.5 + parent: 2 + - uid: 3897 + components: + - type: Transform + pos: -0.5,33.5 + parent: 2 + - uid: 3898 + components: + - type: Transform + pos: 1.5,31.5 + parent: 2 + - uid: 3934 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,50.5 + parent: 2 + - uid: 4006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,50.5 + parent: 2 + - uid: 4128 + components: + - type: Transform + pos: 3.5,28.5 + parent: 2 + - uid: 4130 + components: + - type: Transform + pos: 1.5,28.5 + parent: 2 + - uid: 4131 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 4132 + components: + - type: Transform + pos: -0.5,31.5 + parent: 2 + - uid: 4134 + components: + - type: Transform + pos: -9.5,31.5 + parent: 2 + - uid: 4136 + components: + - type: Transform + pos: -19.5,33.5 + parent: 2 + - uid: 4138 + components: + - type: Transform + pos: -2.5,43.5 + parent: 2 + - uid: 4142 + components: + - type: Transform + pos: -18.5,33.5 + parent: 2 + - uid: 4144 + components: + - type: Transform + pos: -9.5,32.5 + parent: 2 + - uid: 4146 + components: + - type: Transform + pos: -12.5,30.5 + parent: 2 + - uid: 4147 + components: + - type: Transform + pos: -10.5,33.5 + parent: 2 + - uid: 4151 + components: + - type: Transform + pos: -12.5,31.5 + parent: 2 + - uid: 4152 + components: + - type: Transform + pos: -0.5,29.5 + parent: 2 + - uid: 4160 + components: + - type: Transform + pos: -2.5,40.5 + parent: 2 + - uid: 4163 + components: + - type: Transform + pos: -0.5,39.5 + parent: 2 + - uid: 4181 + components: + - type: Transform + pos: -2.5,41.5 + parent: 2 + - uid: 4182 + components: + - type: Transform + pos: -3.5,31.5 + parent: 2 + - uid: 4186 + components: + - type: Transform + pos: -1.5,31.5 + parent: 2 + - uid: 4188 + components: + - type: Transform + pos: -4.5,28.5 + parent: 2 + - uid: 4189 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 4192 + components: + - type: Transform + pos: -9.5,45.5 + parent: 2 + - uid: 4200 + components: + - type: Transform + pos: -9.5,38.5 + parent: 2 + - uid: 4223 + components: + - type: Transform + pos: -15.5,33.5 + parent: 2 + - uid: 4224 + components: + - type: Transform + pos: -8.5,38.5 + parent: 2 + - uid: 4229 + components: + - type: Transform + pos: -13.5,33.5 + parent: 2 + - uid: 4230 + components: + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 4232 + components: + - type: Transform + pos: -9.5,47.5 + parent: 2 + - uid: 4234 + components: + - type: Transform + pos: -10.5,47.5 + parent: 2 + - uid: 4236 + components: + - type: Transform + pos: -10.5,53.5 + parent: 2 + - uid: 4237 + components: + - type: Transform + pos: -9.5,40.5 + parent: 2 + - uid: 4238 + components: + - type: Transform + pos: -15.5,54.5 + parent: 2 + - uid: 4243 + components: + - type: Transform + pos: 22.5,27.5 + parent: 2 + - uid: 4244 + components: + - type: Transform + pos: -20.5,40.5 + parent: 2 + - uid: 4249 + components: + - type: Transform + pos: -20.5,45.5 + parent: 2 + - uid: 4253 + components: + - type: Transform + pos: -20.5,39.5 + parent: 2 + - uid: 4254 + components: + - type: Transform + pos: -12.5,53.5 + parent: 2 + - uid: 4270 + components: + - type: Transform + pos: -20.5,46.5 + parent: 2 + - uid: 4300 + components: + - type: Transform + pos: -18.5,53.5 + parent: 2 + - uid: 4314 + components: + - type: Transform + pos: -20.5,53.5 + parent: 2 + - uid: 4316 + components: + - type: Transform + pos: -21.5,40.5 + parent: 2 + - uid: 4324 + components: + - type: Transform + pos: -21.5,56.5 + parent: 2 + - uid: 4325 + components: + - type: Transform + pos: -19.5,56.5 + parent: 2 + - uid: 4327 + components: + - type: Transform + pos: -17.5,57.5 + parent: 2 + - uid: 4328 + components: + - type: Transform + pos: -14.5,57.5 + parent: 2 + - uid: 4332 + components: + - type: Transform + pos: -13.5,57.5 + parent: 2 + - uid: 4339 + components: + - type: Transform + pos: -1.5,45.5 + parent: 2 + - uid: 4340 + components: + - type: Transform + pos: -1.5,44.5 + parent: 2 + - uid: 4347 + components: + - type: Transform + pos: -1.5,50.5 + parent: 2 + - uid: 4355 + components: + - type: Transform + pos: -2.5,51.5 + parent: 2 + - uid: 4359 + components: + - type: Transform + pos: -2.5,52.5 + parent: 2 + - uid: 4361 + components: + - type: Transform + pos: -2.5,53.5 + parent: 2 + - uid: 4364 + components: + - type: Transform + pos: -7.5,56.5 + parent: 2 + - uid: 4368 + components: + - type: Transform + pos: -7.5,57.5 + parent: 2 + - uid: 4369 + components: + - type: Transform + pos: -6.5,55.5 + parent: 2 + - uid: 4370 + components: + - type: Transform + pos: -4.5,57.5 + parent: 2 + - uid: 4382 + components: + - type: Transform + pos: -5.5,58.5 + parent: 2 + - uid: 4384 + components: + - type: Transform + pos: -4.5,58.5 + parent: 2 + - uid: 4389 + components: + - type: Transform + pos: -4.5,55.5 + parent: 2 + - uid: 4390 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 4395 + components: + - type: Transform + pos: -2.5,26.5 + parent: 2 + - uid: 4409 + components: + - type: Transform + pos: 22.5,44.5 + parent: 2 + - uid: 4412 + components: + - type: Transform + pos: 24.5,41.5 + parent: 2 + - uid: 4417 + components: + - type: Transform + pos: 25.5,40.5 + parent: 2 + - uid: 4422 + components: + - type: Transform + pos: 22.5,43.5 + parent: 2 + - uid: 4426 + components: + - type: Transform + pos: 25.5,30.5 + parent: 2 + - uid: 4428 + components: + - type: Transform + pos: 25.5,32.5 + parent: 2 + - uid: 4431 + components: + - type: Transform + pos: 28.5,33.5 + parent: 2 + - uid: 4432 + components: + - type: Transform + pos: 30.5,33.5 + parent: 2 + - uid: 4437 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 4438 + components: + - type: Transform + pos: 32.5,30.5 + parent: 2 + - uid: 4440 + components: + - type: Transform + pos: 35.5,30.5 + parent: 2 + - uid: 4443 + components: + - type: Transform + pos: 37.5,30.5 + parent: 2 + - uid: 4445 + components: + - type: Transform + pos: 29.5,30.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: 26.5,29.5 + parent: 2 + - uid: 4451 + components: + - type: Transform + pos: 37.5,32.5 + parent: 2 + - uid: 4452 + components: + - type: Transform + pos: 40.5,32.5 + parent: 2 + - uid: 4457 + components: + - type: Transform + pos: 28.5,35.5 + parent: 2 + - uid: 4461 + components: + - type: Transform + pos: 28.5,38.5 + parent: 2 + - uid: 4468 + components: + - type: Transform + pos: 28.5,36.5 + parent: 2 + - uid: 4472 + components: + - type: Transform + pos: 26.5,39.5 + parent: 2 + - uid: 4474 + components: + - type: Transform + pos: 41.5,32.5 + parent: 2 + - uid: 4483 + components: + - type: Transform + pos: 27.5,39.5 + parent: 2 + - uid: 4508 + components: + - type: Transform + pos: 45.5,32.5 + parent: 2 + - uid: 4530 + components: + - type: Transform + pos: 29.5,-13.5 + parent: 2 + - uid: 4536 + components: + - type: Transform + pos: 29.5,-15.5 + parent: 2 + - uid: 4537 + components: + - type: Transform + pos: 22.5,-26.5 + parent: 2 + - uid: 4544 + components: + - type: Transform + pos: 48.5,28.5 + parent: 2 + - uid: 4546 + components: + - type: Transform + pos: 48.5,25.5 + parent: 2 + - uid: 4552 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 + - uid: 4554 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 2 + - uid: 4556 + components: + - type: Transform + pos: 47.5,18.5 + parent: 2 + - uid: 4576 + components: + - type: Transform + pos: 47.5,19.5 + parent: 2 + - uid: 4578 + components: + - type: Transform + pos: 50.5,19.5 + parent: 2 + - uid: 4583 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 4584 + components: + - type: Transform + pos: 50.5,16.5 + parent: 2 + - uid: 4594 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 4597 + components: + - type: Transform + pos: 21.5,-29.5 + parent: 2 + - uid: 4599 + components: + - type: Transform + pos: 21.5,-26.5 + parent: 2 + - uid: 4660 + components: + - type: Transform + pos: 40.5,-14.5 + parent: 2 + - uid: 4661 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: 51.5,6.5 + parent: 2 + - uid: 4680 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 4681 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 4684 + components: + - type: Transform + pos: 48.5,5.5 + parent: 2 + - uid: 4687 + components: + - type: Transform + pos: 50.5,10.5 + parent: 2 + - uid: 4703 + components: + - type: Transform + pos: 49.5,6.5 + parent: 2 + - uid: 4714 + components: + - type: Transform + pos: 49.5,-1.5 + parent: 2 + - uid: 4716 + components: + - type: Transform + pos: 48.5,3.5 + parent: 2 + - uid: 4717 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 4724 + components: + - type: Transform + pos: 45.5,-2.5 + parent: 2 + - uid: 4728 + components: + - type: Transform + pos: 48.5,0.5 + parent: 2 + - uid: 4731 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 4732 + components: + - type: Transform + pos: 55.5,1.5 + parent: 2 + - uid: 4736 + components: + - type: Transform + pos: 55.5,2.5 + parent: 2 + - uid: 4743 + components: + - type: Transform + pos: 59.5,2.5 + parent: 2 + - uid: 4746 + components: + - type: Transform + pos: 60.5,1.5 + parent: 2 + - uid: 4925 + components: + - type: Transform + pos: 40.5,-16.5 + parent: 2 + - uid: 4946 + components: + - type: Transform + pos: 59.5,-2.5 + parent: 2 + - uid: 5082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,41.5 + parent: 2 + - uid: 5086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,37.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 5089 + components: + - type: Transform + pos: 54.5,-2.5 + parent: 2 + - uid: 5091 + components: + - type: Transform + pos: 51.5,-1.5 + parent: 2 + - uid: 5098 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 2 + - uid: 5105 + components: + - type: Transform + pos: 49.5,-5.5 + parent: 2 + - uid: 5107 + components: + - type: Transform + pos: 38.5,0.5 + parent: 2 + - uid: 5108 + components: + - type: Transform + pos: 37.5,0.5 + parent: 2 + - uid: 5109 + components: + - type: Transform + pos: 38.5,-2.5 + parent: 2 + - uid: 5111 + components: + - type: Transform + pos: 39.5,-0.5 + parent: 2 + - uid: 5120 + components: + - type: Transform + pos: 38.5,-4.5 + parent: 2 + - uid: 5150 + components: + - type: Transform + pos: 44.5,-7.5 + parent: 2 + - uid: 5156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,34.5 + parent: 2 + - uid: 5162 + components: + - type: Transform + pos: 30.5,-24.5 + parent: 2 + - uid: 5163 + components: + - type: Transform + pos: 40.5,-32.5 + parent: 2 + - uid: 5164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,48.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,36.5 + parent: 2 + - uid: 5179 + components: + - type: Transform + pos: 39.5,-32.5 + parent: 2 + - uid: 5181 + components: + - type: Transform + pos: 30.5,-25.5 + parent: 2 + - uid: 5183 + components: + - type: Transform + pos: 34.5,-3.5 + parent: 2 + - uid: 5197 + components: + - type: Transform + pos: 34.5,-6.5 + parent: 2 + - uid: 5198 + components: + - type: Transform + pos: 41.5,-2.5 + parent: 2 + - uid: 5209 + components: + - type: Transform + pos: 43.5,-2.5 + parent: 2 + - uid: 5215 + components: + - type: Transform + pos: 46.5,-2.5 + parent: 2 + - uid: 5216 + components: + - type: Transform + pos: 30.5,-20.5 + parent: 2 + - uid: 5218 + components: + - type: Transform + pos: 25.5,17.5 + parent: 2 + - uid: 5228 + components: + - type: Transform + pos: -46.5,-14.5 + parent: 2 + - uid: 5244 + components: + - type: Transform + pos: -44.5,-14.5 + parent: 2 + - uid: 5253 + components: + - type: Transform + pos: -1.5,-18.5 + parent: 2 + - uid: 5256 + components: + - type: Transform + pos: 8.5,41.5 + parent: 2 + - uid: 5953 + components: + - type: Transform + pos: 12.5,-20.5 + parent: 2 + - uid: 7096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,36.5 + parent: 2 + - uid: 7097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,36.5 + parent: 2 + - uid: 7098 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,40.5 + parent: 2 + - uid: 7142 + components: + - type: Transform + pos: -15.5,-50.5 + parent: 2 + - uid: 7143 + components: + - type: Transform + pos: -20.5,-48.5 + parent: 2 + - uid: 7146 + components: + - type: Transform + pos: -16.5,-50.5 + parent: 2 + - uid: 7147 + components: + - type: Transform + pos: -18.5,-50.5 + parent: 2 + - uid: 7180 + components: + - type: Transform + pos: -19.5,-50.5 + parent: 2 + - uid: 7223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,48.5 + parent: 2 + - uid: 7766 + components: + - type: Transform + pos: -12.5,27.5 + parent: 2 + - uid: 7990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,-8.5 + parent: 2 + - uid: 8457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,26.5 + parent: 2 + - uid: 8617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,44.5 + parent: 2 + - uid: 9032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-40.5 + parent: 2 + - uid: 9044 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,55.5 + parent: 2 + - uid: 10535 + components: + - type: Transform + pos: -5.5,-40.5 + parent: 2 + - uid: 10541 + components: + - type: Transform + pos: -4.5,-42.5 + parent: 2 + - uid: 11862 + components: + - type: Transform + pos: -2.5,-42.5 + parent: 2 + - uid: 11875 + components: + - type: Transform + pos: -5.5,-39.5 + parent: 2 + - uid: 11892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-36.5 + parent: 2 + - uid: 13279 + components: + - type: Transform + pos: -1.5,-42.5 + parent: 2 + - uid: 13502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-10.5 + parent: 2 + - uid: 13686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + - uid: 13764 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,44.5 + parent: 2 + - uid: 14189 + components: + - type: Transform + pos: 47.5,-7.5 + parent: 2 + - uid: 14201 + components: + - type: Transform + pos: -67.5,-29.5 + parent: 2 + - uid: 14216 + components: + - type: Transform + pos: 48.5,-2.5 + parent: 2 + - uid: 14231 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-47.5 + parent: 2 + - uid: 14239 + components: + - type: Transform + pos: 46.5,-7.5 + parent: 2 + - uid: 14240 + components: + - type: Transform + pos: 49.5,-3.5 + parent: 2 + - uid: 14243 + components: + - type: Transform + pos: -69.5,-29.5 + parent: 2 + - uid: 14248 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 + - uid: 14255 + components: + - type: Transform + pos: 25.5,36.5 + parent: 2 + - uid: 14270 + components: + - type: Transform + pos: -67.5,-31.5 + parent: 2 + - uid: 14343 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,57.5 + parent: 2 + - uid: 14411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,58.5 + parent: 2 + - uid: 14427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,58.5 + parent: 2 + - uid: 14430 + components: + - type: Transform + pos: -7.5,-42.5 + parent: 2 + - uid: 14830 + components: + - type: Transform + pos: -26.5,18.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: 46.5,32.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + pos: 49.5,29.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + pos: 50.5,29.5 + parent: 2 + - uid: 15343 + components: + - type: Transform + pos: 52.5,29.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + pos: 53.5,31.5 + parent: 2 + - uid: 15345 + components: + - type: Transform + pos: 53.5,32.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + pos: 49.5,33.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + pos: 49.5,32.5 + parent: 2 + - uid: 15366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,-9.5 + parent: 2 + - uid: 15367 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 2 + - uid: 15919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-37.5 + parent: 2 + - uid: 15920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-37.5 + parent: 2 + - uid: 15921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,-36.5 + parent: 2 + - uid: 16033 + components: + - type: Transform + pos: -8.5,58.5 + parent: 2 + - uid: 16035 + components: + - type: Transform + pos: -13.5,58.5 + parent: 2 + - uid: 16039 + components: + - type: Transform + pos: -9.5,59.5 + parent: 2 + - uid: 16040 + components: + - type: Transform + pos: -10.5,59.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 2 + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 2 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 2 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 2 + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 2 + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 23 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 2 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 2 + - uid: 27 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 2 + - uid: 37 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 2 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 2 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-2.5 + parent: 2 + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - uid: 52 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,3.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - uid: 56 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 2 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 2 + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 2 + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 2 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,14.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 74 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + - uid: 77 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + - uid: 84 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-7.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,7.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,10.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,7.5 + parent: 2 + - uid: 102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + - uid: 103 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + - uid: 108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,5.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - uid: 120 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 2 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + - uid: 125 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,11.5 + parent: 2 + - uid: 129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + - uid: 131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - uid: 134 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,11.5 + parent: 2 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,8.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 149 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 2 + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 161 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,14.5 + parent: 2 + - uid: 178 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 + - uid: 181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: -2.5,15.5 + parent: 2 + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,4.5 + parent: 2 + - uid: 191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,10.5 + parent: 2 + - uid: 251 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 2 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,7.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 291 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 503 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: -1.5,15.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -6.5,-11.5 + parent: 2 + - uid: 704 + components: + - type: Transform + pos: 1.5,15.5 + parent: 2 + - uid: 706 + components: + - type: Transform + pos: 11.5,15.5 + parent: 2 + - uid: 707 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: -29.5,-44.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: -31.5,-40.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: -29.5,-40.5 + parent: 2 + - uid: 1605 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-27.5 + parent: 2 + - uid: 1642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-1.5 + parent: 2 + - uid: 1646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,2.5 + parent: 2 + - uid: 1649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,8.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,9.5 + parent: 2 + - uid: 1653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,3.5 + parent: 2 + - uid: 1656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,2.5 + parent: 2 + - uid: 1662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,1.5 + parent: 2 + - uid: 1663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,1.5 + parent: 2 + - uid: 1665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,1.5 + parent: 2 + - uid: 1667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,6.5 + parent: 2 + - uid: 1668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,4.5 + parent: 2 + - uid: 1670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,10.5 + parent: 2 + - uid: 1672 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 2 + - uid: 1678 + components: + - type: Transform + pos: 17.5,-2.5 + parent: 2 + - uid: 1680 + components: + - type: Transform + pos: 18.5,-4.5 + parent: 2 + - uid: 1698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,-0.5 + parent: 2 + - uid: 1699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,0.5 + parent: 2 + - uid: 1700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + - uid: 1704 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 2 + - uid: 2197 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 42.5,16.5 + parent: 2 + - uid: 2290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-40.5 + parent: 2 + - uid: 2808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-24.5 + parent: 2 + - uid: 2811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-30.5 + parent: 2 + - uid: 2814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-27.5 + parent: 2 + - uid: 2828 + components: + - type: Transform + pos: 23.5,35.5 + parent: 2 + - uid: 2915 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-25.5 + parent: 2 + - uid: 2919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-24.5 + parent: 2 + - uid: 2921 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-26.5 + parent: 2 + - uid: 2923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-24.5 + parent: 2 + - uid: 2926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-23.5 + parent: 2 + - uid: 2928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-24.5 + parent: 2 + - uid: 3013 + components: + - type: Transform + pos: -25.5,-40.5 + parent: 2 + - uid: 3052 + components: + - type: Transform + pos: -17.5,-37.5 + parent: 2 + - uid: 3064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-18.5 + parent: 2 + - uid: 3065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-19.5 + parent: 2 + - uid: 3071 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-23.5 + parent: 2 + - uid: 3073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-26.5 + parent: 2 + - uid: 3074 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-27.5 + parent: 2 + - uid: 3075 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 2 + - uid: 3080 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-18.5 + parent: 2 + - uid: 3081 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-18.5 + parent: 2 + - uid: 3091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-24.5 + parent: 2 + - uid: 3097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-18.5 + parent: 2 + - uid: 3098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-19.5 + parent: 2 + - uid: 3102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-23.5 + parent: 2 + - uid: 3104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-24.5 + parent: 2 + - uid: 3113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-27.5 + parent: 2 + - uid: 3114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-25.5 + parent: 2 + - uid: 3124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-19.5 + parent: 2 + - uid: 3127 + components: + - type: Transform + pos: -25.5,-27.5 + parent: 2 + - uid: 3141 + components: + - type: Transform + pos: -25.5,-30.5 + parent: 2 + - uid: 3142 + components: + - type: Transform + pos: -24.5,-30.5 + parent: 2 + - uid: 3144 + components: + - type: Transform + pos: -22.5,-30.5 + parent: 2 + - uid: 3145 + components: + - type: Transform + pos: -21.5,-30.5 + parent: 2 + - uid: 3149 + components: + - type: Transform + pos: -29.5,-36.5 + parent: 2 + - uid: 3150 + components: + - type: Transform + pos: -26.5,-36.5 + parent: 2 + - uid: 3151 + components: + - type: Transform + pos: -25.5,-36.5 + parent: 2 + - uid: 3156 + components: + - type: Transform + pos: -21.5,-35.5 + parent: 2 + - uid: 3160 + components: + - type: Transform + pos: -21.5,-31.5 + parent: 2 + - uid: 3164 + components: + - type: Transform + pos: -29.5,-32.5 + parent: 2 + - uid: 3165 + components: + - type: Transform + pos: -29.5,-31.5 + parent: 2 + - uid: 3172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-32.5 + parent: 2 + - uid: 3175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-30.5 + parent: 2 + - uid: 3188 + components: + - type: Transform + pos: -28.5,-29.5 + parent: 2 + - uid: 3205 + components: + - type: Transform + pos: -28.5,-25.5 + parent: 2 + - uid: 3235 + components: + - type: Transform + pos: -36.5,-20.5 + parent: 2 + - uid: 3253 + components: + - type: Transform + pos: -28.5,-22.5 + parent: 2 + - uid: 3255 + components: + - type: Transform + pos: -29.5,-19.5 + parent: 2 + - uid: 3261 + components: + - type: Transform + pos: -29.5,-21.5 + parent: 2 + - uid: 3262 + components: + - type: Transform + pos: -29.5,-20.5 + parent: 2 + - uid: 3263 + components: + - type: Transform + pos: -30.5,-20.5 + parent: 2 + - uid: 3264 + components: + - type: Transform + pos: -32.5,-28.5 + parent: 2 + - uid: 3266 + components: + - type: Transform + pos: -35.5,-28.5 + parent: 2 + - uid: 3267 + components: + - type: Transform + pos: -36.5,-28.5 + parent: 2 + - uid: 3268 + components: + - type: Transform + pos: -37.5,-28.5 + parent: 2 + - uid: 3271 + components: + - type: Transform + pos: -37.5,-25.5 + parent: 2 + - uid: 3275 + components: + - type: Transform + pos: -37.5,-21.5 + parent: 2 + - uid: 3276 + components: + - type: Transform + pos: -31.5,-24.5 + parent: 2 + - uid: 3279 + components: + - type: Transform + pos: -31.5,-21.5 + parent: 2 + - uid: 3280 + components: + - type: Transform + pos: -31.5,-20.5 + parent: 2 + - uid: 3392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-17.5 + parent: 2 + - uid: 3393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,-17.5 + parent: 2 + - uid: 3397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,-17.5 + parent: 2 + - uid: 3400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,-19.5 + parent: 2 + - uid: 3402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-19.5 + parent: 2 + - uid: 3470 + components: + - type: Transform + pos: -1.5,34.5 + parent: 2 + - uid: 3475 + components: + - type: Transform + pos: -32.5,-43.5 + parent: 2 + - uid: 3484 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-39.5 + parent: 2 + - uid: 3502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + - uid: 3504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-39.5 + parent: 2 + - uid: 3522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-42.5 + parent: 2 + - uid: 3523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-39.5 + parent: 2 + - uid: 3524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-40.5 + parent: 2 + - uid: 3525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-39.5 + parent: 2 + - uid: 3528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-39.5 + parent: 2 + - uid: 3529 + components: + - type: Transform + pos: -32.5,-39.5 + parent: 2 + - uid: 3530 + components: + - type: Transform + pos: -32.5,-37.5 + parent: 2 + - uid: 3531 + components: + - type: Transform + pos: -32.5,-41.5 + parent: 2 + - uid: 3533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-41.5 + parent: 2 + - uid: 3534 + components: + - type: Transform + pos: -32.5,-42.5 + parent: 2 + - uid: 3561 + components: + - type: Transform + pos: -8.5,32.5 + parent: 2 + - uid: 3566 + components: + - type: Transform + pos: -5.5,33.5 + parent: 2 + - uid: 3582 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,16.5 + parent: 2 + - uid: 3617 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-43.5 + parent: 2 + - uid: 3619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,15.5 + parent: 2 + - uid: 3620 + components: + - type: Transform + pos: 24.5,-4.5 + parent: 2 + - uid: 3622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 2 + - uid: 3625 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-33.5 + parent: 2 + - uid: 3627 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-36.5 + parent: 2 + - uid: 3690 + components: + - type: Transform + pos: 41.5,6.5 + parent: 2 + - uid: 3692 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 3694 + components: + - type: Transform + pos: 38.5,6.5 + parent: 2 + - uid: 3695 + components: + - type: Transform + pos: 33.5,5.5 + parent: 2 + - uid: 3703 + components: + - type: Transform + pos: 37.5,2.5 + parent: 2 + - uid: 3704 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 3712 + components: + - type: Transform + pos: 34.5,6.5 + parent: 2 + - uid: 3723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,12.5 + parent: 2 + - uid: 3726 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 3727 + components: + - type: Transform + pos: 41.5,10.5 + parent: 2 + - uid: 3728 + components: + - type: Transform + pos: 43.5,10.5 + parent: 2 + - uid: 3732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + - uid: 3737 + components: + - type: Transform + pos: -40.5,-22.5 + parent: 2 + - uid: 3744 + components: + - type: Transform + pos: -40.5,-25.5 + parent: 2 + - uid: 3745 + components: + - type: Transform + pos: -40.5,-23.5 + parent: 2 + - uid: 3752 + components: + - type: Transform + pos: -42.5,-28.5 + parent: 2 + - uid: 3757 + components: + - type: Transform + pos: -40.5,-28.5 + parent: 2 + - uid: 3758 + components: + - type: Transform + pos: -40.5,-26.5 + parent: 2 + - uid: 3759 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 3760 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 3762 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 3767 + components: + - type: Transform + pos: -40.5,-19.5 + parent: 2 + - uid: 3769 + components: + - type: Transform + pos: -40.5,-17.5 + parent: 2 + - uid: 3772 + components: + - type: Transform + pos: 32.5,2.5 + parent: 2 + - uid: 3773 + components: + - type: Transform + pos: -40.5,-18.5 + parent: 2 + - uid: 3774 + components: + - type: Transform + pos: 43.5,7.5 + parent: 2 + - uid: 3776 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 3778 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - uid: 3784 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - uid: 3786 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,12.5 + parent: 2 + - uid: 3787 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,12.5 + parent: 2 + - uid: 3789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,12.5 + parent: 2 + - uid: 3797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,16.5 + parent: 2 + - uid: 3799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 + - uid: 3806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,11.5 + parent: 2 + - uid: 3808 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 3817 + components: + - type: Transform + pos: 35.5,20.5 + parent: 2 + - uid: 3819 + components: + - type: Transform + pos: 34.5,20.5 + parent: 2 + - uid: 3823 + components: + - type: Transform + pos: 41.5,19.5 + parent: 2 + - uid: 3824 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 + - uid: 3825 + components: + - type: Transform + pos: 41.5,20.5 + parent: 2 + - uid: 3827 + components: + - type: Transform + pos: 39.5,21.5 + parent: 2 + - uid: 3829 + components: + - type: Transform + pos: 37.5,21.5 + parent: 2 + - uid: 3882 + components: + - type: Transform + pos: 19.5,16.5 + parent: 2 + - uid: 3885 + components: + - type: Transform + pos: 18.5,16.5 + parent: 2 + - uid: 3886 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 3891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,16.5 + parent: 2 + - uid: 3894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,15.5 + parent: 2 + - uid: 3896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,16.5 + parent: 2 + - uid: 4141 + components: + - type: Transform + pos: 16.5,16.5 + parent: 2 + - uid: 4143 + components: + - type: Transform + pos: 16.5,18.5 + parent: 2 + - uid: 4145 + components: + - type: Transform + pos: 15.5,19.5 + parent: 2 + - uid: 4148 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 4149 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 4150 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 4153 + components: + - type: Transform + pos: 10.5,22.5 + parent: 2 + - uid: 4154 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 4156 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 4159 + components: + - type: Transform + pos: 9.5,22.5 + parent: 2 + - uid: 4161 + components: + - type: Transform + pos: 9.5,20.5 + parent: 2 + - uid: 4162 + components: + - type: Transform + pos: 9.5,19.5 + parent: 2 + - uid: 4183 + components: + - type: Transform + pos: 8.5,22.5 + parent: 2 + - uid: 4184 + components: + - type: Transform + pos: 5.5,22.5 + parent: 2 + - uid: 4185 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 4187 + components: + - type: Transform + pos: 3.5,23.5 + parent: 2 + - uid: 4190 + components: + - type: Transform + pos: 5.5,19.5 + parent: 2 + - uid: 4191 + components: + - type: Transform + pos: 5.5,21.5 + parent: 2 + - uid: 4193 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 4201 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 4221 + components: + - type: Transform + pos: 9.5,25.5 + parent: 2 + - uid: 4222 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 4225 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 4227 + components: + - type: Transform + pos: 16.5,23.5 + parent: 2 + - uid: 4231 + components: + - type: Transform + pos: 9.5,30.5 + parent: 2 + - uid: 4233 + components: + - type: Transform + pos: 10.5,31.5 + parent: 2 + - uid: 4235 + components: + - type: Transform + pos: 11.5,32.5 + parent: 2 + - uid: 4239 + components: + - type: Transform + pos: 16.5,31.5 + parent: 2 + - uid: 4241 + components: + - type: Transform + pos: 16.5,29.5 + parent: 2 + - uid: 4242 + components: + - type: Transform + pos: 16.5,28.5 + parent: 2 + - uid: 4248 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 4315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-16.5 + parent: 2 + - uid: 4320 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-16.5 + parent: 2 + - uid: 4333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-16.5 + parent: 2 + - uid: 4341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,-16.5 + parent: 2 + - uid: 4392 + components: + - type: Transform + pos: -30.5,-44.5 + parent: 2 + - uid: 4404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + - uid: 4405 + components: + - type: Transform + pos: -39.5,-14.5 + parent: 2 + - uid: 4410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-14.5 + parent: 2 + - uid: 4504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,52.5 + parent: 2 + - uid: 4533 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 4539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,3.5 + parent: 2 + - uid: 4608 + components: + - type: Transform + pos: -10.5,6.5 + parent: 2 + - uid: 4696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + - uid: 4699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 2 + - uid: 4700 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,9.5 + parent: 2 + - uid: 4702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,10.5 + parent: 2 + - uid: 4707 + components: + - type: Transform + 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: 5168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,35.5 + parent: 2 + - uid: 5217 + components: + - type: Transform + pos: -8.5,27.5 + parent: 2 + - uid: 5219 + components: + - type: Transform + pos: -10.5,27.5 + parent: 2 + - uid: 5225 + components: + - type: Transform + 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 + rot: 3.141592653589793 rad + pos: -19.5,-14.5 + parent: 2 + - uid: 5885 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 5928 + components: + - type: Transform + pos: -30.5,-40.5 + parent: 2 + - uid: 5929 + components: + - type: Transform + pos: -29.5,-43.5 + parent: 2 + - uid: 6025 + components: + - type: Transform + pos: -16.5,-41.5 + parent: 2 + - uid: 6027 + components: + - type: Transform + pos: -26.5,-41.5 + parent: 2 + - uid: 6031 + components: + - type: Transform + pos: -27.5,-43.5 + parent: 2 + - uid: 6032 + components: + - type: Transform + pos: -23.5,-44.5 + parent: 2 + - uid: 6035 + components: + - type: Transform + pos: -16.5,-42.5 + parent: 2 + - uid: 6058 + components: + - type: Transform + pos: -20.5,-44.5 + parent: 2 + - uid: 6062 + components: + - type: Transform + pos: -17.5,-44.5 + parent: 2 + - uid: 6064 + components: + - type: Transform + pos: -31.5,-44.5 + parent: 2 + - uid: 6066 + components: + - type: Transform + pos: -26.5,-44.5 + parent: 2 + - uid: 6085 + components: + - type: Transform + pos: -23.5,-42.5 + parent: 2 + - uid: 6086 + components: + - type: Transform + pos: -23.5,-43.5 + parent: 2 + - uid: 6143 + components: + - type: Transform + pos: -12.5,-43.5 + parent: 2 + - uid: 6210 + components: + - type: Transform + pos: -13.5,-43.5 + parent: 2 + - uid: 6284 + components: + - type: Transform + pos: -32.5,-44.5 + parent: 2 + - uid: 6455 + components: + - type: Transform + pos: 17.5,32.5 + parent: 2 + - uid: 6458 + components: + - type: Transform + pos: 17.5,33.5 + parent: 2 + - uid: 6471 + components: + - type: Transform + pos: 17.5,37.5 + parent: 2 + - uid: 6621 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + - uid: 6644 + components: + - type: Transform + pos: -35.5,-44.5 + parent: 2 + - uid: 6652 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 6656 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,36.5 + parent: 2 + - uid: 6666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + - uid: 6667 + components: + - type: Transform + pos: -4.5,32.5 + parent: 2 + - uid: 6672 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,31.5 + parent: 2 + - uid: 6673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,31.5 + parent: 2 + - uid: 6674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,31.5 + parent: 2 + - uid: 6676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,31.5 + parent: 2 + - uid: 6692 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,29.5 + parent: 2 + - uid: 6694 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,30.5 + parent: 2 + - uid: 6705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,39.5 + parent: 2 + - uid: 6797 + components: + - type: Transform + pos: -0.5,22.5 + parent: 2 + - uid: 7150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,40.5 + parent: 2 + - uid: 7151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,48.5 + parent: 2 + - uid: 7156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,47.5 + parent: 2 + - uid: 7161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,50.5 + parent: 2 + - uid: 7165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,39.5 + parent: 2 + - uid: 7167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,37.5 + parent: 2 + - uid: 7168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,37.5 + parent: 2 + - uid: 7170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,42.5 + parent: 2 + - uid: 7174 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 7239 + components: + - type: Transform + pos: -0.5,23.5 + parent: 2 + - uid: 7642 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 7644 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,38.5 + parent: 2 + - uid: 7645 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - uid: 7649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 7652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,36.5 + parent: 2 + - uid: 7681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,29.5 + parent: 2 + - uid: 7707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,30.5 + parent: 2 + - uid: 7716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,27.5 + parent: 2 + - uid: 7717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,26.5 + parent: 2 + - uid: 7719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,24.5 + parent: 2 + - uid: 7721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,23.5 + parent: 2 + - uid: 7722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,23.5 + parent: 2 + - uid: 7725 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 + - uid: 7726 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 + - uid: 7727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,23.5 + parent: 2 + - uid: 7730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,23.5 + parent: 2 + - uid: 7734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,27.5 + parent: 2 + - uid: 7735 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,27.5 + parent: 2 + - uid: 7736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,26.5 + parent: 2 + - uid: 7738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,23.5 + parent: 2 + - uid: 7960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,28.5 + parent: 2 + - uid: 7961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,28.5 + parent: 2 + - uid: 7964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,28.5 + parent: 2 + - uid: 7981 + components: + - type: Transform + pos: 45.5,10.5 + parent: 2 + - uid: 7982 + components: + - type: Transform + pos: 45.5,7.5 + parent: 2 + - uid: 7984 + components: + - type: Transform + pos: 45.5,5.5 + parent: 2 + - uid: 8033 + components: + - type: Transform + pos: -4.5,22.5 + parent: 2 + - uid: 8101 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 8116 + components: + - type: Transform + pos: 22.5,30.5 + parent: 2 + - uid: 8233 + components: + - type: Transform + pos: -3.5,23.5 + parent: 2 + - uid: 8257 + components: + - type: Transform + pos: -1.5,23.5 + parent: 2 + - uid: 8264 + components: + - type: Transform + pos: -1.5,18.5 + parent: 2 + - uid: 8266 + components: + - type: Transform + pos: -4.5,18.5 + parent: 2 + - uid: 8268 + components: + - type: Transform + pos: -3.5,18.5 + parent: 2 + - uid: 8269 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 9045 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,31.5 + parent: 2 + - uid: 9046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,30.5 + parent: 2 + - uid: 9047 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,21.5 + parent: 2 + - uid: 9050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,1.5 + parent: 2 + - uid: 9051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - uid: 9052 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,25.5 + parent: 2 + - uid: 9053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,26.5 + parent: 2 + - uid: 9054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,25.5 + parent: 2 + - uid: 9055 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,29.5 + parent: 2 + - uid: 9056 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-29.5 + parent: 2 + - uid: 9980 + components: + - type: Transform + pos: -15.5,-37.5 + parent: 2 + - uid: 9992 + components: + - type: Transform + pos: -17.5,-39.5 + parent: 2 + - uid: 10250 + components: + - type: Transform + pos: -18.5,-31.5 + parent: 2 + - uid: 10251 + components: + - type: Transform + pos: -18.5,-36.5 + parent: 2 + - uid: 10252 + components: + - type: Transform + pos: -18.5,-33.5 + parent: 2 + - uid: 10516 + components: + - type: Transform + pos: -14.5,-43.5 + parent: 2 + - uid: 10558 + components: + - type: Transform + pos: -17.5,-36.5 + parent: 2 + - uid: 10775 + components: + - type: Transform + pos: -14.5,-45.5 + parent: 2 + - uid: 10776 + components: + - type: Transform + pos: -35.5,-45.5 + parent: 2 + - uid: 10843 + components: + - type: Transform + pos: -20.5,-13.5 + parent: 2 + - uid: 10997 + components: + - type: Transform + pos: -20.5,-12.5 + parent: 2 + - uid: 11000 + components: + - type: Transform + pos: -13.5,2.5 + parent: 2 + - uid: 11003 + components: + - type: Transform + pos: -17.5,-1.5 + parent: 2 + - uid: 11005 + components: + - type: Transform + pos: -15.5,3.5 + parent: 2 + - uid: 11006 + components: + - type: Transform + pos: -14.5,3.5 + parent: 2 + - uid: 11023 + components: + - type: Transform + pos: -22.5,2.5 + parent: 2 + - uid: 11030 + components: + - type: Transform + pos: -17.5,2.5 + parent: 2 + - uid: 11031 + components: + - type: Transform + pos: -18.5,2.5 + parent: 2 + - uid: 11032 + components: + - type: Transform + pos: -20.5,-14.5 + parent: 2 + - uid: 11035 + components: + - type: Transform + pos: -20.5,-1.5 + parent: 2 + - uid: 11237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,-32.5 + parent: 2 + - uid: 11354 + components: + - type: Transform + pos: -17.5,-47.5 + parent: 2 + - uid: 11459 + components: + - type: Transform + pos: -13.5,56.5 + parent: 2 + - uid: 11595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-36.5 + parent: 2 + - uid: 11596 + components: + - type: Transform + pos: -10.5,56.5 + parent: 2 + - uid: 11597 + components: + - type: Transform + pos: -8.5,53.5 + parent: 2 + - uid: 11598 + components: + - type: Transform + pos: -6.5,53.5 + parent: 2 + - uid: 11599 + components: + - type: Transform + pos: -8.5,56.5 + parent: 2 + - uid: 11629 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-34.5 + parent: 2 + - uid: 13481 + components: + - type: Transform + pos: -14.5,-46.5 + parent: 2 + - uid: 13660 + components: + - type: Transform + pos: 40.5,30.5 + parent: 2 + - uid: 13661 + components: + - type: Transform + pos: 38.5,30.5 + parent: 2 + - uid: 13662 + components: + - type: Transform + pos: 45.5,30.5 + parent: 2 + - uid: 13937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,43.5 + parent: 2 + - uid: 14162 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 2 + - uid: 15926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-35.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 7 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 2 + - uid: 257 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 2 + - uid: 2259 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - uid: 2718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 2 + - uid: 3054 + components: + - type: Transform + pos: -16.5,-37.5 + parent: 2 + - uid: 3483 + components: + - type: Transform + pos: -16.5,3.5 + parent: 2 + - uid: 4502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,-46.5 + parent: 2 + - uid: 5189 + components: + - type: Transform + pos: -26.5,-14.5 + parent: 2 + - uid: 5261 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 2 + - uid: 5263 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 2 + - uid: 5311 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 5332 + components: + - type: Transform + pos: 5.5,4.5 + parent: 2 + - uid: 5335 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 2 + - uid: 5339 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 2 + - uid: 5341 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 2 + - uid: 5343 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 2 + - uid: 5344 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 2 + - uid: 5346 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 2 + - uid: 5353 + components: + - type: Transform + pos: 7.5,-7.5 + parent: 2 + - uid: 5354 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 2 + - uid: 5357 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 2 + - uid: 5358 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 2 + - uid: 5361 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 5362 + components: + - type: Transform + pos: 12.5,2.5 + parent: 2 + - uid: 5363 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 5367 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 2 + - uid: 5369 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 2 + - uid: 5370 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 2 + - uid: 5373 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 2 + - uid: 5374 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 2 + - uid: 5375 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 2 + - uid: 5379 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 2 + - uid: 5381 + components: + - type: Transform + pos: -1.5,-11.5 + parent: 2 + - uid: 5388 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 2 + - uid: 5389 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 5396 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 5400 + components: + - type: Transform + pos: 8.5,6.5 + parent: 2 + - uid: 5404 + components: + - type: Transform + pos: 8.5,5.5 + parent: 2 + - uid: 5406 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 5408 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 5411 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 5414 + components: + - type: Transform + pos: -0.5,7.5 + parent: 2 + - uid: 5416 + components: + - type: Transform + pos: -2.5,4.5 + parent: 2 + - uid: 5423 + components: + - type: Transform + pos: -2.5,6.5 + parent: 2 + - uid: 5424 + components: + - type: Transform + pos: -6.5,6.5 + parent: 2 + - uid: 5428 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 2 + - uid: 5429 + components: + - type: Transform + pos: -1.5,10.5 + parent: 2 + - uid: 5431 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 5433 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 5436 + components: + - type: Transform + pos: 4.5,11.5 + parent: 2 + - uid: 5437 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 5440 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 + - uid: 5441 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 + - uid: 5606 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 + - uid: 5705 + components: + - type: Transform + pos: -18.5,-35.5 + parent: 2 + - uid: 5884 + components: + - type: Transform + pos: 12.5,11.5 + parent: 2 + - uid: 5886 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 5927 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 6023 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 6024 + components: + - type: Transform + pos: 16.5,3.5 + parent: 2 + - uid: 6059 + components: + - type: Transform + pos: 18.5,3.5 + parent: 2 + - uid: 6065 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 6079 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 2 + - uid: 6080 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 2 + - uid: 6081 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 2 + - uid: 6082 + components: + - type: Transform + pos: 6.5,14.5 + parent: 2 + - uid: 6083 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 6084 + components: + - type: Transform + pos: -2.5,14.5 + parent: 2 + - uid: 6093 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 + - uid: 6094 + components: + - type: Transform + pos: -5.5,4.5 + parent: 2 + - uid: 6133 + components: + - type: Transform + pos: -6.5,5.5 + parent: 2 + - uid: 6135 + components: + - type: Transform + pos: -6.5,9.5 + parent: 2 + - uid: 6137 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: -6.5,11.5 + parent: 2 + - uid: 6142 + components: + - type: Transform + pos: -22.5,-27.5 + parent: 2 + - uid: 6144 + components: + - type: Transform + pos: -0.5,15.5 + parent: 2 + - uid: 6145 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 6172 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 + - uid: 6175 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 6211 + components: + - type: Transform + pos: 8.5,15.5 + parent: 2 + - uid: 6253 + components: + - type: Transform + pos: -18.5,-34.5 + parent: 2 + - uid: 6254 + components: + - type: Transform + pos: -14.5,-31.5 + parent: 2 + - uid: 6352 + components: + - type: Transform + pos: -27.5,-36.5 + parent: 2 + - uid: 6362 + components: + - type: Transform + pos: 22.5,-4.5 + parent: 2 + - uid: 6382 + components: + - type: Transform + pos: 22.5,-2.5 + parent: 2 + - uid: 6393 + components: + - type: Transform + pos: 7.5,-26.5 + parent: 2 + - uid: 6423 + components: + - type: Transform + pos: -29.5,-41.5 + parent: 2 + - uid: 6425 + components: + - type: Transform + pos: -20.5,-40.5 + parent: 2 + - uid: 6457 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 6469 + components: + - type: Transform + pos: 22.5,4.5 + parent: 2 + - uid: 6474 + components: + - type: Transform + pos: 22.5,3.5 + parent: 2 + - uid: 6475 + components: + - type: Transform + pos: 23.5,9.5 + parent: 2 + - uid: 6477 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 6479 + components: + - type: Transform + pos: 26.5,3.5 + parent: 2 + - uid: 6480 + components: + - type: Transform + pos: 29.5,2.5 + parent: 2 + - uid: 6483 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 6484 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 6486 + components: + - type: Transform + pos: 18.5,-2.5 + parent: 2 + - uid: 6487 + components: + - type: Transform + pos: 23.5,-1.5 + parent: 2 + - uid: 6489 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 6491 + components: + - type: Transform + pos: 6.5,-27.5 + parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 7.5,-25.5 + parent: 2 + - uid: 6496 + components: + - type: Transform + pos: 10.5,-27.5 + parent: 2 + - uid: 6500 + components: + - type: Transform + pos: 8.5,-27.5 + parent: 2 + - uid: 6532 + components: + - type: Transform + pos: 16.5,-26.5 + parent: 2 + - uid: 6533 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 2 + - uid: 6538 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 2 + - uid: 6539 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 2 + - uid: 6540 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 2 + - uid: 6626 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 2 + - uid: 6628 + components: + - type: Transform + pos: 13.5,-23.5 + parent: 2 + - uid: 6630 + components: + - type: Transform + pos: 13.5,-22.5 + parent: 2 + - uid: 6654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,-31.5 + parent: 2 + - uid: 6655 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 2 + - uid: 6657 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 2 + - uid: 6660 + components: + - type: Transform + pos: -17.5,-20.5 + parent: 2 + - uid: 6668 + components: + - type: Transform + pos: -17.5,-24.5 + parent: 2 + - uid: 6671 + components: + - type: Transform + pos: -17.5,-25.5 + parent: 2 + - uid: 6675 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 2 + - uid: 6677 + components: + - type: Transform + pos: -20.5,-27.5 + parent: 2 + - uid: 6679 + components: + - type: Transform + pos: -21.5,-27.5 + parent: 2 + - uid: 6683 + components: + - type: Transform + pos: -23.5,-27.5 + parent: 2 + - uid: 6684 + components: + - type: Transform + pos: -23.5,-24.5 + parent: 2 + - uid: 6687 + components: + - type: Transform + pos: -21.5,-24.5 + parent: 2 + - uid: 6690 + components: + - type: Transform + pos: -24.5,-18.5 + parent: 2 + - uid: 6691 + components: + - type: Transform + pos: -25.5,-18.5 + parent: 2 + - uid: 6693 + components: + - type: Transform + pos: -26.5,-21.5 + parent: 2 + - uid: 6704 + components: + - type: Transform + pos: -26.5,-22.5 + parent: 2 + - uid: 6706 + components: + - type: Transform + pos: -26.5,-24.5 + parent: 2 + - uid: 6707 + components: + - type: Transform + pos: -24.5,-24.5 + parent: 2 + - uid: 6710 + components: + - type: Transform + pos: -25.5,-25.5 + parent: 2 + - uid: 6783 + components: + - type: Transform + pos: -23.5,-30.5 + parent: 2 + - uid: 6784 + components: + - type: Transform + pos: -21.5,-29.5 + parent: 2 + - uid: 6785 + components: + - type: Transform + pos: -21.5,-36.5 + parent: 2 + - uid: 6794 + components: + - type: Transform + pos: -21.5,-34.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: -21.5,-33.5 + parent: 2 + - uid: 7041 + components: + - type: Transform + pos: -21.5,-32.5 + parent: 2 + - uid: 7043 + components: + - type: Transform + pos: -29.5,-29.5 + parent: 2 + - uid: 7044 + components: + - type: Transform + pos: -29.5,-30.5 + parent: 2 + - uid: 7045 + components: + - type: Transform + pos: -26.5,-29.5 + parent: 2 + - uid: 7051 + components: + - type: Transform + pos: -26.5,-32.5 + parent: 2 + - uid: 7053 + components: + - type: Transform + pos: -26.5,-31.5 + parent: 2 + - uid: 7055 + components: + - type: Transform + pos: -37.5,-20.5 + parent: 2 + - uid: 7060 + components: + - type: Transform + pos: -32.5,-20.5 + parent: 2 + - uid: 7070 + components: + - type: Transform + pos: -28.5,-21.5 + parent: 2 + - uid: 7075 + components: + - type: Transform + pos: -28.5,-24.5 + parent: 2 + - uid: 7081 + components: + - type: Transform + pos: -29.5,-18.5 + parent: 2 + - uid: 7084 + components: + - type: Transform + pos: -33.5,-28.5 + parent: 2 + - uid: 7085 + components: + - type: Transform + pos: -37.5,-27.5 + parent: 2 + - uid: 7086 + components: + - type: Transform + pos: -37.5,-24.5 + parent: 2 + - uid: 7088 + components: + - type: Transform + pos: -37.5,-22.5 + parent: 2 + - uid: 7090 + components: + - type: Transform + pos: -31.5,-22.5 + parent: 2 + - uid: 7091 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - uid: 7094 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 7108 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 2 + - uid: 7109 + components: + - type: Transform + pos: -18.5,-44.5 + parent: 2 + - uid: 7112 + components: + - type: Transform + pos: -32.5,-40.5 + parent: 2 + - uid: 7130 + components: + - type: Transform + pos: -2.5,34.5 + parent: 2 + - uid: 7132 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 7135 + components: + - type: Transform + pos: 33.5,6.5 + parent: 2 + - uid: 7138 + components: + - type: Transform + pos: 38.5,2.5 + parent: 2 + - uid: 7139 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 7141 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 7144 + components: + - type: Transform + pos: -40.5,-21.5 + parent: 2 + - uid: 7148 + components: + - type: Transform + pos: 32.5,11.5 + parent: 2 + - uid: 7152 + components: + - type: Transform + pos: 42.5,10.5 + parent: 2 + - uid: 7153 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 7154 + components: + - type: Transform + pos: -40.5,-24.5 + parent: 2 + - uid: 7155 + components: + - type: Transform + pos: -40.5,-27.5 + parent: 2 + - uid: 7157 + components: + - type: Transform + pos: 43.5,8.5 + parent: 2 + - uid: 7158 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 7160 + components: + - type: Transform + pos: 34.5,2.5 + parent: 2 + - uid: 7162 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 7163 + components: + - type: Transform + pos: -40.5,-20.5 + parent: 2 + - uid: 7164 + components: + - type: Transform + pos: 30.5,2.5 + parent: 2 + - uid: 7166 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 7171 + components: + - type: Transform + pos: 38.5,12.5 + parent: 2 + - uid: 7173 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 7175 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 + - uid: 7181 + components: + - type: Transform + pos: 32.5,10.5 + parent: 2 + - uid: 7182 + components: + - type: Transform + pos: 36.5,16.5 + parent: 2 + - uid: 7186 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 7189 + components: + - type: Transform + pos: 43.5,13.5 + parent: 2 + - uid: 7215 + components: + - type: Transform + pos: 43.5,16.5 + parent: 2 + - uid: 7224 + components: + - type: Transform + pos: 40.5,16.5 + parent: 2 + - uid: 7234 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 7240 + components: + - type: Transform + pos: 37.5,20.5 + parent: 2 + - uid: 7319 + components: + - type: Transform + pos: 16.5,26.5 + parent: 2 + - uid: 7353 + components: + - type: Transform + pos: 16.5,27.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: 41.5,17.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: 41.5,18.5 + parent: 2 + - uid: 7463 + components: + - type: Transform + pos: 40.5,21.5 + parent: 2 + - uid: 7472 + components: + - type: Transform + pos: 38.5,21.5 + parent: 2 + - uid: 7474 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 + - uid: 7490 + components: + - type: Transform + pos: 18.5,18.5 + parent: 2 + - uid: 7508 + components: + - type: Transform + pos: 18.5,19.5 + parent: 2 + - uid: 7634 + components: + - type: Transform + pos: 23.5,18.5 + parent: 2 + - uid: 7638 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 + - uid: 7640 + components: + - type: Transform + pos: 39.5,16.5 + parent: 2 + - uid: 7647 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 7648 + components: + - type: Transform + pos: 15.5,18.5 + parent: 2 + - uid: 7650 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 7651 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 7653 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 7656 + components: + - type: Transform + pos: 11.5,22.5 + parent: 2 + - uid: 7679 + components: + - type: Transform + pos: 9.5,21.5 + parent: 2 + - uid: 7680 + components: + - type: Transform + pos: 9.5,18.5 + parent: 2 + - uid: 7686 + components: + - type: Transform + pos: 16.5,22.5 + parent: 2 + - uid: 7687 + components: + - type: Transform + pos: 8.5,18.5 + parent: 2 + - uid: 7688 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 7691 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 7694 + components: + - type: Transform + pos: 5.5,18.5 + parent: 2 + - uid: 7696 + components: + - type: Transform + pos: 2.5,23.5 + parent: 2 + - uid: 7700 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 7701 + components: + - type: Transform + pos: 10.5,26.5 + parent: 2 + - uid: 7704 + components: + - type: Transform + pos: 11.5,26.5 + parent: 2 + - uid: 7706 + components: + - type: Transform + pos: 16.5,25.5 + parent: 2 + - uid: 7709 + components: + - type: Transform + pos: 9.5,31.5 + parent: 2 + - uid: 7713 + components: + - type: Transform + pos: 11.5,31.5 + parent: 2 + - uid: 7718 + components: + - type: Transform + pos: 12.5,32.5 + parent: 2 + - uid: 7720 + components: + - type: Transform + pos: 15.5,32.5 + parent: 2 + - uid: 7724 + components: + - type: Transform + pos: 16.5,32.5 + parent: 2 + - uid: 7728 + components: + - type: Transform + pos: 17.5,29.5 + parent: 2 + - uid: 7729 + components: + - type: Transform + pos: 5.5,31.5 + parent: 2 + - uid: 7732 + components: + - type: Transform + pos: 4.5,27.5 + parent: 2 + - uid: 7733 + components: + - type: Transform + pos: 4.5,26.5 + parent: 2 + - uid: 7737 + components: + - type: Transform + pos: -34.5,-16.5 + parent: 2 + - uid: 7740 + components: + - type: Transform + pos: -31.5,-14.5 + parent: 2 + - uid: 7743 + components: + - type: Transform + pos: -39.5,-16.5 + parent: 2 + - uid: 7745 + components: + - type: Transform + pos: -37.5,-16.5 + parent: 2 + - uid: 7749 + components: + - type: Transform + pos: -29.5,-14.5 + parent: 2 + - uid: 7750 + components: + - type: Transform + pos: -28.5,-14.5 + parent: 2 + - uid: 7752 + components: + - type: Transform + pos: -35.5,-16.5 + parent: 2 + - uid: 7753 + components: + - type: Transform + pos: -33.5,-16.5 + parent: 2 + - uid: 7757 + components: + - type: Transform + pos: -11.5,3.5 + parent: 2 + - uid: 7759 + components: + - type: Transform + pos: -10.5,3.5 + parent: 2 + - uid: 7785 + components: + - type: Transform + pos: -8.5,24.5 + parent: 2 + - uid: 7791 + components: + - type: Transform + pos: -24.5,-14.5 + parent: 2 + - uid: 7891 + components: + - type: Transform + pos: -8.5,26.5 + parent: 2 + - uid: 7896 + components: + - type: Transform + pos: -9.5,27.5 + parent: 2 + - uid: 7915 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 7918 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 7920 + components: + - type: Transform + pos: -22.5,-44.5 + parent: 2 + - uid: 7925 + components: + - type: Transform + pos: -26.5,-40.5 + parent: 2 + - uid: 7928 + components: + - type: Transform + pos: -16.5,-44.5 + parent: 2 + - uid: 7929 + components: + - type: Transform + pos: -28.5,-43.5 + parent: 2 + - uid: 7932 + components: + - type: Transform + pos: -23.5,-41.5 + parent: 2 + - uid: 7936 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 2 + - uid: 7937 + components: + - type: Transform + pos: -24.5,-40.5 + parent: 2 + - uid: 7941 + components: + - type: Transform + pos: -26.5,-43.5 + parent: 2 + - uid: 7946 + components: + - type: Transform + pos: -25.5,-44.5 + parent: 2 + - uid: 7948 + components: + - type: Transform + pos: -24.5,-44.5 + parent: 2 + - uid: 7950 + components: + - type: Transform + pos: -16.5,-43.5 + parent: 2 + - uid: 7962 + components: + - type: Transform + pos: -16.5,-40.5 + parent: 2 + - uid: 7963 + components: + - type: Transform + pos: 23.5,-4.5 + parent: 2 + - uid: 7968 + components: + - type: Transform + pos: -5.5,32.5 + parent: 2 + - uid: 7969 + components: + - type: Transform + pos: 17.5,34.5 + parent: 2 + - uid: 7973 + components: + - type: Transform + pos: 17.5,35.5 + parent: 2 + - uid: 7974 + components: + - type: Transform + pos: 17.5,39.5 + parent: 2 + - uid: 7975 + components: + - type: Transform + pos: 3.5,25.5 + parent: 2 + - uid: 7977 + components: + - type: Transform + pos: 1.5,26.5 + parent: 2 + - uid: 7978 + components: + - type: Transform + pos: -9.5,28.5 + parent: 2 + - uid: 7979 + components: + - type: Transform + pos: -2.5,35.5 + parent: 2 + - uid: 7980 + components: + - type: Transform + pos: -5.5,35.5 + parent: 2 + - uid: 7983 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 7985 + components: + - type: Transform + pos: -14.5,31.5 + parent: 2 + - uid: 7987 + components: + - type: Transform + pos: -20.5,29.5 + parent: 2 + - uid: 7988 + components: + - type: Transform + pos: -18.5,29.5 + parent: 2 + - uid: 7991 + components: + - type: Transform + pos: -5.5,36.5 + parent: 2 + - uid: 7992 + components: + - type: Transform + pos: -4.5,41.5 + parent: 2 + - uid: 7996 + components: + - type: Transform + pos: -4.5,46.5 + parent: 2 + - uid: 7998 + components: + - type: Transform + pos: -4.5,48.5 + parent: 2 + - uid: 8003 + components: + - type: Transform + pos: -4.5,45.5 + parent: 2 + - uid: 8004 + components: + - type: Transform + pos: -4.5,44.5 + parent: 2 + - uid: 8008 + components: + - type: Transform + pos: -5.5,49.5 + parent: 2 + - uid: 8009 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 8013 + components: + - type: Transform + pos: -5.5,52.5 + parent: 2 + - uid: 8015 + components: + - type: Transform + pos: -5.5,53.5 + parent: 2 + - uid: 8019 + components: + - type: Transform + pos: -4.5,38.5 + parent: 2 + - uid: 8026 + components: + - type: Transform + pos: -0.5,24.5 + parent: 2 + - uid: 8049 + components: + - type: Transform + pos: -4.5,25.5 + parent: 2 + - uid: 8050 + components: + - type: Transform + pos: -2.5,23.5 + parent: 2 + - uid: 8053 + components: + - type: Transform + pos: -4.5,23.5 + parent: 2 + - uid: 8058 + components: + - type: Transform + pos: 20.5,33.5 + parent: 2 + - uid: 8061 + components: + - type: Transform + pos: 21.5,33.5 + parent: 2 + - uid: 8063 + components: + - type: Transform + pos: 22.5,34.5 + parent: 2 + - uid: 8065 + components: + - type: Transform + pos: 22.5,35.5 + parent: 2 + - uid: 8066 + components: + - type: Transform + pos: 22.5,37.5 + parent: 2 + - uid: 8094 + components: + - type: Transform + pos: 20.5,28.5 + parent: 2 + - uid: 8102 + components: + - type: Transform + pos: 20.5,29.5 + parent: 2 + - uid: 8103 + components: + - type: Transform + pos: 24.5,35.5 + parent: 2 + - uid: 8105 + components: + - type: Transform + pos: 24.5,30.5 + parent: 2 + - uid: 8106 + components: + - type: Transform + pos: 21.5,30.5 + parent: 2 + - uid: 8111 + components: + - type: Transform + pos: 35.5,25.5 + parent: 2 + - uid: 8120 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 8121 + components: + - type: Transform + pos: 39.5,23.5 + parent: 2 + - uid: 8124 + components: + - type: Transform + pos: 40.5,23.5 + parent: 2 + - uid: 8125 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 8127 + components: + - type: Transform + pos: 40.5,27.5 + parent: 2 + - uid: 8129 + components: + - type: Transform + pos: 42.5,24.5 + parent: 2 + - uid: 8142 + components: + - type: Transform + pos: 46.5,11.5 + parent: 2 + - uid: 8167 + components: + - type: Transform + pos: 37.5,28.5 + parent: 2 + - uid: 8173 + components: + - type: Transform + pos: 38.5,28.5 + parent: 2 + - uid: 8181 + components: + - type: Transform + pos: 48.5,11.5 + parent: 2 + - uid: 8267 + components: + - type: Transform + pos: 45.5,11.5 + parent: 2 + - uid: 8270 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 8271 + components: + - type: Transform + pos: 45.5,8.5 + parent: 2 + - uid: 8274 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 8275 + components: + - type: Transform + pos: 46.5,5.5 + parent: 2 + - uid: 8489 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 9058 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-29.5 + parent: 2 + - uid: 9062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 9065 + components: + - type: Transform + pos: 48.5,13.5 + parent: 2 + - uid: 9099 + components: + - 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 + pos: 46.5,16.5 + parent: 2 + - uid: 10390 + components: + - type: Transform + pos: -18.5,-32.5 + parent: 2 + - uid: 10404 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,1.5 + parent: 2 + - uid: 10405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,22.5 + parent: 2 + - uid: 10756 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 10777 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 2 + - uid: 10821 + components: + - type: Transform + pos: -13.5,-42.5 + parent: 2 + - uid: 10860 + components: + - type: Transform + pos: -13.5,-1.5 + parent: 2 + - uid: 10903 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 10904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,24.5 + parent: 2 + - uid: 10920 + components: + - type: Transform + pos: -0.5,21.5 + parent: 2 + - uid: 10923 + components: + - type: Transform + pos: -4.5,20.5 + parent: 2 + - uid: 11004 + components: + - type: Transform + pos: -13.5,3.5 + parent: 2 + - uid: 11011 + components: + - type: Transform + pos: -17.5,3.5 + parent: 2 + - uid: 11033 + components: + - type: Transform + pos: -20.5,2.5 + parent: 2 + - uid: 11034 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 11036 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 2 + - uid: 11078 + components: + - type: Transform + pos: -23.5,-14.5 + parent: 2 + - uid: 11084 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 2 + - uid: 11159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,28.5 + parent: 2 + - uid: 11166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,29.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,25.5 + parent: 2 + - uid: 11172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,29.5 + parent: 2 + - uid: 11177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + - uid: 11191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + - uid: 11192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - uid: 11193 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,10.5 + parent: 2 + - uid: 11303 + components: + - type: Transform + pos: -4.5,19.5 + parent: 2 + - uid: 11355 + components: + - type: Transform + pos: -15.5,-47.5 + parent: 2 + - uid: 11452 + components: + - type: Transform + pos: -14.5,-47.5 + parent: 2 + - uid: 11591 + components: + - type: Transform + pos: -11.5,56.5 + parent: 2 + - uid: 11731 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 2 + - uid: 11902 + components: + - type: Transform + pos: -34.5,-44.5 + parent: 2 + - uid: 12017 + components: + - type: Transform + pos: -36.5,-44.5 + parent: 2 + - uid: 12028 + components: + - type: Transform + pos: -14.5,-44.5 + parent: 2 + - uid: 12752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,6.5 + parent: 2 + - uid: 13633 + components: + - type: Transform + pos: -28.5,-36.5 + parent: 2 + - uid: 13663 + components: + - type: Transform + pos: -19.5,-47.5 + parent: 2 + - uid: 13674 + components: + - type: Transform + pos: -18.5,-47.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + pos: -35.5,-46.5 + parent: 2 + - uid: 14123 + components: + - type: Transform + pos: -21.5,-17.5 + parent: 2 + - uid: 14738 + components: + - type: Transform + pos: -17.5,-40.5 + parent: 2 + - uid: 14763 + components: + - type: Transform + pos: -9.5,56.5 + parent: 2 + - uid: 14823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-33.5 + parent: 2 + - uid: 14842 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-33.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,-35.5 + parent: 2 + - uid: 14851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -41.5,-32.5 + parent: 2 +- proto: WardrobeCargoFilled + entities: + - uid: 6563 + components: + - type: Transform + pos: 10.5,32.5 + parent: 2 +- proto: WardrobeFormal + entities: + - uid: 276 + components: + - type: Transform + pos: 4.5,10.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: + - 12927 + - 12928 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobePrisonFilled + entities: + - uid: 2144 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 2145 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 2 + - uid: 2170 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 2171 + components: + - type: Transform + pos: -11.5,-24.5 + parent: 2 +- proto: WardrobeSecurityFilled + entities: + - uid: 1048 + components: + - type: Transform + pos: 18.5,-11.5 + parent: 2 +- proto: WarningCO2 + entities: + - uid: 2324 + components: + - type: Transform + pos: 25.5,-38.5 + parent: 2 +- proto: WarningN2 + entities: + - uid: 2323 + components: + - type: Transform + pos: 25.5,-34.5 + parent: 2 +- proto: WarningO2 + entities: + - uid: 2316 + components: + - type: Transform + pos: 25.5,-36.5 + parent: 2 +- proto: WarningPlasma + entities: + - uid: 2326 + components: + - type: Transform + pos: 37.5,-36.5 + parent: 2 +- proto: WarningTritium + entities: + - uid: 2327 + components: + - type: Transform + pos: 37.5,-34.5 + parent: 2 +- proto: WarningWaste + entities: + - uid: 2325 + components: + - type: Transform + pos: 37.5,-38.5 + parent: 2 +- proto: WaterCooler + entities: + - uid: 1051 + components: + - type: Transform + pos: 20.5,-9.5 + parent: 2 + - uid: 1683 + components: + - type: Transform + pos: 18.5,2.5 + parent: 2 + - uid: 2046 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 3503 + components: + - type: Transform + pos: -36.5,-34.5 + parent: 2 + - uid: 4215 + components: + - type: Transform + pos: 4.5,21.5 + parent: 2 + - uid: 4469 + components: + - type: Transform + pos: -14.5,-1.5 + parent: 2 + - uid: 6637 + components: + - type: Transform + pos: -1.5,30.5 + parent: 2 + - uid: 7678 + components: + - type: Transform + pos: 18.5,34.5 + parent: 2 + - uid: 11102 + components: + - 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 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 2972 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 2 + - uid: 4824 + components: + - type: Transform + pos: -14.5,5.5 + parent: 2 + - uid: 6288 + components: + - type: Transform + pos: 1.5,-38.5 + parent: 2 + - uid: 6616 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 2 + - uid: 7310 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 7312 + components: + - type: Transform + pos: -14.5,30.5 + parent: 2 + - uid: 16123 + components: + - type: Transform + pos: -21.5,47.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 374 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 3198 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 +- proto: WaterVaporCanister + entities: + - uid: 2437 + components: + - type: Transform + pos: 40.5,-39.5 + parent: 2 + - uid: 8140 + components: + - type: Transform + pos: 40.5,-28.5 + parent: 2 +- proto: WeaponCapacitorRecharger + entities: + - uid: 2013 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 2 + - uid: 2014 + components: + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 2082 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 9404 + components: + - type: Transform + pos: -33.5,-5.5 + parent: 2 + - uid: 15338 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 2 +- proto: WeaponDisabler + entities: + - uid: 2058 + components: + - type: Transform + pos: -4.9341073,-22.457027 + parent: 2 +- proto: WeaponSubMachineGunWt550 + entities: + - uid: 5643 + components: + - type: Transform + pos: -11.489568,-33.27769 + parent: 2 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 5377 + components: + - type: Transform + pos: -37.5,29.5 + parent: 2 + - uid: 5384 + components: + - type: Transform + pos: -37.5,33.5 + parent: 2 + - uid: 5385 + components: + - type: Transform + pos: -42.5,28.5 + parent: 2 + - uid: 5468 + components: + - type: Transform + pos: -42.5,34.5 + parent: 2 + - uid: 5469 + components: + - type: Transform + pos: -39.5,28.5 + parent: 2 + - uid: 5470 + components: + - type: Transform + pos: -39.5,34.5 + parent: 2 +- proto: Welder + entities: + - uid: 6643 + components: + - type: Transform + pos: -3.6076689,19.599415 + parent: 2 +- proto: WelderIndustrialAdvanced + entities: + - uid: 9084 + components: + - type: Transform + pos: 40.539078,-31.475433 + parent: 2 +- proto: WelderMini + entities: + - uid: 8484 + components: + - type: Transform + pos: 35.585655,-18.281162 + parent: 2 +- proto: WeldingFuelTankFull + entities: + - uid: 2969 + components: + - type: Transform + pos: 6.5,-25.5 + parent: 2 + - uid: 2970 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 2 + - uid: 4399 + components: + - type: Transform + pos: -42.5,-25.5 + parent: 2 + - uid: 6612 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 6726 + components: + - type: Transform + pos: -19.5,8.5 + parent: 2 + - uid: 7308 + components: + - type: Transform + pos: -16.5,56.5 + parent: 2 + - uid: 7309 + components: + - type: Transform + pos: -2.5,48.5 + parent: 2 + - uid: 8282 + components: + - type: Transform + pos: 46.5,14.5 + parent: 2 + - uid: 8491 + components: + - type: Transform + pos: 27.5,-8.5 + parent: 2 + - uid: 10460 + components: + - type: Transform + pos: 32.5,29.5 + parent: 2 + - uid: 13399 + components: + - type: Transform + pos: -16.5,-39.5 + parent: 2 + - uid: 14101 + components: + - type: Transform + pos: 3.5,29.5 + parent: 2 + - uid: 14103 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 2 + - uid: 15364 + components: + - type: Transform + pos: 49.5,30.5 + parent: 2 +- proto: WetFloorSign + entities: + - uid: 421 + components: + - type: Transform + pos: -5.670022,8.184626 + parent: 2 + - uid: 422 + components: + - type: Transform + pos: -5.435647,8.075251 + parent: 2 +- proto: WheatSeeds + entities: + - uid: 15827 + components: + - type: Transform + pos: 17.160435,4.9088364 + 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 + pos: -17.5,-14.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 13490 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 2 + - uid: 15932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-35.5 + parent: 2 +- proto: WindoorCargoLocked + entities: + - uid: 851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 2 + - uid: 9496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,36.5 + parent: 2 + - uid: 14186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,29.5 + parent: 2 + - uid: 15726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,38.5 + parent: 2 +- proto: WindoorHydroponicsLocked + entities: + - uid: 6727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 +- proto: WindoorKitchenHydroponicsLocked + entities: + - uid: 4458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,2.5 + parent: 2 + - uid: 4493 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,2.5 + parent: 2 +- proto: WindoorSecure + entities: + - uid: 1747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 2 + - uid: 1927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 1928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-28.5 + 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 + rot: -1.5707963267948966 rad + pos: 24.5,12.5 + parent: 2 + - uid: 16150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,-35.5 + parent: 2 +- proto: WindoorSecureArmoryLocked + entities: + - uid: 8186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 2 + - uid: 8187 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 2 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 6394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,-25.5 + parent: 2 +- proto: WindoorSecureChemistryLocked + entities: + - uid: 2825 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 2 + - uid: 3973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 2 +- proto: WindoorSecureCommandLocked + entities: + - uid: 1118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 2 + - uid: 5446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,32.5 + parent: 2 + - uid: 5449 + components: + - type: Transform + pos: -42.5,30.5 + parent: 2 + - uid: 5450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,31.5 + parent: 2 + - uid: 5466 + components: + - type: Transform + pos: -36.5,29.5 + parent: 2 + - uid: 5467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,33.5 + parent: 2 + - uid: 6697 + components: + - type: Transform + pos: -32.5,35.5 + parent: 2 +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 1156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-10.5 + parent: 2 +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 1770 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 2 +- proto: WindoorSecureJanitorLocked + entities: + - uid: 7437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 +- proto: WindoorSecureMedicalLocked + entities: + - uid: 4099 + components: + - type: MetaData + name: quarantine secure windoor + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 2 + - uid: 8184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 7632 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,36.5 + parent: 2 +- proto: WindoorSecureScienceLocked + entities: + - uid: 5258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,20.5 + parent: 2 + - uid: 7789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,24.5 + parent: 2 + - uid: 7790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,24.5 + parent: 2 + - uid: 9961 + components: + - type: Transform + pos: -16.5,26.5 + parent: 2 + - uid: 9971 + components: + - type: Transform + pos: -12.5,26.5 + parent: 2 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 3050 + components: + - type: Transform + pos: -14.5,-35.5 + parent: 2 +- proto: WindoorSecureSecurityLocked + entities: + - uid: 1043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 + - uid: 1804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 2 + - uid: 1876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-17.5 + parent: 2 + - uid: 3570 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-32.5 + parent: 2 + - uid: 5669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 2 + - uid: 7480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,29.5 + parent: 2 + - uid: 13703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-28.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 14970 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 +- proto: WindoorServiceLocked + entities: + - uid: 3122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,-24.5 + parent: 2 + - uid: 5914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 +- proto: Window + entities: + - uid: 158 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 2 + - uid: 182 + components: + - type: Transform + pos: -5.5,2.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: 18.5,4.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: 18.5,5.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: 18.5,6.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 3055 + components: + - type: Transform + pos: -16.5,-31.5 + parent: 2 + - uid: 3152 + components: + - type: Transform + pos: -22.5,-36.5 + parent: 2 + - uid: 3153 + components: + - type: Transform + pos: -23.5,-36.5 + parent: 2 + - uid: 3154 + components: + - type: Transform + pos: -24.5,-36.5 + parent: 2 + - uid: 3180 + components: + - type: Transform + pos: -26.5,-33.5 + parent: 2 + - uid: 3181 + components: + - type: Transform + pos: -26.5,-35.5 + parent: 2 + - uid: 3415 + components: + - type: Transform + pos: -37.5,-26.5 + parent: 2 + - uid: 3416 + components: + - type: Transform + pos: -37.5,-23.5 + parent: 2 + - uid: 3944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + - uid: 3945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,6.5 + parent: 2 + - uid: 3946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + - uid: 4157 + components: + - type: Transform + pos: 11.5,18.5 + parent: 2 + - uid: 4158 + components: + - type: Transform + pos: 10.5,18.5 + parent: 2 + - uid: 4204 + components: + - type: Transform + pos: 1.5,18.5 + parent: 2 + - uid: 4205 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 4306 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-19.5 + parent: 2 + - uid: 4307 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,-19.5 + parent: 2 + - uid: 5499 + components: + - type: Transform + pos: -29.5,-35.5 + parent: 2 + - uid: 5501 + components: + - type: Transform + pos: -29.5,-33.5 + parent: 2 + - uid: 6061 + components: + - type: Transform + pos: -18.5,-40.5 + parent: 2 + - uid: 8265 + components: + - type: Transform + pos: -4.5,21.5 + parent: 2 + - uid: 14238 + components: + - type: Transform + pos: 9.5,28.5 + parent: 2 + - uid: 15795 + components: + - type: Transform + pos: -19.5,-40.5 + parent: 2 +- proto: WindowDirectional + entities: + - uid: 239 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 2 + - uid: 1686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-1.5 + parent: 2 + - uid: 1689 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 2 + - uid: 3002 + components: + - type: Transform + pos: 18.5,8.5 + parent: 2 + - uid: 3121 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,-24.5 + parent: 2 + - uid: 4033 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,8.5 + parent: 2 + - uid: 4169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - uid: 4170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + pos: -18.5,-14.5 + parent: 2 + - uid: 7307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,38.5 + parent: 2 + - uid: 9690 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,8.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 2172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 2 + - uid: 2173 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-26.5 + parent: 2 + - uid: 2174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 2 + - uid: 2175 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-28.5 + parent: 2 + - uid: 3900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,11.5 + parent: 2 + - uid: 3902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,11.5 + parent: 2 + - uid: 15929 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -43.5,-36.5 + parent: 2 + - uid: 15930 + components: + - type: Transform + pos: -43.5,-34.5 + parent: 2 +- proto: WindowReinforcedDirectional + entities: + - uid: 1039 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-10.5 + parent: 2 + - uid: 1040 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 2 + - uid: 1106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-28.5 + parent: 2 + - uid: 1193 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,22.5 + parent: 2 + - uid: 1614 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + - uid: 1616 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,-1.5 + parent: 2 + - uid: 1839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 2 + - uid: 1840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 2 + - uid: 1863 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 2 + - uid: 1893 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 2 + - uid: 1986 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-27.5 + parent: 2 + - uid: 1990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-27.5 + parent: 2 + - uid: 2100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 2 + - uid: 2888 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 2 + - uid: 3051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-35.5 + parent: 2 + - uid: 3060 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-35.5 + parent: 2 + - uid: 3507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-32.5 + parent: 2 + - uid: 3901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-26.5 + parent: 2 + - uid: 3970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,10.5 + parent: 2 + - uid: 3971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,11.5 + parent: 2 + - uid: 3972 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,11.5 + parent: 2 + - uid: 4038 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-35.5 + parent: 2 + - uid: 4098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - uid: 4207 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,22.5 + parent: 2 + - uid: 4520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-10.5 + parent: 2 + - uid: 4567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,1.5 + parent: 2 + - uid: 4568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + - uid: 4628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -34.5,-5.5 + parent: 2 + - uid: 4629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 2 + - uid: 4632 + components: + - type: Transform + pos: -42.5,-5.5 + parent: 2 + - uid: 4636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,-9.5 + parent: 2 + - uid: 4640 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + - uid: 4641 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-9.5 + parent: 2 + - uid: 4642 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + - uid: 4644 + components: + - type: Transform + pos: -39.5,-7.5 + parent: 2 + - uid: 4645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + - uid: 4646 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + - uid: 4647 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,-5.5 + parent: 2 + - uid: 4649 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,-5.5 + parent: 2 + - uid: 4654 + components: + - type: Transform + pos: -37.5,-7.5 + parent: 2 + - uid: 4655 + components: + - type: Transform + pos: -35.5,-7.5 + parent: 2 + - uid: 5252 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,22.5 + parent: 2 + - uid: 5254 + components: + - type: Transform + pos: -9.5,21.5 + parent: 2 + - uid: 5255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,21.5 + parent: 2 + - uid: 5300 + components: + - type: Transform + pos: -16.5,17.5 + parent: 2 + - uid: 5301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,19.5 + parent: 2 + - uid: 5321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 2 + - uid: 5378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,30.5 + parent: 2 + - uid: 5394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,29.5 + parent: 2 + - uid: 5395 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,33.5 + parent: 2 + - uid: 5453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,32.5 + parent: 2 + - uid: 5462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,33.5 + parent: 2 + - uid: 5463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,33.5 + parent: 2 + - uid: 5464 + components: + - type: Transform + pos: -37.5,29.5 + parent: 2 + - uid: 5465 + components: + - type: Transform + pos: -35.5,29.5 + parent: 2 + - uid: 5704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 2 + - uid: 5945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-17.5 + parent: 2 + - uid: 6360 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-29.5 + parent: 2 + - uid: 6392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,-29.5 + parent: 2 + - uid: 6665 + components: + - type: Transform + pos: -13.5,26.5 + parent: 2 + - uid: 6695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,35.5 + parent: 2 + - uid: 6696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,35.5 + parent: 2 + - uid: 7479 + components: + - type: Transform + 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: 8193 + components: + - type: Transform + pos: -15.5,26.5 + parent: 2 + - uid: 9085 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,5.5 + parent: 2 + - uid: 9086 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,5.5 + parent: 2 + - uid: 9087 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,5.5 + parent: 2 + - uid: 9088 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,4.5 + parent: 2 + - uid: 9629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-0.5 + parent: 2 + - uid: 12915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 + - uid: 12916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 13760 + components: + - type: Transform + pos: -11.5,-34.5 + parent: 2 + - uid: 13762 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-32.5 + parent: 2 + - uid: 13763 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-34.5 + parent: 2 + - uid: 14169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 2 + - uid: 14176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 2 + - uid: 15661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,-18.5 + parent: 2 + - uid: 15662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-19.5 + parent: 2 + - uid: 15663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - uid: 16165 + 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 + parent: 2 + - uid: 16179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-14.5 + parent: 2 + - uid: 16180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-16.5 + parent: 2 +- proto: WoodblockInstrument + entities: + - uid: 15612 + components: + - type: Transform + pos: -10.517809,-39.558754 + parent: 2 +- proto: WoodenBench + entities: + - uid: 3232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-26.5 + parent: 2 + - uid: 3250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-25.5 + parent: 2 + - uid: 3251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-24.5 + parent: 2 + - uid: 3252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-25.5 + parent: 2 + - uid: 3254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -33.5,-24.5 + parent: 2 + - uid: 3257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-26.5 + parent: 2 +- proto: Wrench + entities: + - uid: 8482 + components: + - type: Transform + pos: 33.866905,-8.124912 + parent: 2 + - uid: 8483 + components: + - type: Transform + pos: 33.523155,-22.343662 + parent: 2 +... diff --git a/Resources/Maps/loop.yml b/Resources/Maps/loop.yml index c94e2a175b61..37a6c0c75dc3 100644 --- a/Resources/Maps/loop.yml +++ b/Resources/Maps/loop.yml @@ -16,9 +16,13 @@ tilemap: 43: FloorDirt 45: FloorFreezer 54: FloorGold + 1: FloorGrass 36: FloorGrayConcrete 57: FloorGreenCircuit + 4: FloorIce 53: FloorMime + 6: FloorMowedAstroGrass + 5: FloorRGlass 32: FloorReinforced 30: FloorSteel 48: FloorSteelCheckerDark @@ -27,11 +31,13 @@ tilemap: 42: FloorSteelDirty 33: FloorTechMaint 38: FloorTechMaint2 + 2: FloorWhite 39: FloorWhitePlastic 37: FloorWood 40: FloorWoodTile 31: Lattice 29: Plating + 3: PlatingDamaged entities: - proto: "" entities: @@ -59,71 +65,71 @@ entities: chunks: 0,0: ind: 0,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: IAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + tiles: HQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHQAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHQAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAACHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAAB version: 6 0,-1: ind: 0,-1 - tiles: HwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -2,0: ind: -2,0 - tiles: IgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAA + tiles: IgAAAAAAHQAAAAAAJQAAAAADJQAAAAACJQAAAAAAJQAAAAABHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAJQAAAAADJQAAAAADJQAAAAABJQAAAAABHQAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHQAAAAAAIAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAACHQAAAAAAIAAAAAAAHwAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAACHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAACHgAAAAACIwAAAAAAIwAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAACHgAAAAABIwAAAAAAIwAAAAAAHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABIwAAAAAAIwAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAABIwAAAAAAIwAAAAAAHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHQAAAAAAHgAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA + tiles: HwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAABHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHwAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: HwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJgAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAA version: 6 -1,1: ind: -1,1 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAA + tiles: HgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAADHQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAABBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMAAAAAADMAAAAAADMAAAAAABMAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKAAAAAACKAAAAAADKAAAAAADKAAAAAAAKAAAAAADKAAAAAAAHQAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAACHQAAAAAAKAAAAAACKAAAAAABKAAAAAADKAAAAAABKAAAAAADKAAAAAACKAAAAAACKAAAAAAAKAAAAAABKAAAAAABHQAAAAAAAgAAAAADAgAAAAABAgAAAAABAgAAAAADHQAAAAAAKAAAAAACKAAAAAAAKAAAAAABHQAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAAAKAAAAAABKAAAAAABHQAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAACAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAACAgAAAAAAAgAAAAACAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAAAAgAAAAADAgAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAACAgAAAAABHQAAAAAAAgAAAAADHQAAAAAAAgAAAAABAgAAAAACAgAAAAACAgAAAAACAgAAAAAAAgAAAAACHQAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAAAHQAAAAAAAgAAAAABHQAAAAAAAgAAAAABAgAAAAABAgAAAAACAgAAAAACAgAAAAABAgAAAAAAHQAAAAAA version: 6 -2,1: ind: -2,1 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAA + tiles: HgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAADHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAAgAAAAADAgAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAABHQAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAADAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAADHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAAAAgAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAADHQAAAAAAAgAAAAACAgAAAAACAgAAAAABAgAAAAAAAgAAAAABAgAAAAACAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAACAgAAAAACAgAAAAACAgAAAAAAJwAAAAABAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAAAAgAAAAACAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAADAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAADHQAAAAAA version: 6 -3,1: ind: -3,1 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAACJQAAAAADHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHQAAAAAAAgAAAAAAAgAAAAABAgAAAAACAgAAAAADAgAAAAABAgAAAAACAgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAJQAAAAABHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAADAgAAAAADAgAAAAAAAgAAAAACAgAAAAADAgAAAAADAgAAAAABAgAAAAAAAgAAAAACAgAAAAADAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAABAgAAAAABAgAAAAADJQAAAAABHQAAAAAAHgAAAAAABQAAAAAAHgAAAAAAHQAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAADAgAAAAADAgAAAAADAgAAAAABAgAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAADJwAAAAACHQAAAAAAAgAAAAACHQAAAAAAJwAAAAADJwAAAAACHQAAAAAAJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADAgAAAAADAgAAAAAAAgAAAAADAgAAAAABAgAAAAACAgAAAAADHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAAgAAAAADAgAAAAABAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAAAAgAAAAAAAgAAAAACAgAAAAADKQAAAAAAHgAAAAAAHgAAAAABBQAAAAAAHgAAAAACHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAACAgAAAAACAgAAAAACAgAAAAABAgAAAAAAAgAAAAACAgAAAAAAKQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAADHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAADAgAAAAAB version: 6 -3,0: ind: -3,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAAwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAAwAAAAABNwAAAAACAwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAADKwAAAAADKwAAAAABKwAAAAAAKwAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAAAKwAAAAABKwAAAAADKwAAAAADKwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADIwAAAAAAIwAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAKwAAAAABKwAAAAADKwAAAAADKwAAAAACKwAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADIwAAAAAAIwAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADIwAAAAAAIwAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACIwAAAAAAIwAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAAA version: 6 0,1: ind: 0,1 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + tiles: HgAAAAADHgAAAAAAHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAABHgAAAAABHgAAAAABHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAADHgAAAAADBQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAADHgAAAAAABQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAACHgAAAAABBQAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAACLAAAAAAALAAAAAAALAAAAAAAHgAAAAACHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABLAAAAAAALAAAAAAALAAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHgAAAAADHgAAAAADHgAAAAAB version: 6 1,0: ind: 1,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAANwAAAAACKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAAEKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAAwAAAAACKgAAAAAAHQAAAAAANwAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 1,1: ind: 1,1 - tiles: HQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAJwAAAAAAJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAJwAAAAAAJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAJwAAAAAAJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: HQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAANwAAAAAEKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAJwAAAAACJwAAAAACIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAJwAAAAADJwAAAAADIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAJwAAAAADJwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAACNwAAAAADNwAAAAAEHQAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 -3,-2: ind: -3,-2 @@ -131,79 +137,79 @@ entities: version: 6 -4,0: ind: -4,0 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAABKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAABHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAACHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAAAHQAAAAAALAAAAAACHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAACHQAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABHQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAADLAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -4,1: ind: -4,1 - tiles: HQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAA + tiles: HQAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABHQAAAAAALAAAAAADLAAAAAABLAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHQAAAAAAJQAAAAADJQAAAAAAJQAAAAACHQAAAAAAHgAAAAABHgAAAAADHQAAAAAAJQAAAAADJQAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAADHQAAAAAAJQAAAAABJQAAAAAAJQAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADJQAAAAACJQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACHQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHQAAAAAAJQAAAAAAJQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHQAAAAAAJQAAAAABJQAAAAABJQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHQAAAAAAJQAAAAACJQAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAACHQAAAAAAJQAAAAAAJQAAAAADJQAAAAADHgAAAAADHgAAAAABHgAAAAACHgAAAAABJQAAAAABJQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAJQAAAAADJQAAAAABJQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHQAAAAAAJQAAAAADJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALgAAAAAALgAAAAABLgAAAAADLgAAAAABLgAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAA version: 6 1,2: ind: 1,2 - tiles: HgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALQAAAAAALQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAA + tiles: HgAAAAABHQAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAANwAAAAAAAwAAAAACNwAAAAADNwAAAAACHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAAANwAAAAAAKgAAAAAAAwAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAABAwAAAAABNwAAAAADHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAAHQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAAAHQAAAAAALQAAAAAALQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHgAAAAABHQAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAADHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAAAHQAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAABJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAABJQAAAAABJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAABJQAAAAACJQAAAAABJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAA version: 6 -4,2: ind: -4,2 - tiles: HQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAAALgAAAAADHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALQAAAAAAHQAAAAAALgAAAAAALgAAAAADLgAAAAAAHQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAADJQAAAAADHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHgAAAAADHgAAAAABJQAAAAADJQAAAAACJQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADJQAAAAADJQAAAAADJQAAAAABHQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAADJQAAAAACJQAAAAACJQAAAAABHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABJQAAAAABJQAAAAACJQAAAAADHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAACJQAAAAABJQAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAADJQAAAAADJQAAAAACHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAACMAAAAAAAMAAAAAABJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACHQAAAAAAMAAAAAABMAAAAAAAMAAAAAADMAAAAAADMAAAAAAAMAAAAAADJQAAAAADJQAAAAACJQAAAAACJQAAAAACJQAAAAAAJQAAAAABJQAAAAADJQAAAAABJQAAAAABMAAAAAABMAAAAAAAMAAAAAADMAAAAAACMAAAAAAAMAAAAAACMAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: KQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAKQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAA + tiles: KQAAAAAAHQAAAAAAHgAAAAABBQAAAAAAHgAAAAABHQAAAAAAAgAAAAAAAgAAAAADAgAAAAAAAgAAAAAAAgAAAAACAgAAAAACAgAAAAADAgAAAAABAgAAAAAAAgAAAAADKQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHQAAAAAAAgAAAAACAgAAAAADAgAAAAACAgAAAAADAgAAAAABAgAAAAABAgAAAAADAgAAAAACAgAAAAABAgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAAJQAAAAABJQAAAAACHQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAACBQAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACBQAAAAAAHgAAAAABHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAACJQAAAAADHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAALAAAAAABHgAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHQAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAAMAAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADMAAAAAADMAAAAAABHgAAAAADBQAAAAAAHgAAAAABHQAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAAHQAAAAAALAAAAAACLAAAAAACMAAAAAABMAAAAAAAHgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAAC version: 6 -5,1: ind: -5,1 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAANwAAAAAEHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAADNwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAACHQAAAAAAAwAAAAACKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAwAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAANwAAAAAEHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAAgAAAAACHQAAAAAAHQAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -5,2: ind: -5,2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAACIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABAQAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABAQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAABAQAAAAAAHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAAAHgAAAAACAQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHgAAAAADHgAAAAADAQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAAQAAAAAAHgAAAAACHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADAQAAAAAAHgAAAAADHgAAAAABHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAABHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -5,0: ind: -5,0 - tiles: MQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAMQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: MQAAAAADHQAAAAAAJQAAAAAAMQAAAAABHQAAAAAAJQAAAAADMQAAAAAEHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAAAMQAAAAADJQAAAAABHQAAAAAAJQAAAAADHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAADHQAAAAAAJQAAAAACMQAAAAACHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABMQAAAAADJQAAAAAAHQAAAAAAJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAACJQAAAAACHQAAAAAAMQAAAAAFJQAAAAACMQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADHQAAAAAAMQAAAAADJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACMQAAAAABHQAAAAAAMQAAAAAEJQAAAAADMQAAAAAGHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAJQAAAAADJQAAAAAAMQAAAAAFHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAAAMQAAAAAFJQAAAAAAMQAAAAACHQAAAAAAMQAAAAADMQAAAAAAJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAACJQAAAAAAJQAAAAADHQAAAAAAMQAAAAAEJQAAAAACHQAAAAAAJQAAAAADMQAAAAAGHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAMQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAACMQAAAAAGJQAAAAAAJQAAAAABHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAA + tiles: AgAAAAADAgAAAAACAgAAAAACAgAAAAABAgAAAAACAgAAAAABHQAAAAAAAgAAAAACHQAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAAgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAADAgAAAAADHQAAAAAAAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAACAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABHQAAAAAAJQAAAAACJQAAAAACJQAAAAAAHgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACHQAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABHQAAAAAAJQAAAAAAJQAAAAACJQAAAAAAHQAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADHQAAAAAAJQAAAAACJQAAAAACJQAAAAAAHQAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADHQAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAADHQAAAAAAJQAAAAAAJQAAAAABJQAAAAACHQAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAAHQAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACHQAAAAAAJQAAAAAAJQAAAAACJQAAAAACHQAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAACHQAAAAAAHQAAAAAALAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADHgAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAACHQAAAAAALAAAAAADLAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMAAAAAADLAAAAAABHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMAAAAAADMgAAAAABHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAA version: 6 -2,2: ind: -2,2 - tiles: JwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAA + tiles: HQAAAAAAAgAAAAADAgAAAAADAgAAAAADAgAAAAACAgAAAAACAgAAAAAAAgAAAAADAgAAAAACAgAAAAABAgAAAAACAgAAAAAAAgAAAAADAgAAAAAAAgAAAAADHQAAAAAAHQAAAAAAAgAAAAABAgAAAAABAgAAAAADAgAAAAABAgAAAAABAgAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAADAgAAAAABAgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAACAgAAAAADAgAAAAABAgAAAAAAAgAAAAABAgAAAAADAgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABIAAAAAAAHQAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAABHQAAAAAALAAAAAABHQAAAAAAIAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAACIAAAAAAAHQAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAACHQAAAAAALAAAAAABHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAALAAAAAADLAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAALAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADHQAAAAAAMgAAAAADMgAAAAADHQAAAAAAMgAAAAADMgAAAAACHQAAAAAAMgAAAAAAMgAAAAABHQAAAAAAMgAAAAAC version: 6 0,2: ind: 0,2 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAAAAAAAAAAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HgAAAAADHgAAAAABHgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHgAAAAACLAAAAAAALAAAAAAALAAAAAAAHgAAAAADHQAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAADHQAAAAAAHwAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAABLAAAAAAALAAAAAAALAAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAADBQAAAAAAHgAAAAABLAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHgAAAAADHgAAAAACAAAAAAAAAAAAAAABHgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAACBQAAAAAAHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHgAAAAACHgAAAAAAHgAAAAAAAAAAAAACAAAAAAABHgAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAACBQAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAABHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHgAAAAAAHgAAAAADHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAADLAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABBQAAAAAABQAAAAAABQAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAABHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHQAAAAAAHgAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAABQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -3,3: ind: -3,3 - tiles: MAAAAAAAMAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAAMAAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAAALQAAAAAALQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA + tiles: MAAAAAABMAAAAAACHgAAAAABBQAAAAAAHgAAAAACHQAAAAAAHgAAAAABHgAAAAABHQAAAAAAHgAAAAABHgAAAAADHgAAAAADHgAAAAADLAAAAAABLAAAAAACLAAAAAAAMAAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAACHQAAAAAALAAAAAADLAAAAAACHQAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAAHgAAAAABHgAAAAACHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAALAAAAAAALAAAAAABLQAAAAAALQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAABHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAABAQAAAAAAHgAAAAABHgAAAAACAQAAAAAAAQAAAAAAHgAAAAACMwAAAAABMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAADAQAAAAAAHgAAAAABHgAAAAABAQAAAAAAAQAAAAAAHgAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAADMwAAAAACMwAAAAABHgAAAAADHgAAAAABHgAAAAADHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHQAAAAAAJQAAAAADJQAAAAABJQAAAAADJQAAAAAAHgAAAAADMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHQAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHQAAAAAAJQAAAAABJQAAAAADJQAAAAAAJQAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHQAAAAAAJQAAAAADJQAAAAADJQAAAAADJQAAAAAB version: 6 -4,3: ind: -4,3 - tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAMAAAAAAAMAAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAALwAAAAAALwAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + tiles: JQAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAABMAAAAAACMAAAAAADMAAAAAADMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAACJQAAAAADJQAAAAAAJQAAAAAAJQAAAAADJQAAAAADHQAAAAAAMAAAAAACMAAAAAADMAAAAAAAMAAAAAADMAAAAAACMAAAAAADJQAAAAABJQAAAAABJQAAAAACJQAAAAABJQAAAAABJQAAAAAAJQAAAAACJQAAAAAAJQAAAAABMAAAAAADMAAAAAAAMAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAMAAAAAABMAAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAHQAAAAAAMAAAAAADMAAAAAACHQAAAAAALQAAAAAALQAAAAAALQAAAAAAJQAAAAACJQAAAAABJQAAAAABJQAAAAADJQAAAAACJQAAAAABJQAAAAADJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAABJQAAAAAAJQAAAAADJQAAAAABJQAAAAADJQAAAAABJQAAAAABJQAAAAACHgAAAAACJQAAAAAAJQAAAAABJQAAAAAAJQAAAAADJQAAAAADJQAAAAABJQAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAABJQAAAAACJQAAAAABJQAAAAABJQAAAAADHgAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAACJQAAAAABJQAAAAABJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAADJQAAAAADJQAAAAABJQAAAAACJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAJQAAAAADJQAAAAADJQAAAAABJQAAAAABJQAAAAACJQAAAAACJQAAAAABJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAABJQAAAAADJQAAAAAAJQAAAAACJQAAAAACHQAAAAAAHgAAAAABHgAAAAABBQAAAAAABQAAAAAABQAAAAAAHgAAAAABHgAAAAABJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAABQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAAAHgAAAAAD version: 6 -5,3: ind: -5,3 - tiles: IgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAA + tiles: IgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAACHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHQAAAAAAJQAAAAACJQAAAAAAJQAAAAADJQAAAAABJQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHQAAAAAAJQAAAAACJQAAAAADJQAAAAADJQAAAAACJQAAAAADHQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAADJQAAAAACJQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAACHQAAAAAAJQAAAAADJQAAAAAAJQAAAAADJQAAAAAAJQAAAAABHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAJQAAAAAAJQAAAAABJQAAAAACJQAAAAADJQAAAAADHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAABJQAAAAABHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHQAAAAAAJQAAAAABJQAAAAABJQAAAAADJQAAAAABJQAAAAADHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAADIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAAD version: 6 -2,3: ind: -2,3 - tiles: LAAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAALAAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAMgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAHQAAAAAALAAAAAAAHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAA + tiles: LAAAAAACHQAAAAAALAAAAAABHQAAAAAALAAAAAABHQAAAAAAMgAAAAABMgAAAAACHQAAAAAAMgAAAAAAMgAAAAABHQAAAAAAMgAAAAACMgAAAAADHQAAAAAAMgAAAAABLAAAAAACHQAAAAAALAAAAAABLAAAAAAALAAAAAABHQAAAAAAMgAAAAAAMgAAAAACHQAAAAAAMgAAAAACMgAAAAADHQAAAAAAMgAAAAABMgAAAAADHQAAAAAAMgAAAAABLAAAAAACHQAAAAAALAAAAAACLAAAAAADLAAAAAAAHQAAAAAAMgAAAAAAMgAAAAABHQAAAAAAMgAAAAADMgAAAAADHQAAAAAAMgAAAAABMgAAAAABHQAAAAAAMgAAAAAAHQAAAAAAHQAAAAAALAAAAAABHQAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAADHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAHgAAAAADBQAAAAAABQAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAACHgAAAAACBQAAAAAABQAAAAAAHgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAABBQAAAAAABQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAABHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAADJQAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABHgAAAAADHQAAAAAAJQAAAAACJQAAAAABJQAAAAADJQAAAAACJQAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHQAAAAAAHgAAAAADHgAAAAACAQAAAAAAHgAAAAAAHgAAAAADHQAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAADJQAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAABHQAAAAAAHgAAAAABHgAAAAABAQAAAAAAHgAAAAABHgAAAAABHQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAACJQAAAAACHQAAAAAAHgAAAAABHgAAAAABHgAAAAABHQAAAAAAHgAAAAABHgAAAAAAAQAAAAAAHgAAAAACHgAAAAADHQAAAAAAJQAAAAAAJQAAAAADJQAAAAAD version: 6 -1,3: ind: -1,3 - tiles: MgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHgAAAAAAHgAAAAAALwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAA + tiles: MgAAAAACHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAMgAAAAABHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAADHgAAAAADBQAAAAAABQAAAAAABQAAAAAAHgAAAAAAHgAAAAADHgAAAAACHgAAAAACHgAAAAADHgAAAAABHgAAAAABHgAAAAAAHgAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAACHgAAAAADAQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAACHgAAAAACAQAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAACJQAAAAABJQAAAAADHQAAAAAAJQAAAAABJQAAAAABJQAAAAACHQAAAAAAHgAAAAAAHgAAAAACHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAABJQAAAAACJQAAAAADJQAAAAADJQAAAAADHQAAAAAAJQAAAAABJQAAAAABJQAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAADHgAAAAADJQAAAAACJQAAAAACJQAAAAABJQAAAAAAHQAAAAAAJQAAAAABJQAAAAABJQAAAAABHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHgAAAAABJQAAAAADJQAAAAADJQAAAAABJQAAAAADHQAAAAAAJQAAAAAAJQAAAAADJQAAAAACHQAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHgAAAAAB version: 6 -4,4: ind: -4,4 - tiles: HQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: HQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAADJQAAAAABJQAAAAAAJQAAAAADNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACJQAAAAABNAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAHQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAHQAAAAAAJQAAAAABJQAAAAACJQAAAAAAJQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 -5,4: ind: -5,4 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAADHgAAAAACHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -3,4: ind: -3,4 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAAAJQAAAAACJQAAAAAAJQAAAAACHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 1,3: ind: 1,3 @@ -211,35 +217,35 @@ entities: version: 6 0,3: ind: 0,3 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAA + tiles: HgAAAAADBQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADBQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAAAHgAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAACHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAADHgAAAAACHgAAAAABHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAADHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAADJAAAAAABHgAAAAACHgAAAAADHgAAAAADHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAABHQAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAADHgAAAAAAHgAAAAADJAAAAAACHgAAAAACHgAAAAAAHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAABHgAAAAAAHQAAAAAA version: 6 0,4: ind: 0,4 - tiles: HgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAJAAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: HgAAAAAAHgAAAAABHgAAAAADHgAAAAABHgAAAAACHgAAAAACJAAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAABHgAAAAABHQAAAAAAHgAAAAACHgAAAAABHQAAAAAAHgAAAAACHgAAAAACHgAAAAACHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHQAAAAAAHgAAAAABHgAAAAABHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJAAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAAAHgAAAAADHgAAAAADJAAAAAAAHgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAABHgAAAAADHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAACHgAAAAAAHgAAAAADJAAAAAADJAAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAAAHgAAAAACHQAAAAAAHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAACHgAAAAABJAAAAAACJAAAAAABJAAAAAACJAAAAAACJAAAAAADJAAAAAABHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJAAAAAADJAAAAAADJAAAAAACHQAAAAAAHgAAAAABJAAAAAACJAAAAAACJAAAAAABJAAAAAABJAAAAAADJAAAAAADHgAAAAADHQAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAABHgAAAAABJAAAAAADJAAAAAADJAAAAAADJAAAAAAAJAAAAAAAJAAAAAAAHgAAAAADHQAAAAAAHgAAAAADHgAAAAAAHQAAAAAAHgAAAAACJAAAAAACJAAAAAABJAAAAAADJAAAAAAAJAAAAAADJAAAAAACJAAAAAACJAAAAAACJAAAAAACJAAAAAACHgAAAAAAHQAAAAAAHgAAAAADHgAAAAABHQAAAAAAHgAAAAADJAAAAAACJAAAAAABJAAAAAACJAAAAAACJAAAAAAAJAAAAAACJAAAAAABJAAAAAABJAAAAAAAJAAAAAADHgAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACJAAAAAAAJAAAAAABJAAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAABHgAAAAAAHQAAAAAAJQAAAAADJQAAAAADHQAAAAAAHgAAAAABJAAAAAACJAAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAACJAAAAAABJAAAAAACJAAAAAACJAAAAAABHgAAAAAAHQAAAAAAJQAAAAACJQAAAAACHQAAAAAAHgAAAAACJAAAAAADJAAAAAACJAAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACJAAAAAACJAAAAAADJAAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABJAAAAAADJAAAAAADJAAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAACJAAAAAACJAAAAAACJAAAAAADHgAAAAABHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHgAAAAACHgAAAAABHgAAAAACHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -1,4: ind: -1,4 - tiles: JQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAANgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALAAAAAAALAAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAALAAAAAAALAAAAAAALAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAANwAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAA + tiles: JQAAAAACJQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAJQAAAAADJQAAAAADJQAAAAABHQAAAAAAHgAAAAABHgAAAAAAHgAAAAACHgAAAAABHgAAAAABHgAAAAADHgAAAAABJQAAAAACJQAAAAACJQAAAAACJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABHgAAAAACHgAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAANgAAAAAAHQAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAAAHgAAAAACHgAAAAAAHgAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAACHQAAAAAAHQAAAAAAKAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHQAAAAAAHQAAAAAAHgAAAAACKAAAAAABKAAAAAADKAAAAAADKAAAAAACHQAAAAAAKAAAAAADKAAAAAABKAAAAAABHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAACHgAAAAACHgAAAAABHgAAAAABKAAAAAADKAAAAAADKAAAAAADKAAAAAABKAAAAAABKAAAAAADKAAAAAABKAAAAAACHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHgAAAAABHgAAAAAAHQAAAAAAHgAAAAADKAAAAAADKAAAAAAAKAAAAAABKAAAAAABHQAAAAAAKAAAAAACKAAAAAADKAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAABHgAAAAABLAAAAAABLAAAAAACHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAABLAAAAAACLAAAAAAALAAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHQAAAAAAHQAAAAAAHQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAJQAAAAACJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAANwAAAAADKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAA version: 6 -2,4: ind: -2,4 - tiles: JQAAAAAAJQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAJQAAAAAAJQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAJQAAAAAAJQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: JQAAAAAAJQAAAAACHQAAAAAAHgAAAAABHgAAAAADHgAAAAADHQAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAADHgAAAAABHgAAAAACJQAAAAADJQAAAAACJQAAAAADJQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAABHQAAAAAAHQAAAAAAJQAAAAAAJQAAAAABJQAAAAADJQAAAAADJQAAAAAAHQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAJQAAAAABJQAAAAABHQAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABHQAAAAAAKAAAAAACJQAAAAAAJQAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACHQAAAAAAKAAAAAACJQAAAAABJQAAAAADHQAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAAAKAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACBgAAAAAABgAAAAAABgAAAAAALAAAAAACLAAAAAAALAAAAAACHQAAAAAAKAAAAAACHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALAAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAAALAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALAAAAAABLAAAAAABLAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALAAAAAAALAAAAAACLAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAALAAAAAADLAAAAAAALAAAAAABHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAADIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 -6,3: ind: -6,3 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAADHQAAAAAAHgAAAAACHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAACHgAAAAACHgAAAAABHgAAAAADIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAADHQAAAAAAHgAAAAACHgAAAAADHgAAAAAAHgAAAAAAHgAAAAACHgAAAAAAHgAAAAACHgAAAAABHgAAAAADIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 -6,4: ind: -6,4 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAABHgAAAAACHQAAAAAAHgAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAAAHgAAAAADHgAAAAADHgAAAAADHgAAAAABIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHQAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAABHgAAAAADHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAACIgAAAAAAIgAAAAAAHQAAAAAAHgAAAAAAHgAAAAACHgAAAAACHQAAAAAAHgAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAABHgAAAAACHgAAAAACHgAAAAACHgAAAAABIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 -1,5: ind: -1,5 - tiles: HwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAANwAAAAAAKgAAAAAANwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: HwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKwAAAAABKwAAAAAAKwAAAAADHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAANwAAAAAAKgAAAAAANwAAAAABHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAOAAAAAABOAAAAAACHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAOAAAAAAAOAAAAAABHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 0,5: ind: 0,5 - tiles: NwAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: NwAAAAACKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAACKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAAEHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAANwAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 -3,-3: ind: -3,-3 @@ -251,7 +257,7 @@ entities: version: 6 2,1: ind: 2,1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAA + tiles: HQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAA version: 6 3,1: ind: 3,1 @@ -259,7 +265,7 @@ entities: version: 6 2,2: ind: 2,2 - tiles: IgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: HQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 3,2: ind: 3,2 @@ -267,11 +273,11 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAJQAAAAAAMQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAABAAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAABAAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAABAAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAABAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAJQAAAAACMQAAAAAGJQAAAAAAJQAAAAADJQAAAAABMQAAAAABHQAAAAAAHQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAABAgAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAAgAAAAABAgAAAAADHQAAAAAAAgAAAAACAgAAAAABHQAAAAAAAgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAgAAAAABHQAAAAAAAgAAAAACAgAAAAAAHQAAAAAAHQAAAAAAAgAAAAADHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAABKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAANwAAAAACNwAAAAACKgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAA version: 6 -4,5: ind: -4,5 @@ -279,7 +285,7 @@ entities: version: 6 -2,5: ind: -2,5 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOAAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAIwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAIwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAADOAAAAAADOAAAAAADHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAOAAAAAAAOAAAAAAAOAAAAAADOAAAAAADOAAAAAADOAAAAAABOAAAAAACOAAAAAABOAAAAAADOAAAAAACOAAAAAAAOAAAAAACHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAABOAAAAAACOAAAAAADHQAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAACOAAAAAACOAAAAAADOAAAAAAAOAAAAAADOAAAAAABHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAABOAAAAAADOAAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOAAAAAACHwAAAAAAIgAAAAAAHQAAAAAAOAAAAAAAOAAAAAACOAAAAAADHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAIwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAOAAAAAACOAAAAAAAOAAAAAACHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAOQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAIwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAOQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAA version: 6 -2,6: ind: -2,6 @@ -291,11 +297,11 @@ entities: version: 6 -5,5: ind: -5,5 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: HwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: HwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAANwAAAAADKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAIgAAAAAAHwAAAAAAIgAAAAAA version: 6 -1,6: ind: -1,6 @@ -315,11 +321,11 @@ entities: version: 6 -6,0: ind: -6,0 - tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAJQAAAAAAJQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAMQAAAAAAMQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAMQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAMQAAAAAFMQAAAAADHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAJQAAAAAAJQAAAAADHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAMQAAAAABHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAMQAAAAAAMQAAAAAFHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAJQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAMQAAAAABHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHQAAAAAAHwAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 -6,1: ind: -6,1 - tiles: IgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + tiles: IgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 -7,0: ind: -7,0 @@ -329,6 +335,14 @@ entities: ind: -7,1 tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA version: 6 + -7,4: + ind: -7,4 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: IgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAHwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAA + version: 6 - type: Broadphase - type: Physics bodyStatus: InAir @@ -349,6 +363,32 @@ entities: chunkCollection: version: 2 nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 2100: -46,47 + 2101: -46,48 + 2102: -46,49 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2210: 10,3 + 2211: 10,5 + 2212: 10,7 + 2213: 10,9 + 2214: 10,11 + 2215: 10,13 + 2216: 10,15 + 2217: 10,17 + - node: + cleanable: True + color: '#FF0000FF' + id: Blasto + decals: + 1983: -77.9136,20.08014 - node: color: '#FFFFFFFF' id: Bot @@ -428,6 +468,41 @@ entities: 1570: 8,72 1571: 6,72 1572: 6,73 + 1886: -28,39 + 1887: -27,39 + 1888: -26,39 + 1889: -25,39 + 1890: -24,39 + 2049: -45,55 + 2050: -44,55 + 2051: -46,71 + 2089: -44,31 + 2098: -46,46 + 2207: -3,65 + 2208: -3,64 + - node: + color: '#FFFFFFFF' + id: BotLeft + decals: + 1876: -30,42 + 1877: -29,42 + 1878: -30,41 + 1879: -30,40 + 1880: -30,39 + 1881: -29,39 + 1882: -23,39 + 1883: -23,40 + 1884: -23,41 + 1885: -23,42 + 2103: -46,47 + 2104: -46,48 + 2105: -46,49 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 1907: -24,42 + 1908: -28,42 - node: color: '#FFFFFFFF' id: Box @@ -493,6 +568,8 @@ entities: id: BrickCornerOverlayNE decals: 964: 23,33 + 2252: 18,39 + 2283: 12,32 - node: color: '#DE3A3A96' id: BrickCornerOverlayNE @@ -523,6 +600,8 @@ entities: id: BrickCornerOverlayNW decals: 965: 18,33 + 2253: 12,39 + 2282: 10,32 - node: color: '#DE3A3A96' id: BrickCornerOverlayNW @@ -547,7 +626,6 @@ entities: color: '#3EB38896' id: BrickCornerOverlaySE decals: - 1102: 2,19 1116: 2,16 1120: 1,8 1582: 1,15 @@ -558,6 +636,13 @@ entities: 1575: -13,38 1630: -5,27 1633: -7,34 + 1873: -14,23 + 1874: -13,24 + - node: + color: '#A4610696' + id: BrickCornerOverlaySE + decals: + 1875: -3,56 - node: color: '#D381C996' id: BrickCornerOverlaySE @@ -565,6 +650,8 @@ entities: 963: 19,27 966: 23,28 1412: 16,28 + 2255: 18,36 + 2280: 12,28 - node: color: '#DE3A3A96' id: BrickCornerOverlaySE @@ -590,17 +677,14 @@ entities: decals: 1581: -5,15 1596: -3,8 - - node: - color: '#52B4E996' - id: BrickCornerOverlaySW - decals: - 1573: -16,38 - node: color: '#D381C996' id: BrickCornerOverlaySW decals: 962: 18,27 1411: 15,28 + 2254: 12,36 + 2281: 10,28 - node: color: '#DE3A3A96' id: BrickCornerOverlaySW @@ -668,14 +752,13 @@ entities: 1047: -38,61 1048: -38,60 1049: -38,59 + 2189: -38,62 - node: color: '#3EB38896' id: BrickLineOverlayE decals: 1103: 2,20 - 1104: 2,21 1105: 2,22 - 1106: 2,23 1107: 2,24 1128: 1,12 1129: 1,11 @@ -694,13 +777,8 @@ entities: color: '#52B4E996' id: BrickLineOverlayE decals: - 987: -44,23 - 988: -44,24 989: -44,25 - 990: -44,26 991: -44,27 - 992: -44,28 - 993: -44,22 - node: color: '#D381C996' id: BrickLineOverlayE @@ -720,6 +798,11 @@ entities: 980: 23,30 981: 23,31 982: 23,32 + 2267: 18,38 + 2268: 18,37 + 2275: 12,29 + 2276: 12,30 + 2277: 12,31 - node: color: '#DE3A3A96' id: BrickLineOverlayE @@ -732,7 +815,6 @@ entities: 1146: -11,16 1204: -28,15 1205: -28,16 - 1297: -19,1 1298: -19,5 1299: -19,6 1662: -19,7 @@ -745,15 +827,11 @@ entities: id: BrickLineOverlayE decals: 1012: -44,29 - 1013: -44,30 - 1014: -44,31 - 1015: -44,32 1016: -44,33 - node: color: '#334E6DC8' id: BrickLineOverlayN decals: - 1017: -31,58 1018: -30,58 1019: -29,58 1020: -28,58 @@ -768,6 +846,13 @@ entities: 1036: -24,64 1037: -23,64 1038: -22,64 + 2182: -32,58 + 2183: -31,58 + 2184: -33,58 + 2185: -34,58 + 2186: -35,58 + 2187: -36,58 + 2188: -37,58 - node: color: '#3EB38896' id: BrickLineOverlayN @@ -785,24 +870,19 @@ entities: color: '#52B4E996' id: BrickLineOverlayN decals: - 994: -43,21 995: -42,21 - 996: -41,21 997: -40,21 - 998: -39,21 999: -38,21 - 1000: -37,21 1001: -36,21 - 1002: -35,21 1003: -34,21 - 1004: -33,21 1005: -32,21 - 1006: -31,21 - 1007: -30,21 - 1008: -29,21 - 1009: -28,21 - 1010: -27,21 - 1011: -26,21 + 2062: -27,21 + 2063: -26,21 + 2064: -26,21 + 2065: -26,21 + 2066: -25,21 + 2070: -30,21 + 2071: -29,21 - node: color: '#D381C996' id: BrickLineOverlayN @@ -814,6 +894,12 @@ entities: 976: 20,33 977: 21,33 978: 22,33 + 2262: 13,39 + 2263: 14,39 + 2264: 15,39 + 2265: 16,39 + 2266: 17,39 + 2278: 11,32 - node: color: '#DE3A3A96' id: BrickLineOverlayN @@ -824,6 +910,12 @@ entities: 1616: -7,13 1617: -6,13 1642: -8,35 + 2190: -19,58 + 2191: -17,58 + 2192: -15,58 + 2193: -13,58 + 2194: -11,58 + 2195: -9,58 - node: color: '#EFB34196' id: BrickLineOverlayN @@ -866,15 +958,11 @@ entities: id: BrickLineOverlayS decals: 1098: -1,19 - 1099: -2,19 - 1100: 0,19 1101: 1,19 1132: -1,8 1133: 0,8 1576: -3,19 - 1577: -4,19 1578: -5,19 - 1579: -6,19 1583: -4,15 1585: -3,15 1586: -3,15 @@ -899,36 +987,27 @@ entities: 972: 20,28 973: 21,28 974: 22,28 + 2256: 13,36 + 2257: 14,36 + 2258: 14,36 + 2259: 15,36 + 2260: 16,36 + 2261: 17,36 + 2279: 11,28 - node: color: '#DE3A3A96' id: BrickLineOverlayS decals: - 322: -30,52 323: -31,52 - 324: -29,52 - 325: -28,52 326: -27,52 - 327: -26,52 328: -25,52 - 329: -24,52 330: -23,52 - 331: -22,52 - 332: -21,52 - 333: -20,52 - 334: -19,52 - 335: -18,52 - 336: -16,52 337: -17,52 338: -34,52 - 339: -35,52 340: -36,52 341: -37,52 342: -38,52 - 343: -39,52 344: -40,52 - 345: -41,52 - 346: -42,52 - 347: -43,52 362: -31,44 363: -30,44 364: -29,44 @@ -940,41 +1019,24 @@ entities: 370: -23,44 371: -22,44 1080: -9,19 - 1081: -8,19 1082: -7,19 1090: -8,15 - node: color: '#EFB34196' id: BrickLineOverlayS decals: - 1050: -37,19 - 1051: -36,19 - 1052: -34,19 1053: -35,19 1054: -33,19 - 1055: -32,19 1056: -31,19 - 1057: -30,19 1058: -29,19 - 1059: -28,19 - 1060: -27,19 - 1061: -26,19 1062: -25,19 - 1063: -24,19 1064: -23,19 - 1065: -22,19 1066: -21,19 - 1067: -20,19 1068: -19,19 1069: -18,19 1070: -17,19 - 1071: -16,19 1072: -15,19 - 1073: -14,19 1074: -13,19 - 1075: -12,19 - 1076: -11,19 - 1077: -10,19 1141: -16,15 1142: -15,15 1143: -14,15 @@ -997,8 +1059,6 @@ entities: 1265: -15,7 1266: -16,7 1291: -24,0 - 1292: -23,0 - 1293: -22,0 1294: -21,0 1296: -20,0 1618: -7,3 @@ -1039,6 +1099,11 @@ entities: 969: 18,30 970: 18,31 971: 18,32 + 2269: 12,37 + 2270: 12,38 + 2271: 10,31 + 2272: 10,30 + 2273: 10,29 - node: color: '#DE3A3A96' id: BrickLineOverlayW @@ -1050,7 +1115,6 @@ entities: 357: -34,45 358: -34,44 359: -34,43 - 360: -34,42 361: -21,43 1091: -9,16 - node: @@ -1105,6 +1169,7 @@ entities: 605: 11,65 1520: 14,78 1544: 5,69 + 2201: -3,66 - node: color: '#D381C996' id: BrickTileWhiteCornerNe @@ -1121,8 +1186,8 @@ entities: decals: 593: -32,50 596: -10,45 - 598: -2,44 844: 5,45 + 1871: -3,44 - node: color: '#FA750096' id: BrickTileWhiteCornerNe @@ -1191,7 +1256,6 @@ entities: 684: -29,23 740: -18,30 759: -20,23 - 788: -13,23 808: -11,30 - node: color: '#A4610696' @@ -1213,9 +1277,14 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 595: -32,41 - 599: -2,43 846: 5,43 + 2247: -32,41 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 2238: -19,1 + 2239: -23,0 - node: color: '#FA750096' id: BrickTileWhiteCornerSe @@ -1236,6 +1305,7 @@ entities: 760: -27,23 786: -18,23 809: -16,30 + 1977: -16,38 - node: color: '#A4610696' id: BrickTileWhiteCornerSw @@ -1256,11 +1326,46 @@ entities: id: BrickTileWhiteCornerSw decals: 847: 4,43 + 2244: -34,42 + 2245: -33,41 - node: color: '#FA750096' id: BrickTileWhiteCornerSw decals: 639: -42,28 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndE + decals: + 1872: -2,43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNe + decals: + 2241: -32,47 + 2249: -10,44 + 2250: -3,43 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerNw + decals: + 2248: -11,44 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSe + decals: + 2243: -32,44 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSe + decals: + 2240: -23,1 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteInnerSw + decals: + 2242: -21,44 + 2246: -33,42 - node: color: '#43990996' id: BrickTileWhiteLineE @@ -1282,9 +1387,10 @@ entities: 741: -18,31 742: -18,32 762: -20,24 - 784: -13,24 802: -11,31 803: -11,32 + 2074: -44,23 + 2075: -44,24 - node: color: '#9FED5896' id: BrickTileWhiteLineE @@ -1296,17 +1402,10 @@ entities: color: '#A4610696' id: BrickTileWhiteLineE decals: - 422: -3,61 423: -3,62 - 424: -3,63 425: -3,64 - 426: -3,65 - 427: -3,66 428: -3,60 - 429: -3,59 430: -3,58 - 431: -3,57 - 432: -3,56 433: -3,55 452: 14,72 453: 14,73 @@ -1363,6 +1462,10 @@ entities: 852: 2,44 853: 2,45 854: 2,42 + 2136: -44,48 + 2137: -44,46 + 2138: -44,44 + 2139: -44,42 - node: color: '#FA750096' id: BrickTileWhiteLineE @@ -1371,6 +1474,7 @@ entities: 667: -33,30 668: -33,31 669: -33,32 + 2088: -44,31 - node: color: '#43990996' id: BrickTileWhiteLineN @@ -1424,6 +1528,9 @@ entities: 1625: -26,34 1626: -25,34 1627: -24,34 + 2083: -23,21 + 2084: -21,21 + 2085: -19,21 - node: color: '#9FED5896' id: BrickTileWhiteLineN @@ -1477,11 +1584,9 @@ entities: color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 393: -3,44 394: -4,44 395: -5,44 396: -6,44 - 397: -7,44 398: -8,44 399: -9,44 400: -12,44 @@ -1498,6 +1603,7 @@ entities: 412: -31,47 434: -4,66 594: -33,50 + 1870: -7,44 - node: color: '#FA750096' id: BrickTileWhiteLineN @@ -1534,7 +1640,6 @@ entities: 505: -15,43 506: -14,43 507: -13,43 - 509: -15,38 620: -41,23 621: -40,23 622: -39,23 @@ -1571,7 +1676,6 @@ entities: 737: -20,30 738: -19,30 763: -26,23 - 764: -25,23 765: -24,23 766: -23,23 767: -22,23 @@ -1579,11 +1683,12 @@ entities: 779: -17,23 780: -16,23 781: -15,23 - 782: -14,23 798: -15,30 799: -14,30 800: -13,30 801: -12,30 + 1978: -15,38 + 2079: -25,23 - node: color: '#A4610696' id: BrickTileWhiteLineS @@ -1646,7 +1751,25 @@ entities: 388: -5,43 389: -4,43 390: -3,43 - 413: -33,41 + 2127: -19,52 + 2128: -21,52 + 2129: -15,52 + 2130: -13,52 + 2131: -11,52 + 2132: -9,52 + 2133: -33,52 + 2134: -32,52 + 2135: -42,52 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 2174: -37,19 + 2175: -27,19 + 2177: -11,19 + 2235: -22,1 + 2236: -21,1 + 2237: -20,1 - node: color: '#FA750096' id: BrickTileWhiteLineS @@ -1669,7 +1792,6 @@ entities: id: BrickTileWhiteLineW decals: 512: -16,39 - 513: -16,40 514: -16,41 515: -16,42 616: -42,24 @@ -1684,14 +1806,11 @@ entities: id: BrickTileWhiteLineW decals: 577: -46,43 - 578: -46,42 - 579: -46,41 - 580: -46,40 581: -46,39 - 582: -46,38 583: -60,40 584: -60,41 585: -60,42 + 2095: -46,41 - node: color: '#A4610696' id: BrickTileWhiteLineW @@ -1744,6 +1863,11 @@ entities: 855: 7,42 856: 7,43 857: 7,44 + 2147: 0,42 + 2148: 0,44 + 2149: 0,40 + 2150: 0,38 + 2151: 0,36 - node: color: '#FA750096' id: BrickTileWhiteLineW @@ -1757,21 +1881,77 @@ entities: 672: -31,29 673: -31,31 674: -31,32 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 1847: -69.17599,0.20316815 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 1854: -72.08224,-0.87495685 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 1852: -69.09786,3.0469182 + 1853: -70.36349,-0.59370685 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 1851: -67.97286,-0.92183185 + 1855: -72.19161,-1.5312068 - node: color: '#FFFFFFFF' id: Bushg2 decals: 1495: -1.2506938,80.23881 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 1858: -23.53892,55.84783 + 1859: -13.76613,55.332207 - node: color: '#FFFFFFFF' id: Bushh3 decals: 1493: -2.8444438,80.08256 + - node: + color: '#FFFFFFFF' + id: Bushi1 + decals: + 1848: -68.31661,-0.062456846 - node: color: '#FFFFFFFF' id: Bushi4 decals: 1494: -2.0788188,79.89506 + - node: + color: '#FFFFFFFF' + id: Bushj2 + decals: + 1861: -11.953106,55.94158 + 1862: -33.49198,55.982 + - node: + color: '#FFFFFFFF' + id: Bushk1 + decals: + 1860: -11.093731,55.72283 + - node: + color: '#FFFFFFFF' + id: Bushl1 + decals: + 1849: -71.69161,-1.2655818 + 1857: -23.50767,54.488457 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 1850: -71.34786,2.8594182 + 1856: -30.262743,55.833405 - node: color: '#DE3A3A96' id: Delivery @@ -1803,7 +1983,6 @@ entities: 1233: -25,-5 1234: -13,-3 1417: -38,63 - 1620: -5,3 1640: -9,34 1641: -9,35 1646: -28,-5 @@ -1813,6 +1992,123 @@ entities: 1710: 11,73 1711: 13,73 1712: 13,71 + 1905: -25,42 + 1909: -53,21 + 1910: -52,21 + 1911: -56,19 + 1912: -56,20 + 1913: -47,19 + 1914: -47,20 + 1915: -40,19 + 1916: -40,21 + 1917: -40,20 + 1918: -46,34 + 1919: -45,34 + 1920: -44,34 + 1921: -46,37 + 1922: -45,37 + 1923: -44,37 + 1924: -58,35 + 1925: -58,36 + 1926: -69,35 + 1927: -69,36 + 1928: -74,53 + 1929: -73,53 + 1930: -72,53 + 1931: -83,54 + 1932: -83,55 + 1933: -83,56 + 1934: -83,69 + 1935: -83,68 + 1936: -83,70 + 1937: -71,63 + 1938: -71,62 + 1939: -46,50 + 1940: -45,50 + 1941: -44,50 + 1942: -56,62 + 1943: -56,63 + 1944: -37,58 + 1945: -37,57 + 1946: -37,53 + 1947: -37,54 + 1948: -37,52 + 1949: -8,54 + 1950: -8,53 + 1951: -8,52 + 1952: -8,57 + 1953: -8,58 + 1954: -2,54 + 1955: -2,53 + 1956: -2,52 + 1957: 0,51 + 1958: 1,51 + 1959: 2,51 + 1960: -24,59 + 1961: -23,59 + 1962: -22,59 + 1963: 0,34 + 1964: 2,34 + 1965: 1,34 + 1966: 0,22 + 1967: 1,22 + 1968: 2,22 + 1969: -18,19 + 1970: -18,20 + 1971: -18,21 + 2209: -3,66 + 2233: -5,3 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 1801: -72,44 + 1802: -72,42 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 1793: -24,70 + 1794: -23,70 + 1795: -22,70 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 1774: -31,56 + 1775: -22,56 + 1776: -13,55 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 1764: -37,56 + 1765: -37,55 + 1766: -8,56 + 1767: -8,55 + 1768: -12,55 + 1769: -14,56 + 1777: -23,54 + 1778: -23,61 + 1779: -23,62 + 1780: -23,63 + 1799: -72,41 + 1800: -72,45 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 1796: -72,46 + 1797: -72,43 + 1798: -72,40 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 1770: -15,55 + 1771: -22,54 + 1772: -24,55 + 1773: -33,55 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -1858,6 +2154,200 @@ entities: 678: -35,29 679: -35,30 680: -35,31 + - node: + color: '#FFFFFFFF' + id: Grassa2 + decals: + 1762: -37,55 + 1763: -37,56 + 1781: -23,61 + 1782: -23,62 + 1783: -23,63 + 1817: -72,41 + 1818: -72,44 + 1842: -68.58224,-1.9687068 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 1719: -59,38 + 1720: -58,39 + 1827: -71.20724,0.23441815 + 1828: -71.75411,1.2969182 + 1829: -70.98849,2.0000432 + - node: + color: '#FFFFFFFF' + id: Grassa4 + decals: + 1819: -72,42 + 1820: -72,46 + 1838: -70.30099,-1.3905818 + 1839: -71.62911,-2.0468318 + - node: + color: '#FFFFFFFF' + id: Grassa5 + decals: + 1717: -60,39 + 1718: -59,39 + 1756: -8,55 + 1757: -8,56 + 1790: -24,70 + 1791: -23,70 + 1792: -22,70 + - node: + color: '#FFFFFFFF' + id: Grassb1 + decals: + 1721: -58,38 + 1722: -57,39 + - node: + color: '#FFFFFFFF' + id: Grassb3 + decals: + 1803: -72,46 + 1804: -72,45 + 1805: -72,44 + 1806: -72,43 + 1807: -72,42 + 1808: -72,41 + 1809: -72,40 + 1835: -68.33224,0.92191815 + 1836: -68.00411,1.8750432 + 1837: -69.69161,-0.43745685 + 1840: -70.75411,-1.9218318 + 1841: -69.64474,-1.9530818 + - node: + color: '#FFFFFFFF' + id: Grassb4 + decals: + 1723: -57,38 + 1725: -60,38 + 1992: -59,-4 + 1993: -71,-5 + - node: + color: '#FFFFFFFF' + id: Grassb5 + decals: + 1830: -70.50411,2.7187932 + 1831: -72.01974,2.7656682 + 1832: -69.23849,1.0469182 + 1833: -68.05099,2.8281682 + 1834: -69.51974,2.7031682 + - node: + color: '#FFFFFFFF' + id: Grassc1 + decals: + 1758: -8,56 + 1759: -8,55 + - node: + color: '#FFFFFFFF' + id: Grassc4 + decals: + 1991: -62,-6 + 1994: -68,-7 + 1995: -70,-2 + 1996: -69,5 + 1997: -67,-4 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 1810: -72,40 + 1811: -72,41 + 1812: -72,42 + 1813: -72,44 + 1814: -72,43 + 1815: -72,45 + 1816: -72,46 + - node: + color: '#FFFFFFFF' + id: Grassd2 + decals: + 1748: -31,55 + 1749: -30,56 + 1750: -22,54 + 1751: -22,56 + 1752: -15,55 + 1753: -11,56 + 1754: -8,56 + 1755: -8,55 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 1843: -68.91036,-0.81245685 + 1844: -70.56661,-0.23433185 + 1845: -69.97286,2.2812932 + 1846: -71.80099,2.0937932 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 1727: -34,56 + 1728: -34,55 + 1729: -33,56 + 1760: -37,55 + 1761: -37,56 + 1784: -23,61 + 1785: -23,62 + 1786: -23,63 + 1787: -24,70 + 1788: -23,70 + 1789: -22,70 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 1730: -33,55 + 1731: -32,56 + 1732: -30,55 + 1733: -24,56 + 1734: -23,55 + 1735: -24,54 + 1736: -22,55 + 1737: -15,56 + 1738: -14,55 + 1739: -12,55 + 1740: -12,56 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 1741: -11,55 + 1742: -13,55 + 1743: -14,56 + 1744: -24,55 + 1745: -23,54 + 1746: -32,55 + 1747: -31,56 + - node: + color: '#39C800FF' + id: HalfTileOverlayGreyscale + decals: + 2026: -42,55 + 2027: -43,55 + - node: + color: '#3C44AAFF' + id: HalfTileOverlayGreyscale + decals: + 2038: -47,55 + 2039: -46,55 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 2052: -37,21 + 2053: -39,21 + 2054: -41,21 + 2055: -43,21 + 2056: -35,21 + 2057: -33,21 + 2058: -31,21 + 2059: -28,21 + 2060: -26,21 + 2080: -24,21 + 2081: -22,21 + 2082: -20,21 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale @@ -1868,6 +2358,24 @@ entities: 555: -51,43 556: -50,43 561: -49,43 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 2196: -18,58 + 2197: -16,58 + 2198: -14,58 + 2199: -12,58 + 2200: -10,58 + - node: + color: '#3EB38896' + id: HalfTileOverlayGreyscale180 + decals: + 2152: -6,19 + 2153: -4,19 + 2154: -2,19 + 2155: 0,19 + 2156: 2,19 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 @@ -1880,6 +2388,64 @@ entities: 549: -54,38 550: -55,38 551: -56,38 + - node: + color: '#B02E26FF' + id: HalfTileOverlayGreyscale180 + decals: + 2031: -42,62 + 2032: -43,62 + 2033: -44,62 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 2108: -43,52 + 2116: -41,52 + 2117: -39,52 + 2118: -35,52 + 2119: -30,52 + 2120: -28,52 + 2121: -26,52 + 2122: -24,52 + 2123: -22,52 + 2124: -20,52 + 2125: -18,52 + 2126: -16,52 + 2140: -14,52 + 2141: -12,52 + 2142: -10,52 + 2180: -8,19 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 2161: -10,19 + 2162: -12,19 + 2163: -14,19 + 2164: -16,19 + 2165: -20,19 + 2166: -22,19 + 2167: -24,19 + 2168: -26,19 + 2169: -28,19 + 2170: -30,19 + 2171: -32,19 + 2172: -34,19 + 2173: -36,19 + - node: + color: '#FED83DFF' + id: HalfTileOverlayGreyscale180 + decals: + 2045: -47,62 + 2046: -46,62 + 2047: -45,62 + - node: + color: '#39C800FF' + id: HalfTileOverlayGreyscale270 + decals: + 2023: -41,57 + 2024: -41,56 + 2025: -41,58 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 @@ -1887,6 +2453,46 @@ entities: 532: -56,42 533: -56,41 534: -56,40 + 2091: -46,44 + 2092: -46,42 + 2093: -46,40 + 2094: -46,38 + - node: + color: '#B02E26FF' + id: HalfTileOverlayGreyscale270 + decals: + 2028: -41,59 + 2029: -41,60 + 2030: -41,61 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 2143: 0,43 + 2144: 0,41 + 2145: 0,39 + 2146: 0,37 + - node: + color: '#3C44AAFF' + id: HalfTileOverlayGreyscale90 + decals: + 2035: -48,58 + 2036: -48,57 + 2037: -48,56 + - node: + color: '#3EB38896' + id: HalfTileOverlayGreyscale90 + decals: + 2157: 2,19 + 2158: 2,21 + 2159: 2,23 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 2072: -44,22 + 2073: -44,26 + 2076: -44,28 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 @@ -1895,6 +2501,106 @@ entities: 558: -48,41 559: -48,40 560: -48,39 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 2202: -3,65 + 2203: -3,63 + 2204: -3,61 + 2205: -3,59 + 2206: -3,57 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 2109: -44,51 + 2111: -44,49 + 2112: -44,47 + 2113: -44,45 + 2114: -44,43 + 2115: -44,41 + - node: + color: '#FA750096' + id: HalfTileOverlayGreyscale90 + decals: + 2077: -44,30 + 2078: -44,32 + - node: + color: '#FED83DFF' + id: HalfTileOverlayGreyscale90 + decals: + 2042: -48,61 + 2043: -48,60 + 2044: -48,59 + - node: + color: '#FED83DFF' + id: MiniTileCornerOverlayNW + decals: + 2007: -47,61 + - node: + color: '#39C800FF' + id: MiniTileCornerOverlaySE + decals: + 2017: -42,56 + - node: + color: '#3C44AAFF' + id: MiniTileCornerOverlaySW + decals: + 2012: -47,56 + - node: + color: '#39C800FF' + id: MiniTileLineOverlayE + decals: + 2020: -42,57 + 2021: -42,58 + - node: + color: '#B02E26FF' + id: MiniTileLineOverlayE + decals: + 2005: -42,60 + 2006: -42,59 + - node: + color: '#B02E26FF' + id: MiniTileLineOverlayN + decals: + 2003: -43,61 + 2004: -44,61 + - node: + color: '#FED83DFF' + id: MiniTileLineOverlayN + decals: + 2008: -46,61 + 2009: -45,61 + - node: + color: '#39C800FF' + id: MiniTileLineOverlayS + decals: + 2018: -43,56 + 2019: -44,56 + - node: + color: '#3C44AAFF' + id: MiniTileLineOverlayS + decals: + 2013: -46,56 + 2014: -45,56 + - node: + color: '#3C44AAFF' + id: MiniTileLineOverlayW + decals: + 2015: -47,57 + 2016: -47,58 + - node: + color: '#FED83DFF' + id: MiniTileLineOverlayW + decals: + 2010: -47,60 + 2011: -47,59 + - node: + color: '#B02E26FF' + id: MiniTileWhiteCornerNe + decals: + 2002: -42,61 - node: color: '#D381C996' id: MiniTileWhiteCornerNe @@ -1915,21 +2621,123 @@ entities: id: MiniTileWhiteCornerSw decals: 1703: 9,37 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerNe + decals: + 2220: -22,28 + 2221: -23,33 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerNe + decals: + 2225: 8,40 + 2226: 19,37 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerNw + decals: + 2222: -29,33 + - node: + color: '#3EB38896' + id: MiniTileWhiteInnerSe + decals: + 2230: 1,16 + - node: + color: '#52B4E996' + id: MiniTileWhiteInnerSe + decals: + 2223: -14,24 + 2224: -22,30 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerSe + decals: + 2227: 16,35 + 2229: 19,28 + - node: + color: '#D381C996' + id: MiniTileWhiteInnerSw + decals: + 2228: 15,35 + - node: + color: '#EFB34196' + id: MiniTileWhiteInnerSw + decals: + 2234: -11,7 + - node: + color: '#14AC16FF' + id: QuarterTileOverlayGreyscale + decals: + 2048: -41,55 + - node: + color: '#28C516FF' + id: QuarterTileOverlayGreyscale + decals: + 2251: -41,55 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 1972: -14,39 + 1974: -14,40 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 1975: -14,40 + 1980: -15,40 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale180 + decals: + 2110: -44,52 + - node: + color: '#FED83DFF' + id: QuarterTileOverlayGreyscale180 + decals: + 2041: -48,62 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 1976: -14,40 + - node: + color: '#B02E26FF' + id: QuarterTileOverlayGreyscale270 + decals: + 2034: -41,62 + - node: + color: '#3C44AAFF' + id: QuarterTileOverlayGreyscale90 + decals: + 2040: -48,55 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale90 + decals: + 2090: -44,21 - node: color: '#FFFFFFFF' id: Remains decals: 1565: -64,2 + 1998: -69,-7 - node: color: '#FFFFFFFF' - id: Rock06 + id: Rock01 decals: - 1437: -71,-1 + 1821: -69,2 - node: color: '#FFFFFFFF' - id: Rock07 + id: Rock03 + decals: + 1823: -72,0 + - node: + color: '#FFFFFFFF' + id: Rock06 decals: - 1438: -69,2 + 1822: -71,-1 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -2034,6 +2842,11 @@ entities: id: WarnCornerNE decals: 111: -7,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 1906: -24,41 - node: color: '#EFB34196' id: WarnCornerNW @@ -2049,6 +2862,11 @@ entities: id: WarnCornerNW decals: 112: -11,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 1892: -29,41 - node: color: '#EFB34196' id: WarnCornerSE @@ -2064,6 +2882,12 @@ entities: id: WarnCornerSE decals: 110: -7,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 1894: -24,40 + 1989: 30,31 - node: color: '#EFB34196' id: WarnCornerSW @@ -2079,6 +2903,22 @@ entities: id: WarnCornerSW decals: 113: -11,-4 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 1895: -29,40 + 1990: 28,31 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 2218: -26,41 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 2219: -27,41 - node: color: '#EFB34196' id: WarnLineE @@ -2100,6 +2940,11 @@ entities: 114: -7,-3 115: -7,-2 116: -7,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 1903: -26,42 - node: color: '#EFB34196' id: WarnLineN @@ -2121,6 +2966,14 @@ entities: 123: -10,-4 124: -9,-4 125: -8,-4 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 1898: -28,40 + 1899: -27,40 + 1900: -26,40 + 1901: -25,40 - node: color: '#EFB34196' id: WarnLineS @@ -2142,6 +2995,11 @@ entities: 117: -11,-3 118: -11,-2 119: -11,-1 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 1904: -27,42 - node: color: '#EFB34196' id: WarnLineW @@ -2165,215 +3023,73 @@ entities: 122: -8,0 - node: color: '#FFFFFFFF' - id: bushsnowa1 - decals: - 1401: -24,70 - 1402: -23,70 - 1403: -22,70 - - node: - color: '#FFFFFFFF' - id: bushsnowb1 - decals: - 1442: -69,1 - - node: - color: '#FFFFFFFF' - id: bushsnowb2 - decals: - 1650: -36.990356,55.55721 - 1651: -37.052856,54.93221 - 1652: -36.990356,56.072834 - 1653: -7.994808,54.916584 - 1654: -7.994808,55.447834 - 1655: -7.963558,56.05721 - - node: - color: '#FFFFFFFF' - id: bushsnowb3 - decals: - 1441: -71,2 - - node: - color: '#DE3A3A96' - id: exclamationmark - decals: - 1563: -64,0 - - node: - color: '#FFFFFFFF' - id: grasssnow - decals: - 156: -34,56 - 157: -34,55 - 158: -33,56 - 159: -33,55 - 160: -32,55 - 161: -32,56 - 162: -31,56 - 163: -31,56 - 164: -30,56 - 165: -30,55 - 166: -31,55 - 167: -15,56 - 168: -14,56 - 169: -13,56 - 170: -12,56 - 171: -11,56 - 172: -11,55 - 173: -12,55 - 174: -13,55 - 175: -14,55 - 176: -15,55 - 177: -24,54 - 178: -24,55 - 179: -24,56 - 180: -23,56 - 181: -23,55 - 182: -22,56 - 183: -22,55 - 186: -23,54 - 187: -22,54 - 206: -60,39 - 207: -60,38 - 208: -59,39 - 209: -59,38 - 210: -59,39 - 211: -58,39 - 212: -58,38 - 213: -57,39 - 215: -57,38 - 1404: -24,70 - 1405: -23,70 - 1406: -22,70 - 1426: -72,40 - 1427: -72,41 - 1428: -72,42 - 1429: -72,43 - 1430: -72,44 - 1431: -72,45 - 1432: -72,46 - 1556: -23,63 - - node: - color: '#FFFFFFFF' - id: grasssnow02 - decals: - 1467: -68.87945,2.9204502 - - node: - color: '#FFFFFFFF' - id: grasssnow04 - decals: - 1475: -70.18346,-0.81155574 - 1476: -69.66783,-1.3740556 - - node: - color: '#FFFFFFFF' - id: grasssnow05 - decals: - 1465: -71.87945,0.20170009 - 1466: -70.11382,2.9673252 - - node: - color: '#FFFFFFFF' - id: grasssnow06 - decals: - 1469: -68.00445,2.0923252 - 1470: -68.0357,-1.220175 - - node: - color: '#FFFFFFFF' - id: grasssnow08 - decals: - 1464: -72.08257,-1.0483 - - node: - color: '#FFFFFFFF' - id: grasssnow10 + id: WarnLineW decals: - 139: -23,61 - 147: -23,62 - 1444: -71,-1 - 1446: -70,0 - 1447: -69,0 - 1448: -70,0 - 1449: -68,1 - 1450: -69,0 - 1457: -70.42632,-0.4545499 - 1458: -69.7232,-0.3920499 - 1459: -68.9107,0.3579501 - 1460: -68.31695,0.2798251 - 1461: -68.36382,1.1235751 + 1896: -28,41 + 1897: -25,41 - node: - color: '#FFFFFFFF' - id: grasssnow13 + cleanable: True + color: '#FF0000FF' + id: amyjon decals: - 1463: -71.89507,-1.720175 - 1468: -68.56695,3.17045 + 1984: -74.25735,22.14264 - node: color: '#FFFFFFFF' - id: grasssnowa1 + id: b decals: - 1424: -72,41 + 1865: -2.8403497,54.976276 + 1866: -2.8403497,54.976276 - node: - color: '#FFFFFFFF' - id: grasssnowa2 + cleanable: True + color: '#FF0000FF' + id: danger decals: - 1451: -71,3 - 1452: -71.0982,2.4985752 - 1453: -71.30132,1.6392002 - 1454: -70.86382,1.4673251 - 1455: -71.30132,0.9985751 - 1456: -70.86382,0.3579501 - 1472: -68.0357,-1.813925 - 1473: -69.71471,-1.3428056 - 1474: -69.93346,-1.8428056 + 1985: -73.05422,17.970764 - node: - color: '#FFFFFFFF' - id: grasssnowb1 + cleanable: True + color: '#FF0000FF' + id: end decals: - 1421: -72,44 - 1656: -7.994808,55.90096 - 1657: -7.994808,55.27596 + 1987: -76.2261,23.01764 - node: - color: '#FFFFFFFF' - id: grasssnowb2 - decals: - 1422: -72,43 - - node: - color: '#FFFFFFFF' - id: grasssnowb3 + cleanable: True + color: '#FF0000FF' + id: engie decals: - 1555: -23,63 + 1986: -76.02297,17.98639 - node: - color: '#FFFFFFFF' - id: grasssnowc1 + color: '#DE3A3A96' + id: exclamationmark decals: - 143: -23,61 - 146: -23,62 - 1419: -72,46 - 1420: -72,45 - 1423: -72,42 - 1440: -71,0 + 1563: -64,0 - node: color: '#FFFFFFFF' id: grasssnowc2 decals: - 1648: -37,56 - 1649: -37,55 1661: -18.00116,11.9928 - - node: - color: '#FFFFFFFF' - id: grasssnowc3 - decals: - 1407: -24,70 - 1408: -23,70 - 1409: -22,70 - 1425: -72,40 - 1462: -70.4732,-1.6108 - node: color: '#52B4E996' id: med decals: - 983: -29,21 - 984: -30,21 - 985: -44,24 986: -44,25 + 2068: -30,21 + 2069: -29,21 + - node: + cleanable: True + color: '#FF0000FF' + id: prolizard + decals: + 1988: -79.0386,18.23639 - node: color: '#9B0000FF' id: rune1 decals: 1433: -50,11 + - node: + color: '#B02E26FF' + id: rune1 + decals: + 1999: -69,-5 - node: color: '#9B0000FF' id: rune4 @@ -2396,6 +3112,12 @@ entities: 1477: -65.526375,1.5339541 1478: -64.245125,1.3777041 1479: -64.417,2.5808291 + - node: + color: '#B02E26FF' + id: splatter + decals: + 2000: -70,-6 + 2001: -68,-6 - node: color: '#DE3A3A96' id: trade @@ -2451,7 +3173,7 @@ entities: 2,4: 0: 6007 3,0: - 2: 16368 + 2: 12784 1: 49152 3,1: 2: 4369 @@ -2471,7 +3193,7 @@ entities: 2: 61713 5: 192 4,0: - 2: 18288 + 2: 17520 1: 4096 4,1: 1: 16 @@ -2485,9 +3207,9 @@ entities: 4: 4096 2: 17476 -4,0: - 0: 65535 + 0: 65534 -5,0: - 0: 48059 + 0: 48051 -4,1: 0: 61695 -5,1: @@ -2530,16 +3252,18 @@ entities: 0: 61883 -1,4: 0: 63743 + -1,-1: + 0: 10103 0,-4: 2: 29491 0,-5: 2: 16159 -1,-4: - 2: 43690 + 2: 64716 0,-3: 2: 13107 -1,-3: - 2: 63674 + 2: 65484 0,-2: 2: 23 0: 64512 @@ -2570,13 +3294,13 @@ entities: 2: 34952 3,-2: 0: 3 - 2: 32712 + 2: 32648 3,-5: 2: 36815 4,-4: 2: 273 4,-1: - 0: 62924 + 0: 65484 -8,0: 2: 4096 0: 49356 @@ -2609,7 +3333,7 @@ entities: -7,-1: 0: 36863 -6,0: - 0: 65535 + 0: 65523 -6,1: 0: 65535 -6,2: @@ -2618,8 +3342,10 @@ entities: 0: 65359 -6,4: 0: 61695 + -6,-1: + 0: 35771 -5,-1: - 0: 16383 + 0: 65535 -5,4: 0: 61627 -8,-4: @@ -2640,7 +3366,7 @@ entities: 2: 1 0: 52236 -9,-2: - 2: 34952 + 2: 63624 -8,-1: 2: 1 0: 3276 @@ -2666,33 +3392,31 @@ entities: -6,-2: 2: 240 0: 45056 - -6,-1: - 0: 3003 -6,-5: 0: 4112 2: 15 -5,-4: - 2: 61167 + 2: 52429 -5,-3: 2: 61167 -5,-2: 2: 254 0: 61440 -5,-5: - 2: 61167 + 2: 52431 + -4,-4: + 2: 63897 -4,-3: - 2: 61666 + 2: 65433 -4,-2: 2: 255 0: 41472 - -4,-4: - 2: 43690 -4,-5: - 2: 64170 + 2: 63897 -3,-4: 2: 63628 -3,-3: - 2: 63736 + 2: 65416 -3,-2: 2: 255 0: 61440 @@ -2701,46 +3425,46 @@ entities: -2,-4: 2: 63625 -2,-3: - 2: 61680 + 2: 65416 -2,-2: 2: 255 0: 47104 -2,-5: 2: 63880 - -1,-1: - 0: 1911 -1,-5: - 2: 64170 + 2: 64716 -4,-8: - 2: 65280 + 2: 3840 -5,-8: - 2: 52292 - -4,-7: - 2: 65295 + 2: 35908 -5,-7: - 2: 61007 + 2: 52299 + -4,-7: + 2: 65280 -4,-6: - 2: 41696 + 2: 63903 + -5,-6: + 2: 52428 -3,-8: - 2: 65280 + 2: 3840 -3,-7: - 2: 65423 + 2: 65408 -3,-6: - 2: 63736 + 2: 63631 -2,-8: - 2: 65280 + 2: 3840 -2,-7: - 2: 65295 + 2: 65280 -2,-6: - 2: 61680 + 2: 63631 -1,-8: - 2: 65280 + 2: 3840 -1,-7: - 2: 65295 + 2: 65280 -1,-6: - 2: 43704 + 2: 64719 0,-8: - 2: 61696 + 2: 4352 0,-7: 2: 4369 0,-6: @@ -2782,16 +3506,14 @@ entities: -6,-6: 2: 1 0: 4112 - -5,-6: - 2: 61166 -5,-9: 2: 28672 - 1,-8: - 2: 12288 1,-6: - 2: 29766 + 2: 29696 + 1,-8: + 2: 8192 1,-7: - 2: 11810 + 2: 3074 2,-7: 2: 3840 2,-5: @@ -2803,7 +3525,7 @@ entities: 4,-5: 2: 4369 -4,5: - 0: 61695 + 0: 28927 -5,5: 0: 53503 -4,6: @@ -2817,7 +3539,7 @@ entities: -4,8: 0: 62207 -3,5: - 0: 57599 + 0: 4095 -3,6: 0: 61678 -3,7: @@ -2950,14 +3672,15 @@ entities: -11,2: 0: 62207 -11,-1: - 0: 13056 - 2: 34956 + 0: 65280 + 2: 12 -10,0: - 0: 10080 + 0: 10086 -10,2: 0: 30310 -10,-1: - 2: 61455 + 0: 30464 + 2: 15 -10,1: 0: 28390 0,8: @@ -2999,22 +3722,42 @@ entities: 4,7: 0: 64989 5,0: - 0: 4369 + 0: 65535 5,1: - 0: 65297 + 0: 65311 5,2: 0: 65535 5,3: 0: 65521 5,-1: - 0: 4096 + 0: 65527 5,4: 0: 65535 + 6,0: + 0: 4369 + 6,1: + 0: 30583 + 6,2: + 0: 63351 6,3: + 0: 65534 + 6,-1: 0: 4368 + 2: 192 6,4: - 0: 4369 - 2: 49152 + 0: 65535 + 7,0: + 2: 29809 + 7,-1: + 2: 4369 + 7,2: + 2: 17988 + 7,1: + 2: 17476 + 7,3: + 2: 3140 + 8,3: + 2: 18176 4,8: 0: 61917 5,5: @@ -3026,26 +3769,24 @@ entities: 5,8: 0: 28927 6,5: - 0: 13104 - 2: 32768 + 0: 48056 6,6: - 0: 26416 - 2: 8 + 0: 28664 6,7: 0: 26238 6,8: - 0: 30310 + 0: 32358 7,4: - 2: 61440 + 0: 65520 7,5: - 2: 61440 + 0: 4607 + 2: 49152 7,6: - 2: 17 - 0: 28672 + 0: 24593 7,7: - 0: 127 - 8,4: - 2: 61440 + 0: 28799 + 7,8: + 0: 65535 8,5: 2: 12834 8,6: @@ -3070,6 +3811,8 @@ entities: 2: 15 -11,-2: 2: 34952 + -10,-2: + 2: 61440 -10,-4: 2: 12 0: 192 @@ -3097,8 +3840,7 @@ entities: -16,0: 0: 29631 -16,-1: - 0: 65280 - 2: 8 + 0: 65423 -17,0: 0: 56797 -16,1: @@ -3124,7 +3866,7 @@ entities: -15,3: 0: 65535 -15,-1: - 0: 65280 + 0: 65295 -15,4: 0: 65279 -14,0: @@ -3144,7 +3886,7 @@ entities: -16,5: 0: 65534 -17,5: - 0: 28262 + 0: 32358 -16,6: 0: 65535 -16,7: @@ -3198,8 +3940,9 @@ entities: 6,12: 0: 221 7,9: - 0: 4096 - 2: 3072 + 0: 4151 + 6: 8 + 2: 2048 7,10: 0: 12307 7,11: @@ -3207,7 +3950,7 @@ entities: 7,12: 0: 51 8,9: - 2: 500 + 2: 996 -17,8: 0: 62574 -16,9: @@ -3246,7 +3989,7 @@ entities: 0: 65532 -13,12: 0: 4351 - 6: 57344 + 7: 57344 -12,9: 0: 56783 -12,10: @@ -3255,7 +3998,7 @@ entities: 0: 65500 -12,12: 0: 60639 - 6: 4096 + 7: 4096 -11,9: 0: 56605 -11,10: @@ -3273,7 +4016,8 @@ entities: -10,12: 0: 3822 -9,9: - 0: 47879 + 0: 47367 + 6: 512 -9,10: 0: 56723 -9,11: @@ -3281,34 +4025,48 @@ entities: -9,12: 0: 36319 -8,9: - 0: 56607 + 0: 37151 + 6: 16384 -8,10: - 0: 7645 + 0: 4505 + 6: 3140 -8,11: 0: 65535 -20,4: - 0: 7 - 2: 61440 + 0: 60935 -20,3: 0: 63247 - -21,4: - 2: 50288 + -20,5: + 0: 61166 + -21,6: + 2: 50252 + -20,6: + 2: 61440 -19,4: - 2: 12288 + 0: 30479 + -19,5: + 0: 32631 + -19,6: + 2: 12832 -19,3: 0: 65287 - -19,5: - 2: 198 + -19,7: + 2: 3618 -18,4: - 0: 65327 + 0: 64303 + 6: 1024 -18,5: - 2: 8752 - -18,3: - 0: 30535 + 8: 528 + 9: 4352 + 10: 32 + 0: 60420 + 11: 192 -18,6: - 2: 57890 + 0: 4082 -18,7: - 2: 57890 + 2: 58146 + -18,3: + 0: 30535 -18,8: 2: 34 0: 61440 @@ -3351,7 +4109,8 @@ entities: -20,0: 0: 65311 -20,-1: - 0: 61440 + 0: 63724 + 6: 2 -21,0: 0: 52224 2: 256 @@ -3375,8 +4134,7 @@ entities: -19,2: 0: 30583 -19,-1: - 0: 28672 - 2: 68 + 0: 28799 -18,0: 0: 65535 -18,1: @@ -3384,9 +4142,9 @@ entities: -18,2: 0: 30579 -18,-1: - 0: 65280 + 0: 65359 -17,-1: - 0: 56576 + 0: 56591 -4,9: 0: 65327 -5,9: @@ -3422,7 +4180,7 @@ entities: -1,10: 0: 61815 -1,11: - 0: 30471 + 0: 15235 -1,12: 0: 1911 0,9: @@ -3434,17 +4192,16 @@ entities: -8,12: 0: 21845 -7,9: - 0: 62735 - 7: 2560 + 0: 53263 + 6: 8192 -7,10: - 0: 8189 - 7: 2 + 0: 8191 -7,11: 0: 57343 -7,12: 0: 7645 -6,9: - 0: 47887 + 0: 47119 -6,10: 0: 37819 -6,11: @@ -3473,12 +4230,12 @@ entities: 0: 4095 3,12: 0: 143 - 2: 29440 + 2: 57856 -12,13: - 6: 1 + 7: 1 0: 65484 -13,13: - 6: 14 + 7: 14 0: 65280 -12,14: 0: 65535 @@ -3495,7 +4252,7 @@ entities: -11,15: 0: 65535 -11,16: - 0: 30577 + 0: 30705 -10,13: 0: 65535 -10,14: @@ -3503,7 +4260,7 @@ entities: -10,15: 0: 63351 -10,16: - 0: 30577 + 0: 30578 -9,13: 0: 65535 -9,14: @@ -3625,7 +4382,7 @@ entities: -2,16: 0: 12014 -1,13: - 0: 16383 + 0: 8191 -1,14: 0: 15291 -1,15: @@ -3696,24 +4453,30 @@ entities: -21,17: 0: 4095 -20,18: - 2: 3840 + 0: 255 -21,18: - 2: 3840 + 0: 255 + 2: 4096 + -20,19: + 2: 240 + -21,19: + 2: 241 -19,17: 0: 4095 -19,18: - 0: 238 - 2: 36864 + 0: 35071 + 2: 4096 -19,19: - 2: 34959 + 2: 12561 + 0: 2184 + -19,20: + 2: 241 -18,17: 0: 52733 -18,18: - 0: 33023 - -19,20: - 2: 136 + 0: 46079 -18,19: - 0: 34952 + 0: 35771 -17,20: 2: 248 -12,20: @@ -3739,7 +4502,7 @@ entities: 4,14: 2: 119 3,14: - 2: 29932 + 2: 64748 0: 16 4,15: 2: 4369 @@ -3770,7 +4533,7 @@ entities: 0: 62463 3,13: 0: 48 - 2: 29764 + 2: 64716 3,16: 0: 28774 0,17: @@ -3784,7 +4547,8 @@ entities: 0,19: 0: 15243 -1,19: - 0: 65309 + 0: 65305 + 12: 4 0,20: 0: 12287 1,17: @@ -3888,16 +4652,22 @@ entities: 0: 47 -24,18: 2: 3976 + -25,18: + 2: 2048 -24,17: 0: 2248 -23,17: 0: 3067 -23,18: - 2: 3840 + 2: 5888 + -23,19: + 2: 241 -22,17: - 0: 4095 + 0: 8191 -22,18: - 2: 3976 + 0: 255 + -22,19: + 2: 240 -22,16: 0: 8192 -4,21: @@ -3945,6 +4715,8 @@ entities: 2: 61440 -6,-9: 2: 61440 + 8,4: + 2: 58438 8,8: 2: 17476 9,4: @@ -4027,20 +4799,29 @@ entities: 2: 29772 -21,-3: 2: 61440 + -20,-2: + 0: 60928 -19,-3: 2: 17487 -19,-2: - 2: 17476 + 0: 65280 + 2: 4 -18,-3: 2: 15 + -18,-2: + 0: 65520 -17,-3: 2: 15 + -17,-2: + 0: 65520 -16,-3: 2: 34959 + -16,-2: + 0: 65520 -15,-3: 2: 15 - -16,-2: - 2: 34952 + -15,-2: + 0: 61712 -14,-3: 2: 15 -16,20: @@ -4129,6 +4910,12 @@ entities: 0: 52420 5,-3: 0: 30576 + 5,-2: + 0: 30576 + 6,-2: + 2: 15 + 7,-2: + 2: 4369 -11,21: 2: 2288 -11,23: @@ -4197,6 +4984,10 @@ entities: 2: 242 -25,4: 2: 242 + -21,4: + 2: 17520 + -21,5: + 2: 17476 -26,0: 2: 11776 -26,1: @@ -4298,6 +5089,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 235 moles: @@ -4313,11 +5119,71 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14926 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.14902 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.1495 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.14975 moles: - - 20.078888 - - 75.53487 + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 21.6852 + - 81.57766 - 0 - 0 - 0 @@ -4339,7 +5205,7 @@ entities: - uid: 2659 components: - type: Transform - pos: -28.379654,6.5276575 + pos: -28.412497,6.410239 parent: 2 - uid: 4708 components: @@ -4374,6 +5240,20 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 5512 + - uid: 13953 + components: + - type: Transform + parent: 4429 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4429 + - uid: 13956 + components: + - type: Transform + parent: 4857 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4857 - proto: ActionToggleJetpack entities: - uid: 5995 @@ -4397,8 +5277,29 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 5512 + - uid: 13952 + components: + - type: Transform + parent: 4429 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4429 + - uid: 13955 + components: + - type: Transform + parent: 4857 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 4857 - proto: ActionToggleLight entities: + - uid: 2206 + components: + - type: Transform + parent: 5578 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 5578 - uid: 6242 components: - type: Transform @@ -4480,6 +5381,18 @@ entities: - 11318 - 1957 - 11936 + - uid: 437 + components: + - type: Transform + pos: 6.5,56.5 + parent: 2 + - type: DeviceList + devices: + - 10461 + - 11321 + - 17551 + - 4352 + - 11952 - uid: 2728 components: - type: Transform @@ -4586,7 +5499,7 @@ entities: - 11320 - 11319 - 11321 - - 4608 + - 17551 - 4950 - 4352 - 11962 @@ -4679,6 +5592,49 @@ entities: - 11331 - 11827 - 3523 + - uid: 7389 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 11546 + - 11545 + - 11543 + - 11547 + - 11428 + - 1433 + - 6212 + - 6213 + - 6214 + - 2975 + - 3009 + - 10825 + - 6288 + - 6287 + - 6211 + - 6210 + - 6206 + - 1159 + - 11550 + - 4590 + - 12297 + - uid: 7638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 1453 + - 11459 + - 11457 + - 11453 + - 11435 + - 12183 - uid: 9991 components: - type: Transform @@ -4725,6 +5681,31 @@ entities: - 11419 - 12164 - 361 + - uid: 10285 + components: + - type: Transform + pos: -8.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 6208 + - 6207 + - 6209 + - 1164 + - 6971 + - 3051 + - 4674 + - 7255 + - 7172 + - 3638 + - 1679 + - 6202 + - 6201 + - 6200 + - 11872 + - 11556 + - 11560 + - 12466 - uid: 10324 components: - type: Transform @@ -4830,38 +5811,6 @@ entities: - 14720 - 13029 - 13028 - - uid: 10458 - components: - - type: Transform - pos: -19.5,59.5 - parent: 2 - - type: DeviceList - devices: - - 15388 - - 11325 - - 11867 - - 10460 - - 6250 - - 6249 - - 6248 - - 5937 - - 4763 - - 6239 - - 6238 - - 6237 - - 6234 - - 6233 - - 2645 - - 2654 - - 6108 - - 6246 - - 6245 - - 6244 - - 6241 - - 3523 - - 1420 - - 1984 - - 11866 - uid: 10462 components: - type: Transform @@ -4915,7 +5864,7 @@ entities: - 6256 - 11344 - 11838 - - 11837 + - 13254 - 11851 - uid: 10464 components: @@ -4936,7 +5885,7 @@ entities: - 6264 - 6265 - 4634 - - 11837 + - 13254 - uid: 10465 components: - type: Transform @@ -4961,7 +5910,6 @@ entities: - 6250 - 6249 - 6248 - - 11327 - 11328 - 1452 - 6252 @@ -5027,18 +5975,6 @@ entities: - 11402 - 11410 - 12011 - - uid: 10477 - components: - - type: Transform - pos: 9.5,56.5 - parent: 2 - - type: DeviceList - devices: - - 10461 - - 11321 - - 4608 - - 4352 - - 11952 - uid: 10520 components: - type: Transform @@ -5192,6 +6128,7 @@ entities: - 11428 - 12170 - 4557 + - 4590 - uid: 11429 components: - type: Transform @@ -5223,20 +6160,6 @@ entities: - 11438 - 5659 - 12252 - - uid: 11442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,37.5 - parent: 2 - - type: DeviceList - devices: - - 1453 - - 11459 - - 11457 - - 11453 - - 11435 - - 12183 - uid: 11443 components: - type: Transform @@ -5320,7 +6243,7 @@ entities: - 2868 - 2803 - 11489 - - 11490 + - 12287 - 11492 - 11493 - 12481 @@ -5336,7 +6259,7 @@ entities: devices: - 1907 - 11475 - - 11490 + - 12287 - 11489 - 12501 - uid: 11497 @@ -5418,6 +6341,7 @@ entities: - 14162 - 14394 - 3396 + - 4590 - uid: 11508 components: - type: Transform @@ -5477,26 +6401,7 @@ entities: - 11514 - 11543 - 12357 - - uid: 11534 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,26.5 - parent: 2 - - type: DeviceList - devices: - - 6176 - - 1151 - - 1140 - - 480 - - 6173 - - 6178 - - 11516 - - 11515 - - 11514 - - 11530 - - 12383 - - 12783 + - 4590 - uid: 11535 components: - type: Transform @@ -5577,35 +6482,6 @@ entities: - 11511 - 11547 - 11515 - - uid: 11548 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,29.5 - parent: 2 - - type: DeviceList - devices: - - 11546 - - 11545 - - 11543 - - 11547 - - 11428 - - 1433 - - 6212 - - 6213 - - 6214 - - 2975 - - 3009 - - 10825 - - 6288 - - 6287 - - 6211 - - 6210 - - 6206 - - 1159 - - 11550 - - 12287 - - 12297 - uid: 11551 components: - type: Transform @@ -5621,31 +6497,6 @@ entities: - 2905 - 11687 - 13542 - - uid: 11561 - components: - - type: Transform - pos: -8.5,22.5 - parent: 2 - - type: DeviceList - devices: - - 6208 - - 6207 - - 6209 - - 1164 - - 6971 - - 3051 - - 11556 - - 11560 - - 7255 - - 7172 - - 3638 - - 1679 - - 6202 - - 6201 - - 6200 - - 11501 - - 11872 - - 12466 - uid: 11562 components: - type: Transform @@ -5668,6 +6519,7 @@ entities: - 11556 - 12464 - 12465 + - 4590 - uid: 11580 components: - type: Transform @@ -5882,17 +6734,6 @@ entities: - 131 - 122 - 13542 - - uid: 11651 - components: - - type: Transform - pos: 3.5,-6.5 - parent: 2 - - type: DeviceList - devices: - - 11634 - - 4011 - - 1951 - - 11633 - uid: 13253 components: - type: Transform @@ -5977,7 +6818,7 @@ entities: - 10527 - 11408 - 10470 - - 11965 + - 5756 - 11964 - 4557 - 6222 @@ -5987,6 +6828,34 @@ entities: - type: Transform pos: -26.5,59.5 parent: 2 + - type: DeviceList + devices: + - 11325 + - 11867 + - 17578 + - 10459 + - 10460 + - 11866 + - 1984 + - 1420 + - 6241 + - 3523 + - 6244 + - 6245 + - 6246 + - 5937 + - 4763 + - 6108 + - 2654 + - 6239 + - 6238 + - 6237 + - 6234 + - 6233 + - 2645 + - 6248 + - 6249 + - 6250 - uid: 15479 components: - type: Transform @@ -6053,6 +6922,37 @@ entities: - 16069 - 16053 - 16062 + - uid: 17106 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,26.5 + parent: 2 + - type: DeviceList + devices: + - 6176 + - 1151 + - 1140 + - 480 + - 6173 + - 6178 + - 11516 + - 11515 + - 11514 + - 11530 + - 12383 + - 12783 + - uid: 17247 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 11634 + - 4011 + - 1951 + - 11633 - proto: AirCanister entities: - uid: 1390 @@ -6087,6 +6987,8 @@ entities: - type: Transform pos: -53.5,23.5 parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 - uid: 13875 components: - type: Transform @@ -6199,119 +7101,25 @@ entities: parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 67 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,48.5 - parent: 2 - - uid: 1327 - components: - - type: Transform - pos: -7.5,14.5 - parent: 2 - - uid: 1520 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,47.5 - parent: 2 - - uid: 1521 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,47.5 - parent: 2 - - uid: 1796 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,47.5 - parent: 2 - - uid: 4295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,45.5 - parent: 2 - - uid: 5031 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,47.5 - parent: 2 - - uid: 5047 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,45.5 - parent: 2 - - uid: 13989 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,68.5 - parent: 2 - - uid: 13990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,67.5 - parent: 2 - - uid: 13992 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,44.5 - parent: 2 - - uid: 13993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,18.5 - parent: 2 - - uid: 14056 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,64.5 - parent: 2 - - uid: 14276 - components: - - type: Transform - pos: 6.5,44.5 - parent: 2 -- proto: AirlockBrigLocked - entities: - - uid: 12116 - components: - - type: Transform - pos: -0.5,43.5 - parent: 2 - - uid: 13955 - components: - - type: Transform - pos: -40.5,47.5 - parent: 2 - - uid: 13956 + - uid: 4510 components: - type: Transform - pos: -31.5,40.5 + pos: -27.5,48.5 parent: 2 - - uid: 13957 + - uid: 4675 components: - type: Transform - pos: -34.5,44.5 + pos: -29.5,51.5 parent: 2 - - uid: 13958 + - uid: 4836 components: - type: Transform - pos: -34.5,45.5 + pos: -27.5,51.5 parent: 2 - - uid: 13963 + - uid: 6442 components: - type: Transform - pos: -9.5,42.5 + pos: -29.5,48.5 parent: 2 - proto: AirlockCaptainGlassLocked entities: @@ -6375,9 +7183,10 @@ entities: parent: 2 - proto: AirlockChemistryLocked entities: - - uid: 13930 + - uid: 4859 components: - type: Transform + rot: 3.141592653589793 rad pos: -31.5,31.5 parent: 2 - proto: AirlockChiefEngineerGlassLocked @@ -6452,6 +7261,10 @@ entities: rot: -1.5707963267948966 rad pos: -27.5,59.5 parent: 2 + - type: AccessReader + access: + - - Command + - - HeadOfPersonnel - proto: AirlockCommandLocked entities: - uid: 5629 @@ -6466,18 +7279,17 @@ entities: parent: 2 - proto: AirlockDetectiveLocked entities: - - uid: 12878 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,42.5 - parent: 2 - uid: 14981 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,37.5 parent: 2 + - uid: 16940 + components: + - type: Transform + pos: -3.5,42.5 + parent: 2 - proto: AirlockEngineeringGlassLocked entities: - uid: 139 @@ -6486,6 +7298,30 @@ entities: rot: 3.141592653589793 rad pos: -30.5,13.5 parent: 2 + - type: Door + secondsUntilStateChange: -44351.34 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 416 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,13.5 + parent: 2 + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 - uid: 936 components: - type: Transform @@ -6552,12 +7388,6 @@ entities: - type: Transform pos: 1.5,56.5 parent: 2 - - uid: 3446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,10.5 - parent: 2 - uid: 3641 components: - type: Transform @@ -6620,16 +7450,7 @@ entities: access: - - Brig - - Engineering - - uid: 14017 - components: - - type: Transform - pos: -21.5,13.5 - parent: 2 - - uid: 14018 - components: - - type: Transform - pos: -26.5,14.5 - parent: 2 + - - Security - proto: AirlockExternalEngineeringLocked entities: - uid: 3669 @@ -6735,21 +7556,6 @@ entities: parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - - uid: 5913 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,57.5 - parent: 2 - - type: AccessReader - access: - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 5936: - - DoorStatus: DoorBolt - uid: 5936 components: - type: Transform @@ -6760,10 +7566,10 @@ entities: access: - - Salvage - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 5913: + 16895: - DoorStatus: DoorBolt - uid: 16431 components: @@ -6777,6 +7583,21 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,75.5 parent: 2 + - uid: 16895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,57.5 + parent: 2 + - type: AccessReader + access: + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 5936: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 354 @@ -6792,17 +7613,6 @@ entities: - DoorStatus: DoorBolt 15451: - DoorStatus: DoorBolt - - uid: 999 - components: - - type: Transform - pos: -4.5,2.5 - parent: 2 - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 8100: - - DoorStatus: DoorBolt - uid: 2714 components: - type: Transform @@ -6837,22 +7647,6 @@ entities: linkedPorts: 3822: - DoorStatus: DoorBolt - - uid: 4618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,53.5 - parent: 2 - - type: AccessReader - access: - - - Engineering - - - Salvage - - type: DeviceLinkSink - invokeCounter: 1 - - type: DeviceLinkSource - linkedPorts: - 4797: - - DoorStatus: DoorBolt - uid: 4797 components: - type: Transform @@ -6864,10 +7658,10 @@ entities: - - Engineering - - Salvage - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 4618: + 16894: - DoorStatus: DoorBolt - uid: 7337 components: @@ -6887,10 +7681,10 @@ entities: pos: -4.5,-0.5 parent: 2 - type: DeviceLinkSink - invokeCounter: 1 + invokeCounter: 2 - type: DeviceLinkSource linkedPorts: - 999: + 17561: - DoorStatus: DoorBolt - uid: 13402 components: @@ -6924,6 +7718,33 @@ entities: linkedPorts: 14633: - DoorStatus: DoorBolt + - uid: 16894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,53.5 + parent: 2 + - type: AccessReader + access: + - - Engineering + - - Salvage + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4797: + - DoorStatus: DoorBolt + - uid: 17561 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 8100: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassLocked entities: - uid: 1200 @@ -6931,6 +7752,9 @@ entities: - type: Transform pos: -14.5,77.5 parent: 2 + - type: AccessReader + access: + - - Command - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -7087,6 +7911,11 @@ entities: rot: 3.141592653589793 rad pos: -14.5,85.5 parent: 2 + - type: AccessReader + access: + - - Command + - - External + - - ResearchDirector - type: DeviceLinkSink invokeCounter: 1 - type: DeviceLinkSource @@ -7100,6 +7929,8 @@ entities: parent: 2 - type: AccessReader access: + - - Command + - - External - - ResearchDirector - type: DeviceLinkSink invokeCounter: 5 @@ -7535,16 +8366,16 @@ entities: parent: 2 - proto: AirlockJanitorLocked entities: - - uid: 1526 + - uid: 421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,71.5 + pos: -36.5,68.5 parent: 2 - - uid: 15345 + - uid: 1526 components: - type: Transform - pos: -36.5,68.5 + rot: 1.5707963267948966 rad + pos: -33.5,71.5 parent: 2 - proto: AirlockKitchenGlassLocked entities: @@ -7614,6 +8445,17 @@ entities: - type: Transform pos: -72.5,0.5 parent: 2 + - uid: 17050 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-1.5 + parent: 2 + - uid: 17113 + components: + - type: Transform + pos: -67.5,23.5 + parent: 2 - proto: AirlockMaintAtmoLocked entities: - uid: 3571 @@ -7652,6 +8494,7 @@ entities: - uid: 1502 components: - type: Transform + rot: 1.5707963267948966 rad pos: -33.5,7.5 parent: 2 - uid: 14026 @@ -7671,12 +8514,6 @@ entities: - - Salvage - proto: AirlockMaintLocked entities: - - uid: 1684 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-1.5 - parent: 2 - uid: 1735 components: - type: Transform @@ -7844,11 +8681,31 @@ entities: - type: Transform pos: -39.5,2.5 parent: 2 + - uid: 13599 + components: + - type: Transform + pos: -87.5,71.5 + parent: 2 - uid: 14606 components: - type: Transform pos: -38.5,64.5 parent: 2 + - uid: 17229 + components: + - type: Transform + pos: -60.5,-2.5 + parent: 2 + - uid: 17297 + components: + - type: Transform + pos: 20.5,-0.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + pos: 25.5,5.5 + parent: 2 - proto: AirlockMaintMedLocked entities: - uid: 3636 @@ -7870,20 +8727,10 @@ entities: parent: 2 - type: AccessReader access: - - - Brig - - Medical + - - Security - proto: AirlockMaintRnDLocked entities: - - uid: 13995 - components: - - type: Transform - pos: 9.5,26.5 - parent: 2 - - uid: 13996 - components: - - type: Transform - pos: 9.5,24.5 - parent: 2 - uid: 14067 components: - type: Transform @@ -7919,20 +8766,14 @@ entities: - type: Transform pos: -49.5,68.5 parent: 2 -- proto: AirlockMedical +- proto: AirlockMedicalGlassLocked entities: - - uid: 13977 + - uid: 551 components: - type: Transform + rot: -1.5707963267948966 rad pos: -16.5,30.5 parent: 2 - - uid: 13980 - components: - - type: Transform - pos: -21.5,26.5 - parent: 2 -- proto: AirlockMedicalGlassLocked - entities: - uid: 13975 components: - type: Transform @@ -7953,6 +8794,14 @@ entities: - type: Transform pos: -13.5,29.5 parent: 2 +- proto: AirlockMedicalLocked + entities: + - uid: 5047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,26.5 + parent: 2 - proto: AirlockMedicalMorgueLocked entities: - uid: 1952 @@ -7964,8 +8813,8 @@ entities: parent: 2 - type: AccessReader access: - - - Brig - - Medical + - - Security - uid: 1953 components: - type: MetaData @@ -7975,13 +8824,17 @@ entities: parent: 2 - type: AccessReader access: - - - Brig - - Medical + - - Security - uid: 13969 components: - type: Transform pos: -8.5,33.5 parent: 2 + - type: AccessReader + access: + - - Medical + - - Security - proto: AirlockQuartermasterGlassLocked entities: - uid: 14040 @@ -8028,11 +8881,11 @@ entities: parent: 2 - proto: AirlockSalvageGlassLocked entities: - - uid: 14036 + - uid: 419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,56.5 + rot: 1.5707963267948966 rad + pos: 7.5,56.5 parent: 2 - uid: 16395 components: @@ -8048,69 +8901,141 @@ entities: rot: 3.141592653589793 rad pos: 12.5,63.5 parent: 2 -- proto: AirlockScience +- proto: AirlockScienceGlassLocked entities: - - uid: 13986 + - uid: 1397 + components: + - type: Transform + pos: 8.5,28.5 + parent: 2 + - uid: 1802 components: - type: Transform + pos: 8.5,32.5 + parent: 2 + - uid: 5087 + components: + - type: Transform + pos: 17.5,31.5 + parent: 2 + - uid: 13985 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 5150 + components: + - type: Transform + rot: 3.141592653589793 rad pos: 10.5,34.5 parent: 2 - - uid: 13987 + - uid: 5562 components: - type: Transform + rot: 3.141592653589793 rad pos: 6.5,36.5 parent: 2 - - uid: 13988 + - uid: 5826 components: - type: Transform + rot: 3.141592653589793 rad pos: 11.5,41.5 parent: 2 -- proto: AirlockScienceGlassLocked + - uid: 12121 + components: + - type: Transform + pos: 9.5,26.5 + parent: 2 + - uid: 13550 + components: + - type: Transform + pos: 9.5,24.5 + parent: 2 + - type: AccessReader + access: + - - Atmospherics + - - Research +- proto: AirlockSecurityGlassLocked entities: - - uid: 1397 + - uid: 1249 components: - type: Transform - pos: 8.5,28.5 + pos: -13.5,45.5 parent: 2 - - uid: 1802 + - uid: 1327 components: - type: Transform - pos: 8.5,32.5 + pos: -3.5,67.5 parent: 2 - - uid: 5087 + - uid: 1520 components: - type: Transform - pos: 17.5,31.5 + pos: -21.5,47.5 parent: 2 - - uid: 13985 + - uid: 1521 components: - type: Transform - pos: 14.5,31.5 + pos: -18.5,47.5 parent: 2 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 13949 + - uid: 1978 components: - type: Transform - pos: -29.5,51.5 + pos: -11.5,48.5 parent: 2 - - uid: 13950 + - uid: 2292 components: - type: Transform - pos: -27.5,51.5 + pos: -24.5,47.5 parent: 2 - - uid: 13951 + - uid: 2293 components: - type: Transform - pos: -29.5,48.5 + pos: -15.5,47.5 parent: 2 - - uid: 13952 + - uid: 2294 components: - type: Transform - pos: -27.5,48.5 + pos: 6.5,44.5 + parent: 2 + - uid: 3924 + components: + - type: Transform + pos: 3.5,44.5 + parent: 2 + - uid: 4295 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 4446 + components: + - type: Transform + pos: -1.5,68.5 + parent: 2 + - uid: 4505 + components: + - type: Transform + pos: -69.5,64.5 + parent: 2 + - uid: 4506 + components: + - type: Transform + pos: -7.5,14.5 + parent: 2 + - uid: 4840 + components: + - type: Transform + pos: -12.5,45.5 parent: 2 - proto: AirlockSecurityLawyerGlassLocked entities: + - uid: 6441 + components: + - type: Transform + pos: -34.5,48.5 + parent: 2 - uid: 13954 components: - type: Transform @@ -8122,16 +9047,41 @@ entities: rot: -1.5707963267948966 rad pos: -19.5,64.5 parent: 2 -- proto: AirlockSecurityLawyerLocked +- proto: AirlockSecurityLocked entities: - - uid: 13953 + - uid: 1796 components: - type: Transform - pos: -34.5,48.5 + pos: -34.5,44.5 + parent: 2 + - uid: 4507 + components: + - type: Transform + pos: -9.5,42.5 + parent: 2 + - uid: 4860 + components: + - type: Transform + pos: -0.5,43.5 + parent: 2 + - uid: 5913 + components: + - type: Transform + pos: -34.5,45.5 + parent: 2 + - uid: 6151 + components: + - type: Transform + pos: -31.5,40.5 + parent: 2 + - uid: 6440 + components: + - type: Transform + pos: -40.5,47.5 parent: 2 - proto: AirlockServiceLocked entities: - - uid: 14057 + - uid: 6932 components: - type: Transform rot: 3.141592653589793 rad @@ -8145,28 +9095,28 @@ entities: parent: 2 - proto: AirlockTheatreLocked entities: - - uid: 11447 + - uid: 6789 components: - type: Transform - pos: -57.5,64.5 + rot: 3.141592653589793 rad + pos: -49.5,64.5 parent: 2 - - uid: 13926 + - uid: 6925 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,61.5 + pos: -61.5,64.5 parent: 2 - - uid: 14053 + - uid: 11447 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,64.5 + pos: -57.5,64.5 parent: 2 - - uid: 14055 + - uid: 13926 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,64.5 + pos: -60.5,61.5 parent: 2 - proto: AirSensor entities: @@ -8237,7 +9187,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 + - 15383 - uid: 10461 components: - type: Transform @@ -8246,7 +9196,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10477 + - 437 - uid: 10472 components: - type: Transform @@ -8570,7 +9520,7 @@ entities: deviceLists: - 11427 - 11507 - - 11548 + - 7389 - uid: 11432 components: - type: Transform @@ -8610,9 +9560,9 @@ entities: - type: DeviceNetwork deviceLists: - 11429 - - 11442 - 13611 - 5941 + - 7638 - uid: 11439 components: - type: Transform @@ -8641,10 +9591,10 @@ entities: deviceLists: - 11443 - 11444 - - 11442 - 2728 - 13611 - 5853 + - 7638 - uid: 11454 components: - type: Transform @@ -8681,7 +9631,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11442 + - 7638 - uid: 11468 components: - type: Transform @@ -8712,15 +9662,6 @@ entities: - 11496 - 11497 - 11495 - - uid: 11490 - components: - - type: Transform - pos: 12.5,43.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11496 - - 11495 - uid: 11491 components: - type: Transform @@ -8766,7 +9707,6 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - 11561 - uid: 11506 components: - type: Transform @@ -8804,10 +9744,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11534 - 11539 - 11532 - 11537 + - 17106 - uid: 11515 components: - type: Transform @@ -8819,8 +9759,8 @@ entities: - 11535 - 4374 - 11537 - - 11534 - 11539 + - 17106 - uid: 11526 components: - type: Transform @@ -8858,8 +9798,8 @@ entities: deviceLists: - 11535 - 11536 - - 11534 - 4374 + - 17106 - uid: 11541 components: - type: Transform @@ -8888,11 +9828,11 @@ entities: deviceLists: - 11532 - 11531 - - 11548 - 11562 - 11584 - 11581 - 11628 + - 7389 - uid: 11545 components: - type: Transform @@ -8901,10 +9841,10 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11583 - 11584 - 11580 + - 7389 - uid: 11546 components: - type: Transform @@ -8913,9 +9853,9 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11580 - 11581 + - 7389 - uid: 11547 components: - type: Transform @@ -8924,8 +9864,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11539 + - 7389 - uid: 11555 components: - type: Transform @@ -8944,7 +9884,7 @@ entities: - type: DeviceNetwork deviceLists: - 11562 - - 11561 + - 10285 - 11623 - 148 - uid: 11557 @@ -9112,7 +10052,7 @@ entities: - type: DeviceNetwork deviceLists: - 11638 - - 11651 + - 17247 - uid: 11634 components: - type: Transform @@ -9121,7 +10061,16 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11651 + - 17247 + - uid: 12287 + components: + - type: Transform + pos: 11.5,44.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 11496 + - 11495 - uid: 12760 components: - type: Transform @@ -9140,14 +10089,6 @@ entities: - type: DeviceNetwork deviceLists: - 10350 - - uid: 15388 - components: - - type: Transform - pos: -26.5,55.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10458 - uid: 16068 components: - type: Transform @@ -9172,6 +10113,15 @@ entities: - type: Transform pos: -5.5,7.5 parent: 2 + - uid: 17578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,55.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15383 - proto: AltarFangs entities: - uid: 9726 @@ -9355,12 +10305,6 @@ entities: rot: -1.5707963267948966 rad pos: -33.5,40.5 parent: 2 - - uid: 7638 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,37.5 - parent: 2 - uid: 7640 components: - type: Transform @@ -9517,6 +10461,12 @@ entities: - type: Transform pos: -3.5,26.5 parent: 2 + - uid: 13949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,38.5 + parent: 2 - uid: 14244 components: - type: Transform @@ -9575,6 +10525,15 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,6.5 parent: 2 +- proto: APCElectronics + entities: + - uid: 11258 + components: + - type: Transform + parent: 5958 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: AppraisalTool entities: - uid: 6118 @@ -9608,6 +10567,29 @@ entities: rot: 1.5707963267948966 rad pos: -70.5,64.5 parent: 2 +- proto: ArrowRegular + entities: + - uid: 17207 + components: + - type: Transform + parent: 17206 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17208 + components: + - type: Transform + parent: 17206 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17209 + components: + - type: Transform + parent: 17206 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ArtifactAnalyzerMachineCircuitboard entities: - uid: 5769 @@ -9623,6 +10605,28 @@ entities: rot: 3.141592653589793 rad pos: -28.627998,89.74103 parent: 2 +- proto: Ash + entities: + - uid: 17536 + components: + - type: Transform + pos: 29.607729,32.75085 + parent: 2 + - uid: 17537 + components: + - type: Transform + pos: 30.217104,33.3446 + parent: 2 + - uid: 17538 + components: + - type: Transform + pos: 28.576479,34.047726 + parent: 2 + - uid: 17539 + components: + - type: Transform + pos: 29.732729,34.5321 + parent: 2 - proto: Ashtray entities: - uid: 6077 @@ -9997,6 +11001,11 @@ entities: - type: Transform pos: 5.5,61.5 parent: 2 + - uid: 16996 + components: + - type: Transform + pos: -10.5,7.5 + parent: 2 - proto: BalloonSyn entities: - uid: 12865 @@ -10011,6 +11020,18 @@ entities: - type: Transform pos: -59.232162,65.48914 parent: 2 +- proto: BannerNanotrasen + entities: + - uid: 17630 + components: + - type: Transform + pos: -24.5,58.5 + parent: 2 + - uid: 17631 + components: + - type: Transform + pos: -20.5,58.5 + parent: 2 - proto: BannerSyndicate entities: - uid: 6988 @@ -10020,6 +11041,11 @@ entities: parent: 2 - proto: Barricade entities: + - uid: 7360 + components: + - type: Transform + pos: -69.5,20.5 + parent: 2 - uid: 14368 components: - type: Transform @@ -10045,6 +11071,45 @@ entities: - type: Transform pos: -57.5,3.5 parent: 2 + - uid: 17110 + components: + - type: Transform + pos: -70.5,24.5 + parent: 2 + - uid: 17159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.5,18.5 + parent: 2 + - uid: 17198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 2 + - uid: 17339 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,-4.5 + parent: 2 + - uid: 17340 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-2.5 + parent: 2 + - uid: 17434 + components: + - type: Transform + pos: -78.5,73.5 + parent: 2 + - uid: 17435 + components: + - type: Transform + pos: -87.5,72.5 + parent: 2 - proto: BarricadeBlock entities: - uid: 9163 @@ -10053,6 +11118,12 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,34.5 parent: 2 + - uid: 9687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,36.5 + parent: 2 - uid: 15921 components: - type: Transform @@ -10073,6 +11144,26 @@ entities: - type: Transform pos: -6.5,67.5 parent: 2 +- proto: BarricadeDirectional + entities: + - uid: 17199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,36.5 + parent: 2 + - uid: 17341 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,-3.5 + parent: 2 + - uid: 17342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -71.5,-4.5 + parent: 2 - proto: BarSignEmprah entities: - uid: 7009 @@ -10108,6 +11199,11 @@ entities: parent: 2 - proto: Bed entities: + - uid: 401 + components: + - type: Transform + pos: -8.5,25.5 + parent: 2 - uid: 2108 components: - type: Transform @@ -10158,16 +11254,6 @@ entities: - type: Transform pos: -47.5,28.5 parent: 2 - - uid: 4762 - components: - - type: Transform - pos: -10.5,25.5 - parent: 2 - - uid: 5023 - components: - - type: Transform - pos: -1.5,46.5 - parent: 2 - uid: 5082 components: - type: Transform @@ -10233,6 +11319,16 @@ entities: - type: Transform pos: -47.5,74.5 parent: 2 + - uid: 15523 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 + - uid: 17194 + components: + - type: Transform + pos: -70.5,26.5 + parent: 2 - proto: BedsheetCaptain entities: - uid: 7445 @@ -10260,7 +11356,7 @@ entities: - uid: 4761 components: - type: Transform - pos: -10.5,25.5 + pos: -8.5,25.5 parent: 2 - proto: BedsheetCosmos entities: @@ -10403,11 +11499,6 @@ entities: - type: Transform pos: -16.5,50.5 parent: 2 - - uid: 5147 - components: - - type: Transform - pos: -1.5,46.5 - parent: 2 - uid: 5148 components: - type: Transform @@ -10418,6 +11509,11 @@ entities: - type: Transform pos: -51.5,67.5 parent: 2 + - uid: 15524 + components: + - type: Transform + pos: -2.5,46.5 + parent: 2 - proto: BedsheetSyndie entities: - uid: 5149 @@ -10425,6 +11521,13 @@ entities: - type: Transform pos: -1.5,48.5 parent: 2 +- proto: Biogenerator + entities: + - uid: 17658 + components: + - type: Transform + pos: -49.5,40.5 + parent: 2 - proto: BlastDoor entities: - uid: 15844 @@ -10495,6 +11598,101 @@ entities: - type: Transform pos: -3.5,-5.5 parent: 2 + - uid: 7442 + components: + - type: Transform + pos: -42.5,43.5 + parent: 2 + - uid: 8021 + components: + - type: Transform + pos: -42.5,44.5 + parent: 2 + - uid: 8353 + components: + - type: Transform + pos: -42.5,45.5 + parent: 2 + - uid: 8356 + components: + - type: Transform + pos: -9.5,51.5 + parent: 2 + - uid: 8357 + components: + - type: Transform + pos: -8.5,51.5 + parent: 2 + - uid: 10340 + components: + - type: Transform + pos: -6.5,51.5 + parent: 2 + - uid: 14321 + components: + - type: Transform + pos: -5.5,51.5 + parent: 2 + - uid: 17584 + components: + - type: Transform + pos: -27.5,75.5 + parent: 2 + - uid: 17585 + components: + - type: Transform + pos: -26.5,75.5 + parent: 2 + - uid: 17586 + components: + - type: Transform + pos: -26.5,76.5 + parent: 2 + - uid: 17587 + components: + - type: Transform + pos: -25.5,76.5 + parent: 2 + - uid: 17588 + components: + - type: Transform + pos: -23.5,76.5 + parent: 2 + - uid: 17589 + components: + - type: Transform + pos: -22.5,76.5 + parent: 2 + - uid: 17590 + components: + - type: Transform + pos: -21.5,76.5 + parent: 2 + - uid: 17591 + components: + - type: Transform + pos: -20.5,76.5 + parent: 2 + - uid: 17592 + components: + - type: Transform + pos: -19.5,76.5 + parent: 2 + - uid: 17593 + components: + - type: Transform + pos: -17.5,76.5 + parent: 2 + - uid: 17594 + components: + - type: Transform + pos: -16.5,76.5 + parent: 2 + - uid: 17595 + components: + - type: Transform + pos: -15.5,75.5 + parent: 2 - proto: BlastDoorScience entities: - uid: 1862 @@ -10567,6 +11765,11 @@ entities: - type: Transform pos: -71.5,19.5 parent: 2 + - uid: 17116 + components: + - type: Transform + pos: -76.5,21.5 + parent: 2 - proto: BookAtmosDistro entities: - uid: 6565 @@ -10581,6 +11784,11 @@ entities: - type: Transform pos: -34.52333,30.327538 parent: 2 + - uid: 17238 + components: + - type: Transform + pos: -63.11904,-6.328739 + parent: 2 - proto: BookEngineersHandbook entities: - uid: 6562 @@ -10593,14 +11801,14 @@ entities: - uid: 6563 components: - type: Transform - pos: -50.02948,47.828167 + pos: -49.982307,47.45728 parent: 2 - proto: BookHowToRockAndStone entities: - uid: 1393 components: - type: Transform - pos: 7.4506817,59.564632 + pos: 7.797637,61.50946 parent: 2 - proto: BookNames entities: @@ -10638,6 +11846,11 @@ entities: - type: Transform pos: -35.54614,23.5724 parent: 2 + - uid: 17513 + components: + - type: Transform + pos: 29.970072,19.568819 + parent: 2 - proto: BooksBag entities: - uid: 9700 @@ -10752,6 +11965,26 @@ entities: - type: Transform pos: 21.5,11.5 parent: 2 + - uid: 17502 + components: + - type: Transform + pos: 31.5,21.5 + parent: 2 + - uid: 17503 + components: + - type: Transform + pos: 30.5,21.5 + parent: 2 + - uid: 17504 + components: + - type: Transform + pos: 31.5,17.5 + parent: 2 + - uid: 17505 + components: + - type: Transform + pos: 30.5,17.5 + parent: 2 - proto: BookSpaceLaw entities: - uid: 1174 @@ -10846,6 +12079,15 @@ entities: - type: Transform pos: 7.1167555,60.634823 parent: 2 +- proto: BowImprovised + entities: + - uid: 17210 + components: + - type: Transform + parent: 17206 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: BoxAgrichem entities: - uid: 15200 @@ -10952,13 +12194,12 @@ entities: - uid: 4965 components: - type: Transform - pos: -12.564862,63.584015 + pos: -13.046014,63.586082 parent: 2 - uid: 5576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.54729,25.631472 + pos: -9.564337,25.815563 parent: 2 - uid: 6686 components: @@ -11033,7 +12274,7 @@ entities: - uid: 1435 components: - type: Transform - pos: -18.36792,63.56839 + pos: -18.030388,63.570457 parent: 2 - uid: 5420 components: @@ -11128,6 +12369,11 @@ entities: - type: Transform pos: -27.55496,30.679504 parent: 2 + - uid: 17352 + components: + - type: Transform + pos: -63.667236,-6.329831 + parent: 2 - proto: BoxZiptie entities: - uid: 5160 @@ -11184,6 +12430,22 @@ entities: - type: Transform pos: -78.09894,12.035365 parent: 2 + - uid: 17149 + components: + - type: Transform + pos: -78.56179,23.418812 + parent: 2 + - uid: 17151 + components: + - type: Transform + pos: -74.65545,21.443893 + parent: 2 + - uid: 17152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.639824,18.647018 + parent: 2 - proto: Brutepack entities: - uid: 5189 @@ -11932,11 +13194,6 @@ entities: - type: Transform pos: -4.5,7.5 parent: 2 - - uid: 998 - components: - - type: Transform - pos: -4.5,2.5 - parent: 2 - uid: 1001 components: - type: Transform @@ -12562,6 +13819,11 @@ entities: - type: Transform pos: -1.5,74.5 parent: 2 + - uid: 2888 + components: + - type: Transform + pos: 28.5,25.5 + parent: 2 - uid: 3069 components: - type: Transform @@ -13027,6 +14289,16 @@ entities: - type: Transform pos: -56.5,51.5 parent: 2 + - uid: 6841 + components: + - type: Transform + pos: -72.5,0.5 + parent: 2 + - uid: 6842 + components: + - type: Transform + pos: -65.5,0.5 + parent: 2 - uid: 6868 components: - type: Transform @@ -15747,11 +17019,6 @@ entities: - type: Transform pos: -16.5,46.5 parent: 2 - - uid: 8644 - components: - - type: Transform - pos: -25.5,37.5 - parent: 2 - uid: 8645 components: - type: Transform @@ -20012,11 +21279,6 @@ entities: - type: Transform pos: 26.5,34.5 parent: 2 - - uid: 9659 - components: - - type: Transform - pos: 25.5,27.5 - parent: 2 - uid: 9660 components: - type: Transform @@ -22862,6 +24124,121 @@ entities: - type: Transform pos: 12.5,67.5 parent: 2 + - uid: 16870 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 16871 + components: + - type: Transform + pos: 5.5,14.5 + parent: 2 + - uid: 16872 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 16873 + components: + - type: Transform + pos: 5.5,13.5 + parent: 2 + - uid: 16932 + components: + - type: Transform + pos: 19.5,36.5 + parent: 2 + - uid: 16933 + components: + - type: Transform + pos: 20.5,36.5 + parent: 2 + - uid: 16934 + components: + - type: Transform + pos: 21.5,36.5 + parent: 2 + - uid: 17226 + components: + - type: Transform + pos: -57.5,-1.5 + parent: 2 + - uid: 17227 + components: + - type: Transform + pos: -58.5,-1.5 + parent: 2 + - uid: 17228 + components: + - type: Transform + pos: -59.5,-1.5 + parent: 2 + - uid: 17296 + components: + - type: Transform + pos: 19.5,-0.5 + parent: 2 + - uid: 17520 + components: + - type: Transform + pos: 26.5,27.5 + parent: 2 + - uid: 17521 + components: + - type: Transform + pos: 26.5,26.5 + parent: 2 + - uid: 17522 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 + - uid: 17523 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 17524 + components: + - type: Transform + pos: 28.5,24.5 + parent: 2 + - uid: 17525 + components: + - type: Transform + pos: 28.5,23.5 + parent: 2 + - uid: 17526 + components: + - type: Transform + pos: 28.5,22.5 + parent: 2 + - uid: 17527 + components: + - type: Transform + pos: 28.5,21.5 + parent: 2 + - uid: 17528 + components: + - type: Transform + pos: 28.5,20.5 + parent: 2 + - uid: 17529 + components: + - type: Transform + pos: 29.5,20.5 + parent: 2 + - uid: 17530 + components: + - type: Transform + pos: 30.5,20.5 + parent: 2 + - uid: 17559 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 - proto: CableApcStack entities: - uid: 5976 @@ -22884,6 +24261,13 @@ entities: - type: Transform pos: 6.5580187,78.61492 parent: 2 +- proto: CableApcStack10 + entities: + - uid: 17245 + components: + - type: Transform + pos: -56.40029,-3.8131144 + parent: 2 - proto: CablecuffsBroken entities: - uid: 16150 @@ -23078,11 +24462,6 @@ entities: - type: Transform pos: -25.5,-14.5 parent: 2 - - uid: 242 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 2 - uid: 243 components: - type: Transform @@ -23228,11 +24607,6 @@ entities: - type: Transform pos: -25.5,-26.5 parent: 2 - - uid: 413 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 2 - uid: 436 components: - type: Transform @@ -23258,11 +24632,6 @@ entities: - type: Transform pos: -25.5,-24.5 parent: 2 - - uid: 465 - components: - - type: Transform - pos: -24.5,-20.5 - parent: 2 - uid: 466 components: - type: Transform @@ -23283,21 +24652,11 @@ entities: - type: Transform pos: -11.5,-4.5 parent: 2 - - uid: 543 - components: - - type: Transform - pos: -24.5,-18.5 - parent: 2 - uid: 544 components: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 545 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 2 - uid: 548 components: - type: Transform @@ -23358,21 +24717,11 @@ entities: - type: Transform pos: -25.5,-22.5 parent: 2 - - uid: 671 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 2 - uid: 676 components: - type: Transform pos: -24.5,-16.5 parent: 2 - - uid: 682 - components: - - type: Transform - pos: -23.5,-20.5 - parent: 2 - uid: 772 components: - type: Transform @@ -23523,11 +24872,6 @@ entities: - type: Transform pos: -35.5,-24.5 parent: 2 - - uid: 990 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 2 - uid: 991 components: - type: Transform @@ -23563,11 +24907,6 @@ entities: - type: Transform pos: 2.5,4.5 parent: 2 - - uid: 1022 - components: - - type: Transform - pos: -4.5,2.5 - parent: 2 - uid: 1023 components: - type: Transform @@ -28498,6 +29837,36 @@ entities: - type: Transform pos: -19.5,0.5 parent: 2 + - uid: 16685 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 16686 + components: + - type: Transform + pos: -16.5,-4.5 + parent: 2 + - uid: 16776 + components: + - type: Transform + pos: -17.5,-4.5 + parent: 2 + - uid: 16807 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 2 + - uid: 16862 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 2 + - uid: 17556 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 - proto: CableHVStack entities: - uid: 5975 @@ -28519,8 +29888,10 @@ entities: - uid: 15356 components: - type: Transform - pos: -29.608511,-7.3505936 - parent: 2 + parent: 4723 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: CableHVStack10 entities: - uid: 6578 @@ -31395,11 +32766,6 @@ entities: - type: Transform pos: -25.5,38.5 parent: 2 - - uid: 7871 - components: - - type: Transform - pos: -25.5,37.5 - parent: 2 - uid: 7873 components: - type: Transform @@ -31525,11 +32891,6 @@ entities: - type: Transform pos: -21.5,27.5 parent: 2 - - uid: 7903 - components: - - type: Transform - pos: -27.5,26.5 - parent: 2 - uid: 7904 components: - type: Transform @@ -32050,6 +33411,11 @@ entities: - type: Transform pos: -9.5,44.5 parent: 2 + - uid: 8644 + components: + - type: Transform + pos: -28.5,27.5 + parent: 2 - uid: 9069 components: - type: Transform @@ -32345,6 +33711,11 @@ entities: - type: Transform pos: 0.5,29.5 parent: 2 + - uid: 13034 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 - uid: 13753 components: - type: Transform @@ -32400,6 +33771,11 @@ entities: - type: Transform pos: 0.5,35.5 parent: 2 + - uid: 14056 + components: + - type: Transform + pos: -31.5,38.5 + parent: 2 - uid: 14186 components: - type: Transform @@ -32425,6 +33801,51 @@ entities: - type: Transform pos: -50.5,50.5 parent: 2 + - uid: 15351 + components: + - type: Transform + pos: -36.5,45.5 + parent: 2 + - uid: 15384 + components: + - type: Transform + pos: -37.5,45.5 + parent: 2 + - uid: 15452 + components: + - type: Transform + pos: -40.5,45.5 + parent: 2 + - uid: 15481 + components: + - type: Transform + pos: -39.5,45.5 + parent: 2 + - uid: 15483 + components: + - type: Transform + pos: -41.5,45.5 + parent: 2 + - uid: 15487 + components: + - type: Transform + pos: -42.5,45.5 + parent: 2 + - uid: 15496 + components: + - type: Transform + pos: -38.5,45.5 + parent: 2 + - uid: 15503 + components: + - type: Transform + pos: -42.5,44.5 + parent: 2 + - uid: 15514 + components: + - type: Transform + pos: -42.5,43.5 + parent: 2 - uid: 15574 components: - type: Transform @@ -32505,6 +33926,11 @@ entities: - type: Transform pos: -61.5,4.5 parent: 2 + - uid: 15970 + components: + - type: Transform + pos: -28.5,26.5 + parent: 2 - uid: 15987 components: - type: Transform @@ -32765,6 +34191,16 @@ entities: - type: Transform pos: -38.5,63.5 parent: 2 + - uid: 16867 + components: + - type: Transform + pos: -31.5,37.5 + parent: 2 + - uid: 16868 + components: + - type: Transform + pos: -31.5,36.5 + parent: 2 - proto: CableMVStack entities: - uid: 5974 @@ -33502,6 +34938,16 @@ entities: - type: Transform pos: 0.5,75.5 parent: 2 + - uid: 9021 + components: + - type: Transform + pos: -62.5,53.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + pos: -62.5,54.5 + parent: 2 - uid: 14875 components: - type: Transform @@ -33577,6 +35023,161 @@ entities: - type: Transform pos: -67.5,56.5 parent: 2 + - uid: 15456 + components: + - type: Transform + pos: -62.5,55.5 + parent: 2 + - uid: 16909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,52.5 + parent: 2 + - uid: 16910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,50.5 + parent: 2 + - uid: 16911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,52.5 + parent: 2 + - uid: 16912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,51.5 + parent: 2 + - uid: 16913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,50.5 + parent: 2 + - uid: 16914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,51.5 + parent: 2 + - uid: 16915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,48.5 + parent: 2 + - uid: 16916 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,47.5 + parent: 2 + - uid: 16917 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,46.5 + parent: 2 + - uid: 16918 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,55.5 + parent: 2 + - uid: 16919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,54.5 + parent: 2 + - uid: 16920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,55.5 + parent: 2 + - uid: 16921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,54.5 + parent: 2 + - uid: 16922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -60.5,53.5 + parent: 2 + - uid: 16923 + components: + - type: Transform + pos: -58.5,50.5 + parent: 2 + - uid: 16924 + components: + - type: Transform + pos: -58.5,51.5 + parent: 2 + - uid: 16925 + components: + - type: Transform + pos: -58.5,52.5 + parent: 2 + - uid: 16926 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,53.5 + parent: 2 + - uid: 16941 + components: + - type: Transform + pos: -58.5,48.5 + parent: 2 + - uid: 16942 + components: + - type: Transform + pos: -58.5,47.5 + parent: 2 + - uid: 16943 + components: + - type: Transform + pos: -58.5,46.5 + parent: 2 + - uid: 16944 + components: + - type: Transform + pos: -57.5,48.5 + parent: 2 + - uid: 16945 + components: + - type: Transform + pos: -57.5,46.5 + parent: 2 + - uid: 16946 + components: + - type: Transform + pos: -56.5,48.5 + parent: 2 + - uid: 16947 + components: + - type: Transform + pos: -56.5,47.5 + parent: 2 + - uid: 16948 + components: + - type: Transform + pos: -56.5,46.5 + parent: 2 + - uid: 16949 + components: + - type: Transform + pos: -57.5,47.5 + parent: 2 - proto: CarpetOrange entities: - uid: 15062 @@ -33733,6 +35334,16 @@ entities: parent: 2 - proto: CarpetSBlue entities: + - uid: 389 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -9.5,25.5 + parent: 2 - uid: 6194 components: - type: Transform @@ -33786,15 +35397,22 @@ entities: - type: Transform pos: -9.5,24.5 parent: 2 - - uid: 15059 +- proto: CartridgePistolPractice + entities: + - uid: 17219 components: - type: Transform - pos: -9.5,23.5 + pos: 29.582544,35.43311 parent: 2 - - uid: 15060 + - uid: 17220 components: - type: Transform - pos: -10.5,23.5 + pos: 28.738794,35.729984 + parent: 2 + - uid: 17221 + components: + - type: Transform + pos: 29.44192,35.90186 parent: 2 - proto: Catwalk entities: @@ -34170,6 +35788,12 @@ entities: rot: 3.141592653589793 rad pos: -38.5,17.5 parent: 2 + - uid: 1508 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,53.5 + parent: 2 - uid: 1516 components: - type: Transform @@ -36106,12 +37730,6 @@ entities: rot: -1.5707963267948966 rad pos: 5.5,53.5 parent: 2 - - uid: 12964 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,53.5 - parent: 2 - uid: 12965 components: - type: Transform @@ -36255,11 +37873,6 @@ entities: - type: Transform pos: -33.5,6.5 parent: 2 - - uid: 13049 - components: - - type: Transform - pos: 12.5,2.5 - parent: 2 - uid: 13061 components: - type: Transform @@ -36770,6 +38383,145 @@ entities: - type: Transform pos: -29.5,71.5 parent: 2 + - uid: 16869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,36.5 + parent: 2 + - uid: 16892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,53.5 + parent: 2 + - uid: 16893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,57.5 + parent: 2 + - uid: 17381 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 17382 + components: + - type: Transform + pos: 27.5,25.5 + parent: 2 + - uid: 17383 + components: + - type: Transform + pos: 27.5,24.5 + parent: 2 + - uid: 17384 + components: + - type: Transform + pos: 27.5,23.5 + parent: 2 + - uid: 17385 + components: + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 17386 + components: + - type: Transform + pos: 27.5,20.5 + parent: 2 + - uid: 17387 + components: + - type: Transform + pos: 27.5,19.5 + parent: 2 + - uid: 17388 + components: + - type: Transform + pos: 27.5,18.5 + parent: 2 + - uid: 17389 + components: + - type: Transform + pos: 27.5,17.5 + parent: 2 + - uid: 17390 + components: + - type: Transform + pos: 27.5,16.5 + parent: 2 + - uid: 17391 + components: + - type: Transform + pos: 27.5,15.5 + parent: 2 + - uid: 17392 + components: + - type: Transform + pos: 27.5,22.5 + parent: 2 + - uid: 17393 + components: + - type: Transform + pos: 27.5,13.5 + parent: 2 + - uid: 17394 + components: + - type: Transform + pos: 27.5,12.5 + parent: 2 + - uid: 17395 + components: + - type: Transform + pos: 27.5,14.5 + parent: 2 + - uid: 17396 + components: + - type: Transform + pos: 27.5,11.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + pos: 25.5,6.5 + parent: 2 + - uid: 17398 + components: + - type: Transform + pos: 25.5,7.5 + parent: 2 + - uid: 17399 + components: + - type: Transform + pos: 25.5,9.5 + parent: 2 + - uid: 17400 + components: + - type: Transform + pos: 25.5,10.5 + parent: 2 + - uid: 17401 + components: + - type: Transform + pos: 25.5,11.5 + parent: 2 + - uid: 17402 + components: + - type: Transform + pos: 25.5,8.5 + parent: 2 + - uid: 17403 + components: + - type: Transform + pos: 26.5,11.5 + parent: 2 + - uid: 17580 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 - proto: Cautery entities: - uid: 15530 @@ -37306,20 +39058,24 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,-10.5 parent: 2 -- proto: ChairFolding - entities: - - uid: 6385 + - uid: 16930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.556023,53.8809 + rot: 1.5707963267948966 rad + pos: 20.5,37.5 parent: 2 - - uid: 6465 + - uid: 17424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.368523,53.8809 + pos: -82.5,73.5 parent: 2 + - uid: 17425 + components: + - type: Transform + pos: -81.5,73.5 + parent: 2 +- proto: ChairFolding + entities: - uid: 6850 components: - type: Transform @@ -37398,29 +39154,55 @@ entities: rot: -1.5707963267948966 rad pos: -40.50628,60.74674 parent: 2 - - uid: 6864 + - uid: 6866 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.428154,59.574863 + pos: -40.490654,57.74674 parent: 2 - - uid: 6865 + - uid: 6867 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.490654,58.62174 + pos: -40.47503,56.52799 parent: 2 - - uid: 6866 + - uid: 17007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.490654,57.74674 + rot: 3.141592653589793 rad + pos: -41.615143,54.76345 parent: 2 - - uid: 6867 + - uid: 17010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.380768,54.716576 + parent: 2 + - uid: 17132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -40.47503,56.52799 + pos: -75.577415,21.637562 + parent: 2 + - uid: 17133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -76.81179,20.684437 + parent: 2 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 17134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -77.952415,21.840687 + parent: 2 + - uid: 17135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.28054,21.356312 parent: 2 - proto: ChairOfficeDark entities: @@ -37532,6 +39314,12 @@ entities: - type: Transform pos: -2.4808834,40.56486 parent: 2 + - uid: 17577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.427639,66.733505 + parent: 2 - proto: ChairOfficeLight entities: - uid: 4745 @@ -37597,6 +39385,12 @@ entities: parent: 2 - proto: ChairWood entities: + - uid: 711 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.540464,24.676523 + parent: 2 - uid: 1076 components: - type: Transform @@ -37619,11 +39413,6 @@ entities: rot: 3.141592653589793 rad pos: -65.447655,55.547363 parent: 2 - - uid: 3924 - components: - - type: Transform - pos: -59.84017,55.41412 - parent: 2 - uid: 3926 components: - type: Transform @@ -37674,29 +39463,29 @@ entities: - type: Transform pos: -66.416405,58.65674 parent: 2 - - uid: 5573 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.469165,25.537722 - parent: 2 - uid: 5675 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.605324,61.141937 parent: 2 - - uid: 6901 + - uid: 6220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.394043,52.243153 + rot: 3.141592653589793 rad + pos: -56.493355,55.870567 parent: 2 - - uid: 6932 + - uid: 6830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.430855,55.870567 + parent: 2 + - uid: 6901 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.24642,54.585995 + pos: -58.394043,52.243153 parent: 2 - uid: 7151 components: @@ -37732,12 +39521,6 @@ entities: rot: 3.141592653589793 rad pos: -60.46517,53.66412 parent: 2 - - uid: 9595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -59.418297,53.742245 - parent: 2 - uid: 10359 components: - type: Transform @@ -37847,6 +39630,57 @@ entities: rot: 3.141592653589793 rad pos: -15.5249605,8.752403 parent: 2 + - uid: 16906 + components: + - type: Transform + pos: -60.57115,55.462524 + parent: 2 + - uid: 16907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.4149,53.743774 + parent: 2 + - uid: 16908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.336777,54.6344 + parent: 2 + - uid: 17131 + components: + - type: Transform + pos: -76.72502,22.327915 + parent: 2 + - uid: 17367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.46943,14.84754 + parent: 2 + - uid: 17368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.53193,13.863165 + parent: 2 + - uid: 17508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.470072,19.553194 + parent: 2 + - uid: 17509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.516947,18.584444 + parent: 2 + - uid: 17510 + components: + - type: Transform + pos: 29.470072,20.600069 + parent: 2 - proto: CheckerBoard entities: - uid: 7424 @@ -37872,6 +39706,13 @@ entities: - type: Transform pos: -36.5,33.5 parent: 2 +- proto: ChemDispenserEmpty + entities: + - uid: 17240 + components: + - type: Transform + pos: -59.5,-6.5 + parent: 2 - proto: ChemistryEmptyBottle01 entities: - uid: 15531 @@ -37884,6 +39725,16 @@ entities: - type: Transform pos: -26.833494,30.601341 parent: 2 + - uid: 17242 + components: + - type: Transform + pos: -56.707542,-3.361081 + parent: 2 + - uid: 17243 + components: + - type: Transform + pos: -56.40029,-3.1568644 + parent: 2 - proto: ChemistryHotplate entities: - uid: 4241 @@ -37896,6 +39747,11 @@ entities: - type: Transform pos: -38.5,30.5 parent: 2 + - uid: 17239 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 - proto: ChemMaster entities: - uid: 1126 @@ -37913,6 +39769,13 @@ entities: - type: Transform pos: -41.5,33.5 parent: 2 +- proto: ChemMasterMachineCircuitboard + entities: + - uid: 3121 + components: + - type: Transform + pos: -63.54242,-4.3064575 + parent: 2 - proto: ChessBoard entities: - uid: 5111 @@ -37959,6 +39822,11 @@ entities: rot: 1.5707963267948966 rad pos: -15.555413,9.876457 parent: 2 + - uid: 17091 + components: + - type: Transform + pos: -44.17003,67.54699 + parent: 2 - proto: CigarCase entities: - uid: 4945 @@ -38002,8 +39870,7 @@ entities: - uid: 5579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.95354,23.537722 + pos: -10.259214,25.598398 parent: 2 - proto: CigPackRed entities: @@ -38019,6 +39886,13 @@ entities: - type: Transform pos: 9.5,38.5 parent: 2 +- proto: CleanerDispenser + entities: + - uid: 16879 + components: + - type: Transform + pos: -34.5,71.5 + parent: 2 - proto: ClosetBombFilled entities: - uid: 5174 @@ -38055,6 +39929,11 @@ entities: - type: Transform pos: -68.5,47.5 parent: 2 + - uid: 1142 + components: + - type: Transform + pos: 2.5,58.5 + parent: 2 - uid: 1483 components: - type: Transform @@ -38175,6 +40054,21 @@ entities: - type: Transform pos: 19.5,-3.5 parent: 2 + - uid: 17651 + components: + - type: Transform + pos: 6.5,48.5 + parent: 2 + - uid: 17653 + components: + - type: Transform + pos: -37.5,15.5 + parent: 2 + - uid: 17656 + components: + - type: Transform + pos: -66.5,21.5 + parent: 2 - proto: ClosetEmergencyN2 entities: - uid: 9068 @@ -38194,6 +40088,11 @@ entities: - type: Transform pos: 11.5,81.5 parent: 2 + - uid: 9009 + components: + - type: Transform + pos: -66.5,22.5 + parent: 2 - uid: 12814 components: - type: Transform @@ -38239,6 +40138,11 @@ entities: - type: Transform pos: -66.5,39.5 parent: 2 + - uid: 17002 + components: + - type: Transform + pos: 26.5,10.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 1482 @@ -38246,6 +40150,32 @@ entities: - type: Transform pos: -37.5,9.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 - uid: 6444 components: - type: Transform @@ -38286,6 +40216,11 @@ entities: - type: Transform pos: 24.5,37.5 parent: 2 + - uid: 14217 + components: + - type: Transform + pos: -37.5,16.5 + parent: 2 - uid: 14579 components: - type: Transform @@ -38301,6 +40236,11 @@ entities: - type: Transform pos: 19.5,-4.5 parent: 2 + - uid: 17652 + components: + - type: Transform + pos: 6.5,49.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 6631 @@ -38354,6 +40294,11 @@ entities: - type: Transform pos: -18.5,36.5 parent: 2 + - uid: 5597 + components: + - type: Transform + pos: -71.5,26.5 + parent: 2 - uid: 6169 components: - type: Transform @@ -38399,11 +40344,6 @@ entities: - type: Transform pos: -3.5,72.5 parent: 2 - - uid: 9009 - components: - - type: Transform - pos: 2.5,58.5 - parent: 2 - uid: 9010 components: - type: Transform @@ -38479,6 +40419,16 @@ entities: - type: Transform pos: 17.5,-8.5 parent: 2 + - uid: 17166 + components: + - type: Transform + pos: -73.5,23.5 + parent: 2 + - uid: 17423 + components: + - type: Transform + pos: 27.5,26.5 + parent: 2 - proto: ClosetRadiationSuitFilled entities: - uid: 767 @@ -38496,6 +40446,260 @@ entities: - type: Transform pos: -53.5,-1.5 parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 1684 + components: + - type: Transform + pos: -71.08597,23.537334 + parent: 2 + - uid: 2805 + components: + - type: Transform + pos: -70.97659,22.74046 + 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 + - uid: 3157 + components: + - type: Transform + pos: -71.66409,21.693584 + 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 + - uid: 17163 + components: + - type: Transform + pos: -71.71097,23.67796 + 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 + - uid: 17164 + components: + - type: Transform + pos: -71.47659,23.037334 + parent: 2 + - uid: 17165 + components: + - type: Transform + pos: -71.35159,22.17796 + 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 + - uid: 17167 + components: + - type: Transform + pos: -71.78909,22.52171 + parent: 2 + - uid: 17168 + components: + - type: Transform + pos: -71.19534,21.412334 + parent: 2 + - uid: 17169 + components: + - type: Transform + pos: -70.69534,21.77171 + 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 + - uid: 17170 + components: + - type: Transform + pos: -70.47659,22.724834 + parent: 2 + - uid: 17171 + components: + - type: Transform + pos: -70.21097,21.99046 + parent: 2 + - uid: 17172 + components: + - type: Transform + pos: -69.00784,21.599834 + 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 + - uid: 17173 + components: + - type: Transform + pos: -68.57034,22.27171 + parent: 2 + - uid: 17174 + components: + - type: Transform + pos: -68.50784,21.537334 + 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: ClothingBackpackDuffelSurgeryFilled entities: - uid: 5695 @@ -38508,6 +40712,13 @@ entities: - type: Transform pos: -13.572019,38.72765 parent: 2 +- proto: ClothingBackpackMerc + entities: + - uid: 14078 + components: + - type: Transform + pos: -92.46855,73.53757 + parent: 2 - proto: ClothingBeltChampion entities: - uid: 6150 @@ -38520,7 +40731,7 @@ entities: - uid: 12671 components: - type: Transform - pos: -27.565609,24.395536 + pos: -26.565462,24.560215 parent: 2 - proto: ClothingBeltMedicalFilled entities: @@ -38534,6 +40745,13 @@ entities: - type: Transform pos: -25.431105,27.586369 parent: 2 +- proto: ClothingBeltMercWebbing + entities: + - uid: 17214 + components: + - type: Transform + pos: 32.385315,30.473242 + parent: 2 - proto: ClothingBeltPlantFilled entities: - uid: 5119 @@ -38582,7 +40800,14 @@ entities: - uid: 15527 components: - type: Transform - pos: -24.94287,31.460716 + pos: -25.243147,31.500374 + parent: 2 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 17241 + components: + - type: Transform + pos: -56.55654,-4.000614 parent: 2 - proto: ClothingEyesGlassesMeson entities: @@ -38627,6 +40852,11 @@ entities: - type: Transform pos: -46.35959,56.558147 parent: 2 + - uid: 17544 + components: + - type: Transform + pos: -40.58954,59.076107 + parent: 2 - proto: ClothingHandsGlovesBoxingGreen entities: - uid: 2325 @@ -38641,6 +40871,11 @@ entities: - type: Transform pos: -41.625214,61.386272 parent: 2 + - uid: 17545 + components: + - type: Transform + pos: -40.480164,58.482357 + parent: 2 - proto: ClothingHandsGlovesBoxingYellow entities: - uid: 2326 @@ -38677,6 +40912,65 @@ entities: - type: Transform pos: -40.507835,17.177526 parent: 2 +- proto: ClothingHandsMercGlovesCombat + entities: + - uid: 17650 + components: + - type: Transform + pos: -42.631783,2.4473581 + parent: 2 +- proto: ClothingHeadBandBlue + entities: + - uid: 17496 + components: + - type: Transform + pos: 26.395061,4.4741726 + parent: 2 + - uid: 17497 + components: + - type: Transform + pos: 26.754438,4.4585476 + parent: 2 +- proto: ClothingHeadBandGreen + entities: + - uid: 17500 + components: + - type: Transform + pos: 20.270061,1.4429224 + parent: 2 + - uid: 17501 + components: + - type: Transform + pos: 20.676311,1.3179224 + parent: 2 +- proto: ClothingHeadBandRed + entities: + - uid: 17498 + components: + - type: Transform + pos: 26.270061,-2.4789526 + parent: 2 + - uid: 17499 + components: + - type: Transform + pos: 26.707563,-2.4945776 + parent: 2 +- proto: ClothingHeadBandSkull + entities: + - uid: 17177 + components: + - type: Transform + parent: 17175 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17179 + components: + - type: Transform + parent: 17175 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: ClothingHeadHatBeretBrigmedic entities: - uid: 15864 @@ -38691,6 +40985,13 @@ entities: - type: Transform pos: -53.248,66.49748 parent: 2 +- proto: ClothingHeadHatBeretMerc + entities: + - uid: 17648 + components: + - type: Transform + pos: 29.580568,37.71449 + parent: 2 - proto: ClothingHeadHatCardborg entities: - uid: 6927 @@ -38742,7 +41043,7 @@ entities: - uid: 16779 components: - type: Transform - pos: -68.356544,19.12735 + pos: -70.8204,18.944197 parent: 2 - proto: ClothingHeadHatPirateTricord entities: @@ -38756,38 +41057,6 @@ entities: - type: Transform pos: -70.43467,19.37735 parent: 2 -- proto: ClothingHeadHatSantahat - entities: - - uid: 6843 - components: - - type: Transform - pos: -40.568184,46.637524 - parent: 2 - - uid: 6845 - components: - - type: Transform - pos: -40.58381,45.77815 - parent: 2 - - uid: 6846 - components: - - type: Transform - pos: -40.58381,45.77815 - parent: 2 - - uid: 6847 - components: - - type: Transform - pos: -40.536934,44.793774 - parent: 2 - - uid: 6848 - components: - - type: Transform - pos: -40.630684,43.71565 - parent: 2 - - uid: 6849 - components: - - type: Transform - pos: -40.599434,42.8094 - parent: 2 - proto: ClothingHeadHatSkub entities: - uid: 6930 @@ -38831,6 +41100,13 @@ entities: - type: Transform pos: -64.52047,72.571655 parent: 2 +- proto: ClothingHeadHelmetMerc + entities: + - uid: 17215 + components: + - type: Transform + pos: -64.61959,76.51918 + parent: 2 - proto: ClothingHeadHelmetRiot entities: - uid: 4851 @@ -38850,6 +41126,13 @@ entities: - type: Transform pos: 13.832811,62.611485 parent: 2 +- proto: ClothingMaskBandMerc + entities: + - uid: 1134 + components: + - type: Transform + pos: 29.783693,37.448864 + parent: 2 - proto: ClothingMaskBat entities: - uid: 3917 @@ -38922,6 +41205,13 @@ entities: - type: Transform pos: -46.47209,14.488183 parent: 2 +- proto: ClothingMaskGasMerc + entities: + - uid: 4588 + components: + - type: Transform + pos: -35.608734,3.5809333 + parent: 2 - proto: ClothingMaskJackal entities: - uid: 3916 @@ -39058,24 +41348,29 @@ entities: - uid: 16778 components: - type: Transform - pos: -68.37217,18.7211 + pos: -68.74227,18.475447 + parent: 2 + - uid: 17112 + components: + - type: Transform + pos: -68.23208,18.439922 parent: 2 - proto: ClothingOuterHardsuitSecurity entities: - uid: 4856 components: - type: Transform - pos: -22.750301,38.59426 + pos: -28.677435,39.61053 parent: 2 - uid: 4858 components: - type: Transform - pos: -22.258114,38.6177 + pos: -28.739935,39.469906 parent: 2 - uid: 4886 components: - type: Transform - pos: -22.469051,38.570824 + pos: -28.807816,39.532406 parent: 2 - proto: ClothingOuterHoodieChaplain entities: @@ -39098,33 +41393,6 @@ entities: - type: Transform pos: -15.480845,64.753845 parent: 2 -- proto: ClothingOuterSanta - entities: - - uid: 6839 - components: - - type: Transform - pos: -40.58381,42.71565 - parent: 2 - - uid: 6840 - components: - - type: Transform - pos: -40.58381,43.5594 - parent: 2 - - uid: 6841 - components: - - type: Transform - pos: -40.58381,44.65315 - parent: 2 - - uid: 6842 - components: - - type: Transform - pos: -40.58381,45.543774 - parent: 2 - - uid: 6844 - components: - - type: Transform - pos: -40.568184,46.575024 - parent: 2 - proto: ClothingOuterSkub entities: - uid: 6929 @@ -39178,11 +41446,60 @@ entities: - type: Transform pos: -26.413073,64.484055 parent: 2 + - uid: 5938 + components: + - type: Transform + parent: 1069 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5967 + components: + - type: Transform + parent: 4515 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 5978 + components: + - type: Transform + parent: 4516 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6011 + components: + - type: Transform + parent: 4538 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 6017 + components: + - type: Transform + parent: 4837 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10109 + components: + - type: Transform + parent: 15581 + - type: Physics + canCollide: False + - type: InsideEntityStorage - uid: 14176 components: - type: Transform pos: -64.504845,74.509155 parent: 2 +- proto: ClothingShoesBootsMerc + entities: + - uid: 17647 + components: + - type: Transform + pos: -81.442986,13.598831 + parent: 2 - proto: ClothingShoesClownBanana entities: - uid: 4717 @@ -39229,12 +41546,24 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitMercenary + entities: + - uid: 17649 + components: + - type: Transform + pos: 29.489729,37.40186 + parent: 2 - proto: ClothingUniformJumpsuitPirate entities: - uid: 16783 components: - type: Transform - pos: -68.24717,19.361725 + pos: -68.66415,19.553572 + parent: 2 + - uid: 17111 + components: + - type: Transform + pos: -68.35165,19.459822 parent: 2 - proto: ClusterBangFull entities: @@ -39295,6 +41624,14 @@ entities: rot: 1.5707963267948966 rad pos: -28.370186,89.64728 parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 16897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.415659,74.5697 + parent: 2 - proto: ComputerAlert entities: - uid: 6472 @@ -39335,6 +41672,20 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,29.5 parent: 2 +- proto: ComputerAtmosMonitoring + entities: + - uid: 12755 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,8.5 + parent: 2 + - uid: 17672 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 - proto: computerBodyScanner entities: - uid: 5909 @@ -39343,6 +41694,13 @@ entities: rot: 3.141592653589793 rad pos: 17.5,24.5 parent: 2 +- proto: ComputerBroken + entities: + - uid: 17191 + components: + - type: Transform + pos: -68.5,26.5 + parent: 2 - proto: ComputerCargoBounty entities: - uid: 6069 @@ -39530,6 +41888,12 @@ entities: parent: 2 - proto: ComputerRadar entities: + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,57.5 + parent: 2 - uid: 6474 components: - type: Transform @@ -39675,10 +42039,10 @@ entities: parent: 2 - proto: ComputerTechnologyDiskTerminal entities: - - uid: 10362 + - uid: 16927 components: - type: Transform - pos: 19.5,38.5 + pos: 19.5,39.5 parent: 2 - proto: ComputerTelevision entities: @@ -40295,6 +42659,35 @@ entities: - type: Transform pos: 10.5,52.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: + - 11258 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateEngineeringSolar entities: - uid: 3757 @@ -40307,6 +42700,42 @@ entities: - type: Transform pos: -68.5,76.5 parent: 2 + - uid: 4723 + components: + - type: Transform + pos: -29.5,-7.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: + - 15356 + - 4762 + - 5023 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateFilledSpawner entities: - uid: 5832 @@ -40354,11 +42783,6 @@ entities: - type: Transform pos: 9.5,50.5 parent: 2 - - uid: 14369 - components: - - type: Transform - pos: -72.5,73.5 - parent: 2 - uid: 14370 components: - type: Transform @@ -40410,6 +42834,26 @@ entities: - type: Transform pos: -39.5,36.5 parent: 2 + - uid: 17450 + components: + - type: Transform + pos: -71.5,75.5 + parent: 2 + - uid: 17451 + components: + - type: Transform + pos: -70.5,77.5 + parent: 2 + - uid: 17452 + components: + - type: Transform + pos: -72.5,78.5 + parent: 2 + - uid: 17455 + components: + - type: Transform + pos: -71.5,77.5 + parent: 2 - proto: CrateFreezer entities: - uid: 8232 @@ -40435,6 +42879,45 @@ entities: showEnts: False occludes: True ent: null + - uid: 17323 + components: + - type: Transform + pos: -78.5,-3.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: + - 17324 + - 17325 + - 17326 + - 17327 + - 17328 + - 17329 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrateGenericSteel entities: - uid: 2277 @@ -40505,6 +42988,16 @@ entities: - type: Transform pos: 11.5,77.5 parent: 2 + - uid: 17453 + components: + - type: Transform + pos: -70.5,76.5 + parent: 2 + - uid: 17454 + components: + - type: Transform + pos: -70.5,78.5 + parent: 2 - proto: CrateHydroponicsSeeds entities: - uid: 14678 @@ -40519,12 +43012,17 @@ entities: - type: Transform pos: -14.5,23.5 parent: 2 + - uid: 17193 + components: + - type: Transform + pos: -68.5,25.5 + parent: 2 - proto: CrateMindShieldImplants entities: - - uid: 4675 + - uid: 5572 components: - type: Transform - pos: -26.5,40.5 + pos: -27.5,42.5 parent: 2 - type: EntityStorage air: @@ -40550,8 +43048,8 @@ entities: showEnts: False occludes: True ents: - - 6440 - - 6441 + - 13977 + - 13980 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -40575,8 +43073,53 @@ entities: - type: Transform pos: -15.5,70.5 parent: 2 +- proto: CratePirate + entities: + - uid: 17175 + components: + - type: Transform + pos: -69.48055,18.55936 + 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: + - 17180 + - 17179 + - 17178 + - 17177 + - 17176 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CratePlastic entities: + - uid: 6465 + components: + - type: Transform + pos: -72.5,76.5 + parent: 2 - uid: 7166 components: - type: Transform @@ -40615,11 +43158,40 @@ entities: parent: 2 - proto: CrateTrackingImplants entities: - - uid: 4898 + - uid: 5594 components: - type: Transform - pos: -25.5,40.5 + pos: -23.5,42.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: + - 11266 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: CrayonBox entities: - uid: 4721 @@ -40735,6 +43307,13 @@ entities: - type: Transform pos: -19.370018,33.817585 parent: 2 +- proto: CultAltarSpawner + entities: + - uid: 17306 + components: + - type: Transform + pos: -68.5,-5.5 + parent: 2 - proto: CurtainsPurple entities: - uid: 14263 @@ -40809,7 +43388,7 @@ entities: pos: -9.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -234090.9 + secondsUntilStateChange: -292106.88 state: Opening - uid: 6747 components: @@ -40817,7 +43396,7 @@ entities: pos: -8.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -234091.61 + secondsUntilStateChange: -292107.6 state: Opening - uid: 6749 components: @@ -40825,7 +43404,7 @@ entities: pos: -6.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -234090.17 + secondsUntilStateChange: -292106.16 state: Opening - uid: 6750 components: @@ -40833,7 +43412,7 @@ entities: pos: -5.5,51.5 parent: 2 - type: Door - secondsUntilStateChange: -234089.55 + secondsUntilStateChange: -292105.53 state: Opening - proto: CyberPen entities: @@ -40889,23 +43468,6 @@ entities: rot: -1.5707963267948966 rad pos: -78.36314,12.746755 parent: 2 -- proto: DecoratedFirTree - entities: - - uid: 6828 - components: - - type: Transform - pos: -31.5,56.5 - parent: 2 - - uid: 6829 - components: - - type: Transform - pos: -12.5,56.5 - parent: 2 - - uid: 8353 - components: - - type: Transform - pos: -60.5,10.5 - parent: 2 - proto: DefaultStationBeacon entities: - uid: 5479 @@ -41433,7 +43995,7 @@ entities: - uid: 16790 components: - type: Transform - pos: -46.514275,46.57406 + pos: -46.57003,46.54843 parent: 2 - uid: 16791 components: @@ -41499,11 +44061,23 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,14.5 parent: 2 + - uid: 545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,63.5 + parent: 2 - uid: 579 components: - type: Transform pos: -40.5,71.5 parent: 2 + - uid: 990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 2 - uid: 1413 components: - type: Transform @@ -41801,11 +44375,6 @@ entities: rot: 3.141592653589793 rad pos: -31.5,12.5 parent: 2 - - uid: 10285 - components: - - type: Transform - pos: -14.5,20.5 - parent: 2 - uid: 10305 components: - type: Transform @@ -42011,6 +44580,12 @@ entities: parent: 2 - proto: DisposalJunctionFlipped entities: + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,20.5 + parent: 2 - uid: 2918 components: - type: Transform @@ -42103,6 +44678,18 @@ entities: parent: 2 - proto: DisposalPipe entities: + - uid: 671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,58.5 + parent: 2 + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,59.5 + parent: 2 - uid: 686 components: - type: Transform @@ -42202,6 +44789,12 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,54.5 parent: 2 + - uid: 2957 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,62.5 + parent: 2 - uid: 2991 components: - type: Transform @@ -42332,6 +44925,12 @@ entities: rot: 3.141592653589793 rad pos: 15.5,33.5 parent: 2 + - uid: 5573 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,60.5 + parent: 2 - uid: 5751 components: - type: Transform @@ -44631,12 +47230,6 @@ entities: rot: 1.5707963267948966 rad pos: -41.5,63.5 parent: 2 - - uid: 10314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,63.5 - parent: 2 - uid: 10316 components: - type: Transform @@ -44658,8 +47251,8 @@ entities: - uid: 10319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,63.5 + rot: 3.141592653589793 rad + pos: -49.5,61.5 parent: 2 - uid: 10320 components: @@ -45119,6 +47712,23 @@ entities: rot: -1.5707963267948966 rad pos: -49.5,54.5 parent: 2 + - uid: 14880 + components: + - type: Transform + pos: -11.5,21.5 + parent: 2 + - uid: 15243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,20.5 + parent: 2 + - uid: 15522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,20.5 + parent: 2 - uid: 16024 components: - type: Transform @@ -45162,8 +47772,20 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,13.5 parent: 2 + - uid: 17675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,73.5 + parent: 2 - proto: DisposalTrunk entities: + - uid: 543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,57.5 + parent: 2 - uid: 2703 components: - type: Transform @@ -45192,6 +47814,11 @@ entities: - type: Transform pos: 22.5,33.5 parent: 2 + - uid: 5147 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 - uid: 5596 components: - type: Transform @@ -45357,12 +47984,6 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,15.5 parent: 2 - - uid: 10309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,63.5 - parent: 2 - uid: 10345 components: - type: Transform @@ -45392,12 +48013,23 @@ entities: rot: -1.5707963267948966 rad pos: -26.5,12.5 parent: 2 + - uid: 17674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,72.5 + parent: 2 + - uid: 17676 + components: + - type: Transform + pos: -42.5,74.5 + parent: 2 - proto: DisposalUnit entities: - - uid: 711 + - uid: 413 components: - type: Transform - pos: -51.5,63.5 + pos: -49.5,57.5 parent: 2 - uid: 713 components: @@ -45574,6 +48206,11 @@ entities: - type: Transform pos: -4.5,28.5 parent: 2 + - uid: 11262 + components: + - type: Transform + pos: -11.5,22.5 + parent: 2 - uid: 12112 components: - type: Transform @@ -45584,6 +48221,11 @@ entities: - type: Transform pos: -43.5,17.5 parent: 2 + - uid: 14083 + components: + - type: Transform + pos: -42.5,72.5 + parent: 2 - uid: 15461 components: - type: Transform @@ -45650,6 +48292,13 @@ entities: - type: Transform pos: -2.5,25.5 parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 17550 + components: + - type: Transform + pos: 26.479345,7.5382805 + parent: 2 - proto: DresserCaptainFilled entities: - uid: 6970 @@ -45666,10 +48315,10 @@ entities: parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: - - uid: 2166 + - uid: 6107 components: - type: Transform - pos: -10.5,23.5 + pos: -9.5,25.5 parent: 2 - proto: DresserFilled entities: @@ -45688,6 +48337,7 @@ entities: - type: Transform pos: -47.5,73.5 parent: 2 + - type: ActiveUserInterface - uid: 14863 components: - type: Transform @@ -45736,6 +48386,58 @@ entities: - type: Transform pos: 22.5,46.5 parent: 2 +- proto: DrinkBeerCan + entities: + - uid: 17142 + components: + - type: Transform + pos: -76.40554,20.731312 + parent: 2 + - uid: 17143 + components: + - type: Transform + pos: -76.12429,20.637562 + parent: 2 + - uid: 17218 + components: + - type: Transform + pos: 28.97317,35.46436 + parent: 2 +- proto: DrinkBloodyMaryGlass + entities: + - uid: 17418 + components: + - type: Transform + pos: -71.38508,-5.573287 + parent: 2 +- proto: DrinkBottleBeer + entities: + - uid: 17138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.171165,20.231312 + parent: 2 + - uid: 17139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.483665,22.450062 + parent: 2 + - uid: 17140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.577415,23.325062 + parent: 2 +- proto: DrinkCanPack + entities: + - uid: 17136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -75.483665,22.356312 + parent: 2 - proto: DrinkChampagneBottleFull entities: - uid: 6149 @@ -45759,15 +48461,36 @@ entities: parent: 2 - proto: DrinkColaCan entities: - - uid: 12755 + - uid: 12774 components: - type: Transform - pos: -34.350624,62.76488 + pos: -34.319374,62.780506 parent: 2 - - uid: 12774 +- proto: DrinkCreamCarton + entities: + - uid: 17313 components: - type: Transform - pos: -34.319374,62.780506 + pos: -78.72839,-5.641466 + parent: 2 + - uid: 17314 + components: + - type: Transform + pos: -78.41589,-5.516466 + parent: 2 +- proto: DrinkDemonsBlood + entities: + - uid: 17417 + components: + - type: Transform + pos: -71.6507,-6.026412 + parent: 2 +- proto: DrinkDevilsKiss + entities: + - uid: 17416 + components: + - type: Transform + pos: -71.49445,-6.448287 parent: 2 - proto: DrinkGlass entities: @@ -45808,12 +48531,27 @@ entities: - type: Transform pos: 22.40683,-10.423412 parent: 2 + - uid: 17330 + components: + - type: Transform + pos: -78.66589,-4.172716 + parent: 2 + - uid: 17331 + components: + - type: Transform + pos: -78.27527,-4.500841 + parent: 2 + - uid: 17332 + components: + - type: Transform + pos: -78.46277,-4.344591 + parent: 2 - proto: DrinkGoldenCup entities: - uid: 1575 components: - type: Transform - pos: -41.931023,54.66215 + pos: -42.037018,55.5447 parent: 2 - uid: 6148 components: @@ -45827,6 +48565,23 @@ entities: - type: Transform pos: -5.583191,24.59217 parent: 2 + - uid: 17511 + components: + - type: Transform + pos: 29.470072,19.756319 + parent: 2 + - uid: 17512 + components: + - type: Transform + pos: 30.501322,19.521944 + parent: 2 +- proto: DrinkIceBucket + entities: + - uid: 17321 + components: + - type: Transform + pos: -78.82214,-4.516466 + parent: 2 - proto: DrinkIceCreamGlass entities: - uid: 3590 @@ -45837,6 +48592,11 @@ entities: - type: Transform pos: -55.515892,6.667796 parent: 2 + - uid: 17322 + components: + - type: Transform + pos: -76.50964,-2.407091 + parent: 2 - proto: DrinkMugOne entities: - uid: 13781 @@ -45844,6 +48604,11 @@ entities: - type: Transform pos: 26.519358,48.558224 parent: 2 + - uid: 17148 + components: + - type: Transform + pos: -77.37429,20.293812 + parent: 2 - proto: DrinkNukieCan entities: - uid: 12869 @@ -45851,6 +48616,20 @@ entities: - type: Transform pos: 25.80153,22.762358 parent: 2 +- proto: DrinkRumBottleFull + entities: + - uid: 17176 + components: + - type: Transform + parent: 17175 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 17185 + components: + - type: Transform + pos: -71.15243,18.731236 + parent: 2 - proto: DrinkShaker entities: - uid: 4635 @@ -45880,12 +48659,12 @@ entities: - uid: 1611 components: - type: Transform - pos: -41.274773,54.6934 + pos: -41.349518,55.466576 parent: 2 - uid: 1613 components: - type: Transform - pos: -41.540398,54.5059 + pos: -41.615143,55.6072 parent: 2 - proto: DrinkWhiskeyBottleFull entities: @@ -46178,6 +48957,12 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,15.5 parent: 2 + - uid: 13993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,39.5 + parent: 2 - proto: EmitterFlatpack entities: - uid: 959 @@ -46208,7 +48993,7 @@ entities: - uid: 11180 components: - type: Transform - pos: -1.2358546,-2.3674276 + pos: -1.2557645,-2.3590539 parent: 2 - uid: 16757 components: @@ -46232,6 +49017,92 @@ entities: - type: Transform pos: 23.5,31.5 parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 7077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,44.5 + parent: 2 + - uid: 11837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,44.5 + parent: 2 + - uid: 17660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,50.5 + parent: 2 + - uid: 17661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,66.5 + parent: 2 + - uid: 17662 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,46.5 + parent: 2 + - uid: 17663 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,26.5 + parent: 2 + - uid: 17664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,29.5 + parent: 2 + - uid: 17665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,46.5 + parent: 2 + - uid: 17666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,26.5 + parent: 2 + - uid: 17667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,66.5 + parent: 2 + - uid: 17668 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 2 + - uid: 17669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 2 + - uid: 17670 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,13.5 + parent: 2 + - uid: 17671 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -57.5,24.5 + parent: 2 - proto: FaxMachineBase entities: - uid: 467 @@ -46344,10 +49215,10 @@ entities: name: CE's Office - proto: filingCabinetDrawerRandom entities: - - uid: 4741 + - uid: 3640 components: - type: Transform - pos: -44.5,67.5 + pos: -45.5,67.5 parent: 2 - uid: 5827 components: @@ -46364,18 +49235,8 @@ entities: - type: Transform pos: -11.5,13.5 parent: 2 - - uid: 10832 - components: - - type: Transform - pos: 19.5,35.5 - parent: 2 - proto: filingCabinetRandom entities: - - uid: 5826 - components: - - type: Transform - pos: 18.5,35.5 - parent: 2 - uid: 6336 components: - type: Transform @@ -46391,6 +49252,11 @@ entities: - type: Transform pos: -30.5,60.5 parent: 2 + - uid: 10832 + components: + - type: Transform + pos: 18.5,35.5 + parent: 2 - proto: FireAxeCabinetFilled entities: - uid: 1049 @@ -46447,7 +49313,7 @@ entities: - type: DeviceNetwork deviceLists: - 11531 - - 11534 + - 17106 - proto: FirelockGlass entities: - uid: 28 @@ -46575,8 +49441,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11534 - 11539 + - 17106 - uid: 507 components: - type: Transform @@ -46631,7 +49497,7 @@ entities: - type: DeviceNetwork deviceLists: - 11535 - - 11534 + - 17106 - uid: 1151 components: - type: Transform @@ -46641,7 +49507,7 @@ entities: - type: DeviceNetwork deviceLists: - 11535 - - 11534 + - 17106 - uid: 1159 components: - type: Transform @@ -46650,8 +49516,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11628 + - 7389 - uid: 1160 components: - type: Transform @@ -46670,7 +49536,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 11623 - uid: 1166 components: @@ -46729,7 +49595,7 @@ entities: - type: DeviceNetwork deviceLists: - 6838 - - 10458 + - 15383 - uid: 1421 components: - type: Transform @@ -46748,8 +49614,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11584 + - 7389 - uid: 1441 components: - type: Transform @@ -46778,8 +49644,8 @@ entities: - type: DeviceNetwork deviceLists: - 11444 - - 11442 - 13611 + - 7638 - uid: 1587 components: - type: Transform @@ -46809,7 +49675,7 @@ entities: - type: DeviceNetwork deviceLists: - 11551 - - 11561 + - 10285 - uid: 1736 components: - type: Transform @@ -46858,7 +49724,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11651 + - 17247 - uid: 1957 components: - type: Transform @@ -46926,8 +49792,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 10465 + - 15383 - uid: 2014 components: - type: Transform @@ -47047,8 +49913,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 158 + - 15383 - uid: 2654 components: - type: Transform @@ -47057,8 +49923,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 13611 + - 15383 - uid: 2775 components: - type: Transform @@ -47126,7 +49992,7 @@ entities: - type: DeviceNetwork deviceLists: - 11532 - - 11548 + - 7389 - uid: 3009 components: - type: Transform @@ -47136,7 +50002,7 @@ entities: - type: DeviceNetwork deviceLists: - 11532 - - 11548 + - 7389 - uid: 3020 components: - type: Transform @@ -47154,7 +50020,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 11623 - uid: 3132 components: @@ -47232,8 +50098,8 @@ entities: - type: DeviceNetwork deviceLists: - 6838 - - 10458 - 10462 + - 15383 - uid: 3562 components: - type: Transform @@ -47253,7 +50119,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 13598 - 11636 - uid: 3709 @@ -47288,7 +50154,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11651 + - 17247 - uid: 4222 components: - type: Transform @@ -47322,8 +50188,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10477 - 5700 + - 437 - uid: 4357 components: - type: Transform @@ -47382,16 +50248,6 @@ entities: - type: DeviceNetwork deviceLists: - 11636 - - uid: 4608 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,56.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10477 - - 5700 - uid: 4634 components: - type: Transform @@ -47423,6 +50279,9 @@ entities: rot: 1.5707963267948966 rad pos: -7.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 10285 - uid: 4684 components: - type: Transform @@ -47440,8 +50299,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 13611 + - 15383 - uid: 4822 components: - type: Transform @@ -47658,8 +50517,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 13611 + - 15383 - uid: 6108 components: - type: Transform @@ -47668,8 +50527,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 13611 + - 15383 - uid: 6173 components: - type: Transform @@ -47678,8 +50537,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11534 - 11531 + - 17106 - uid: 6174 components: - type: Transform @@ -47708,7 +50567,7 @@ entities: - type: DeviceNetwork deviceLists: - 11537 - - 11534 + - 17106 - uid: 6177 components: - type: Transform @@ -47728,7 +50587,7 @@ entities: - type: DeviceNetwork deviceLists: - 4374 - - 11534 + - 17106 - uid: 6179 components: - type: Transform @@ -47826,7 +50685,7 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - 11561 + - 10285 - uid: 6201 components: - type: Transform @@ -47836,7 +50695,7 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - 11561 + - 10285 - uid: 6202 components: - type: Transform @@ -47846,7 +50705,7 @@ entities: - type: DeviceNetwork deviceLists: - 148 - - 11561 + - 10285 - uid: 6203 components: - type: Transform @@ -47885,8 +50744,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11562 + - 7389 - uid: 6207 components: - type: Transform @@ -47896,7 +50755,7 @@ entities: - type: DeviceNetwork deviceLists: - 11562 - - 11561 + - 10285 - uid: 6208 components: - type: Transform @@ -47906,7 +50765,7 @@ entities: - type: DeviceNetwork deviceLists: - 11562 - - 11561 + - 10285 - uid: 6209 components: - type: Transform @@ -47916,7 +50775,7 @@ entities: - type: DeviceNetwork deviceLists: - 11562 - - 11561 + - 10285 - uid: 6210 components: - type: Transform @@ -47925,8 +50784,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11562 + - 7389 - uid: 6211 components: - type: Transform @@ -47935,8 +50794,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11562 + - 7389 - uid: 6212 components: - type: Transform @@ -47946,7 +50805,7 @@ entities: - type: DeviceNetwork deviceLists: - 11507 - - 11548 + - 7389 - uid: 6213 components: - type: Transform @@ -47956,7 +50815,7 @@ entities: - type: DeviceNetwork deviceLists: - 11507 - - 11548 + - 7389 - uid: 6214 components: - type: Transform @@ -47966,7 +50825,7 @@ entities: - type: DeviceNetwork deviceLists: - 11507 - - 11548 + - 7389 - uid: 6215 components: - type: Transform @@ -48090,8 +50949,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 15346 + - 15383 - uid: 6234 components: - type: Transform @@ -48100,8 +50959,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 15346 + - 15383 - uid: 6237 components: - type: Transform @@ -48110,8 +50969,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 15346 + - 15383 - uid: 6238 components: - type: Transform @@ -48120,8 +50979,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 15346 + - 15383 - uid: 6239 components: - type: Transform @@ -48130,8 +50989,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 15346 + - 15383 - uid: 6241 components: - type: Transform @@ -48141,7 +51000,7 @@ entities: - type: DeviceNetwork deviceLists: - 10462 - - 10458 + - 15383 - uid: 6244 components: - type: Transform @@ -48151,7 +51010,7 @@ entities: - type: DeviceNetwork deviceLists: - 10462 - - 10458 + - 15383 - uid: 6245 components: - type: Transform @@ -48161,7 +51020,7 @@ entities: - type: DeviceNetwork deviceLists: - 10462 - - 10458 + - 15383 - uid: 6246 components: - type: Transform @@ -48171,7 +51030,7 @@ entities: - type: DeviceNetwork deviceLists: - 10462 - - 10458 + - 15383 - uid: 6248 components: - type: Transform @@ -48180,8 +51039,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 10466 + - 15383 - uid: 6249 components: - type: Transform @@ -48190,8 +51049,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 10466 + - 15383 - uid: 6250 components: - type: Transform @@ -48200,8 +51059,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - 10466 + - 15383 - uid: 6252 components: - type: Transform @@ -48486,8 +51345,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11581 + - 7389 - uid: 6288 components: - type: Transform @@ -48496,8 +51355,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 - 11581 + - 7389 - uid: 6294 components: - type: Transform @@ -48693,7 +51552,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 11623 - uid: 6978 components: @@ -48721,7 +51580,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 13598 - 11636 - uid: 7255 @@ -48732,7 +51591,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - 13598 - 11636 - uid: 7305 @@ -48958,7 +51817,7 @@ entities: - type: DeviceNetwork deviceLists: - 11531 - - 11548 + - 7389 - uid: 10826 components: - type: Transform @@ -49285,6 +52144,16 @@ entities: - type: DeviceNetwork deviceLists: - 15479 + - uid: 17551 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,56.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 437 + - 5700 - proto: Fireplace entities: - uid: 6651 @@ -49314,7 +52183,7 @@ entities: - uid: 6713 components: - type: Transform - pos: -21.261318,3.5464506 + pos: -21.436565,3.4491062 parent: 2 - type: HandheldLight toggleActionEntity: 6714 @@ -49362,6 +52231,13 @@ entities: - type: Transform pos: -2.1807637,39.543873 parent: 2 +- proto: Floodlight + entities: + - uid: 16953 + components: + - type: Transform + pos: 14.46328,60.620407 + parent: 2 - proto: FloodlightBroken entities: - uid: 16586 @@ -49400,47 +52276,54 @@ entities: parent: 2 - type: Fixtures fixtures: {} -- proto: FloraTreeChristmas01 +- proto: FloraTree entities: - - uid: 6220 + - uid: 4503 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.172295,56.391037 + pos: -31.493382,55.983173 parent: 2 - - uid: 15310 + - uid: 6395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.498674,70.553856 + pos: -12.441932,56.076923 parent: 2 -- proto: FloraTreeChristmas02 - entities: - - uid: 6793 + - uid: 6827 components: - type: Transform - pos: -22.4959,55.647743 + pos: -70.03536,0.75004315 parent: 2 -- proto: FloraTreeConifer +- proto: FloraTreeLarge entities: - - uid: 14321 + - uid: 14735 components: - type: Transform - pos: -69.45763,0.6511259 + rot: -1.5707963267948966 rad + pos: -22.532864,54.78604 parent: 2 -- proto: FloraTreeSnow +- proto: FloraTreeStump entities: - - uid: 14322 + - uid: 6793 components: - type: Transform - pos: -68.17972,-1.0051241 + pos: -68.28536,-0.85933185 parent: 2 - proto: FoamCutlass entities: - uid: 1639 components: - type: Transform - pos: -68.46592,19.4711 + pos: -68.6954,19.116072 + parent: 2 + - uid: 17114 + components: + - type: Transform + pos: -68.14852,19.037947 + parent: 2 + - uid: 17115 + components: + - type: Transform + pos: -68.36727,19.147322 parent: 2 - proto: FoodBanana entities: @@ -49478,6 +52361,13 @@ entities: - type: Transform pos: -23.386885,72.63357 parent: 2 +- proto: FoodBoxNugget + entities: + - uid: 2109 + components: + - type: Transform + pos: -50.571457,73.15823 + parent: 2 - proto: FoodBoxPizzaFilled entities: - uid: 14837 @@ -49568,6 +52458,11 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,51.5 parent: 2 + - uid: 17311 + components: + - type: Transform + pos: -78.5,-2.5 + parent: 2 - proto: FoodCartHot entities: - uid: 4569 @@ -49576,6 +52471,75 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,52.5 parent: 2 +- proto: FoodFrozenPopsicleBerry + entities: + - uid: 17329 + components: + - type: Transform + parent: 17323 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleJumbo + entities: + - uid: 17317 + components: + - type: Transform + pos: -76.44714,-4.063341 + parent: 2 + - uid: 17324 + components: + - type: Transform + parent: 17323 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenPopsicleOrange + entities: + - uid: 17315 + components: + - type: Transform + pos: -76.47839,-5.157091 + parent: 2 + - uid: 17325 + components: + - type: Transform + parent: 17323 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwich + entities: + - uid: 17316 + components: + - type: Transform + pos: -76.47839,-4.532091 + parent: 2 + - uid: 17326 + components: + - type: Transform + parent: 17323 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSandwichStrawberry + entities: + - uid: 17328 + components: + - type: Transform + parent: 17323 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodFrozenSundae + entities: + - uid: 17327 + components: + - type: Transform + parent: 17323 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: FoodMeat entities: - uid: 14359 @@ -49639,6 +52603,13 @@ entities: - type: Transform pos: -50.56073,47.843792 parent: 2 +- proto: FoodPizzaDonkpocketSlice + entities: + - uid: 17090 + components: + - type: Transform + pos: -44.60753,67.593864 + parent: 2 - proto: FoodPlate entities: - uid: 4287 @@ -49675,7 +52646,7 @@ entities: - uid: 5115 components: - type: Transform - pos: -60.043602,54.563835 + pos: -61.2274,54.712524 parent: 2 - uid: 5469 components: @@ -49707,7 +52678,7 @@ entities: - uid: 12519 components: - type: Transform - pos: -59.82148,54.475403 + pos: -60.993027,54.5719 parent: 2 - uid: 16780 components: @@ -49728,13 +52699,6 @@ entities: - type: Transform pos: 25.27469,22.639818 parent: 2 -- proto: FoodTacoShell - entities: - - uid: 4219 - components: - - type: Transform - pos: -50.59677,73.1865 - parent: 2 - proto: FrenchHornInstrument entities: - uid: 4725 @@ -49930,16 +52894,6 @@ entities: rot: 1.5707963267948966 rad pos: 7.5,31.5 parent: 2 - - uid: 5756 - components: - - type: Transform - anchored: False - rot: 1.5707963267948966 rad - pos: 7.5,31.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 5760 components: - type: Transform @@ -50041,6 +52995,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4542 + components: + - type: Transform + pos: -18.5,30.5 + parent: 2 - uid: 4561 components: - type: Transform @@ -50095,19 +53054,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 7935 + - uid: 6829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,14.5 + pos: 12.5,2.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8021 + - uid: 7935 components: - type: Transform - pos: -18.5,30.5 + rot: -1.5707963267948966 rad + pos: -3.5,14.5 parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 8235 components: - type: Transform @@ -50207,6 +53168,68 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 10664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10672 + components: + - type: Transform + pos: -22.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,60.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10677 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10679 + components: + - type: Transform + pos: -28.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10680 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -28.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 10681 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 10708 components: - type: Transform @@ -50306,6 +53329,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11092 + components: + - type: Transform + pos: -33.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11093 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11129 components: - type: Transform @@ -50392,18 +53430,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11262 + - uid: 11269 components: - type: Transform - pos: 16.5,36.5 + rot: 1.5707963267948966 rad + pos: 10.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,36.5 + rot: -1.5707963267948966 rad + pos: 7.5,38.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -50431,6 +53470,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11289 + components: + - type: Transform + pos: 16.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11334 components: - type: Transform @@ -50895,14 +53941,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12468 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12490 components: - type: Transform @@ -50964,6 +54002,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15192 components: - type: Transform @@ -50986,6 +54032,30 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 16887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17634 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17635 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -34.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeFourway entities: - uid: 4282 @@ -51042,13 +54112,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11260 - components: - - type: Transform - pos: 11.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11937 components: - type: Transform @@ -51684,6 +54747,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3883 + components: + - type: Transform + pos: -17.5,30.5 + parent: 2 - uid: 3951 components: - type: Transform @@ -51728,11 +54796,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4503 - components: - - type: Transform - pos: -17.5,30.5 - parent: 2 - uid: 4504 components: - type: Transform @@ -51810,13 +54873,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5112 - components: - - type: Transform - pos: -4.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5157 components: - type: Transform @@ -51841,14 +54897,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5539 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5540 components: - type: Transform @@ -51941,14 +54989,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,28.5 parent: 2 - - uid: 5808 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,60.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5831 components: - type: Transform @@ -52020,6 +55060,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6828 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,31.5 + parent: 2 - uid: 7044 components: - type: Transform @@ -52073,6 +55119,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 8593 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 9989 components: - type: Transform @@ -52081,6 +55135,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9992 + components: + - type: Transform + pos: -43.5,30.5 + parent: 2 - uid: 10323 components: - type: Transform @@ -52818,7 +55877,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,53.5 + pos: -23.5,57.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -52849,24 +55908,7 @@ entities: - uid: 10671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10673 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,57.5 + pos: -24.5,56.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -52889,32 +55931,8 @@ entities: - uid: 10676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,60.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10677 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,61.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10678 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,62.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,55.5 + rot: 1.5707963267948966 rad + pos: -23.5,60.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -55277,34 +58295,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11091 - components: - - type: Transform - pos: -31.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11092 - components: - - type: Transform - pos: -31.5,55.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11093 - components: - - type: Transform - pos: -31.5,56.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11094 components: - type: Transform - pos: -31.5,57.5 + rot: 3.141592653589793 rad + pos: -34.5,55.5 parent: 2 - type: AtmosPipeColor - color: '#0055CCFF' + color: '#990000FF' - uid: 11095 components: - type: Transform @@ -56183,14 +59181,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11259 components: - type: Transform @@ -56219,42 +59209,10 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11266 - components: - - type: Transform - pos: 16.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11267 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11268 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11269 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,36.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11270 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,36.5 + pos: 11.5,36.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -56265,13 +59223,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11273 - components: - - type: Transform - pos: 10.5,35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11274 components: - type: Transform @@ -56351,34 +59302,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11289 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11290 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,38.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 11291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,38.5 + pos: 13.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11292 components: - type: Transform - pos: 11.5,39.5 + rot: 1.5707963267948966 rad + pos: 12.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -56506,6 +59442,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11329 components: - type: Transform @@ -56793,6 +59737,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 11452 components: - type: Transform @@ -56833,6 +59785,11 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11490 + components: + - type: Transform + pos: -21.5,73.5 + parent: 2 - uid: 11503 components: - type: Transform @@ -58000,27 +60957,25 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11818 + - uid: 11817 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,55.5 + pos: -24.5,62.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 11819 + color: '#0055CCFF' + - uid: 11818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,56.5 + pos: -24.5,61.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 11820 + color: '#0055CCFF' + - uid: 11819 components: - type: Transform rot: 3.141592653589793 rad - pos: -33.5,57.5 + pos: -34.5,56.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -58353,10 +61308,10 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -34.5,54.5 + pos: -23.5,64.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' + color: '#0055CCFF' - uid: 11888 components: - type: Transform @@ -58491,13 +61446,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11906 - components: - - type: Transform - pos: -37.5,70.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11907 components: - type: Transform @@ -60337,13 +63285,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12277 - components: - - type: Transform - pos: -43.5,28.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12278 components: - type: Transform @@ -61320,34 +64261,27 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12470 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 12471 + - uid: 12472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,37.5 + pos: 11.5,36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12472 + - uid: 12473 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,37.5 + pos: 10.5,36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' - uid: 12474 components: - type: Transform - pos: 12.5,36.5 + rot: 1.5707963267948966 rad + pos: 9.5,36.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -62024,6 +64958,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12749 components: - type: Transform @@ -62060,6 +65002,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13031 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,37.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13258 components: - type: Transform @@ -62139,6 +65089,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 15669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15870 components: - type: Transform @@ -62402,6 +65360,117 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 16885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16886 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16888 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,39.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 16900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -38.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 16901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17557 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 17636 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -30.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17638 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,56.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,57.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17642 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17643 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,55.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPipeTJunction entities: - uid: 85 @@ -62514,6 +65583,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5808 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,53.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 5852 components: - type: Transform @@ -62590,6 +65667,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 10458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,28.5 + parent: 2 - uid: 10533 components: - type: Transform @@ -62693,14 +65776,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10664 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,53.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10665 components: - type: Transform @@ -62716,22 +65791,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,63.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 10681 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,64.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 10685 components: - type: Transform @@ -63055,6 +66114,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11091 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,54.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 11116 components: - type: Transform @@ -63127,10 +66194,26 @@ entities: - type: AtmosPipeColor color: '#0055CCFF' - uid: 11271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 11273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,38.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 11290 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,36.5 + pos: 11.5,35.5 parent: 2 - type: AtmosPipeColor color: '#0055CCFF' @@ -63301,14 +66384,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 11817 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,54.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11831 components: - type: Transform @@ -63546,14 +66621,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12280 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,30.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12281 components: - type: Transform @@ -63702,18 +66769,19 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12469 + - uid: 12470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,37.5 + rot: -1.5707963267948966 rad + pos: 11.5,39.5 parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 12473 + color: '#0055CCFF' + - uid: 12471 components: - type: Transform - pos: 12.5,37.5 + rot: -1.5707963267948966 rad + pos: -37.5,70.5 parent: 2 - type: AtmosPipeColor color: '#990000FF' @@ -63755,6 +66823,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 12528 components: - type: Transform @@ -63834,6 +66910,22 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 17632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,64.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 17633 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - proto: GasPort entities: - uid: 5754 @@ -63902,14 +66994,6 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,6.5 parent: 2 - - uid: 2127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2667 components: - type: Transform @@ -63930,6 +67014,14 @@ entities: rot: 3.141592653589793 rad pos: -17.5,31.5 parent: 2 + - uid: 5539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 5757 components: - type: Transform @@ -63962,6 +67054,17 @@ entities: - type: Transform pos: -26.5,8.5 parent: 2 + - uid: 16876 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 2 + - uid: 17555 + components: + - type: Transform + pos: -2.5,2.5 + parent: 2 - proto: GasThermoMachineFreezerEnabled entities: - uid: 6823 @@ -63974,6 +67077,18 @@ entities: - type: Transform pos: -17.5,33.5 parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 17564 + components: + - type: Transform + pos: -2.5,1.5 + parent: 2 + - uid: 17565 + components: + - type: Transform + pos: -2.5,0.5 + parent: 2 - proto: GasValve entities: - uid: 7048 @@ -64132,6 +67247,9 @@ entities: - type: Transform pos: -17.5,54.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 15383 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10480 @@ -64226,8 +67344,8 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10477 - 5700 + - 437 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11322 @@ -64248,18 +67366,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 11327 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,63.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10466 + - 15383 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11330 @@ -64529,7 +67636,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11442 + - 7638 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11460 @@ -64698,7 +67805,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11534 + - 17106 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11517 @@ -64752,7 +67859,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 + - 7389 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11554 @@ -64785,7 +67892,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - type: AtmosPipeColor color: '#0055CCFF' - uid: 11567 @@ -64957,6 +68064,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,63.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 12759 components: - type: Transform @@ -65063,6 +68178,30 @@ entities: - 11538 - type: AtmosPipeColor color: '#990000FF' + - uid: 4590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -44.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 7389 + - 11532 + - 11427 + - 11507 + - 11562 + - uid: 5756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -49.5,60.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 15346 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6159 components: - type: Transform @@ -65150,17 +68289,6 @@ entities: - 158 - type: AtmosPipeColor color: '#990000FF' - - uid: 11837 - components: - - type: Transform - pos: -21.5,73.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 10464 - - 10463 - - type: AtmosPipeColor - color: '#990000FF' - uid: 11838 components: - type: Transform @@ -65205,7 +68333,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 + - 15383 - type: AtmosPipeColor color: '#990000FF' - uid: 11867 @@ -65215,7 +68343,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10458 + - 15383 - type: AtmosPipeColor color: '#990000FF' - uid: 11868 @@ -65258,7 +68386,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - type: AtmosPipeColor color: '#990000FF' - uid: 11881 @@ -65345,7 +68473,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10477 + - 437 - type: AtmosPipeColor color: '#990000FF' - uid: 11962 @@ -65370,17 +68498,6 @@ entities: - 15346 - type: AtmosPipeColor color: '#990000FF' - - uid: 11965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,60.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 15346 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12009 components: - type: Transform @@ -65561,7 +68678,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11442 + - 7638 - type: AtmosPipeColor color: '#990000FF' - uid: 12184 @@ -65687,17 +68804,6 @@ entities: - 11508 - type: AtmosPipeColor color: '#990000FF' - - uid: 12287 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,30.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 11548 - - type: AtmosPipeColor - color: '#990000FF' - uid: 12297 components: - type: Transform @@ -65705,7 +68811,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11548 + - 7389 - type: AtmosPipeColor color: '#990000FF' - uid: 12300 @@ -65821,7 +68927,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11534 + - 17106 - type: AtmosPipeColor color: '#990000FF' - uid: 12402 @@ -65893,7 +68999,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 11561 + - 10285 - type: AtmosPipeColor color: '#990000FF' - uid: 12480 @@ -66108,6 +69214,15 @@ entities: - 11621 - type: AtmosPipeColor color: '#990000FF' + - uid: 13254 + components: + - type: Transform + pos: -21.5,74.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10464 + - 10463 - uid: 15458 components: - type: Transform @@ -66128,6 +69243,14 @@ entities: - 16071 - type: AtmosPipeColor color: '#990000FF' + - uid: 16899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -40.5,70.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - proto: Gauze entities: - uid: 2384 @@ -66223,6 +69346,16 @@ entities: - type: Transform pos: -66.5,41.5 parent: 2 + - uid: 17430 + components: + - type: Transform + pos: -85.5,72.5 + parent: 2 + - uid: 17431 + components: + - type: Transform + pos: -80.5,72.5 + parent: 2 - proto: GlassBoxLaserFilled entities: - uid: 6609 @@ -66262,11 +69395,6 @@ entities: - type: Transform pos: -5.5,-0.5 parent: 2 - - uid: 190 - components: - - type: Transform - pos: -85.5,74.5 - parent: 2 - uid: 225 components: - type: Transform @@ -66324,7 +69452,7 @@ entities: - uid: 470 components: - type: Transform - pos: -88.5,74.5 + pos: -36.5,-4.5 parent: 2 - uid: 486 components: @@ -66332,6 +69460,12 @@ entities: rot: -1.5707963267948966 rad pos: -29.5,18.5 parent: 2 + - uid: 493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,56.5 + parent: 2 - uid: 503 components: - type: Transform @@ -66521,6 +69655,21 @@ entities: rot: -1.5707963267948966 rad pos: -9.5,-5.5 parent: 2 + - uid: 998 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 999 + components: + - type: Transform + pos: -37.5,-4.5 + parent: 2 + - uid: 1022 + components: + - type: Transform + pos: -35.5,-4.5 + parent: 2 - uid: 1073 components: - type: Transform @@ -66533,6 +69682,16 @@ entities: rot: 1.5707963267948966 rad pos: -8.5,14.5 parent: 2 + - uid: 1089 + components: + - type: Transform + pos: 15.5,65.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 - uid: 1098 components: - type: Transform @@ -66548,6 +69707,11 @@ entities: - type: Transform pos: -68.5,64.5 parent: 2 + - uid: 1154 + components: + - type: Transform + pos: -79.5,21.5 + parent: 2 - uid: 1156 components: - type: Transform @@ -66604,6 +69768,21 @@ entities: - type: Transform pos: -43.5,18.5 parent: 2 + - uid: 1517 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: -73.5,30.5 + parent: 2 + - uid: 1650 + components: + - type: Transform + pos: -74.5,29.5 + parent: 2 - uid: 1674 components: - type: Transform @@ -66617,7 +69796,7 @@ entities: - uid: 1742 components: - type: Transform - pos: -72.5,78.5 + pos: -39.5,-4.5 parent: 2 - uid: 1744 components: @@ -66649,6 +69828,11 @@ entities: - type: Transform pos: -63.5,79.5 parent: 2 + - uid: 1833 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 - uid: 1842 components: - type: Transform @@ -66687,7 +69871,7 @@ entities: - uid: 1909 components: - type: Transform - pos: -86.5,74.5 + pos: -33.5,-4.5 parent: 2 - uid: 1918 components: @@ -66712,12 +69896,23 @@ entities: - type: Transform pos: -62.5,77.5 parent: 2 + - uid: 1987 + components: + - type: Transform + pos: -81.5,21.5 + parent: 2 - uid: 2008 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,51.5 parent: 2 + - uid: 2127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 - uid: 2143 components: - type: Transform @@ -66768,11 +69963,6 @@ entities: rot: 1.5707963267948966 rad pos: 6.5,45.5 parent: 2 - - uid: 2648 - components: - - type: Transform - pos: 21.5,0.5 - parent: 2 - uid: 2668 components: - type: Transform @@ -66796,15 +69986,10 @@ entities: rot: 3.141592653589793 rad pos: 0.5,84.5 parent: 2 - - uid: 2734 - components: - - type: Transform - pos: 21.5,1.5 - parent: 2 - uid: 2807 components: - type: Transform - pos: 21.5,3.5 + pos: -76.5,24.5 parent: 2 - uid: 2823 components: @@ -66893,11 +70078,10 @@ entities: - type: Transform pos: -64.5,77.5 parent: 2 - - uid: 2906 + - uid: 2936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,65.5 + pos: 25.5,-7.5 parent: 2 - uid: 2965 components: @@ -66963,16 +70147,20 @@ entities: rot: 3.141592653589793 rad pos: -36.5,74.5 parent: 2 - - uid: 3122 + - uid: 3064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,2.5 + pos: -23.5,22.5 parent: 2 - uid: 3155 components: - type: Transform - pos: -76.5,74.5 + pos: -34.5,-4.5 + parent: 2 + - uid: 3159 + components: + - type: Transform + pos: 26.5,-7.5 parent: 2 - uid: 3161 components: @@ -67162,12 +70350,6 @@ entities: - type: Transform pos: 12.5,-16.5 parent: 2 - - uid: 3640 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,30.5 - parent: 2 - uid: 3651 components: - type: Transform @@ -67247,6 +70429,11 @@ entities: - type: Transform pos: -63.5,81.5 parent: 2 + - uid: 3841 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 - uid: 3887 components: - type: Transform @@ -67262,6 +70449,12 @@ entities: - type: Transform pos: -72.5,10.5 parent: 2 + - uid: 3892 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,29.5 + parent: 2 - uid: 3893 components: - type: Transform @@ -67270,7 +70463,8 @@ entities: - uid: 3895 components: - type: Transform - pos: -67.5,26.5 + rot: -1.5707963267948966 rad + pos: -3.5,12.5 parent: 2 - uid: 3958 components: @@ -67285,12 +70479,7 @@ entities: - uid: 3971 components: - type: Transform - pos: -77.5,74.5 - parent: 2 - - uid: 3988 - components: - - type: Transform - pos: -74.5,16.5 + pos: -73.5,34.5 parent: 2 - uid: 4217 components: @@ -67564,10 +70753,20 @@ entities: - type: Transform pos: -39.5,50.5 parent: 2 - - uid: 4658 + - uid: 4737 components: - type: Transform - pos: -67.5,24.5 + pos: -74.5,30.5 + parent: 2 + - uid: 4739 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 + - uid: 4740 + components: + - type: Transform + pos: -22.5,22.5 parent: 2 - uid: 4780 components: @@ -67644,7 +70843,7 @@ entities: - uid: 4916 components: - type: Transform - pos: -39.5,-3.5 + pos: -72.5,34.5 parent: 2 - uid: 4924 components: @@ -67687,11 +70886,21 @@ entities: rot: 3.141592653589793 rad pos: -34.5,13.5 parent: 2 + - uid: 5031 + components: + - type: Transform + pos: -74.5,28.5 + parent: 2 - uid: 5039 components: - type: Transform pos: -4.5,45.5 parent: 2 + - uid: 5112 + components: + - type: Transform + pos: -74.5,81.5 + parent: 2 - uid: 5130 components: - type: Transform @@ -67853,11 +71062,10 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,22.5 parent: 2 - - uid: 5562 + - uid: 5602 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,26.5 + pos: -77.5,24.5 parent: 2 - uid: 5676 components: @@ -67865,6 +71073,16 @@ entities: rot: 3.141592653589793 rad pos: -32.5,74.5 parent: 2 + - uid: 5836 + components: + - type: Transform + pos: -79.5,20.5 + parent: 2 + - uid: 5907 + components: + - type: Transform + pos: -79.5,22.5 + parent: 2 - uid: 5912 components: - type: Transform @@ -67953,6 +71171,11 @@ entities: rot: 3.141592653589793 rad pos: 6.5,86.5 parent: 2 + - uid: 6049 + components: + - type: Transform + pos: -75.5,81.5 + parent: 2 - uid: 6102 components: - type: Transform @@ -67963,15 +71186,10 @@ entities: - type: Transform pos: -77.5,53.5 parent: 2 - - uid: 6289 - components: - - type: Transform - pos: -67.5,23.5 - parent: 2 - - uid: 6291 + - uid: 6187 components: - type: Transform - pos: -69.5,20.5 + pos: -75.5,80.5 parent: 2 - uid: 6521 components: @@ -68058,31 +71276,11 @@ entities: - type: Transform pos: -39.5,48.5 parent: 2 - - uid: 6894 - components: - - type: Transform - pos: -75.5,-1.5 - parent: 2 - - uid: 6906 - components: - - type: Transform - pos: -76.5,-1.5 - parent: 2 - - uid: 6943 - components: - - type: Transform - pos: -78.5,-1.5 - parent: 2 - uid: 6949 components: - type: Transform pos: -61.5,1.5 parent: 2 - - uid: 6961 - components: - - type: Transform - pos: -67.5,25.5 - parent: 2 - uid: 6963 components: - type: Transform @@ -68113,36 +71311,6 @@ entities: rot: 3.141592653589793 rad pos: 30.5,45.5 parent: 2 - - uid: 6993 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,37.5 - parent: 2 - - uid: 6994 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,36.5 - parent: 2 - - uid: 6995 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,31.5 - parent: 2 - - uid: 6996 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,32.5 - parent: 2 - - uid: 6998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,33.5 - parent: 2 - uid: 7025 components: - type: Transform @@ -68158,11 +71326,6 @@ entities: - type: Transform pos: -27.5,-10.5 parent: 2 - - uid: 7059 - components: - - type: Transform - pos: -75.5,16.5 - parent: 2 - uid: 7081 components: - type: Transform @@ -68342,47 +71505,37 @@ entities: - uid: 7247 components: - type: Transform - pos: -90.5,74.5 + pos: -75.5,79.5 parent: 2 - uid: 7251 components: - type: Transform - pos: -89.5,74.5 + pos: -76.5,77.5 parent: 2 - uid: 7252 components: - type: Transform - pos: -91.5,74.5 + pos: -77.5,77.5 parent: 2 - uid: 7253 components: - type: Transform - pos: -84.5,74.5 + pos: -78.5,77.5 parent: 2 - uid: 7254 components: - type: Transform - pos: -83.5,74.5 - parent: 2 - - uid: 7257 - components: - - type: Transform - pos: -69.5,-2.5 - parent: 2 - - uid: 7258 - components: - - type: Transform - pos: -64.5,-2.5 + pos: -79.5,77.5 parent: 2 - uid: 7260 components: - type: Transform - pos: -68.5,-2.5 + pos: 32.5,18.5 parent: 2 - uid: 7261 components: - type: Transform - pos: -72.5,77.5 + pos: -80.5,77.5 parent: 2 - uid: 7262 components: @@ -68394,20 +71547,10 @@ entities: - type: Transform pos: -45.5,-2.5 parent: 2 - - uid: 7269 - components: - - type: Transform - pos: -59.5,-2.5 - parent: 2 - uid: 7270 components: - type: Transform - pos: -72.5,79.5 - parent: 2 - - uid: 7271 - components: - - type: Transform - pos: -63.5,-2.5 + pos: -82.5,77.5 parent: 2 - uid: 7274 components: @@ -68417,37 +71560,32 @@ entities: - uid: 7275 components: - type: Transform - pos: -58.5,-2.5 + pos: -74.5,27.5 parent: 2 - uid: 7276 components: - type: Transform - pos: -70.5,-2.5 + pos: -75.5,27.5 parent: 2 - - uid: 7277 - components: - - type: Transform - pos: -56.5,-2.5 - parent: 2 - - uid: 7279 + - uid: 7282 components: - type: Transform - pos: -65.5,-2.5 + pos: -51.5,-2.5 parent: 2 - - uid: 7280 + - uid: 7283 components: - type: Transform - pos: -57.5,-2.5 + pos: -49.5,-2.5 parent: 2 - - uid: 7282 + - uid: 7284 components: - type: Transform - pos: -51.5,-2.5 + pos: -73.5,77.5 parent: 2 - - uid: 7283 + - uid: 7286 components: - type: Transform - pos: -49.5,-2.5 + pos: -39.5,-2.5 parent: 2 - uid: 7287 components: @@ -68457,32 +71595,32 @@ entities: - uid: 7288 components: - type: Transform - pos: -79.5,74.5 + pos: -81.5,77.5 parent: 2 - uid: 7289 components: - type: Transform - pos: -74.5,76.5 + pos: -84.5,77.5 parent: 2 - uid: 7290 components: - type: Transform - pos: -75.5,76.5 + pos: -86.5,77.5 parent: 2 - uid: 7291 components: - type: Transform - pos: -80.5,74.5 + pos: -87.5,77.5 parent: 2 - uid: 7292 components: - type: Transform - pos: -78.5,74.5 + pos: -88.5,77.5 parent: 2 - uid: 7293 components: - type: Transform - pos: -81.5,74.5 + pos: -89.5,77.5 parent: 2 - uid: 7296 components: @@ -68538,7 +71676,12 @@ entities: - uid: 7358 components: - type: Transform - pos: -87.5,74.5 + pos: -90.5,77.5 + parent: 2 + - uid: 7361 + components: + - type: Transform + pos: 29.5,16.5 parent: 2 - uid: 7362 components: @@ -68550,10 +71693,10 @@ entities: - type: Transform pos: -62.5,93.5 parent: 2 - - uid: 7381 + - uid: 7365 components: - type: Transform - pos: -77.5,-1.5 + pos: 30.5,16.5 parent: 2 - uid: 7403 components: @@ -68613,12 +71756,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,39.5 parent: 2 - - uid: 7940 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 2 - uid: 8434 components: - type: Transform @@ -68634,6 +71771,11 @@ entities: - type: Transform pos: -54.5,95.5 parent: 2 + - uid: 8633 + components: + - type: Transform + pos: -81.5,20.5 + parent: 2 - uid: 8821 components: - type: Transform @@ -68692,7 +71834,7 @@ entities: - uid: 9604 components: - type: Transform - pos: -70.5,20.5 + pos: -81.5,22.5 parent: 2 - uid: 9682 components: @@ -68700,11 +71842,6 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,26.5 parent: 2 - - uid: 9687 - components: - - type: Transform - pos: -73.5,16.5 - parent: 2 - uid: 9707 components: - type: Transform @@ -68721,6 +71858,11 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,56.5 parent: 2 + - uid: 10110 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 - uid: 10114 components: - type: Transform @@ -68744,6 +71886,17 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,68.5 parent: 2 + - uid: 10372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,30.5 + parent: 2 + - uid: 10374 + components: + - type: Transform + pos: -81.5,24.5 + parent: 2 - uid: 10514 components: - type: Transform @@ -68781,17 +71934,21 @@ entities: - type: Transform pos: 22.5,38.5 parent: 2 + - uid: 11189 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 - uid: 11222 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,-25.5 parent: 2 - - uid: 11529 + - uid: 11548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,56.5 + pos: -72.5,30.5 parent: 2 - uid: 11572 components: @@ -68819,10 +71976,17 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-22.5 parent: 2 - - uid: 12406 + - uid: 11906 components: - type: Transform - pos: 21.5,2.5 + rot: 1.5707963267948966 rad + pos: 14.5,52.5 + parent: 2 + - uid: 12116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,58.5 parent: 2 - uid: 12414 components: @@ -68848,6 +72012,12 @@ entities: rot: 1.5707963267948966 rad pos: 16.5,-21.5 parent: 2 + - uid: 12468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,56.5 + parent: 2 - uid: 12521 components: - type: Transform @@ -68865,6 +72035,16 @@ entities: rot: 3.141592653589793 rad pos: -54.5,46.5 parent: 2 + - uid: 12674 + components: + - type: Transform + pos: -91.5,77.5 + parent: 2 + - uid: 12675 + components: + - type: Transform + pos: -85.5,77.5 + parent: 2 - uid: 12683 components: - type: Transform @@ -69056,6 +72236,12 @@ entities: rot: -1.5707963267948966 rad pos: -28.5,50.5 parent: 2 + - uid: 13309 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,25.5 + parent: 2 - uid: 13403 components: - type: Transform @@ -69340,38 +72526,22 @@ entities: - uid: 13461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-3.5 - parent: 2 - - uid: 13462 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-3.5 + pos: -91.5,75.5 parent: 2 - uid: 13463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-3.5 + pos: -92.5,72.5 parent: 2 - uid: 13464 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-3.5 - parent: 2 - - uid: 13465 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-3.5 + pos: 32.5,19.5 parent: 2 - uid: 13466 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-3.5 + pos: 28.5,14.5 parent: 2 - uid: 13510 components: @@ -69436,50 +72606,7 @@ entities: - uid: 13612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,23.5 - parent: 2 - - uid: 13613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,23.5 - parent: 2 - - uid: 13614 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,23.5 - parent: 2 - - uid: 13615 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,23.5 - parent: 2 - - uid: 13616 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,22.5 - parent: 2 - - uid: 13617 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,20.5 - parent: 2 - - uid: 13618 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,19.5 - parent: 2 - - uid: 13619 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,21.5 + pos: -81.5,19.5 parent: 2 - uid: 13620 components: @@ -70082,6 +73209,11 @@ entities: - type: Transform pos: -55.5,95.5 parent: 2 + - uid: 13853 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 - uid: 13872 components: - type: Transform @@ -70092,12 +73224,23 @@ entities: - type: Transform pos: -30.5,1.5 parent: 2 + - uid: 14017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 2 - uid: 14037 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,84.5 parent: 2 + - uid: 14066 + components: + - type: Transform + pos: -81.5,23.5 + parent: 2 - uid: 14070 components: - type: Transform @@ -70138,11 +73281,6 @@ entities: - type: Transform pos: -44.5,89.5 parent: 2 - - uid: 14078 - components: - - type: Transform - pos: -44.5,88.5 - parent: 2 - uid: 14079 components: - type: Transform @@ -70163,11 +73301,6 @@ entities: - type: Transform pos: -44.5,83.5 parent: 2 - - uid: 14083 - components: - - type: Transform - pos: -44.5,84.5 - parent: 2 - uid: 14084 components: - type: Transform @@ -70264,50 +73397,41 @@ entities: rot: 1.5707963267948966 rad pos: -54.5,34.5 parent: 2 - - uid: 14385 - components: - - type: Transform - pos: 25.5,14.5 - parent: 2 - - uid: 14386 - components: - - type: Transform - pos: 25.5,16.5 - parent: 2 - - uid: 14387 - components: - - type: Transform - pos: 25.5,17.5 - parent: 2 - uid: 14388 components: - type: Transform - pos: 25.5,18.5 + rot: 3.141592653589793 rad + pos: 14.5,32.5 parent: 2 - uid: 14389 components: - type: Transform - pos: 25.5,15.5 + rot: -1.5707963267948966 rad + pos: -22.5,13.5 parent: 2 - uid: 14390 components: - type: Transform - pos: 24.5,10.5 + rot: -1.5707963267948966 rad + pos: -39.5,22.5 parent: 2 - uid: 14391 components: - type: Transform - pos: 24.5,8.5 + rot: -1.5707963267948966 rad + pos: -33.5,22.5 parent: 2 - uid: 14392 components: - type: Transform - pos: 24.5,7.5 + rot: -1.5707963267948966 rad + pos: -34.5,22.5 parent: 2 - uid: 14393 components: - type: Transform - pos: 24.5,9.5 + rot: -1.5707963267948966 rad + pos: -40.5,22.5 parent: 2 - uid: 14420 components: @@ -70327,11 +73451,50 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 + - uid: 14434 + components: + - type: Transform + pos: -11.5,64.5 + parent: 2 + - uid: 14435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 2 + - uid: 14436 + components: + - type: Transform + pos: 10.5,66.5 + parent: 2 + - uid: 14437 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 14438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,41.5 + parent: 2 + - uid: 14440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,26.5 + parent: 2 - uid: 14605 components: - type: Transform pos: -30.5,0.5 parent: 2 + - uid: 14716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,33.5 + parent: 2 - uid: 14758 components: - type: Transform @@ -70343,6 +73506,11 @@ entities: - type: Transform pos: -26.5,-9.5 parent: 2 + - uid: 14910 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 - uid: 14918 components: - type: Transform @@ -70481,21 +73649,6 @@ entities: rot: 3.141592653589793 rad pos: 16.5,73.5 parent: 2 - - uid: 15557 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - - uid: 15558 - components: - - type: Transform - pos: 20.5,-4.5 - parent: 2 - - uid: 15559 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 2 - uid: 15780 components: - type: Transform @@ -70548,7 +73701,7 @@ entities: - uid: 15850 components: - type: Transform - pos: -38.5,86.5 + pos: -44.5,85.5 parent: 2 - uid: 15851 components: @@ -70938,6 +74091,12 @@ entities: rot: 3.141592653589793 rad pos: 8.5,85.5 parent: 2 + - uid: 16594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,54.5 + parent: 2 - uid: 16680 components: - type: Transform @@ -71173,30 +74332,25 @@ entities: - type: Transform pos: -86.5,-0.5 parent: 2 - - uid: 16737 - components: - - type: Transform - pos: -70.5,22.5 - parent: 2 - uid: 16738 components: - type: Transform - pos: -70.5,24.5 + pos: -73.5,76.5 parent: 2 - uid: 16739 components: - type: Transform - pos: -70.5,25.5 + pos: -71.5,79.5 parent: 2 - uid: 16740 components: - type: Transform - pos: -70.5,26.5 + pos: -79.5,74.5 parent: 2 - uid: 16741 components: - type: Transform - pos: -70.5,23.5 + pos: -80.5,74.5 parent: 2 - uid: 16742 components: @@ -71208,15 +74362,10 @@ entities: - type: Transform pos: -70.5,31.5 parent: 2 - - uid: 16744 - components: - - type: Transform - pos: -70.5,29.5 - parent: 2 - uid: 16745 components: - type: Transform - pos: -70.5,28.5 + pos: -82.5,74.5 parent: 2 - uid: 16746 components: @@ -71226,37 +74375,378 @@ entities: - uid: 16747 components: - type: Transform - pos: -80.5,19.5 + pos: -81.5,74.5 parent: 2 - uid: 16748 components: - type: Transform - pos: -78.5,19.5 + pos: -84.5,74.5 parent: 2 - uid: 16749 components: - type: Transform - pos: -77.5,19.5 + pos: -85.5,74.5 parent: 2 - uid: 16750 components: - type: Transform - pos: -76.5,19.5 + pos: -86.5,74.5 parent: 2 - - uid: 16751 + - uid: 16815 components: - type: Transform - pos: -75.5,19.5 + pos: 27.5,-1.5 parent: 2 - - uid: 16752 + - uid: 16852 components: - type: Transform - pos: -74.5,19.5 + pos: -75.5,24.5 parent: 2 - - uid: 16753 + - uid: 16853 components: - type: Transform - pos: -79.5,19.5 + pos: -70.5,27.5 + parent: 2 + - uid: 16854 + components: + - type: Transform + pos: -69.5,27.5 + parent: 2 + - uid: 16878 + components: + - type: Transform + pos: -79.5,-3.5 + parent: 2 + - uid: 16970 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 16971 + components: + - type: Transform + pos: -77.5,-6.5 + parent: 2 + - uid: 16972 + components: + - type: Transform + pos: -76.5,-6.5 + parent: 2 + - uid: 16973 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 16974 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 + - uid: 16975 + components: + - type: Transform + pos: -69.5,-7.5 + parent: 2 + - uid: 16976 + components: + - type: Transform + pos: -68.5,-7.5 + parent: 2 + - uid: 16977 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 16978 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 16979 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 16980 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 16981 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 16982 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 16983 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 16984 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 16987 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 16988 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 16990 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 16991 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 16993 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 16997 + components: + - type: Transform + pos: 24.5,-7.5 + parent: 2 + - uid: 16998 + components: + - type: Transform + pos: 28.5,-7.5 + parent: 2 + - uid: 16999 + components: + - type: Transform + pos: 28.5,-6.5 + parent: 2 + - uid: 17000 + components: + - type: Transform + pos: 28.5,-5.5 + parent: 2 + - uid: 17008 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 17009 + components: + - type: Transform + pos: 30.5,1.5 + parent: 2 + - uid: 17011 + components: + - type: Transform + pos: 30.5,3.5 + parent: 2 + - uid: 17012 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 17013 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 17014 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - uid: 17015 + components: + - type: Transform + pos: 30.5,9.5 + parent: 2 + - uid: 17016 + components: + - type: Transform + pos: 30.5,10.5 + parent: 2 + - uid: 17017 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 17018 + components: + - type: Transform + pos: 30.5,12.5 + parent: 2 + - uid: 17019 + components: + - type: Transform + pos: 30.5,14.5 + parent: 2 + - uid: 17020 + components: + - type: Transform + pos: 32.5,14.5 + parent: 2 + - uid: 17021 + components: + - type: Transform + pos: 33.5,14.5 + parent: 2 + - uid: 17022 + components: + - type: Transform + pos: 34.5,14.5 + parent: 2 + - uid: 17023 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 17024 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 17025 + components: + - type: Transform + pos: 34.5,17.5 + parent: 2 + - uid: 17026 + components: + - type: Transform + pos: 34.5,18.5 + parent: 2 + - uid: 17027 + components: + - type: Transform + pos: 34.5,19.5 + parent: 2 + - uid: 17032 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 17033 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 17049 + components: + - type: Transform + pos: 30.5,-5.5 + parent: 2 + - uid: 17160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -80.5,25.5 + parent: 2 + - uid: 17161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.5,25.5 + parent: 2 + - uid: 17162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -79.5,25.5 + parent: 2 + - uid: 17200 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 2 + - uid: 17246 + components: + - type: Transform + pos: 29.5,-5.5 + parent: 2 + - uid: 17260 + components: + - type: Transform + pos: 30.5,0.5 + parent: 2 + - uid: 17261 + components: + - type: Transform + pos: 30.5,-0.5 + parent: 2 + - uid: 17262 + components: + - type: Transform + pos: 30.5,-1.5 + parent: 2 + - uid: 17263 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 + - uid: 17264 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 + - uid: 17265 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 17266 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 17552 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,56.5 + parent: 2 + - uid: 17554 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,56.5 + parent: 2 + - uid: 17575 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 17576 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 + - uid: 17677 + components: + - type: Transform + pos: -44.5,84.5 + parent: 2 + - uid: 17678 + components: + - type: Transform + pos: -33.5,87.5 + parent: 2 + - uid: 17679 + components: + - type: Transform + pos: -43.5,85.5 parent: 2 - proto: GrilleBroken entities: @@ -71278,12 +74768,6 @@ entities: rot: 3.141592653589793 rad pos: -35.5,6.5 parent: 2 - - uid: 416 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,1.5 - parent: 2 - uid: 3788 components: - type: Transform @@ -71304,11 +74788,6 @@ entities: - type: Transform pos: -61.5,-1.5 parent: 2 - - uid: 3883 - components: - - type: Transform - pos: -59.5,3.5 - parent: 2 - uid: 5880 components: - type: Transform @@ -71360,19 +74839,44 @@ entities: - type: Transform pos: -66.5,38.5 parent: 2 -- proto: GunSafeDisabler - entities: - - uid: 5169 + - uid: 16985 components: - type: Transform - pos: -19.5,38.5 + pos: -41.5,-1.5 parent: 2 -- proto: GunSafeLaserCarbine + - uid: 16986 + components: + - type: Transform + pos: -40.5,-1.5 + parent: 2 + - uid: 17190 + components: + - type: Transform + pos: -66.5,18.5 + parent: 2 + - uid: 17192 + components: + - type: Transform + pos: -65.5,17.5 + parent: 2 + - uid: 17421 + components: + - type: Transform + pos: -38.5,-0.5 + parent: 2 + - uid: 17422 + components: + - type: Transform + pos: -39.5,-1.5 + parent: 2 +- proto: GunSafe entities: - - uid: 13034 + - uid: 17206 components: + - type: MetaData + name: Weapon Safe - type: Transform - pos: -26.5,38.5 + pos: 31.5,36.5 parent: 2 - type: EntityStorage air: @@ -71398,31 +74902,68 @@ entities: showEnts: False occludes: True ents: - - 6442 + - 17207 + - 17208 + - 17209 + - 17210 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null +- proto: GunSafeDisabler + entities: + - uid: 5169 + components: + - type: Transform + pos: -19.5,38.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 13958 + components: + - type: Transform + pos: -26.5,39.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: GunSafePistolMk58 entities: - - uid: 4506 + - uid: 14055 components: - type: Transform - pos: -23.5,38.5 + pos: -23.5,39.5 parent: 2 - proto: GunSafeRifleLecter entities: - - uid: 4505 + - uid: 16863 components: - type: Transform - pos: -25.5,38.5 + pos: -25.5,39.5 parent: 2 - proto: GunSafeShotgunKammerer entities: - - uid: 13031 + - uid: 13930 components: + - type: MetaData + name: Shotgun safe - type: Transform - pos: -24.5,38.5 + pos: -24.5,39.5 parent: 2 - type: EntityStorage air: @@ -71455,10 +74996,10 @@ entities: ent: null - proto: GunSafeSubMachineGunDrozd entities: - - uid: 4507 + - uid: 11260 components: - type: Transform - pos: -27.5,38.5 + pos: -27.5,39.5 parent: 2 - proto: Handcuffs entities: @@ -71543,23 +75084,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.7397442,11.575177 parent: 2 -- proto: Holopad - entities: - - uid: 16852 - components: - - type: Transform - pos: -61.5,22.5 - parent: 2 - - uid: 16853 - components: - - type: Transform - pos: -65.5,9.5 - parent: 2 - - uid: 16854 - components: - - type: Transform - pos: -65.5,9.5 - parent: 2 - proto: HolopadAiCore entities: - uid: 16805 @@ -71581,6 +75105,13 @@ entities: - type: Transform pos: 10.5,72.5 parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 15529 + components: + - type: Transform + pos: 13.5,76.5 + parent: 2 - proto: HolopadCargoFront entities: - uid: 16821 @@ -71597,7 +75128,14 @@ entities: parent: 2 - proto: HolopadCommandBridge entities: - - uid: 16816 + - uid: 15516 + components: + - type: Transform + pos: -22.5,69.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 9672 components: - type: Transform pos: -23.5,73.5 @@ -71695,10 +75233,10 @@ entities: parent: 2 - proto: HolopadEngineeringTelecoms entities: - - uid: 16849 + - uid: 13996 components: - type: Transform - pos: -32.5,12.5 + pos: -27.5,10.5 parent: 2 - proto: HolopadGeneralArrivals entities: @@ -71707,6 +75245,13 @@ entities: - type: Transform pos: -72.5,63.5 parent: 2 +- proto: HolopadGeneralCryosleep + entities: + - uid: 15540 + components: + - type: Transform + pos: -54.5,30.5 + parent: 2 - proto: HolopadGeneralEvac entities: - uid: 16830 @@ -71716,15 +75261,17 @@ entities: parent: 2 - proto: HolopadGeneralEVAStorage entities: - - uid: 16826 + - uid: 16827 components: - type: Transform - pos: -31.5,49.5 + pos: -27.5,63.5 parent: 2 - - uid: 16827 +- proto: HolopadGeneralLounge + entities: + - uid: 13995 components: - type: Transform - pos: -27.5,63.5 + pos: -61.5,22.5 parent: 2 - proto: HolopadGeneralTools entities: @@ -71749,10 +75296,10 @@ entities: parent: 2 - proto: HolopadMedicalMedbay entities: - - uid: 16837 + - uid: 15515 components: - type: Transform - pos: -28.5,30.5 + pos: -25.5,32.5 parent: 2 - proto: HolopadMedicalSurgery entities: @@ -71798,10 +75345,10 @@ entities: parent: 2 - proto: HolopadSecurityArmory entities: - - uid: 16807 + - uid: 13986 components: - type: Transform - pos: -26.5,41.5 + pos: -25.5,42.5 parent: 2 - proto: HolopadSecurityBrig entities: @@ -71810,6 +75357,13 @@ entities: - type: Transform pos: -19.5,45.5 parent: 2 +- proto: HolopadSecurityBrigMed + entities: + - uid: 382 + components: + - type: Transform + pos: -13.5,41.5 + parent: 2 - proto: HolopadSecurityCourtroom entities: - uid: 16825 @@ -71817,12 +75371,19 @@ entities: - type: Transform pos: -14.5,65.5 parent: 2 +- proto: HolopadSecurityDetective + entities: + - uid: 16816 + components: + - type: Transform + pos: -2.5,37.5 + parent: 2 - proto: HolopadSecurityFront entities: - - uid: 16846 + - uid: 15518 components: - type: Transform - pos: -30.5,52.5 + pos: -28.5,46.5 parent: 2 - proto: HolopadSecurityInterrogation entities: @@ -71861,18 +75422,30 @@ entities: parent: 2 - proto: HolopadServiceBoxer entities: - - uid: 16815 + - uid: 17540 components: - type: Transform - pos: -42.5,55.5 + pos: -46.5,55.5 parent: 2 - proto: HolopadServiceChapel entities: - - uid: 16824 + - uid: 1832 components: - type: Transform pos: -56.5,13.5 parent: 2 + - uid: 2166 + components: + - type: Transform + pos: -65.5,9.5 + parent: 2 +- proto: HolopadServiceJanitor + entities: + - uid: 15758 + components: + - type: Transform + pos: -34.5,68.5 + parent: 2 - proto: HolopadServiceKitchen entities: - uid: 16834 @@ -71972,11 +75545,6 @@ entities: parent: 2 - proto: hydroponicsTray entities: - - uid: 2339 - components: - - type: Transform - pos: -49.5,43.5 - parent: 2 - uid: 2567 components: - type: Transform @@ -72080,6 +75648,19 @@ entities: - type: Transform pos: -54.5,41.5 parent: 2 + - uid: 17659 + components: + - type: Transform + pos: -57.5,40.5 + parent: 2 +- proto: IDComputerCircuitboard + entities: + - uid: 16896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.728159,74.49158 + parent: 2 - proto: InflatableWall entities: - uid: 14378 @@ -72104,6 +75685,62 @@ entities: - type: Transform pos: -8.43362,74.25302 parent: 2 +- proto: IngotGold1 + entities: + - uid: 17180 + components: + - type: Transform + parent: 17175 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IngotSilver + entities: + - uid: 13049 + components: + - type: Transform + pos: -8.665123,74.28996 + parent: 2 +- proto: IntercomEngineering + entities: + - uid: 14276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,18.5 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 16903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,22.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 14740 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,37.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 13988 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,51.5 + parent: 2 +- proto: IntercomSupply + entities: + - uid: 16905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,59.5 + parent: 2 - proto: JanitorialTrolley entities: - uid: 6627 @@ -72166,13 +75803,35 @@ entities: - uid: 4429 components: - type: Transform - pos: -28.73388,38.59426 + pos: -28.271185,39.501156 parent: 2 + - type: GasTank + toggleActionEntity: 13953 + - type: Jetpack + toggleActionEntity: 13952 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 13952 + - 13953 - uid: 4857 components: - type: Transform - pos: -28.288567,38.59426 + pos: -28.271185,39.688656 parent: 2 + - type: GasTank + toggleActionEntity: 13956 + - type: Jetpack + toggleActionEntity: 13955 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 13955 + - 13956 - proto: Jukebox entities: - uid: 15425 @@ -72197,6 +75856,13 @@ entities: - type: Transform pos: -49.5,46.5 parent: 2 +- proto: KitchenKnife + entities: + - uid: 17582 + components: + - type: Transform + pos: -62.49977,8.6943245 + parent: 2 - proto: KitchenMicrowave entities: - uid: 4558 @@ -72251,15 +75917,15 @@ entities: - type: Transform pos: -49.5,47.5 parent: 2 - - uid: 9992 + - uid: 14355 components: - type: Transform - pos: -49.5,47.5 + pos: -55.5,1.5 parent: 2 - - uid: 14355 + - uid: 17236 components: - type: Transform - pos: -55.5,1.5 + pos: -62.5,-6.5 parent: 2 - proto: KitchenSpike entities: @@ -72297,15 +75963,24 @@ entities: - uid: 5578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.45354,23.881472 - parent: 2 - - uid: 6107 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -65.389595,12.915945 + pos: -10.649839,25.551523 parent: 2 + - type: HandheldLight + toggleActionEntity: 2206 + - type: ContainerContainer + containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 2206 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 6530 components: - type: Transform @@ -72337,6 +76012,11 @@ entities: - type: Transform pos: -35.585,62.874256 parent: 2 + - uid: 15928 + components: + - type: Transform + pos: -65.50867,12.664488 + parent: 2 - uid: 16681 components: - type: Transform @@ -72366,6 +76046,13 @@ entities: - type: Transform pos: -57.198494,8.611856 parent: 2 +- proto: LargeBeaker + entities: + - uid: 17353 + components: + - type: Transform + pos: -63.448486,-5.236081 + parent: 2 - proto: LauncherCreamPie entities: - uid: 4712 @@ -72426,10 +76113,42 @@ entities: - Pressed: Toggle 6171: - Pressed: Toggle +- proto: LockableButtonBar + entities: + - uid: 16964 + components: + - type: MetaData + name: Bar Shutters + - type: Transform + rot: 1.5707963267948966 rad + pos: -64.5,48.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 16956: + - Pressed: Toggle + 16955: + - Pressed: Toggle + 16957: + - Pressed: Toggle + 16958: + - Pressed: Toggle + 16959: + - Pressed: Toggle + 16960: + - Pressed: Toggle + 16961: + - Pressed: Toggle + 16962: + - Pressed: Toggle + 16963: + - Pressed: Toggle - proto: LockableButtonBrig entities: - uid: 15056 components: + - type: MetaData + name: Cell Shutters - type: Transform rot: -1.5707963267948966 rad pos: -14.5,46.5 @@ -72466,6 +76185,42 @@ entities: - Pressed: Toggle 16418: - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 17596 + components: + - type: MetaData + name: Bridge Blast doors + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,74.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17595: + - Pressed: Toggle + 17594: + - Pressed: Toggle + 17593: + - Pressed: Toggle + 17592: + - Pressed: Toggle + 17591: + - Pressed: Toggle + 17590: + - Pressed: Toggle + 17589: + - Pressed: Toggle + 17588: + - Pressed: Toggle + 17587: + - Pressed: Toggle + 17586: + - Pressed: Toggle + 17585: + - Pressed: Toggle + 17584: + - Pressed: Toggle - proto: LockableButtonEngineering entities: - uid: 603 @@ -72517,6 +76272,8 @@ entities: entities: - uid: 1783 components: + - type: MetaData + name: Kitchen Shutters - type: Transform pos: -49.5,50.5 parent: 2 @@ -72532,6 +76289,20 @@ entities: - Pressed: Toggle 14274: - Pressed: Toggle +- proto: LockableButtonMedical + entities: + - uid: 15502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13976: + - Pressed: Open + 13975: + - Pressed: Open - proto: LockableButtonResearch entities: - uid: 4540 @@ -72561,6 +76332,56 @@ entities: - Pressed: Toggle 1862: - Pressed: Toggle +- proto: LockableButtonSecurity + entities: + - uid: 14322 + components: + - type: MetaData + name: Locker room blast doors + - type: Transform + rot: 3.141592653589793 rad + pos: -40.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7442: + - Pressed: Toggle + 8021: + - Pressed: Toggle + 8353: + - Pressed: Toggle + - uid: 15310 + components: + - type: MetaData + name: Locker room blast doors + - type: Transform + pos: -38.5,41.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 7442: + - Pressed: Toggle + 8021: + - Pressed: Toggle + 8353: + - Pressed: Toggle + - uid: 15350 + components: + - type: MetaData + name: Perma Blast doors + - type: Transform + pos: -8.5,45.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8356: + - Pressed: Toggle + 8357: + - Pressed: Toggle + 10340: + - Pressed: Toggle + 14321: + - Pressed: Toggle - proto: LockerAtmosphericsFilled entities: - uid: 6057 @@ -72792,6 +76613,11 @@ entities: - type: Transform pos: -15.5,42.5 parent: 2 + - uid: 5600 + components: + - type: Transform + pos: -71.5,25.5 + parent: 2 - uid: 5848 components: - type: Transform @@ -72855,6 +76681,24 @@ entities: - type: Transform pos: -1.5,76.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - proto: LockerResearchDirectorFilled entities: - uid: 5867 @@ -72975,11 +76819,6 @@ entities: - type: Transform pos: -51.5,65.5 parent: 2 - - uid: 4737 - components: - - type: Transform - pos: -45.5,67.5 - parent: 2 - proto: LockerSyndicate entities: - uid: 6992 @@ -73032,6 +76871,13 @@ entities: - type: Transform pos: -11.5,7.5 parent: 2 +- proto: LootSpawnerMedicalClassy + entities: + - uid: 17196 + components: + - type: Transform + pos: -69.5,26.5 + parent: 2 - proto: LootSpawnerRandomCrateEngineering entities: - uid: 10551 @@ -73129,6 +76975,21 @@ entities: - type: Transform pos: -34.5,30.5 parent: 2 +- proto: MachineFrame + entities: + - uid: 17346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -63.5,-3.5 + parent: 2 +- proto: MagazinePistolSubMachineGunPractice + entities: + - uid: 17217 + components: + - type: Transform + pos: 29.182188,37.520115 + parent: 2 - proto: MagazinePistolSubMachineGunTopMounted entities: - uid: 2542 @@ -73180,11 +77041,6 @@ entities: - type: Transform pos: -66.5,25.5 parent: 2 - - uid: 14218 - components: - - type: Transform - pos: -37.5,16.5 - parent: 2 - uid: 14223 components: - type: Transform @@ -73227,6 +77083,31 @@ entities: - type: Transform pos: 19.5,-2.5 parent: 2 + - uid: 17186 + components: + - type: Transform + pos: -74.5,16.5 + parent: 2 + - uid: 17441 + components: + - type: Transform + pos: -78.5,72.5 + parent: 2 + - uid: 17442 + components: + - type: Transform + pos: -77.5,72.5 + parent: 2 + - uid: 17443 + components: + - type: Transform + pos: -87.5,73.5 + parent: 2 + - uid: 17655 + components: + - type: Transform + pos: -37.5,12.5 + parent: 2 - proto: MaintenancePlantSpawner entities: - uid: 6172 @@ -73289,12 +77170,6 @@ entities: - type: Transform pos: -42.5,6.5 parent: 2 - - uid: 14664 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,19.5 - parent: 2 - uid: 15311 components: - type: Transform @@ -73320,6 +77195,31 @@ entities: - type: Transform pos: -17.5,36.5 parent: 2 + - uid: 17356 + components: + - type: Transform + pos: -60.5,-4.5 + parent: 2 + - uid: 17445 + components: + - type: Transform + pos: -83.5,73.5 + parent: 2 + - uid: 17446 + components: + - type: Transform + pos: -79.5,73.5 + parent: 2 + - uid: 17447 + components: + - type: Transform + pos: -75.5,72.5 + parent: 2 + - uid: 17583 + components: + - type: Transform + pos: 23.5,19.5 + parent: 2 - proto: MaintenanceToolSpawner entities: - uid: 14206 @@ -73384,6 +77284,21 @@ entities: - type: Transform pos: -16.5,36.5 parent: 2 + - uid: 17188 + components: + - type: Transform + pos: -73.5,16.5 + parent: 2 + - uid: 17420 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 17444 + components: + - type: Transform + pos: -84.5,72.5 + parent: 2 - proto: MaintenanceWeaponSpawner entities: - uid: 14205 @@ -73417,6 +77332,11 @@ entities: - type: Transform pos: -15.5,36.5 parent: 2 + - uid: 17419 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 - proto: MaterialCloth entities: - uid: 9170 @@ -73534,7 +77454,7 @@ entities: - uid: 6005 components: - type: Transform - pos: 7.4917555,61.666073 + pos: 7.360137,61.587585 parent: 2 - proto: MedkitBruteFilled entities: @@ -73580,7 +77500,7 @@ entities: - uid: 5577 components: - type: Transform - pos: -9.500415,23.553347 + pos: -10.634214,25.770273 parent: 2 - proto: MedkitFilled entities: @@ -73690,22 +77610,21 @@ entities: - uid: 13761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.477898,54.5684 + pos: -42.615143,55.5447 parent: 2 - proto: MindShieldImplanter entities: - - uid: 6440 + - uid: 13977 components: - type: Transform - parent: 4675 + parent: 5572 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 6441 + - uid: 13980 components: - type: Transform - parent: 4675 + parent: 5572 - type: Physics canCollide: False - type: InsideEntityStorage @@ -73873,6 +77792,13 @@ entities: - type: Transform pos: 3.4062185,76.170845 parent: 2 +- proto: NewsReaderCartridge + entities: + - uid: 17089 + components: + - type: Transform + pos: -44.63878,67.781364 + parent: 2 - proto: NitrogenCanister entities: - uid: 799 @@ -73895,10 +77821,10 @@ entities: - type: Transform pos: -38.5,36.5 parent: 2 - - uid: 10110 + - uid: 4608 components: - type: Transform - pos: 6.5,57.5 + pos: 7.5,59.5 parent: 2 - uid: 12794 components: @@ -73935,6 +77861,11 @@ entities: - type: Transform pos: -4.5,10.5 parent: 2 + - uid: 17546 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 - proto: NitrousOxideCanister entities: - uid: 788 @@ -73963,11 +77894,12 @@ entities: rot: 3.141592653589793 rad pos: -28.651436,88.49884 parent: 2 -- proto: NuclearBomb +- proto: NuclearBombUnanchored entities: - - uid: 6151 + - uid: 13957 components: - type: Transform + rot: -1.5707963267948966 rad pos: -9.5,74.5 parent: 2 - proto: NutimovCircuitBoard @@ -73987,15 +77919,15 @@ entities: parent: 2 - proto: OperatingTable entities: - - uid: 5686 + - uid: 2956 components: - type: Transform - pos: -12.5,25.5 + pos: -13.5,23.5 parent: 2 - - uid: 5687 + - uid: 5686 components: - type: Transform - pos: -12.5,23.5 + pos: -12.5,25.5 parent: 2 - uid: 8355 components: @@ -74046,6 +77978,11 @@ entities: - type: Transform pos: 4.5,22.5 parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 11.5,64.5 + parent: 2 - uid: 2515 components: - type: Transform @@ -74061,11 +77998,6 @@ entities: - type: Transform pos: 4.5,20.5 parent: 2 - - uid: 10109 - components: - - type: Transform - pos: 7.5,57.5 - parent: 2 - uid: 12633 components: - type: Transform @@ -74142,6 +78074,11 @@ entities: - type: Transform pos: -51.5,34.5 parent: 2 + - uid: 17184 + components: + - type: Transform + pos: -70.5,20.5 + parent: 2 - proto: PaladinCircuitBoard entities: - uid: 5333 @@ -74149,6 +78086,36 @@ entities: - type: Transform pos: -28.32331,89.764465 parent: 2 +- proto: Paper + entities: + - uid: 6466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.707624,20.453026 + parent: 2 + - uid: 17516 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.22325,18.7499 + parent: 2 + - uid: 17517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.067,18.71865 + parent: 2 + - uid: 17518 + components: + - type: Transform + pos: 31.192,20.03115 + parent: 2 + - uid: 17519 + components: + - type: Transform + pos: 29.22325,20.578026 + parent: 2 - proto: PaperBin10 entities: - uid: 5118 @@ -74163,18 +78130,48 @@ entities: rot: 3.141592653589793 rad pos: -10.5,16.5 parent: 2 + - uid: 11268 + components: + - type: Transform + pos: -1.5,64.5 + parent: 2 - uid: 13822 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,61.5 parent: 2 + - uid: 13989 + components: + - type: Transform + pos: -27.5,25.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: 7.5,35.5 + parent: 2 - uid: 16632 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,3.5 parent: 2 + - uid: 16928 + components: + - type: Transform + pos: -12.5,63.5 + parent: 2 + - uid: 16931 + components: + - type: Transform + pos: -42.5,66.5 + parent: 2 + - uid: 16936 + components: + - type: Transform + pos: -18.5,63.5 + parent: 2 - proto: PaperCNCSheet entities: - uid: 6026 @@ -74196,6 +78193,8 @@ entities: entities: - uid: 12867 components: + - type: MetaData + name: Suspicious letter - type: Transform pos: 23.503674,21.476675 parent: 2 @@ -74298,7 +78297,7 @@ entities: - uid: 6926 components: - type: Transform - pos: -59.46517,54.44537 + pos: -61.6649,54.618774 parent: 2 - uid: 7429 components: @@ -74347,16 +78346,29 @@ entities: parent: 2 - proto: Pickaxe entities: - - uid: 15401 + - uid: 16762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.4194317,59.611507 + pos: 7.48149,78.63226 parent: 2 - - uid: 16762 +- proto: PillCanister + entities: + - uid: 17349 components: - type: Transform - pos: 7.48149,78.63226 + pos: -63.71411,-5.689206 + parent: 2 + - uid: 17350 + components: + - type: Transform + pos: -63.71411,-5.689206 + parent: 2 +- proto: PillCanisterRandom + entities: + - uid: 17351 + components: + - type: Transform + pos: -63.417236,-5.798581 parent: 2 - proto: PillCanisterTricordrazine entities: @@ -74372,12 +78384,29 @@ entities: - type: Transform pos: -8.284235,70.678246 parent: 2 +- proto: PirateFlag + entities: + - uid: 17181 + components: + - type: Transform + pos: -71.5,17.5 + parent: 2 + - uid: 17182 + components: + - type: Transform + pos: -68.5,20.5 + parent: 2 - proto: PirateHandyFlag entities: - uid: 16782 components: - type: Transform - pos: -68.575294,18.799225 + pos: -68.71645,19.768047 + parent: 2 + - uid: 17108 + components: + - type: Transform + pos: -68.20083,19.736797 parent: 2 - proto: PlasmaCanister entities: @@ -74567,7 +78596,7 @@ entities: - uid: 15578 components: - type: Transform - pos: -49.48191,40.475338 + pos: -58.5346,38.5957 parent: 2 - proto: PlushieHuman entities: @@ -74588,6 +78617,63 @@ entities: - type: Transform pos: -27.537634,5.6873207 parent: 2 +- proto: PlushieLizard + entities: + - uid: 17005 + components: + - type: Transform + pos: 21.536476,-4.460577 + parent: 2 + - uid: 17028 + components: + - type: Transform + pos: 21.927101,-4.851202 + parent: 2 + - uid: 17150 + components: + - type: Transform + pos: -78.38981,18.59865 + parent: 2 + - uid: 17271 + components: + - type: Transform + pos: 21.645851,-5.726202 + parent: 2 + - uid: 17272 + components: + - type: Transform + pos: 22.255226,-5.819952 + parent: 2 + - uid: 17273 + components: + - type: Transform + pos: 21.520851,-6.663702 + parent: 2 + - uid: 17274 + components: + - type: Transform + pos: 22.364601,-6.757452 + parent: 2 + - uid: 17275 + components: + - type: Transform + pos: 22.630226,-5.460577 + parent: 2 + - uid: 17276 + components: + - type: Transform + pos: 22.630226,-4.616827 + parent: 2 + - uid: 17277 + components: + - type: Transform + pos: 21.614601,-5.023077 + parent: 2 + - uid: 17278 + components: + - type: Transform + pos: 22.270851,-5.304327 + parent: 2 - proto: PlushieMagicarp entities: - uid: 15755 @@ -74642,6 +78728,76 @@ entities: - type: Transform pos: 13.465258,50.308178 parent: 2 + - uid: 17279 + components: + - type: Transform + pos: 22.052101,-6.304327 + parent: 2 + - uid: 17280 + components: + - type: Transform + pos: 22.552101,-6.569952 + parent: 2 + - uid: 17281 + components: + - type: Transform + pos: 21.395851,-6.273077 + parent: 2 + - uid: 17282 + components: + - type: Transform + pos: 21.364601,-5.351202 + parent: 2 + - uid: 17283 + components: + - type: Transform + pos: 22.161476,-5.288702 + parent: 2 + - uid: 17284 + components: + - type: Transform + pos: 22.723976,-5.257452 + parent: 2 + - uid: 17285 + components: + - type: Transform + pos: 22.270851,-4.632452 + parent: 2 + - uid: 17286 + components: + - type: Transform + pos: 21.364601,-4.507452 + parent: 2 + - uid: 17287 + components: + - type: Transform + pos: 22.098976,-4.319952 + parent: 2 + - uid: 17288 + components: + - type: Transform + pos: 22.677101,-4.413702 + parent: 2 + - uid: 17289 + components: + - type: Transform + pos: 22.598976,-5.773077 + parent: 2 + - uid: 17290 + components: + - type: Transform + pos: 22.052101,-5.523077 + parent: 2 + - uid: 17291 + components: + - type: Transform + pos: 21.489601,-5.710577 + parent: 2 + - uid: 17292 + components: + - type: Transform + pos: 21.817726,-6.601202 + parent: 2 - proto: PlushieVox entities: - uid: 5804 @@ -74649,29 +78805,34 @@ entities: - type: Transform pos: -50.761574,57.59857 parent: 2 + - uid: 17549 + components: + - type: Transform + pos: 26.541845,8.5382805 + parent: 2 - proto: PortableFlasher entities: - - uid: 4859 + - uid: 5416 components: - type: Transform - pos: -27.5,40.5 + pos: -28.5,47.5 parent: 2 - - uid: 4860 + - uid: 13951 components: - type: Transform - pos: -24.5,40.5 + pos: -25.5,41.5 parent: 2 - - uid: 5416 + - uid: 17597 components: - type: Transform - pos: -28.5,47.5 + pos: -36.5,44.5 parent: 2 - proto: PortableGeneratorJrPacman entities: - - uid: 5978 + - uid: 499 components: - type: Transform - pos: 6.5,54.5 + pos: 8.5,55.5 parent: 2 - uid: 6836 components: @@ -74713,11 +78874,6 @@ entities: - type: Transform pos: -81.5,10.5 parent: 2 - - uid: 15120 - components: - - type: Transform - pos: -47.5,7.5 - parent: 2 - uid: 16606 components: - type: Transform @@ -74826,6 +78982,13 @@ entities: - type: Transform pos: -46.5,45.5 parent: 2 +- proto: PosterContrabandEnlistGorlex + entities: + - uid: 15509 + components: + - type: Transform + pos: -27.5,37.5 + parent: 2 - proto: PosterContrabandFunPolice entities: - uid: 14725 @@ -74847,6 +79010,11 @@ entities: - type: Transform pos: -27.5,35.5 parent: 2 + - uid: 17380 + components: + - type: Transform + pos: -69.5,24.5 + parent: 2 - proto: PosterContrabandLamarr entities: - uid: 5886 @@ -74875,13 +79043,37 @@ entities: - type: Transform pos: -40.5,18.5 parent: 2 +- proto: PosterContrabandVoteWeh + entities: + - uid: 7357 + components: + - type: Transform + pos: 20.5,-5.5 + parent: 2 + - uid: 17006 + components: + - type: Transform + pos: 21.5,-7.5 + parent: 2 +- proto: PosterContrabandWehWatches + entities: + - uid: 6993 + components: + - type: Transform + pos: 23.5,-5.5 + parent: 2 + - uid: 7388 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 14740 + - uid: 13794 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,37.5 + rot: 3.141592653589793 rad + pos: -24.5,38.5 parent: 2 - proto: PosterLegitAnatomyPoster entities: @@ -74920,11 +79112,18 @@ entities: parent: 2 - proto: PosterLegitCleanliness entities: - - uid: 14739 + - uid: 17102 components: - type: Transform rot: -1.5707963267948966 rad - pos: -39.5,22.5 + pos: -41.5,22.5 + parent: 2 +- proto: PosterLegitDoNotQuestion + entities: + - uid: 17623 + components: + - type: Transform + pos: -40.5,51.5 parent: 2 - proto: PosterLegitHereForYourSafety entities: @@ -74933,6 +79132,13 @@ entities: - type: Transform pos: -30.5,43.5 parent: 2 +- proto: PosterLegitIonRifle + entities: + - uid: 17624 + components: + - type: Transform + pos: -30.5,40.5 + parent: 2 - proto: PosterLegitJustAWeekAway entities: - uid: 14728 @@ -74940,6 +79146,13 @@ entities: - type: Transform pos: -14.5,22.5 parent: 2 +- proto: PosterLegitLoveIan + entities: + - uid: 17625 + components: + - type: Transform + pos: -34.5,65.5 + parent: 2 - proto: PosterLegitMime entities: - uid: 4699 @@ -74950,10 +79163,20 @@ entities: parent: 2 - proto: PosterLegitNanotrasenLogo entities: - - uid: 14732 + - uid: 17626 components: - type: Transform - pos: -19.5,60.5 + pos: -34.5,59.5 + parent: 2 + - uid: 17627 + components: + - type: Transform + pos: -24.5,59.5 + parent: 2 + - uid: 17628 + components: + - type: Transform + pos: -20.5,59.5 parent: 2 - proto: PosterLegitObey entities: @@ -74962,6 +79185,21 @@ entities: - type: Transform pos: -21.5,43.5 parent: 2 +- proto: PosterLegitPDAAd + entities: + - uid: 14261 + components: + - type: Transform + pos: -29.5,62.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 17344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,-5.5 + parent: 2 - proto: PosterLegitReportCrimes entities: - uid: 14733 @@ -74974,17 +79212,20 @@ entities: - type: Transform pos: -12.5,51.5 parent: 2 -- proto: PosterLegitSecWatch +- proto: PosterLegitSafetyMothMeth entities: - - uid: 5150 + - uid: 17345 components: - type: Transform - pos: -30.5,51.5 + rot: -1.5707963267948966 rad + pos: -64.5,-4.5 parent: 2 - - uid: 14735 +- proto: PosterLegitSecWatch + entities: + - uid: 242 components: - type: Transform - pos: -0.5,47.5 + pos: -0.5,48.5 parent: 2 - proto: PottedPlantRandom entities: @@ -74998,26 +79239,21 @@ entities: - type: Transform pos: -71.5,39.5 parent: 2 - - uid: 7256 + - uid: 5574 components: - type: Transform - pos: -64.5,10.5 + pos: -8.5,22.5 parent: 2 - - uid: 8593 + - uid: 7256 components: - type: Transform - pos: -24.5,58.5 + pos: -64.5,10.5 parent: 2 - uid: 8768 components: - type: Transform pos: -57.5,41.5 parent: 2 - - uid: 9021 - components: - - type: Transform - pos: 19.5,39.5 - parent: 2 - uid: 9395 components: - type: Transform @@ -75028,6 +79264,11 @@ entities: - type: Transform pos: -6.5,60.5 parent: 2 + - uid: 11267 + components: + - type: Transform + pos: 19.5,35.5 + parent: 2 - uid: 12405 components: - type: Transform @@ -75118,11 +79359,6 @@ entities: - type: Transform pos: -41.5,19.5 parent: 2 - - uid: 14880 - components: - - type: Transform - pos: -22.5,19.5 - parent: 2 - uid: 14881 components: - type: Transform @@ -75198,11 +79434,6 @@ entities: - type: Transform pos: -7.5,27.5 parent: 2 - - uid: 14910 - components: - - type: Transform - pos: -10.5,7.5 - parent: 2 - uid: 14911 components: - type: Transform @@ -75238,6 +79469,11 @@ entities: - type: Transform pos: -20.5,66.5 parent: 2 + - uid: 17629 + components: + - type: Transform + pos: -25.5,58.5 + parent: 2 - proto: PottedPlantRD entities: - uid: 5872 @@ -75320,6 +79556,18 @@ entities: - type: Transform pos: 20.5,28.5 parent: 2 + - uid: 16882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,31.5 + parent: 2 + - uid: 16884 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,28.5 + parent: 2 - proto: PowerDrill entities: - uid: 5874 @@ -75327,6 +79575,19 @@ entities: - type: Transform pos: 21.318085,46.692657 parent: 2 +- proto: PoweredDimSmallLight + entities: + - uid: 14664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,30.5 + parent: 2 + - uid: 17581 + components: + - type: Transform + pos: -51.5,33.5 + parent: 2 - proto: Poweredlight entities: - uid: 12 @@ -75335,6 +79596,12 @@ entities: rot: -1.5707963267948966 rad pos: 1.5,11.5 parent: 2 + - uid: 18 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,32.5 + parent: 2 - uid: 130 components: - type: Transform @@ -75402,6 +79669,12 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-12.5 parent: 2 + - uid: 2958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,46.5 + parent: 2 - uid: 3588 components: - type: Transform @@ -75419,6 +79692,12 @@ entities: - type: Transform pos: -55.5,17.5 parent: 2 + - uid: 3901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,42.5 + parent: 2 - uid: 4631 components: - type: Transform @@ -75465,6 +79744,12 @@ entities: - type: Transform pos: -31.5,12.5 parent: 2 + - uid: 6843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -71.5,1.5 + parent: 2 - uid: 6888 components: - type: Transform @@ -75489,6 +79774,12 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 + - uid: 7356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 - uid: 7462 components: - type: Transform @@ -75568,6 +79859,11 @@ entities: rot: -1.5707963267948966 rad pos: 10.5,20.5 parent: 2 + - uid: 10477 + components: + - type: Transform + pos: -25.5,17.5 + parent: 2 - uid: 10579 components: - type: Transform @@ -75579,6 +79875,12 @@ entities: rot: 1.5707963267948966 rad pos: -63.5,53.5 parent: 2 + - uid: 12277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -55.5,38.5 + parent: 2 - uid: 12765 components: - type: Transform @@ -75623,11 +79925,6 @@ entities: - type: Transform pos: -20.5,12.5 parent: 2 - - uid: 13010 - components: - - type: Transform - pos: -22.5,17.5 - parent: 2 - uid: 13011 components: - type: Transform @@ -75754,12 +80051,6 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,38.5 parent: 2 - - uid: 13046 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,46.5 - parent: 2 - uid: 13047 components: - type: Transform @@ -75812,12 +80103,6 @@ entities: - type: Transform pos: 12.5,45.5 parent: 2 - - uid: 13065 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,42.5 - parent: 2 - uid: 13066 components: - type: Transform @@ -75928,12 +80213,6 @@ entities: rot: 3.141592653589793 rad pos: -19.5,30.5 parent: 2 - - uid: 13103 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,27.5 - parent: 2 - uid: 13104 components: - type: Transform @@ -75964,12 +80243,6 @@ entities: rot: 3.141592653589793 rad pos: -45.5,19.5 parent: 2 - - uid: 13114 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,30.5 - parent: 2 - uid: 13115 components: - type: Transform @@ -76082,12 +80355,6 @@ entities: rot: 3.141592653589793 rad pos: -29.5,44.5 parent: 2 - - uid: 13142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,38.5 - parent: 2 - uid: 13143 components: - type: Transform @@ -76410,12 +80677,6 @@ entities: - type: Transform pos: -54.5,43.5 parent: 2 - - uid: 13254 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,38.5 - parent: 2 - uid: 13255 components: - type: Transform @@ -76484,12 +80745,6 @@ entities: - type: Transform pos: -56.5,20.5 parent: 2 - - uid: 13599 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,12.5 - parent: 2 - uid: 13775 components: - type: Transform @@ -76513,12 +80768,28 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 2 + - uid: 14005 + components: + - type: Transform + pos: -47.5,43.5 + parent: 2 + - uid: 14053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,39.5 + parent: 2 - uid: 14426 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,60.5 parent: 2 + - uid: 14439 + components: + - type: Transform + pos: -14.5,28.5 + parent: 2 - uid: 14680 components: - type: Transform @@ -76599,12 +80870,6 @@ entities: - type: Transform pos: -1.5,6.5 parent: 2 - - uid: 15392 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 2 - uid: 15393 components: - type: Transform @@ -76719,6 +80984,29 @@ entities: rot: 1.5707963267948966 rad pos: -10.5,49.5 parent: 2 + - uid: 16954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,90.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -73.5,-5.5 + parent: 2 + - uid: 17337 + components: + - type: Transform + pos: -77.5,-2.5 + parent: 2 + - uid: 17562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 - proto: PoweredlightEmpty entities: - uid: 8250 @@ -76926,6 +81214,12 @@ entities: - type: Transform pos: -64.5,19.5 parent: 2 + - uid: 9675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,44.5 + parent: 2 - uid: 9699 components: - type: Transform @@ -77004,12 +81298,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,26.5 parent: 2 - - uid: 13085 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,30.5 - parent: 2 - uid: 13087 components: - type: Transform @@ -77122,12 +81410,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,38.5 parent: 2 - - uid: 13155 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,44.5 - parent: 2 - uid: 13159 components: - type: Transform @@ -77295,12 +81577,6 @@ entities: - type: Transform pos: 19.5,32.5 parent: 2 - - uid: 13309 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,35.5 - parent: 2 - uid: 13328 components: - type: Transform @@ -77482,6 +81758,11 @@ entities: - type: Transform pos: 13.5,19.5 parent: 2 + - uid: 15120 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 2 - uid: 15223 components: - type: Transform @@ -77550,172 +81831,46 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,47.5 parent: 2 -- proto: PresentRandom - entities: - - uid: 5594 - components: - - type: Transform - pos: -66.74379,12.63207 - parent: 2 - - uid: 6394 - components: - - type: Transform - pos: -21.630596,55.345287 - parent: 2 - - uid: 6395 - components: - - type: Transform - pos: -21.489971,56.345287 - parent: 2 - - uid: 6827 - components: - - type: Transform - pos: -22.864971,54.892162 - parent: 2 - - uid: 6830 - components: - - type: Transform - pos: -22.005596,54.876537 - parent: 2 - - uid: 6831 - components: - - type: Transform - pos: -23.427471,55.501537 - parent: 2 - - uid: 6832 - components: - - type: Transform - pos: -23.411846,56.345287 - parent: 2 - - uid: 7442 - components: - - type: Transform - pos: -39.450897,33.51881 - parent: 2 - - uid: 8356 - components: - - type: Transform - pos: -60.17829,9.635829 - parent: 2 - - uid: 8357 - components: - - type: Transform - pos: -60.943916,9.635829 - parent: 2 - - uid: 10340 - components: - - type: Transform - pos: -9.50252,10.634818 - parent: 2 - - uid: 15350 - components: - - type: Transform - pos: -57.292038,55.797287 - parent: 2 - - uid: 15351 - components: - - type: Transform - pos: -56.542038,56.391037 - parent: 2 - - uid: 15384 - components: - - type: Transform - pos: 3.5937185,77.014595 - parent: 2 - - uid: 15452 - components: - - type: Transform - pos: -1.5520172,72.67265 - parent: 2 - - uid: 15481 - components: - - type: Transform - pos: -57.792038,56.391037 - parent: 2 - - uid: 15483 - components: - - type: Transform - pos: -14.419653,32.468876 - parent: 2 - - uid: 15487 - components: - - type: Transform - pos: -60.498016,25.594759 - parent: 2 - - uid: 15496 - components: - - type: Transform - pos: -8.50803,4.330428 - parent: 2 - - uid: 15502 - components: - - type: Transform - pos: 7.4579153,35.724957 - parent: 2 - - uid: 15503 - components: - - type: Transform - pos: 14.83531,38.536007 - parent: 2 - - uid: 15514 - components: - - type: Transform - pos: -35.564705,45.56895 - parent: 2 - - uid: 15515 - components: - - type: Transform - pos: -35.564705,44.740826 - parent: 2 - - uid: 15516 - components: - - type: Transform - pos: -35.502205,43.9127 - parent: 2 - - uid: 15517 - components: - - type: Transform - pos: -35.502205,43.0377 - parent: 2 - - uid: 15518 + - uid: 16874 components: - type: Transform - pos: -35.502205,42.615826 - parent: 2 - - uid: 15522 - components: - - type: Transform - pos: -20.72513,72.59908 + pos: -13.5,-6.5 parent: 2 - - uid: 15523 + - uid: 16875 components: - type: Transform - pos: -15.435194,65.41911 + rot: -1.5707963267948966 rad + pos: -1.5,-2.5 parent: 2 - - uid: 15524 + - uid: 17211 components: - type: Transform - pos: -9.553135,64.59099 + rot: -1.5707963267948966 rad + pos: 26.5,37.5 parent: 2 - - uid: 15526 + - uid: 17354 components: - type: Transform - pos: -58.441887,33.360012 + pos: -61.5,-3.5 parent: 2 - - uid: 15528 + - uid: 17515 components: - type: Transform - pos: -35.29947,23.620623 + rot: -1.5707963267948966 rad + pos: 31.5,20.5 parent: 2 - - uid: 15529 + - uid: 17535 components: - type: Transform - pos: -39.315094,23.698748 + rot: -1.5707963267948966 rad + pos: -59.5,-6.5 parent: 2 - - uid: 15540 +- proto: PrefilledSyringe + entities: + - uid: 17244 components: - type: Transform - pos: -66.41477,55.61628 + pos: -56.36904,-3.5787394 parent: 2 - proto: Protolathe entities: @@ -77732,6 +81887,12 @@ entities: rot: 1.5707963267948966 rad pos: -22.5,-4.5 parent: 2 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,54.5 + parent: 2 - uid: 1028 components: - type: Transform @@ -77752,11 +81913,6 @@ entities: - type: Transform pos: -12.5,3.5 parent: 2 - - uid: 2206 - components: - - type: Transform - pos: -29.5,-7.5 - parent: 2 - uid: 2453 components: - type: Transform @@ -77787,22 +81943,12 @@ entities: rot: 3.141592653589793 rad pos: -68.5,79.5 parent: 2 - - uid: 4446 - components: - - type: Transform - pos: -28.5,38.5 - parent: 2 - uid: 4668 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,27.5 parent: 2 - - uid: 4836 - components: - - type: Transform - pos: -22.5,38.5 - parent: 2 - uid: 4841 components: - type: Transform @@ -77856,11 +82002,6 @@ entities: - type: Transform pos: 6.5,55.5 parent: 2 - - uid: 5967 - components: - - type: Transform - pos: 7.5,55.5 - parent: 2 - uid: 5972 components: - type: Transform @@ -78022,15 +82163,15 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,1.5 parent: 2 - - uid: 13794 + - uid: 14024 components: - type: Transform - pos: -24.5,42.5 + pos: 12.5,-0.5 parent: 2 - - uid: 14024 + - uid: 14057 components: - type: Transform - pos: 12.5,-0.5 + pos: -22.5,42.5 parent: 2 - uid: 14169 components: @@ -78067,11 +82208,6 @@ entities: - type: Transform pos: -61.5,72.5 parent: 2 - - uid: 14217 - components: - - type: Transform - pos: -37.5,16.5 - parent: 2 - uid: 14329 components: - type: Transform @@ -78118,6 +82254,11 @@ entities: - type: Transform pos: -26.5,62.5 parent: 2 + - uid: 15450 + components: + - type: Transform + pos: -28.5,39.5 + parent: 2 - uid: 15587 components: - type: Transform @@ -78143,16 +82284,78 @@ entities: - type: Transform pos: -65.5,50.5 parent: 2 - - uid: 16373 + - uid: 16617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,59.5 + pos: 19.5,-2.5 parent: 2 - - uid: 16617 + - uid: 16937 components: - type: Transform - pos: 19.5,-2.5 + pos: 13.5,-7.5 + parent: 2 + - uid: 17183 + components: + - type: Transform + pos: -74.5,16.5 + parent: 2 + - uid: 17187 + components: + - type: Transform + pos: -73.5,16.5 + parent: 2 + - uid: 17426 + components: + - type: Transform + pos: -84.5,72.5 + parent: 2 + - uid: 17427 + components: + - type: Transform + pos: -77.5,72.5 + parent: 2 + - uid: 17428 + components: + - type: Transform + pos: -78.5,72.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: -87.5,73.5 + parent: 2 + - uid: 17491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,1.5 + parent: 2 + - uid: 17492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,4.5 + parent: 2 + - uid: 17493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-2.5 + parent: 2 + - uid: 17547 + components: + - type: Transform + pos: 26.5,8.5 + parent: 2 + - uid: 17548 + components: + - type: Transform + pos: 26.5,7.5 + parent: 2 + - uid: 17654 + components: + - type: Transform + pos: -37.5,12.5 parent: 2 - proto: RadiationCollectorFlatpack entities: @@ -78250,14 +82453,12 @@ entities: - uid: 3493 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.296396,9.029954 + pos: -21.34766,9.038694 parent: 2 - uid: 12771 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.624521,8.670579 + pos: -21.613285,8.679319 parent: 2 - proto: RagItem entities: @@ -78743,6 +82944,11 @@ entities: parent: 2 - proto: RandomDrinkGlass entities: + - uid: 6832 + components: + - type: Transform + pos: -57.5,56.5 + parent: 2 - uid: 6928 components: - type: Transform @@ -78837,6 +83043,11 @@ entities: - type: Transform pos: 12.5,64.5 parent: 2 + - uid: 14732 + components: + - type: Transform + pos: -63.5,20.5 + parent: 2 - uid: 14748 components: - type: Transform @@ -78897,6 +83108,11 @@ entities: rot: 3.141592653589793 rad pos: 2.5,10.5 parent: 2 + - uid: 15723 + components: + - type: Transform + pos: 2.5,74.5 + parent: 2 - uid: 15929 components: - type: Transform @@ -78937,6 +83153,146 @@ entities: - type: Transform pos: -51.5,16.5 parent: 2 + - uid: 17087 + components: + - type: Transform + pos: -44.5,68.5 + parent: 2 + - uid: 17088 + components: + - type: Transform + pos: -40.5,66.5 + parent: 2 + - uid: 17369 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 17370 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 17371 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 17372 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 2 + - uid: 17373 + components: + - type: Transform + pos: -42.5,0.5 + parent: 2 + - uid: 17374 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 17375 + components: + - type: Transform + pos: -67.5,-2.5 + parent: 2 + - uid: 17376 + components: + - type: Transform + pos: -72.5,-3.5 + parent: 2 + - uid: 17377 + components: + - type: Transform + pos: -78.5,-1.5 + parent: 2 + - uid: 17378 + components: + - type: Transform + pos: -66.5,2.5 + parent: 2 + - uid: 17379 + components: + - type: Transform + pos: -72.5,22.5 + parent: 2 + - uid: 17531 + components: + - type: Transform + pos: 29.5,22.5 + parent: 2 + - uid: 17532 + components: + - type: Transform + pos: -51.5,73.5 + parent: 2 + - uid: 17533 + components: + - type: Transform + pos: -65.5,73.5 + parent: 2 + - uid: 17534 + components: + - type: Transform + pos: -71.5,74.5 + parent: 2 + - uid: 17599 + components: + - type: Transform + pos: -49.5,21.5 + parent: 2 + - uid: 17600 + components: + - type: Transform + pos: -46.5,27.5 + parent: 2 + - uid: 17601 + components: + - type: Transform + pos: -49.5,34.5 + parent: 2 + - uid: 17602 + components: + - type: Transform + pos: -60.5,34.5 + parent: 2 + - uid: 17603 + components: + - type: Transform + pos: -53.5,37.5 + parent: 2 + - uid: 17617 + components: + - type: Transform + pos: -1.5,58.5 + parent: 2 + - uid: 17618 + components: + - type: Transform + pos: 2.5,70.5 + parent: 2 + - uid: 17619 + components: + - type: Transform + pos: 4.5,59.5 + parent: 2 + - uid: 17620 + components: + - type: Transform + pos: -7.5,71.5 + parent: 2 + - uid: 17621 + components: + - type: Transform + pos: 4.5,79.5 + parent: 2 + - uid: 17622 + components: + - type: Transform + pos: 0.5,77.5 + parent: 2 - proto: RandomPosterContraband entities: - uid: 6989 @@ -78956,6 +83312,12 @@ entities: - type: Transform pos: -47.5,10.5 parent: 2 + - uid: 12280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -72.5,7.5 + parent: 2 - uid: 14121 components: - type: Transform @@ -79018,6 +83380,16 @@ entities: - type: Transform pos: -76.5,1.5 parent: 2 + - uid: 17412 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 + - uid: 17413 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 - proto: RandomPosterLegit entities: - uid: 12780 @@ -79026,6 +83398,11 @@ entities: rot: 3.141592653589793 rad pos: -67.5,42.5 parent: 2 + - uid: 13085 + components: + - type: Transform + pos: -19.5,61.5 + parent: 2 - uid: 13757 components: - type: Transform @@ -79061,11 +83438,6 @@ entities: - type: Transform pos: -7.5,65.5 parent: 2 - - uid: 14716 - components: - - type: Transform - pos: 15.5,41.5 - parent: 2 - uid: 14717 components: - type: Transform @@ -79100,12 +83472,6 @@ entities: rot: 3.141592653589793 rad pos: -6.5,22.5 parent: 2 - - uid: 14745 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,22.5 - parent: 2 - uid: 14746 components: - type: Transform @@ -79178,6 +83544,81 @@ entities: rot: 3.141592653589793 rad pos: -49.5,37.5 parent: 2 + - uid: 15388 + components: + - type: Transform + pos: -19.5,22.5 + parent: 2 + - uid: 17094 + components: + - type: Transform + pos: 16.5,41.5 + parent: 2 + - uid: 17604 + components: + - type: Transform + pos: -42.5,42.5 + parent: 2 + - uid: 17605 + components: + - type: Transform + pos: -52.5,53.5 + parent: 2 + - uid: 17606 + components: + - type: Transform + pos: -54.5,51.5 + parent: 2 + - uid: 17607 + components: + - type: Transform + pos: -64.5,56.5 + parent: 2 + - uid: 17608 + components: + - type: Transform + pos: -52.5,64.5 + parent: 2 + - uid: 17609 + components: + - type: Transform + pos: -70.5,67.5 + parent: 2 + - uid: 17610 + components: + - type: Transform + pos: -75.5,71.5 + parent: 2 + - uid: 17611 + components: + - type: Transform + pos: -3.5,51.5 + parent: 2 + - uid: 17612 + components: + - type: Transform + pos: -0.5,44.5 + parent: 2 + - uid: 17613 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 17614 + components: + - type: Transform + pos: -5.5,18.5 + parent: 2 + - uid: 17615 + components: + - type: Transform + pos: -20.5,18.5 + parent: 2 + - uid: 17616 + components: + - type: Transform + pos: 3.5,53.5 + parent: 2 - proto: RandomSoap entities: - uid: 9816 @@ -79195,8 +83636,19 @@ entities: - type: Transform pos: -9.5,66.5 parent: 2 + - uid: 16950 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 - proto: RandomSpawner entities: + - uid: 492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -78.5,19.5 + parent: 2 - uid: 3912 components: - type: Transform @@ -79547,11 +83999,6 @@ entities: - type: Transform pos: -68.5,55.5 parent: 2 - - uid: 15758 - components: - - type: Transform - pos: -66.5,60.5 - parent: 2 - uid: 15759 components: - type: Transform @@ -79653,6 +84100,164 @@ entities: - type: Transform pos: 18.5,-10.5 parent: 2 + - uid: 17117 + components: + - type: Transform + pos: -77.5,19.5 + parent: 2 + - uid: 17118 + components: + - type: Transform + pos: -75.5,19.5 + parent: 2 + - uid: 17119 + components: + - type: Transform + pos: -75.5,21.5 + parent: 2 + - uid: 17120 + components: + - type: Transform + pos: -77.5,22.5 + parent: 2 + - uid: 17121 + components: + - type: Transform + pos: -74.5,23.5 + parent: 2 + - uid: 17122 + components: + - type: Transform + pos: -73.5,21.5 + parent: 2 + - uid: 17123 + components: + - type: Transform + pos: -74.5,20.5 + parent: 2 + - uid: 17124 + components: + - type: Transform + pos: -77.5,21.5 + parent: 2 + - uid: 17125 + components: + - type: Transform + pos: -78.5,20.5 + parent: 2 + - uid: 17126 + components: + - type: Transform + pos: -74.5,18.5 + parent: 2 + - uid: 17127 + components: + - type: Transform + pos: -77.5,18.5 + parent: 2 + - uid: 17128 + components: + - type: Transform + pos: -76.5,22.5 + parent: 2 + - uid: 17141 + components: + - type: Transform + pos: -76.5,19.5 + parent: 2 + - uid: 17144 + components: + - type: Transform + pos: -74.5,22.5 + parent: 2 + - uid: 17145 + components: + - type: Transform + pos: -76.5,23.5 + parent: 2 + - uid: 17146 + components: + - type: Transform + pos: -73.5,19.5 + parent: 2 + - uid: 17147 + components: + - type: Transform + pos: -75.5,20.5 + parent: 2 + - uid: 17359 + components: + - type: Transform + pos: -62.5,-3.5 + parent: 2 + - uid: 17360 + components: + - type: Transform + pos: -60.5,-5.5 + parent: 2 + - uid: 17361 + components: + - type: Transform + pos: -59.5,-3.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 + - uid: 17363 + components: + - type: Transform + pos: -77.5,-2.5 + parent: 2 + - uid: 17364 + components: + - type: Transform + pos: -69.5,-3.5 + parent: 2 + - uid: 17365 + components: + - type: Transform + pos: -69.5,22.5 + parent: 2 + - uid: 17366 + components: + - type: Transform + pos: -70.5,25.5 + parent: 2 + - uid: 17436 + components: + - type: Transform + pos: -85.5,73.5 + parent: 2 + - uid: 17437 + components: + - type: Transform + pos: -82.5,72.5 + parent: 2 + - uid: 17438 + components: + - type: Transform + pos: -76.5,73.5 + parent: 2 + - uid: 17563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,19.5 + parent: 2 + - uid: 17566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,22.5 + parent: 2 + - uid: 17567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,20.5 + parent: 2 - proto: RandomSpawner100 entities: - uid: 6085 @@ -79983,11 +84588,6 @@ entities: - type: Transform pos: -4.5,32.5 parent: 2 - - uid: 15665 - components: - - type: Transform - pos: -27.5,39.5 - parent: 2 - uid: 15666 components: - type: Transform @@ -80003,11 +84603,6 @@ entities: - type: Transform pos: -38.5,50.5 parent: 2 - - uid: 15669 - components: - - type: Transform - pos: -36.5,44.5 - parent: 2 - uid: 15670 components: - type: Transform @@ -80108,6 +84703,16 @@ entities: - type: Transform pos: -61.5,21.5 parent: 2 + - uid: 16866 + components: + - type: Transform + pos: -27.5,40.5 + parent: 2 + - uid: 17598 + components: + - type: Transform + pos: -40.5,43.5 + parent: 2 - proto: RandomVending entities: - uid: 2772 @@ -80135,6 +84740,11 @@ entities: - type: Transform pos: -58.5,25.5 parent: 2 + - uid: 9671 + components: + - type: Transform + pos: -2.5,57.5 + parent: 2 - uid: 9683 components: - type: Transform @@ -80160,11 +84770,6 @@ entities: - type: Transform pos: 7.5,50.5 parent: 2 - - uid: 15243 - components: - - type: Transform - pos: -2.5,55.5 - parent: 2 - uid: 15747 components: - type: Transform @@ -80197,20 +84802,10 @@ entities: - type: Transform pos: -14.5,72.5 parent: 2 - - uid: 9669 - components: - - type: Transform - pos: -54.5,61.5 - parent: 2 - uid: 9673 components: - type: Transform - pos: 0.5,44.5 - parent: 2 - - uid: 9676 - components: - - type: Transform - pos: -23.5,19.5 + pos: -55.5,52.5 parent: 2 - uid: 9680 components: @@ -80222,10 +84817,15 @@ entities: - type: Transform pos: -68.5,40.5 parent: 2 - - uid: 14062 + - uid: 11561 components: - type: Transform - pos: -43.5,28.5 + pos: -0.5,45.5 + parent: 2 + - uid: 15060 + components: + - type: Transform + pos: -9.5,22.5 parent: 2 - proto: RandomVendingSnacks entities: @@ -80259,31 +84859,26 @@ entities: - type: Transform pos: -54.5,60.5 parent: 2 - - uid: 9671 - components: - - type: Transform - pos: -43.5,27.5 - parent: 2 - - uid: 9675 - components: - - type: Transform - pos: -24.5,19.5 - parent: 2 - uid: 9681 components: - type: Transform pos: -73.5,61.5 parent: 2 - - uid: 12118 + - uid: 15059 components: - type: Transform - pos: 0.5,46.5 + pos: -10.5,22.5 parent: 2 - uid: 15282 components: - type: Transform pos: -2.5,6.5 parent: 2 + - uid: 15528 + components: + - type: Transform + pos: -0.5,46.5 + parent: 2 - proto: RCD entities: - uid: 6329 @@ -80315,6 +84910,18 @@ entities: - type: Transform pos: -58.531708,-1.3598032 parent: 2 +- proto: ReagentContainerSugar + entities: + - uid: 17319 + components: + - type: Transform + pos: -78.71277,-5.078966 + parent: 2 + - uid: 17320 + components: + - type: Transform + pos: -78.32214,-5.047716 + parent: 2 - proto: Recycler entities: - uid: 6451 @@ -80351,6 +84958,21 @@ entities: - type: Transform pos: -62.5,-1.5 parent: 2 + - uid: 17189 + components: + - type: Transform + pos: -65.5,18.5 + parent: 2 + - uid: 17432 + components: + - type: Transform + pos: -75.5,73.5 + parent: 2 + - uid: 17433 + components: + - type: Transform + pos: -81.5,72.5 + parent: 2 - proto: ReinforcedPlasmaWindow entities: - uid: 600 @@ -80651,6 +85273,11 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,14.5 parent: 2 + - uid: 190 + components: + - type: Transform + pos: -73.5,34.5 + parent: 2 - uid: 304 components: - type: Transform @@ -80840,6 +85467,12 @@ entities: rot: 3.141592653589793 rad pos: 11.5,22.5 parent: 2 + - uid: 1505 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,56.5 + parent: 2 - uid: 1574 components: - type: Transform @@ -80868,16 +85501,6 @@ entities: - type: Transform pos: -37.5,27.5 parent: 2 - - uid: 2936 - components: - - type: Transform - pos: 21.5,1.5 - parent: 2 - - uid: 2941 - components: - - type: Transform - pos: 21.5,2.5 - parent: 2 - uid: 3001 components: - type: Transform @@ -80888,12 +85511,6 @@ entities: - type: Transform pos: -25.5,60.5 parent: 2 - - uid: 3121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,2.5 - parent: 2 - uid: 3542 components: - type: Transform @@ -80904,12 +85521,6 @@ entities: - type: Transform pos: 27.5,50.5 parent: 2 - - uid: 3657 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,30.5 - parent: 2 - uid: 3672 components: - type: Transform @@ -80964,6 +85575,12 @@ entities: rot: 1.5707963267948966 rad pos: 34.5,27.5 parent: 2 + - uid: 3988 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 - uid: 4254 components: - type: Transform @@ -81407,12 +86024,6 @@ entities: - type: Transform pos: 13.5,58.5 parent: 2 - - uid: 6112 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,14.5 - parent: 2 - uid: 6188 components: - type: Transform @@ -81435,11 +86046,6 @@ entities: - type: Transform pos: -25.5,62.5 parent: 2 - - uid: 6587 - components: - - type: Transform - pos: 21.5,0.5 - parent: 2 - uid: 6723 components: - type: Transform @@ -81500,11 +86106,6 @@ entities: - type: Transform pos: -36.5,60.5 parent: 2 - - uid: 6898 - components: - - type: Transform - pos: -76.5,-1.5 - parent: 2 - uid: 7007 components: - type: Transform @@ -81541,36 +86142,6 @@ entities: rot: 3.141592653589793 rad pos: 17.5,50.5 parent: 2 - - uid: 7019 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,31.5 - parent: 2 - - uid: 7020 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,33.5 - parent: 2 - - uid: 7021 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,32.5 - parent: 2 - - uid: 7022 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,36.5 - parent: 2 - - uid: 7023 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,37.5 - parent: 2 - uid: 7056 components: - type: Transform @@ -81751,56 +86322,11 @@ entities: - type: Transform pos: -63.5,79.5 parent: 2 - - uid: 7281 - components: - - type: Transform - pos: -67.5,24.5 - parent: 2 - - uid: 7316 - components: - - type: Transform - pos: -67.5,26.5 - parent: 2 - - uid: 7356 - components: - - type: Transform - pos: -67.5,23.5 - parent: 2 - - uid: 7357 - components: - - type: Transform - pos: -67.5,25.5 - parent: 2 - - uid: 7359 - components: - - type: Transform - pos: -69.5,20.5 - parent: 2 - - uid: 7360 - components: - - type: Transform - pos: -70.5,20.5 - parent: 2 - - uid: 7361 - components: - - type: Transform - pos: -73.5,16.5 - parent: 2 - uid: 7364 components: - type: Transform pos: -63.5,77.5 parent: 2 - - uid: 7365 - components: - - type: Transform - pos: -74.5,16.5 - parent: 2 - - uid: 7366 - components: - - type: Transform - pos: -75.5,16.5 - parent: 2 - uid: 7367 components: - type: Transform @@ -81836,11 +86362,6 @@ entities: - type: Transform pos: -82.5,7.5 parent: 2 - - uid: 7377 - components: - - type: Transform - pos: -77.5,-1.5 - parent: 2 - uid: 7378 components: - type: Transform @@ -81856,66 +86377,6 @@ entities: - type: Transform pos: -82.5,5.5 parent: 2 - - uid: 7382 - components: - - type: Transform - pos: -78.5,-1.5 - parent: 2 - - uid: 7383 - components: - - type: Transform - pos: -75.5,-1.5 - parent: 2 - - uid: 7384 - components: - - type: Transform - pos: -70.5,-2.5 - parent: 2 - - uid: 7385 - components: - - type: Transform - pos: -68.5,-2.5 - parent: 2 - - uid: 7386 - components: - - type: Transform - pos: -69.5,-2.5 - parent: 2 - - uid: 7387 - components: - - type: Transform - pos: -65.5,-2.5 - parent: 2 - - uid: 7388 - components: - - type: Transform - pos: -63.5,-2.5 - parent: 2 - - uid: 7389 - components: - - type: Transform - pos: -64.5,-2.5 - parent: 2 - - uid: 7390 - components: - - type: Transform - pos: -59.5,-2.5 - parent: 2 - - uid: 7391 - components: - - type: Transform - pos: -58.5,-2.5 - parent: 2 - - uid: 7392 - components: - - type: Transform - pos: -57.5,-2.5 - parent: 2 - - uid: 7393 - components: - - type: Transform - pos: -56.5,-2.5 - parent: 2 - uid: 7395 components: - type: Transform @@ -82064,11 +86525,6 @@ entities: - type: Transform pos: -9.5,2.5 parent: 2 - - uid: 11358 - components: - - type: Transform - pos: 21.5,3.5 - parent: 2 - uid: 11839 components: - type: Transform @@ -82085,6 +86541,12 @@ entities: - type: Transform pos: -6.5,26.5 parent: 2 + - uid: 12469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,58.5 + parent: 2 - uid: 12625 components: - type: Transform @@ -82272,6 +86734,11 @@ entities: - type: Transform pos: -30.5,-9.5 parent: 2 + - uid: 13462 + components: + - type: Transform + pos: -72.5,34.5 + parent: 2 - uid: 13522 components: - type: Transform @@ -82347,51 +86814,6 @@ entities: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 14434 - components: - - type: Transform - pos: 24.5,7.5 - parent: 2 - - uid: 14435 - components: - - type: Transform - pos: 24.5,9.5 - parent: 2 - - uid: 14436 - components: - - type: Transform - pos: 24.5,10.5 - parent: 2 - - uid: 14437 - components: - - type: Transform - pos: 24.5,8.5 - parent: 2 - - uid: 14438 - components: - - type: Transform - pos: 25.5,14.5 - parent: 2 - - uid: 14439 - components: - - type: Transform - pos: 25.5,16.5 - parent: 2 - - uid: 14440 - components: - - type: Transform - pos: 25.5,17.5 - parent: 2 - - uid: 14441 - components: - - type: Transform - pos: 25.5,18.5 - parent: 2 - - uid: 14442 - components: - - type: Transform - pos: 25.5,15.5 - parent: 2 - uid: 14543 components: - type: Transform @@ -82402,11 +86824,6 @@ entities: - type: Transform pos: -26.5,-9.5 parent: 2 - - uid: 14835 - components: - - type: Transform - pos: 20.5,-5.5 - parent: 2 - uid: 15422 components: - type: Transform @@ -82532,16 +86949,6 @@ entities: - type: Transform pos: 23.5,-10.5 parent: 2 - - uid: 15560 - components: - - type: Transform - pos: 20.5,-4.5 - parent: 2 - - uid: 15584 - components: - - type: Transform - pos: 20.5,-3.5 - parent: 2 - uid: 15748 components: - type: Transform @@ -82741,6 +87148,334 @@ entities: - type: Transform pos: -30.5,0.5 parent: 2 + - uid: 16889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,56.5 + parent: 2 + - uid: 16890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,54.5 + parent: 2 + - uid: 16891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,52.5 + parent: 2 + - uid: 17029 + components: + - type: Transform + pos: 29.5,16.5 + parent: 2 + - uid: 17034 + components: + - type: Transform + pos: 32.5,33.5 + parent: 2 + - uid: 17035 + components: + - type: Transform + pos: 32.5,34.5 + parent: 2 + - uid: 17036 + components: + - type: Transform + pos: 32.5,35.5 + parent: 2 + - uid: 17037 + components: + - type: Transform + pos: 32.5,18.5 + parent: 2 + - uid: 17038 + components: + - type: Transform + pos: 32.5,19.5 + parent: 2 + - uid: 17039 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 17040 + components: + - type: Transform + pos: 28.5,14.5 + parent: 2 + - uid: 17041 + components: + - type: Transform + pos: 28.5,13.5 + parent: 2 + - uid: 17042 + components: + - type: Transform + pos: 28.5,12.5 + parent: 2 + - uid: 17043 + components: + - type: Transform + pos: 27.5,8.5 + parent: 2 + - uid: 17044 + components: + - type: Transform + pos: 27.5,7.5 + parent: 2 + - uid: 17046 + components: + - type: Transform + pos: 27.5,6.5 + parent: 2 + - uid: 17047 + components: + - type: Transform + pos: -36.5,0.5 + parent: 2 + - uid: 17052 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 2 + - uid: 17053 + components: + - type: Transform + pos: -55.5,-3.5 + parent: 2 + - uid: 17054 + components: + - type: Transform + pos: -38.5,-2.5 + parent: 2 + - uid: 17055 + components: + - type: Transform + pos: -39.5,-2.5 + parent: 2 + - uid: 17056 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 17057 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 + - uid: 17058 + components: + - type: Transform + pos: -61.5,-7.5 + parent: 2 + - uid: 17059 + components: + - type: Transform + pos: -62.5,-7.5 + parent: 2 + - uid: 17060 + components: + - type: Transform + pos: -67.5,-7.5 + parent: 2 + - uid: 17061 + components: + - type: Transform + pos: -69.5,-7.5 + parent: 2 + - uid: 17062 + components: + - type: Transform + pos: -68.5,-7.5 + parent: 2 + - uid: 17063 + components: + - type: Transform + pos: -74.5,-6.5 + parent: 2 + - uid: 17064 + components: + - type: Transform + pos: -75.5,-6.5 + parent: 2 + - uid: 17065 + components: + - type: Transform + pos: -76.5,-6.5 + parent: 2 + - uid: 17066 + components: + - type: Transform + pos: -77.5,-6.5 + parent: 2 + - uid: 17067 + components: + - type: Transform + pos: -79.5,-4.5 + parent: 2 + - uid: 17068 + components: + - type: Transform + pos: -79.5,-3.5 + parent: 2 + - uid: 17069 + components: + - type: Transform + pos: -79.5,20.5 + parent: 2 + - uid: 17070 + components: + - type: Transform + pos: -79.5,21.5 + parent: 2 + - uid: 17071 + components: + - type: Transform + pos: -79.5,22.5 + parent: 2 + - uid: 17072 + components: + - type: Transform + pos: -77.5,24.5 + parent: 2 + - uid: 17073 + components: + - type: Transform + pos: -76.5,24.5 + parent: 2 + - uid: 17074 + components: + - type: Transform + pos: -75.5,24.5 + parent: 2 + - uid: 17075 + components: + - type: Transform + pos: -70.5,27.5 + parent: 2 + - uid: 17076 + components: + - type: Transform + pos: -69.5,27.5 + parent: 2 + - uid: 17077 + components: + - type: Transform + pos: -86.5,74.5 + parent: 2 + - uid: 17078 + components: + - type: Transform + pos: -85.5,74.5 + parent: 2 + - uid: 17079 + components: + - type: Transform + pos: -84.5,74.5 + parent: 2 + - uid: 17080 + components: + - type: Transform + pos: -82.5,74.5 + parent: 2 + - uid: 17081 + components: + - type: Transform + pos: -81.5,74.5 + parent: 2 + - uid: 17082 + components: + - type: Transform + pos: -80.5,74.5 + parent: 2 + - uid: 17083 + components: + - type: Transform + pos: -79.5,74.5 + parent: 2 + - uid: 17084 + components: + - type: Transform + pos: -73.5,77.5 + parent: 2 + - uid: 17085 + components: + - type: Transform + pos: -73.5,76.5 + parent: 2 + - uid: 17086 + components: + - type: Transform + pos: -71.5,79.5 + parent: 2 + - uid: 17099 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,11.5 + parent: 2 + - uid: 17100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,13.5 + parent: 2 + - uid: 17104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,29.5 + parent: 2 + - uid: 17105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,30.5 + parent: 2 + - uid: 17267 + components: + - type: Transform + pos: 27.5,-1.5 + parent: 2 + - uid: 17268 + components: + - type: Transform + pos: 27.5,-0.5 + parent: 2 + - uid: 17269 + components: + - type: Transform + pos: 27.5,0.5 + parent: 2 + - uid: 17270 + components: + - type: Transform + pos: 27.5,1.5 + parent: 2 + - uid: 17570 + components: + - type: Transform + pos: -22.5,18.5 + parent: 2 + - uid: 17571 + components: + - type: Transform + pos: -23.5,18.5 + parent: 2 + - uid: 17572 + components: + - type: Transform + pos: -24.5,18.5 + parent: 2 + - uid: 17579 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 - proto: ResearchAndDevelopmentServer entities: - uid: 1410 @@ -82845,7 +87580,7 @@ entities: - uid: 13262 components: - type: Transform - pos: -34.61625,62.530506 + pos: -34.607307,62.504105 parent: 2 - proto: RubberStampGreytide entities: @@ -82904,10 +87639,10 @@ entities: parent: 2 - proto: SecurityTechFab entities: - - uid: 4840 + - uid: 404 components: - type: Transform - pos: -22.5,42.5 + pos: -24.5,42.5 parent: 2 - proto: SeedExtractor entities: @@ -82988,6 +87723,64 @@ entities: rot: -1.5707963267948966 rad pos: -4.257722,81.78492 parent: 2 + - uid: 17155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.796074,20.006393 + parent: 2 + - uid: 17156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.53045,22.272018 + parent: 2 + - uid: 17157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.84295,23.443893 + parent: 2 + - uid: 17158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -73.53045,22.209518 + parent: 2 + - uid: 17357 + components: + - type: Transform + pos: -62.654587,-5.3684196 + parent: 2 + - uid: 17358 + components: + - type: Transform + pos: -57.498337,-3.9934194 + parent: 2 + - uid: 17439 + components: + - type: Transform + pos: -84.22519,73.54059 + parent: 2 + - uid: 17440 + components: + - type: Transform + pos: -79.365814,72.25934 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 17153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.8117,18.600143 + parent: 2 + - uid: 17154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -78.71795,21.709518 + parent: 2 - proto: SheetGlass entities: - uid: 1809 @@ -83003,7 +87796,7 @@ entities: - uid: 4845 components: - type: Transform - pos: -24.369856,42.532604 + pos: -22.49318,42.578167 parent: 2 - uid: 5815 components: @@ -83030,6 +87823,15 @@ entities: - type: Transform pos: -35.630722,16.88498 parent: 2 +- proto: SheetGlass10 + entities: + - uid: 5023 + components: + - type: Transform + parent: 4723 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SheetPlasma entities: - uid: 200 @@ -83054,7 +87856,7 @@ entities: - uid: 5969 components: - type: Transform - pos: 7.340106,55.495155 + pos: 6.329318,54.609684 parent: 2 - uid: 6652 components: @@ -83071,7 +87873,7 @@ entities: - uid: 4846 components: - type: Transform - pos: -24.338606,42.595104 + pos: -22.61818,42.656292 parent: 2 - uid: 5657 components: @@ -83110,6 +87912,12 @@ entities: - type: Transform pos: 1.8698368,6.61458 parent: 2 + - uid: 3122 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.6705589,6.601947 + parent: 2 - uid: 3760 components: - type: Transform @@ -83123,7 +87931,7 @@ entities: - uid: 4844 components: - type: Transform - pos: -24.651106,42.57948 + pos: -22.49318,42.703167 parent: 2 - uid: 5812 components: @@ -83138,7 +87946,7 @@ entities: - uid: 5970 components: - type: Transform - pos: 7.746356,55.557655 + pos: 6.704318,54.734684 parent: 2 - uid: 6122 components: @@ -83155,6 +87963,35 @@ entities: - type: Transform pos: 1.4167118,6.61458 parent: 2 + - uid: 16935 + components: + - type: Transform + pos: 13.4516945,-7.4342813 + parent: 2 + - uid: 16938 + components: + - type: Transform + pos: -12.597899,2.5793796 + parent: 2 + - uid: 16939 + components: + - type: Transform + pos: -12.301024,2.4231296 + parent: 2 + - uid: 16965 + components: + - type: Transform + pos: 6.751193,54.65656 + parent: 2 +- proto: SheetSteel10 + entities: + - uid: 4762 + components: + - type: Transform + parent: 4723 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SheetUranium entities: - uid: 201 @@ -83174,6 +88011,13 @@ entities: - type: Transform pos: -39.5,34.5 parent: 2 +- proto: Shiv + entities: + - uid: 17415 + components: + - type: Transform + pos: -68.5257,-5.432662 + parent: 2 - proto: ShotGunCabinetOpen entities: - uid: 9397 @@ -83187,13 +88031,6 @@ entities: - - Bar - - Command - - Security -- proto: Shovel - entities: - - uid: 6011 - components: - - type: Transform - pos: 7.3355055,59.509823 - parent: 2 - proto: ShowcaseRobot entities: - uid: 7472 @@ -83302,6 +88139,60 @@ entities: rot: 3.141592653589793 rad pos: -15.5,51.5 parent: 2 + - uid: 16955 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,51.5 + parent: 2 + - uid: 16956 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,51.5 + parent: 2 + - uid: 16957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,51.5 + parent: 2 + - uid: 16958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,50.5 + parent: 2 + - uid: 16959 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,49.5 + parent: 2 + - uid: 16960 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,48.5 + parent: 2 + - uid: 16961 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,47.5 + parent: 2 + - uid: 16962 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,46.5 + parent: 2 + - uid: 16963 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,45.5 + parent: 2 - proto: ShuttersWindowOpen entities: - uid: 3872 @@ -83388,6 +88279,8 @@ entities: rot: -1.5707963267948966 rad pos: -53.5,24.5 parent: 2 + - type: SignalSwitch + state: True - type: DeviceLinkSource linkedPorts: 13874: @@ -83528,6 +88421,12 @@ entities: parent: 2 - proto: SignChem entities: + - uid: 1506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,33.5 + parent: 2 - uid: 5186 components: - type: Transform @@ -83561,6 +88460,13 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,18.5 parent: 2 +- proto: SignDirectionalChemistry + entities: + - uid: 17237 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 - proto: SignDirectionalDorms entities: - uid: 1760 @@ -83636,6 +88542,12 @@ entities: parent: 2 - proto: SignDirectionalHop entities: + - uid: 2339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,59.5 + parent: 2 - uid: 12410 components: - type: Transform @@ -83698,6 +88610,12 @@ entities: parent: 2 - proto: SignDirectionalJanitor entities: + - uid: 2857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.50473,18.705835 + parent: 2 - uid: 2973 components: - type: Transform @@ -83716,6 +88634,18 @@ entities: rot: 1.5707963267948966 rad pos: -69.780716,61.264126 parent: 2 + - uid: 17645 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.48326,37.919735 + parent: 2 + - uid: 17646 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.495605,53.296642 + parent: 2 - proto: SignDirectionalMed entities: - uid: 14935 @@ -84135,11 +89065,11 @@ entities: rot: -1.5707963267948966 rad pos: -16.5,18.5 parent: 2 - - uid: 1249 + - uid: 16904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 + rot: 3.141592653589793 rad + pos: -9.5,18.5 parent: 2 - proto: SignEscapePods entities: @@ -84454,11 +89384,11 @@ entities: parent: 2 - proto: SignRND entities: - - uid: 12517 + - uid: 16902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,37.5 + rot: 3.141592653589793 rad + pos: 6.5,35.5 parent: 2 - proto: SignRobo entities: @@ -84474,11 +89404,10 @@ entities: - type: Transform pos: 5.5,54.5 parent: 2 - - uid: 6092 + - uid: 7019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,66.5 + pos: 11.5,66.5 parent: 2 - proto: SignScience entities: @@ -84658,6 +89587,7 @@ entities: - uid: 5892 components: - type: MetaData + desc: Don't worry officer, he consented to being borged name: Gibinator 5000 - type: Transform rot: 1.5707963267948966 rad @@ -84762,6 +89692,15 @@ entities: - type: Transform pos: -53.899773,72.64173 parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 17178 + components: + - type: Transform + parent: 17175 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: SodaDispenser entities: - uid: 4628 @@ -84776,19 +89715,17 @@ entities: rot: 1.5707963267948966 rad pos: -63.5,47.5 parent: 2 - - uid: 16596 + - uid: 15526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 + rot: 3.141592653589793 rad + pos: -80.5,2.5 parent: 2 -- proto: SodaDispenserEmpty - entities: - - uid: 15723 + - uid: 16596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,2.5 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 parent: 2 - proto: SolarPanel entities: @@ -84862,16 +89799,6 @@ entities: - type: Transform pos: -34.5,-18.5 parent: 2 - - uid: 40 - components: - - type: Transform - pos: -26.5,-20.5 - parent: 2 - - uid: 41 - components: - - type: Transform - pos: -26.5,-18.5 - parent: 2 - uid: 43 components: - type: Transform @@ -84967,11 +89894,6 @@ entities: - type: Transform pos: -26.5,-16.5 parent: 2 - - uid: 269 - components: - - type: Transform - pos: -25.5,-20.5 - parent: 2 - uid: 270 components: - type: Transform @@ -85027,11 +89949,6 @@ entities: - type: Transform pos: -32.5,-14.5 parent: 2 - - uid: 382 - components: - - type: Transform - pos: -24.5,-20.5 - parent: 2 - uid: 383 components: - type: Transform @@ -85047,31 +89964,11 @@ entities: - type: Transform pos: -23.5,-16.5 parent: 2 - - uid: 389 - components: - - type: Transform - pos: -24.5,-18.5 - parent: 2 - - uid: 396 - components: - - type: Transform - pos: -25.5,-18.5 - parent: 2 - - uid: 401 - components: - - type: Transform - pos: -23.5,-20.5 - parent: 2 - uid: 402 components: - type: Transform pos: -25.5,-16.5 parent: 2 - - uid: 404 - components: - - type: Transform - pos: -23.5,-18.5 - parent: 2 - uid: 406 components: - type: Transform @@ -86545,7 +91442,7 @@ entities: - uid: 6140 components: - type: Transform - pos: -8.43362,72.84677 + pos: -8.446373,72.85246 parent: 2 - uid: 6141 components: @@ -86581,6 +91478,45 @@ entities: - type: Transform pos: 19.5,47.5 parent: 2 +- proto: SpawnMobBee + entities: + - uid: 6845 + components: + - type: Transform + pos: -68.5,1.5 + parent: 2 + - uid: 6846 + components: + - type: Transform + pos: -71.5,-1.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 6831 + components: + - type: Transform + pos: -30.5,55.5 + parent: 2 + - uid: 6840 + components: + - type: Transform + pos: -71.5,2.5 + parent: 2 + - uid: 6847 + components: + - type: Transform + pos: -21.5,55.5 + parent: 2 + - uid: 6848 + components: + - type: Transform + pos: -13.5,56.5 + parent: 2 + - uid: 6849 + components: + - type: Transform + pos: -69.5,-0.5 + parent: 2 - proto: SpawnMobCatException entities: - uid: 5590 @@ -86646,6 +91582,13 @@ entities: rot: 3.141592653589793 rad pos: -10.5,68.5 parent: 2 +- proto: SpawnMobFrog + entities: + - uid: 6844 + components: + - type: Transform + pos: -68.5,2.5 + parent: 2 - proto: SpawnMobGoat entities: - uid: 4552 @@ -86658,6 +91601,11 @@ entities: - type: Transform pos: -57.5,39.5 parent: 2 + - uid: 17414 + components: + - type: Transform + pos: -69.5,-6.5 + parent: 2 - proto: SpawnMobKangarooWillow entities: - uid: 2328 @@ -86665,6 +91613,13 @@ entities: - type: Transform pos: -44.5,58.5 parent: 2 +- proto: SpawnMobLizard + entities: + - uid: 17250 + components: + - type: Transform + pos: -69.5,2.5 + parent: 2 - proto: SpawnMobMcGriff entities: - uid: 4919 @@ -86706,13 +91661,6 @@ entities: - type: Transform pos: -26.5,5.5 parent: 2 -- proto: SpawnMobPenguin - entities: - - uid: 15928 - components: - - type: Transform - pos: -69.5,-0.5 - parent: 2 - proto: SpawnMobPossumMorty entities: - uid: 4367 @@ -87016,10 +91964,10 @@ entities: parent: 2 - proto: SpawnPointObserver entities: - - uid: 4542 + - uid: 17644 components: - type: Transform - pos: -22.5,56.5 + pos: -22.5,53.5 parent: 2 - proto: SpawnPointParamedic entities: @@ -87327,6 +92275,14 @@ entities: - type: Transform pos: -24.5,34.5 parent: 2 +- proto: StationAiUploadCircuitboard + entities: + - uid: 16898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.150034,74.5072 + parent: 2 - proto: StationAiUploadComputer entities: - uid: 5295 @@ -87577,6 +92533,30 @@ entities: - type: Transform pos: -77.5,5.5 parent: 2 + - uid: 17333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-3.5 + parent: 2 + - uid: 17334 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-2.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-5.5 + parent: 2 + - uid: 17338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-4.5 + parent: 2 - proto: StorageCanister entities: - uid: 1394 @@ -87609,6 +92589,23 @@ entities: - type: Transform pos: 16.5,5.5 parent: 2 +- proto: StrangePill + entities: + - uid: 17405 + components: + - type: Transform + pos: -63.287155,-4.7431192 + parent: 2 + - uid: 17406 + components: + - type: Transform + pos: -63.519302,-4.8978853 + parent: 2 + - uid: 17407 + components: + - type: Transform + pos: -63.39859,-4.626313 + parent: 2 - proto: Stunbaton entities: - uid: 5161 @@ -87638,14 +92635,6 @@ entities: - type: Transform pos: -13.5,5.5 parent: 2 - - uid: 1978 - components: - - type: Transform - anchored: False - pos: -13.5,5.5 - parent: 2 - - type: Physics - bodyType: Dynamic - uid: 1979 components: - type: Transform @@ -87823,10 +92812,10 @@ entities: parent: 2 - proto: SuitStorageEVAPrisoner entities: - - uid: 5089 + - uid: 9676 components: - type: Transform - pos: -1.5,44.5 + pos: -3.5,44.5 parent: 2 - uid: 10743 components: @@ -87840,6 +92829,31 @@ entities: - type: Transform pos: -34.5,38.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: + - 5938 - proto: SuitStorageRD entities: - uid: 5868 @@ -87866,33 +92880,168 @@ entities: parent: 2 - proto: SuitStorageSec entities: - - uid: 4510 - components: - - type: Transform - pos: -29.5,38.5 - parent: 2 - uid: 4515 components: - type: Transform pos: -29.5,41.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: + - 5967 - uid: 4516 components: - type: Transform pos: -29.5,40.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: + - 5978 - uid: 4538 components: - type: Transform pos: -29.5,39.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: + - 6011 - uid: 4837 components: - type: Transform pos: -29.5,42.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: + - 6017 + - uid: 15581 + components: + - type: Transform + pos: -28.5,42.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: + - 10109 - proto: SurveillanceCameraCommand entities: + - uid: 5575 + components: + - type: Transform + pos: -16.5,72.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Bridge 2 - uid: 5888 components: - type: Transform @@ -88066,6 +93215,17 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Telecomms Server room + - uid: 9669 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment North - uid: 10366 components: - type: Transform @@ -88076,6 +93236,39 @@ entities: - SurveillanceCameraEngineering nameSet: True id: engi lockers + - uid: 12118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment East + - uid: 13046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-14.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Containment West + - uid: 13155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG - uid: 13763 components: - type: Transform @@ -88193,17 +93386,16 @@ entities: - SurveillanceCameraEngineering nameSet: True id: Atmos distro north - - uid: 15494 + - uid: 13963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,3.5 + pos: -25.5,-4.5 parent: 2 - type: SurveillanceCamera setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Atmos + id: AME - uid: 15495 components: - type: Transform @@ -88978,6 +94170,17 @@ entities: - SurveillanceCameraSupply nameSet: True id: Cargo Front + - uid: 14062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,72.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: QM office - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 4744 @@ -89000,6 +94203,13 @@ entities: - type: Transform pos: -25.42996,30.718536 parent: 2 +- proto: SyringeSigynate + entities: + - uid: 17197 + components: + - type: Transform + pos: -70.49949,26.315863 + parent: 2 - proto: SyringeTranexamicAcid entities: - uid: 11540 @@ -89091,18 +94301,6 @@ entities: rot: -1.5707963267948966 rad pos: -8.5,6.5 parent: 2 - - uid: 1749 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,30.5 - parent: 2 - - uid: 1855 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,30.5 - parent: 2 - uid: 2059 components: - type: Transform @@ -89146,12 +94344,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,50.5 parent: 2 - - uid: 2857 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,30.5 - parent: 2 - uid: 3544 components: - type: Transform @@ -89180,16 +94372,6 @@ entities: - type: Transform pos: -10.5,38.5 parent: 2 - - uid: 4739 - components: - - type: Transform - pos: -42.5,66.5 - parent: 2 - - uid: 4740 - components: - - type: Transform - pos: -42.5,67.5 - parent: 2 - uid: 4813 components: - type: Transform @@ -89534,17 +94716,17 @@ entities: - type: Transform pos: -35.5,17.5 parent: 2 - - uid: 6386 + - uid: 6385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,54.5 + rot: 3.141592653589793 rad + pos: -40.5,58.5 parent: 2 - - uid: 6466 + - uid: 6386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,54.5 + rot: 3.141592653589793 rad + pos: -40.5,59.5 parent: 2 - uid: 6483 components: @@ -89820,6 +95002,89 @@ entities: - type: Transform pos: 7.5,78.5 parent: 2 + - uid: 16883 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,28.5 + parent: 2 + - uid: 16929 + components: + - type: Transform + pos: 21.5,37.5 + parent: 2 + - uid: 16995 + components: + - type: Transform + pos: -42.5,55.5 + parent: 2 + - uid: 17204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,37.5 + parent: 2 + - uid: 17205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,37.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + pos: -56.5,-3.5 + parent: 2 + - uid: 17231 + components: + - type: Transform + pos: -56.5,-4.5 + parent: 2 + - uid: 17232 + components: + - type: Transform + pos: -62.5,-6.5 + parent: 2 + - uid: 17233 + components: + - type: Transform + pos: -63.5,-6.5 + parent: 2 + - uid: 17234 + components: + - type: Transform + pos: -63.5,-5.5 + parent: 2 + - uid: 17235 + components: + - type: Transform + pos: -63.5,-4.5 + parent: 2 + - uid: 17408 + components: + - type: Transform + pos: -71.5,-6.5 + parent: 2 + - uid: 17409 + components: + - type: Transform + pos: -71.5,-5.5 + parent: 2 + - uid: 17410 + components: + - type: Transform + pos: -65.5,-5.5 + parent: 2 + - uid: 17411 + components: + - type: Transform + pos: -65.5,-6.5 + parent: 2 + - uid: 17541 + components: + - type: Transform + pos: -41.5,55.5 + parent: 2 - proto: TableCarpet entities: - uid: 2359 @@ -89920,6 +95185,11 @@ entities: parent: 2 - proto: TableGlass entities: + - uid: 1749 + components: + - type: Transform + pos: -27.5,30.5 + parent: 2 - uid: 2828 components: - type: Transform @@ -89940,11 +95210,6 @@ entities: - type: Transform pos: -27.5,31.5 parent: 2 - - uid: 15509 - components: - - type: Transform - pos: -27.5,30.5 - parent: 2 - uid: 15510 components: - type: Transform @@ -89975,6 +95240,11 @@ entities: - type: Transform pos: -24.5,31.5 parent: 2 + - uid: 17195 + components: + - type: Transform + pos: -69.5,26.5 + parent: 2 - proto: TablePlasmaGlass entities: - uid: 5728 @@ -90063,26 +95333,6 @@ entities: - type: Transform pos: -54.5,47.5 parent: 2 - - uid: 2109 - components: - - type: Transform - pos: -61.5,51.5 - parent: 2 - - uid: 2111 - components: - - type: Transform - pos: -60.5,50.5 - parent: 2 - - uid: 2112 - components: - - type: Transform - pos: -60.5,51.5 - parent: 2 - - uid: 2114 - components: - - type: Transform - pos: -60.5,49.5 - parent: 2 - uid: 2118 components: - type: Transform @@ -90098,26 +95348,6 @@ entities: - type: Transform pos: -46.5,47.5 parent: 2 - - uid: 2179 - components: - - type: Transform - pos: -60.5,45.5 - parent: 2 - - uid: 2180 - components: - - type: Transform - pos: -60.5,47.5 - parent: 2 - - uid: 2181 - components: - - type: Transform - pos: -60.5,46.5 - parent: 2 - - uid: 2183 - components: - - type: Transform - pos: -60.5,48.5 - parent: 2 - uid: 2188 components: - type: Transform @@ -90236,6 +95466,12 @@ entities: - type: Transform pos: -27.5,43.5 parent: 2 + - uid: 4898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,74.5 + parent: 2 - uid: 4926 components: - type: Transform @@ -90409,6 +95645,26 @@ entities: - type: Transform pos: -49.5,46.5 parent: 2 + - uid: 17249 + components: + - type: Transform + pos: -76.5,-3.5 + parent: 2 + - uid: 17308 + components: + - type: Transform + pos: -76.5,-2.5 + parent: 2 + - uid: 17309 + components: + - type: Transform + pos: -76.5,-4.5 + parent: 2 + - uid: 17310 + components: + - type: Transform + pos: -76.5,-5.5 + parent: 2 - proto: TableStone entities: - uid: 13271 @@ -90458,12 +95714,22 @@ entities: - type: Transform pos: -21.5,3.5 parent: 2 + - uid: 41 + components: + - type: Transform + pos: -10.5,25.5 + parent: 2 - uid: 214 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,9.5 parent: 2 + - uid: 578 + components: + - type: Transform + pos: -44.5,67.5 + parent: 2 - uid: 1102 components: - type: Transform @@ -90492,6 +95758,12 @@ entities: - type: Transform pos: -6.5,11.5 parent: 2 + - uid: 1856 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,66.5 + parent: 2 - uid: 1948 components: - type: Transform @@ -90504,6 +95776,48 @@ entities: rot: 1.5707963267948966 rad pos: -1.5,39.5 parent: 2 + - uid: 2111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,67.5 + parent: 2 + - uid: 2112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,51.5 + parent: 2 + - uid: 2114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,50.5 + parent: 2 + - uid: 2179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,51.5 + parent: 2 + - uid: 2180 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,49.5 + parent: 2 + - uid: 2181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,46.5 + parent: 2 + - uid: 2183 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,48.5 + parent: 2 - uid: 2187 components: - type: Transform @@ -90541,6 +95855,12 @@ entities: - type: Transform pos: -57.5,52.5 parent: 2 + - uid: 4219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,45.5 + parent: 2 - uid: 4387 components: - type: Transform @@ -90675,23 +95995,6 @@ entities: rot: 3.141592653589793 rad pos: -61.5,24.5 parent: 2 - - uid: 5572 - components: - - type: Transform - pos: -8.5,25.5 - parent: 2 - - uid: 5574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,23.5 - parent: 2 - - uid: 5575 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,23.5 - parent: 2 - uid: 5582 components: - type: Transform @@ -90753,6 +96056,12 @@ entities: - type: Transform pos: -26.5,3.5 parent: 2 + - uid: 6394 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,56.5 + parent: 2 - uid: 6552 components: - type: Transform @@ -90788,10 +96097,11 @@ entities: - type: Transform pos: -23.5,72.5 parent: 2 - - uid: 6925 + - uid: 6839 components: - type: Transform - pos: -59.5,54.5 + rot: 3.141592653589793 rad + pos: -57.5,56.5 parent: 2 - uid: 7092 components: @@ -90882,6 +96192,11 @@ entities: - type: Transform pos: -34.5,62.5 parent: 2 + - uid: 9595 + components: + - type: Transform + pos: -61.5,54.5 + parent: 2 - uid: 10159 components: - type: Transform @@ -91109,6 +96424,50 @@ entities: - type: Transform pos: -51.5,60.5 parent: 2 + - uid: 16952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.5,47.5 + parent: 2 + - uid: 17129 + components: + - type: Transform + pos: -78.5,23.5 + parent: 2 + - uid: 17130 + components: + - type: Transform + pos: -77.5,23.5 + parent: 2 + - uid: 17312 + components: + - type: Transform + pos: -78.5,-5.5 + parent: 2 + - uid: 17318 + components: + - type: Transform + pos: -78.5,-4.5 + parent: 2 + - uid: 17506 + components: + - type: Transform + pos: 29.5,19.5 + parent: 2 + - uid: 17507 + components: + - type: Transform + pos: 30.5,19.5 + parent: 2 +- proto: TargetClown + entities: + - uid: 17201 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 - proto: TargetDarts entities: - uid: 2399 @@ -91122,6 +96481,22 @@ entities: rot: 1.5707963267948966 rad pos: -4.5,46.5 parent: 2 +- proto: TargetStrange + entities: + - uid: 17202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 +- proto: TargetSyndicate + entities: + - uid: 17203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 - proto: TegCenter entities: - uid: 12593 @@ -91235,7 +96610,7 @@ entities: - type: InsideEntityStorage - proto: TeslaGenerator entities: - - uid: 6187 + - uid: 17558 components: - type: Transform pos: -2.5,-1.5 @@ -91600,10 +96975,12 @@ entities: - type: Transform pos: -22.08365,23.664106 parent: 2 - - uid: 12670 +- proto: ToyFigurinePassenger + entities: + - uid: 16951 components: - type: Transform - pos: -27.534359,25.161161 + pos: -55.461906,30.667084 parent: 2 - proto: ToyFigurineQuartermaster entities: @@ -91689,6 +97066,15 @@ entities: - type: Transform pos: -65.95986,56.574608 parent: 2 +- proto: TrackingImplanter + entities: + - uid: 11266 + components: + - type: Transform + parent: 5594 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: TrainingBomb entities: - uid: 13922 @@ -91696,11 +97082,6 @@ entities: - type: Transform pos: -33.5,43.5 parent: 2 - - uid: 15590 - components: - - type: Transform - pos: -28.5,42.5 - parent: 2 - proto: TwoWayLever entities: - uid: 6870 @@ -91879,6 +97260,14 @@ entities: - Left: Forward - Right: Reverse - Middle: Off +- proto: UnfinishedMachineFrame + entities: + - uid: 17347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -61.5,-6.5 + parent: 2 - proto: UniformPrinter entities: - uid: 5900 @@ -91886,6 +97275,30 @@ entities: - type: Transform pos: -35.5,60.5 parent: 2 +- proto: UniformShortsRed + entities: + - uid: 17542 + components: + - type: Transform + pos: -40.68329,58.763607 + parent: 2 + - uid: 17543 + components: + - type: Transform + pos: -40.292664,58.763607 + parent: 2 +- proto: UniformShortsRedWithTop + entities: + - uid: 2964 + components: + - type: Transform + pos: -40.636414,59.685482 + parent: 2 + - uid: 6115 + components: + - type: Transform + pos: -40.292664,59.497982 + parent: 2 - proto: UnstableMutagenChemistryBottle entities: - uid: 15490 @@ -91982,30 +97395,20 @@ entities: - type: Transform pos: -44.5,14.5 parent: 2 - - uid: 7077 - components: - - type: Transform - pos: 1.5,8.5 - parent: 2 - - uid: 9672 - components: - - type: Transform - pos: 0.5,45.5 - parent: 2 - uid: 12770 components: - type: Transform pos: -68.5,38.5 parent: 2 - - uid: 14005 + - uid: 16018 components: - type: Transform - pos: -0.5,6.5 + pos: -65.5,49.5 parent: 2 - - uid: 16018 + - uid: 17673 components: - type: Transform - pos: -65.5,49.5 + pos: 1.5,15.5 parent: 2 - proto: VendingMachineClothing entities: @@ -92038,6 +97441,11 @@ entities: - type: Transform pos: -65.5,60.5 parent: 2 + - uid: 17514 + components: + - type: Transform + pos: 29.5,21.5 + parent: 2 - proto: VendingMachineDetDrobe entities: - uid: 5423 @@ -92095,25 +97503,20 @@ entities: - type: Transform pos: -3.5,46.5 parent: 2 - - uid: 12121 - components: - - type: Transform - pos: -71.5,58.5 - parent: 2 - uid: 13549 components: - type: Transform pos: 21.5,19.5 parent: 2 - - uid: 13550 + - uid: 13852 components: - type: Transform - pos: 21.5,19.5 + pos: -58.5,26.5 parent: 2 - - uid: 13852 + - uid: 15517 components: - type: Transform - pos: -58.5,26.5 + pos: -66.5,60.5 parent: 2 - proto: VendingMachineGeneDrobe entities: @@ -92129,11 +97532,6 @@ entities: - type: Transform pos: -51.5,40.5 parent: 2 - - uid: 4590 - components: - - type: Transform - pos: -51.5,40.5 - parent: 2 - proto: VendingMachineJaniDrobe entities: - uid: 1118 @@ -92184,11 +97582,6 @@ entities: - type: Transform pos: -50.5,40.5 parent: 2 - - uid: 4588 - components: - - type: Transform - pos: -50.5,40.5 - parent: 2 - proto: VendingMachineRestockBooze entities: - uid: 16016 @@ -92333,10 +97726,10 @@ entities: parent: 2 - proto: VendingMachineTheater entities: - - uid: 4723 + - uid: 5026 components: - type: Transform - pos: -52.5,63.5 + pos: -54.5,61.5 parent: 2 - proto: VendingMachineVendomat entities: @@ -92393,6 +97786,14 @@ entities: - type: Transform pos: -18.5,6.5 parent: 2 +- proto: WallIce + entities: + - uid: 17343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -74.5,-2.5 + parent: 2 - proto: WallmountTelevision entities: - uid: 3922 @@ -92407,12 +97808,6 @@ entities: rot: 3.141592653589793 rad pos: -38.5,51.5 parent: 2 - - uid: 8633 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,22.5 - parent: 2 - uid: 11973 components: - type: Transform @@ -92421,15 +97816,10 @@ entities: parent: 2 - proto: WallReinforced entities: - - uid: 17 - components: - - type: Transform - pos: -73.5,71.5 - parent: 2 - - uid: 18 + - uid: 40 components: - type: Transform - pos: -72.5,71.5 + pos: -10.5,23.5 parent: 2 - uid: 61 components: @@ -92442,6 +97832,12 @@ entities: rot: 1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,38.5 + parent: 2 - uid: 68 components: - type: Transform @@ -92570,6 +97966,11 @@ entities: rot: 3.141592653589793 rad pos: -21.5,-5.5 parent: 2 + - uid: 269 + components: + - type: Transform + pos: -1.5,46.5 + parent: 2 - uid: 288 components: - type: Transform @@ -92746,16 +98147,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,20.5 parent: 2 - - uid: 455 - components: - - type: Transform - pos: -37.5,0.5 - parent: 2 - - uid: 456 - components: - - type: Transform - pos: -36.5,0.5 - parent: 2 - uid: 457 components: - type: Transform @@ -92765,7 +98156,7 @@ entities: - uid: 458 components: - type: Transform - pos: 24.5,6.5 + pos: 23.5,-5.5 parent: 2 - uid: 459 components: @@ -92812,16 +98203,6 @@ entities: - type: Transform pos: -25.5,18.5 parent: 2 - - uid: 492 - components: - - type: Transform - pos: -24.5,18.5 - parent: 2 - - uid: 493 - components: - - type: Transform - pos: -23.5,18.5 - parent: 2 - uid: 494 components: - type: Transform @@ -92847,11 +98228,6 @@ entities: - type: Transform pos: -17.5,18.5 parent: 2 - - uid: 499 - components: - - type: Transform - pos: -22.5,18.5 - parent: 2 - uid: 500 components: - type: Transform @@ -92904,22 +98280,11 @@ entities: - type: Transform pos: -20.5,-5.5 parent: 2 - - uid: 551 - components: - - type: Transform - pos: -38.5,0.5 - parent: 2 - uid: 552 components: - type: Transform pos: -65.5,75.5 parent: 2 - - uid: 578 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,24.5 - parent: 2 - uid: 584 components: - type: Transform @@ -92973,7 +98338,7 @@ entities: - uid: 691 components: - type: Transform - pos: -39.5,0.5 + pos: 30.5,22.5 parent: 2 - uid: 710 components: @@ -93002,6 +98367,11 @@ entities: - type: Transform pos: 20.5,45.5 parent: 2 + - uid: 722 + components: + - type: Transform + pos: 29.5,23.5 + parent: 2 - uid: 865 components: - type: Transform @@ -93349,12 +98719,7 @@ entities: - uid: 1087 components: - type: Transform - pos: -67.5,20.5 - parent: 2 - - uid: 1089 - components: - - type: Transform - pos: -67.5,22.5 + pos: 23.5,-3.5 parent: 2 - uid: 1090 components: @@ -93366,11 +98731,6 @@ entities: - type: Transform pos: -67.5,33.5 parent: 2 - - uid: 1094 - components: - - type: Transform - pos: -67.5,21.5 - parent: 2 - uid: 1095 components: - type: Transform @@ -93387,11 +98747,6 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,4.5 parent: 2 - - uid: 1101 - components: - - type: Transform - pos: -71.5,71.5 - parent: 2 - uid: 1106 components: - type: Transform @@ -93450,11 +98805,6 @@ entities: - type: Transform pos: -68.5,67.5 parent: 2 - - uid: 1134 - components: - - type: Transform - pos: -69.5,67.5 - parent: 2 - uid: 1135 components: - type: Transform @@ -93505,11 +98855,6 @@ entities: - type: Transform pos: -75.5,57.5 parent: 2 - - uid: 1154 - components: - - type: Transform - pos: -70.5,71.5 - parent: 2 - uid: 1168 components: - type: Transform @@ -93973,11 +99318,6 @@ entities: - type: Transform pos: 12.5,0.5 parent: 2 - - uid: 1650 - components: - - type: Transform - pos: 21.5,-1.5 - parent: 2 - uid: 1697 components: - type: Transform @@ -94026,17 +99366,17 @@ entities: - uid: 1729 components: - type: Transform - pos: -84.5,71.5 + pos: -58.5,-7.5 parent: 2 - uid: 1730 components: - type: Transform - pos: -86.5,71.5 + pos: -79.5,-6.5 parent: 2 - uid: 1731 components: - type: Transform - pos: -85.5,71.5 + pos: -72.5,-6.5 parent: 2 - uid: 1741 components: @@ -94048,11 +99388,6 @@ entities: - type: Transform pos: -41.5,-2.5 parent: 2 - - uid: 1752 - components: - - type: Transform - pos: -41.5,-1.5 - parent: 2 - uid: 1753 components: - type: Transform @@ -94064,12 +99399,6 @@ entities: rot: -1.5707963267948966 rad pos: 20.5,24.5 parent: 2 - - uid: 1772 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,34.5 - parent: 2 - uid: 1773 components: - type: Transform @@ -94138,12 +99467,33 @@ entities: - type: Transform pos: -69.5,78.5 parent: 2 + - uid: 1847 + components: + - type: Transform + pos: 32.5,36.5 + parent: 2 + - uid: 1848 + components: + - type: Transform + pos: 31.5,37.5 + parent: 2 - uid: 1851 components: - type: Transform rot: -1.5707963267948966 rad pos: -30.5,51.5 parent: 2 + - uid: 1854 + components: + - type: Transform + pos: 30.5,37.5 + parent: 2 + - uid: 1855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -69.5,67.5 + parent: 2 - uid: 1917 components: - type: Transform @@ -94170,12 +99520,6 @@ entities: - type: Transform pos: 29.5,50.5 parent: 2 - - uid: 1987 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,4.5 - parent: 2 - uid: 1999 components: - type: Transform @@ -94192,11 +99536,6 @@ entities: - type: Transform pos: -3.5,8.5 parent: 2 - - uid: 2015 - components: - - type: Transform - pos: -3.5,11.5 - parent: 2 - uid: 2016 components: - type: Transform @@ -94418,11 +99757,6 @@ entities: - type: Transform pos: -0.5,49.5 parent: 2 - - uid: 2250 - components: - - type: Transform - pos: -0.5,46.5 - parent: 2 - uid: 2251 components: - type: Transform @@ -94431,7 +99765,7 @@ entities: - uid: 2252 components: - type: Transform - pos: -0.5,45.5 + pos: -1.5,47.5 parent: 2 - uid: 2260 components: @@ -94542,26 +99876,6 @@ entities: - type: Transform pos: -22.5,37.5 parent: 2 - - uid: 2292 - components: - - type: Transform - pos: -24.5,37.5 - parent: 2 - - uid: 2293 - components: - - type: Transform - pos: -26.5,37.5 - parent: 2 - - uid: 2294 - components: - - type: Transform - pos: -25.5,37.5 - parent: 2 - - uid: 2295 - components: - - type: Transform - pos: -27.5,37.5 - parent: 2 - uid: 2296 components: - type: Transform @@ -94691,12 +100005,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,23.5 parent: 2 - - uid: 2491 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,26.5 - parent: 2 - uid: 2492 components: - type: Transform @@ -94741,11 +100049,6 @@ entities: - type: Transform pos: 23.5,38.5 parent: 2 - - uid: 2509 - components: - - type: Transform - pos: -72.5,74.5 - parent: 2 - uid: 2513 components: - type: Transform @@ -94842,11 +100145,6 @@ entities: - type: Transform pos: 28.5,38.5 parent: 2 - - uid: 2565 - components: - - type: Transform - pos: 27.5,35.5 - parent: 2 - uid: 2570 components: - type: Transform @@ -94869,12 +100167,6 @@ entities: rot: 1.5707963267948966 rad pos: 17.5,46.5 parent: 2 - - uid: 2574 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,25.5 - parent: 2 - uid: 2576 components: - type: Transform @@ -94902,12 +100194,6 @@ entities: rot: 1.5707963267948966 rad pos: 20.5,26.5 parent: 2 - - uid: 2586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,25.5 - parent: 2 - uid: 2587 components: - type: Transform @@ -95132,6 +100418,17 @@ entities: - type: Transform pos: 12.5,61.5 parent: 2 + - uid: 2732 + components: + - type: Transform + pos: -78.5,-6.5 + parent: 2 + - uid: 2734 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 2 - uid: 2737 components: - type: Transform @@ -95388,11 +100685,6 @@ entities: - type: Transform pos: 2.5,70.5 parent: 2 - - uid: 2888 - components: - - type: Transform - pos: -71.5,74.5 - parent: 2 - uid: 2890 components: - type: Transform @@ -95480,32 +100772,12 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,42.5 parent: 2 - - uid: 2956 - components: - - type: Transform - pos: -8.5,22.5 - parent: 2 - - uid: 2957 - components: - - type: Transform - pos: -10.5,22.5 - parent: 2 - - uid: 2958 - components: - - type: Transform - pos: -9.5,22.5 - parent: 2 - uid: 2963 components: - type: Transform rot: 1.5707963267948966 rad pos: 1.5,7.5 parent: 2 - - uid: 2964 - components: - - type: Transform - pos: -70.5,74.5 - parent: 2 - uid: 2977 components: - type: Transform @@ -95731,11 +101003,6 @@ entities: - type: Transform pos: -0.5,-0.5 parent: 2 - - uid: 3120 - components: - - type: Transform - pos: 24.5,11.5 - parent: 2 - uid: 3124 components: - type: Transform @@ -95760,30 +101027,10 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,-2.5 parent: 2 - - uid: 3130 - components: - - type: Transform - pos: 24.5,12.5 - parent: 2 - - uid: 3157 - components: - - type: Transform - pos: -74.5,-1.5 - parent: 2 - - uid: 3158 - components: - - type: Transform - pos: -71.5,-2.5 - parent: 2 - - uid: 3159 - components: - - type: Transform - pos: -72.5,-2.5 - parent: 2 - uid: 3168 components: - type: Transform - pos: -79.5,-1.5 + pos: 27.5,9.5 parent: 2 - uid: 3338 components: @@ -95811,10 +101058,15 @@ entities: rot: 3.141592653589793 rad pos: -5.5,77.5 parent: 2 + - uid: 3446 + components: + - type: Transform + pos: 28.5,15.5 + parent: 2 - uid: 3498 components: - type: Transform - pos: 25.5,12.5 + pos: 28.5,11.5 parent: 2 - uid: 3499 components: @@ -95856,7 +101108,7 @@ entities: - uid: 3513 components: - type: Transform - pos: 25.5,19.5 + pos: -36.5,-1.5 parent: 2 - uid: 3517 components: @@ -96037,11 +101289,6 @@ entities: - type: Transform pos: -36.5,34.5 parent: 2 - - uid: 3701 - components: - - type: Transform - pos: -42.5,30.5 - parent: 2 - uid: 3762 components: - type: Transform @@ -96077,16 +101324,6 @@ entities: - type: Transform pos: -65.5,79.5 parent: 2 - - uid: 3841 - components: - - type: Transform - pos: -75.5,71.5 - parent: 2 - - uid: 3892 - components: - - type: Transform - pos: -82.5,71.5 - parent: 2 - uid: 3894 components: - type: Transform @@ -96117,11 +101354,6 @@ entities: - type: Transform pos: -80.5,17.5 parent: 2 - - uid: 3901 - components: - - type: Transform - pos: -41.5,-0.5 - parent: 2 - uid: 3902 components: - type: Transform @@ -96150,17 +101382,17 @@ entities: - uid: 3935 components: - type: Transform - pos: -62.5,-2.5 + pos: 29.5,24.5 parent: 2 - uid: 3968 components: - type: Transform - pos: -79.5,71.5 + pos: 29.5,25.5 parent: 2 - uid: 3972 components: - type: Transform - pos: -83.5,71.5 + pos: 31.5,30.5 parent: 2 - uid: 3987 components: @@ -96180,7 +101412,7 @@ entities: - uid: 4001 components: - type: Transform - pos: -72.5,17.5 + pos: 29.5,22.5 parent: 2 - uid: 4190 components: @@ -96234,6 +101466,11 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,42.5 parent: 2 + - uid: 4281 + components: + - type: Transform + pos: -79.5,-2.5 + parent: 2 - uid: 4303 components: - type: Transform @@ -96307,6 +101544,11 @@ entities: - type: Transform pos: -1.5,26.5 parent: 2 + - uid: 4337 + components: + - type: Transform + pos: 32.5,32.5 + parent: 2 - uid: 4340 components: - type: Transform @@ -96653,15 +101895,10 @@ entities: rot: 3.141592653589793 rad pos: -26.5,2.5 parent: 2 - - uid: 4656 - components: - - type: Transform - pos: -72.5,18.5 - parent: 2 - uid: 4657 components: - type: Transform - pos: -68.5,20.5 + pos: 32.5,37.5 parent: 2 - uid: 4667 components: @@ -96673,11 +101910,6 @@ entities: - type: Transform pos: -42.5,28.5 parent: 2 - - uid: 4677 - components: - - type: Transform - pos: -42.5,29.5 - parent: 2 - uid: 4679 components: - type: Transform @@ -96798,12 +102030,6 @@ entities: rot: 3.141592653589793 rad pos: -2.5,45.5 parent: 2 - - uid: 5024 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,45.5 - parent: 2 - uid: 5037 components: - type: Transform @@ -96825,16 +102051,16 @@ entities: - type: Transform pos: 24.5,42.5 parent: 2 - - uid: 5129 + - uid: 5089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,60.5 + pos: -1.5,45.5 parent: 2 - - uid: 5133 + - uid: 5129 components: - type: Transform - pos: -72.5,20.5 + rot: -1.5707963267948966 rad + pos: -29.5,60.5 parent: 2 - uid: 5201 components: @@ -97338,16 +102564,17 @@ entities: - type: Transform pos: -2.5,26.5 parent: 2 - - uid: 5597 + - uid: 5685 components: - type: Transform - pos: -78.5,71.5 + rot: -1.5707963267948966 rad + pos: 2.5,73.5 parent: 2 - - uid: 5685 + - uid: 5687 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,73.5 + pos: -1.5,44.5 parent: 2 - uid: 5773 components: @@ -97364,12 +102591,6 @@ entities: - type: Transform pos: -0.5,7.5 parent: 2 - - uid: 5836 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-0.5 - parent: 2 - uid: 5905 components: - type: Transform @@ -97434,11 +102655,6 @@ entities: - type: Transform pos: 12.5,82.5 parent: 2 - - uid: 6049 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 2 - uid: 6050 components: - type: Transform @@ -97447,7 +102663,7 @@ entities: - uid: 6061 components: - type: Transform - pos: -87.5,71.5 + pos: -79.5,-5.5 parent: 2 - uid: 6089 components: @@ -97455,6 +102671,11 @@ entities: rot: -1.5707963267948966 rad pos: 2.5,71.5 parent: 2 + - uid: 6092 + components: + - type: Transform + pos: -72.5,-7.5 + parent: 2 - uid: 6094 components: - type: Transform @@ -97469,18 +102690,13 @@ entities: - uid: 6106 components: - type: Transform - pos: -80.5,71.5 + pos: -59.5,-7.5 parent: 2 - uid: 6110 components: - type: Transform pos: -88.5,71.5 parent: 2 - - uid: 6115 - components: - - type: Transform - pos: 20.5,-1.5 - parent: 2 - uid: 6133 components: - type: Transform @@ -97497,11 +102713,6 @@ entities: - type: Transform pos: 20.5,39.5 parent: 2 - - uid: 6290 - components: - - type: Transform - pos: -71.5,20.5 - parent: 2 - uid: 6292 components: - type: Transform @@ -97652,21 +102863,31 @@ entities: - type: Transform pos: -22.5,93.5 parent: 2 + - uid: 6864 + components: + - type: Transform + pos: 20.5,-6.5 + parent: 2 + - uid: 6865 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 - uid: 6881 components: - type: Transform rot: 3.141592653589793 rad pos: 15.5,76.5 parent: 2 - - uid: 6900 + - uid: 6902 components: - type: Transform - pos: -60.5,-2.5 + pos: -13.5,49.5 parent: 2 - - uid: 6902 + - uid: 6906 components: - type: Transform - pos: -13.5,49.5 + pos: -55.5,-5.5 parent: 2 - uid: 6908 components: @@ -97681,7 +102902,7 @@ entities: - uid: 6924 components: - type: Transform - pos: -55.5,-2.5 + pos: 24.5,-3.5 parent: 2 - uid: 6944 components: @@ -97753,41 +102974,31 @@ entities: rot: 3.141592653589793 rad pos: 23.5,20.5 parent: 2 - - uid: 6982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,20.5 - parent: 2 - - uid: 6983 + - uid: 6984 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,20.5 + pos: 24.5,20.5 parent: 2 - - uid: 6984 + - uid: 6995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,20.5 + pos: 27.5,10.5 parent: 2 - - uid: 6985 + - uid: 6996 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,23.5 + pos: 31.5,16.5 parent: 2 - - uid: 6986 + - uid: 6998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,21.5 + pos: 28.5,16.5 parent: 2 - - uid: 6987 + - uid: 7023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,22.5 + pos: -37.5,-2.5 parent: 2 - uid: 7027 components: @@ -97814,6 +103025,11 @@ entities: - type: Transform pos: 19.5,1.5 parent: 2 + - uid: 7059 + components: + - type: Transform + pos: -36.5,-2.5 + parent: 2 - uid: 7067 components: - type: Transform @@ -97893,30 +103109,30 @@ entities: - type: Transform pos: -83.5,53.5 parent: 2 - - uid: 7259 + - uid: 7258 components: - type: Transform - pos: -69.5,75.5 + pos: -40.5,-2.5 parent: 2 - - uid: 7284 + - uid: 7259 components: - type: Transform - pos: -74.5,71.5 + pos: -69.5,75.5 parent: 2 - - uid: 7285 + - uid: 7280 components: - type: Transform - pos: -76.5,71.5 + pos: 32.5,22.5 parent: 2 - - uid: 7286 + - uid: 7294 components: - type: Transform - pos: -81.5,71.5 + pos: 30.5,38.5 parent: 2 - - uid: 7294 + - uid: 7316 components: - type: Transform - pos: -77.5,71.5 + pos: 25.5,-3.5 parent: 2 - uid: 7327 components: @@ -97929,6 +103145,36 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,-18.5 parent: 2 + - uid: 7359 + components: + - type: Transform + pos: -72.5,27.5 + parent: 2 + - uid: 7366 + components: + - type: Transform + pos: -71.5,27.5 + parent: 2 + - uid: 7377 + components: + - type: Transform + pos: -68.5,27.5 + parent: 2 + - uid: 7383 + components: + - type: Transform + pos: -58.5,-6.5 + parent: 2 + - uid: 7385 + components: + - type: Transform + pos: -56.5,-5.5 + parent: 2 + - uid: 7386 + components: + - type: Transform + pos: -73.5,-6.5 + parent: 2 - uid: 7439 components: - type: Transform @@ -97972,6 +103218,18 @@ entities: rot: 3.141592653589793 rad pos: -20.5,47.5 parent: 2 + - uid: 7871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,38.5 + parent: 2 + - uid: 7903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,38.5 + parent: 2 - uid: 7919 components: - type: Transform @@ -97988,12 +103246,6 @@ entities: - type: Transform pos: 12.5,51.5 parent: 2 - - uid: 8366 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,72.5 - parent: 2 - uid: 8549 components: - type: Transform @@ -98036,6 +103288,11 @@ entities: - type: Transform pos: 17.5,-5.5 parent: 2 + - uid: 9659 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 - uid: 9708 components: - type: Transform @@ -98085,15 +103342,15 @@ entities: - type: Transform pos: 14.5,0.5 parent: 2 - - uid: 10372 + - uid: 10309 components: - type: Transform - pos: -72.5,16.5 + pos: -9.5,23.5 parent: 2 - - uid: 10374 + - uid: 10314 components: - type: Transform - pos: -73.5,-1.5 + pos: -8.5,23.5 parent: 2 - uid: 10404 components: @@ -98165,6 +103422,21 @@ entities: - type: Transform pos: -9.5,14.5 parent: 2 + - uid: 11529 + components: + - type: Transform + pos: -26.5,15.5 + parent: 2 + - uid: 11534 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 11920 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 - uid: 12092 components: - type: Transform @@ -98199,16 +103471,6 @@ entities: - type: Transform pos: -71.5,34.5 parent: 2 - - uid: 12674 - components: - - type: Transform - pos: -72.5,34.5 - parent: 2 - - uid: 12675 - components: - - type: Transform - pos: -73.5,34.5 - parent: 2 - uid: 12676 components: - type: Transform @@ -98339,17 +103601,17 @@ entities: - uid: 12899 components: - type: Transform - pos: -67.5,-2.5 + pos: 32.5,21.5 parent: 2 - uid: 12901 components: - type: Transform - pos: -66.5,-2.5 + pos: 32.5,17.5 parent: 2 - - uid: 12976 + - uid: 12964 components: - type: Transform - pos: -72.5,-1.5 + pos: -26.5,17.5 parent: 2 - uid: 12981 components: @@ -98361,6 +103623,37 @@ entities: - type: Transform pos: -45.5,17.5 parent: 2 + - uid: 13010 + components: + - type: Transform + pos: -25.5,13.5 + parent: 2 + - uid: 13065 + components: + - type: Transform + pos: -55.5,-2.5 + parent: 2 + - uid: 13103 + components: + - type: Transform + pos: 27.5,3.5 + parent: 2 + - uid: 13106 + components: + - type: Transform + pos: -26.5,13.5 + parent: 2 + - uid: 13114 + components: + - type: Transform + pos: 27.5,4.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,37.5 + parent: 2 - uid: 13218 components: - type: Transform @@ -98408,6 +103701,11 @@ entities: rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 + - uid: 13465 + components: + - type: Transform + pos: 28.5,27.5 + parent: 2 - uid: 13467 components: - type: Transform @@ -98641,42 +103939,26 @@ entities: - type: Transform pos: 19.5,9.5 parent: 2 - - uid: 13554 - components: - - type: Transform - pos: 21.5,5.5 - parent: 2 - - uid: 13555 - components: - - type: Transform - pos: 22.5,5.5 - parent: 2 - - uid: 13556 - components: - - type: Transform - pos: 23.5,5.5 - parent: 2 - uid: 13561 components: - type: Transform pos: 15.5,0.5 parent: 2 - - uid: 13563 - components: - - type: Transform - pos: 24.5,5.5 - parent: 2 - uid: 13596 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,-6.5 parent: 2 - - uid: 13759 + - uid: 13613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,0.5 + pos: -58.5,-5.5 + parent: 2 + - uid: 13616 + components: + - type: Transform + pos: -57.5,-5.5 parent: 2 - uid: 13837 components: @@ -98688,27 +103970,40 @@ entities: - type: Transform pos: -69.5,76.5 parent: 2 - - uid: 13853 - components: - - type: Transform - pos: -61.5,-2.5 - parent: 2 - uid: 13947 components: - type: Transform rot: -1.5707963267948966 rad pos: 1.5,14.5 parent: 2 + - uid: 13950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,37.5 + parent: 2 - uid: 13966 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,71.5 parent: 2 - - uid: 14006 + - uid: 13987 components: - type: Transform - pos: -3.5,12.5 + rot: 3.141592653589793 rad + pos: -26.5,38.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,38.5 + parent: 2 + - uid: 14018 + components: + - type: Transform + pos: 23.5,-4.5 parent: 2 - uid: 14021 components: @@ -98716,15 +104011,15 @@ entities: rot: -1.5707963267948966 rad pos: 0.5,14.5 parent: 2 - - uid: 14064 + - uid: 14036 components: - type: Transform - pos: 3.5,-7.5 + pos: -17.5,13.5 parent: 2 - - uid: 14066 + - uid: 14064 components: - type: Transform - pos: 17.5,-1.5 + pos: 3.5,-7.5 parent: 2 - uid: 14068 components: @@ -98776,11 +104071,6 @@ entities: - type: Transform pos: -51.5,75.5 parent: 2 - - uid: 14262 - components: - - type: Transform - pos: -72.5,19.5 - parent: 2 - uid: 14323 components: - type: Transform @@ -98792,10 +104082,25 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,-16.5 parent: 2 - - uid: 14384 + - uid: 14369 + components: + - type: Transform + pos: 27.5,-2.5 + parent: 2 + - uid: 14385 + components: + - type: Transform + pos: 23.5,-6.5 + parent: 2 + - uid: 14386 + components: + - type: Transform + pos: 28.5,10.5 + parent: 2 + - uid: 14387 components: - type: Transform - pos: 25.5,13.5 + pos: 32.5,16.5 parent: 2 - uid: 14396 components: @@ -98933,6 +104238,11 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,14.5 parent: 2 + - uid: 14739 + components: + - type: Transform + pos: -72.5,26.5 + parent: 2 - uid: 14761 components: - type: Transform @@ -98944,6 +104254,11 @@ entities: rot: -1.5707963267948966 rad pos: -1.5,14.5 parent: 2 + - uid: 14835 + components: + - type: Transform + pos: -88.5,72.5 + parent: 2 - uid: 14919 components: - type: Transform @@ -98964,8 +104279,7 @@ entities: - uid: 15109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,73.5 + pos: -88.5,74.5 parent: 2 - uid: 15110 components: @@ -98978,11 +104292,26 @@ entities: - type: Transform pos: -36.5,51.5 parent: 2 + - uid: 15345 + components: + - type: Transform + pos: -18.5,13.5 + parent: 2 - uid: 15379 components: - type: Transform pos: 17.5,0.5 parent: 2 + - uid: 15392 + components: + - type: Transform + pos: -88.5,73.5 + parent: 2 + - uid: 15401 + components: + - type: Transform + pos: -19.5,13.5 + parent: 2 - uid: 15402 components: - type: Transform @@ -98996,7 +104325,7 @@ entities: - uid: 15404 components: - type: Transform - pos: 19.5,-1.5 + pos: -87.5,74.5 parent: 2 - uid: 15405 components: @@ -99051,15 +104380,40 @@ entities: rot: 3.141592653589793 rad pos: -38.5,74.5 parent: 2 + - uid: 15494 + components: + - type: Transform + pos: -83.5,74.5 + parent: 2 - uid: 15553 components: - type: Transform - pos: 20.5,-6.5 + pos: -76.5,74.5 parent: 2 - uid: 15554 components: - type: Transform - pos: 20.5,-2.5 + pos: -77.5,74.5 + parent: 2 + - uid: 15557 + components: + - type: Transform + pos: -78.5,74.5 + parent: 2 + - uid: 15558 + components: + - type: Transform + pos: -73.5,75.5 + parent: 2 + - uid: 15559 + components: + - type: Transform + pos: -70.5,79.5 + parent: 2 + - uid: 15560 + components: + - type: Transform + pos: -73.5,79.5 parent: 2 - uid: 15563 components: @@ -99101,6 +104455,29 @@ entities: - type: Transform pos: -18.5,-25.5 parent: 2 + - uid: 15584 + components: + - type: Transform + pos: -73.5,78.5 + parent: 2 + - uid: 15590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,38.5 + parent: 2 + - uid: 15665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,38.5 + parent: 2 + - uid: 15679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -28.5,38.5 + parent: 2 - uid: 15764 components: - type: Transform @@ -99189,6 +104566,11 @@ entities: rot: -1.5707963267948966 rad pos: -91.5,57.5 parent: 2 + - uid: 16373 + components: + - type: Transform + pos: -24.5,13.5 + parent: 2 - uid: 16397 components: - type: Transform @@ -99337,49 +104719,180 @@ entities: - type: Transform pos: 6.5,-22.5 parent: 2 -- proto: WallSolid - entities: - - uid: 19 + - uid: 16737 components: - type: Transform - pos: -70.5,61.5 + pos: -72.5,79.5 parent: 2 - - uid: 91 + - uid: 16744 components: - type: Transform - pos: -0.5,30.5 + pos: -72.5,25.5 parent: 2 - - uid: 351 + - uid: 16751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,22.5 + pos: -72.5,24.5 parent: 2 - - uid: 419 + - uid: 16752 components: - type: Transform - pos: -26.5,17.5 + pos: -73.5,24.5 parent: 2 - - uid: 421 + - uid: 16753 + components: + - type: Transform + pos: -78.5,24.5 + parent: 2 + - uid: 16824 + components: + - type: Transform + pos: -79.5,24.5 + parent: 2 + - uid: 16826 + components: + - type: Transform + pos: -79.5,23.5 + parent: 2 + - uid: 16837 + components: + - type: Transform + pos: -74.5,24.5 + parent: 2 + - uid: 16846 + components: + - type: Transform + pos: -79.5,18.5 + parent: 2 + - uid: 16849 + components: + - type: Transform + pos: -79.5,19.5 + parent: 2 + - uid: 16865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,37.5 + parent: 2 + - uid: 16877 + components: + - type: Transform + pos: -71.5,-7.5 + parent: 2 + - uid: 16880 + components: + - type: Transform + pos: -65.5,-7.5 + parent: 2 + - uid: 16881 + components: + - type: Transform + pos: -23.5,13.5 + parent: 2 + - uid: 16966 + components: + - type: Transform + pos: -66.5,-7.5 + parent: 2 + - uid: 16967 + components: + - type: Transform + pos: -64.5,-7.5 + parent: 2 + - uid: 16968 + components: + - type: Transform + pos: -70.5,-7.5 + parent: 2 + - uid: 16969 + components: + - type: Transform + pos: -63.5,-7.5 + parent: 2 + - uid: 16989 + components: + - type: Transform + pos: 26.5,-3.5 + parent: 2 + - uid: 16992 + components: + - type: Transform + pos: 27.5,-3.5 + parent: 2 + - uid: 16994 + components: + - type: Transform + pos: 27.5,2.5 + parent: 2 + - uid: 17001 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,13.5 + pos: 32.5,20.5 parent: 2 - - uid: 437 + - uid: 17003 components: - type: Transform - pos: -17.5,17.5 + pos: 20.5,-4.5 parent: 2 - - uid: 442 + - uid: 17004 components: - type: Transform - pos: -26.5,13.5 + pos: 20.5,-5.5 parent: 2 - - uid: 443 + - uid: 17030 components: - type: Transform - pos: -26.5,15.5 + pos: 32.5,31.5 + parent: 2 + - uid: 17031 + components: + - type: Transform + pos: 31.5,31.5 + parent: 2 + - uid: 17045 + components: + - type: Transform + pos: 20.5,-3.5 + parent: 2 + - uid: 17048 + components: + - type: Transform + pos: 21.5,-3.5 + parent: 2 + - uid: 17137 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 17553 + components: + - type: Transform + pos: -17.5,14.5 + parent: 2 + - uid: 17560 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 19 + components: + - type: Transform + pos: -70.5,61.5 + parent: 2 + - uid: 91 + components: + - type: Transform + pos: -0.5,30.5 + parent: 2 + - uid: 351 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,22.5 parent: 2 - uid: 452 components: @@ -99391,11 +104904,6 @@ entities: - type: Transform pos: -42.5,13.5 parent: 2 - - uid: 722 - components: - - type: Transform - pos: 14.5,32.5 - parent: 2 - uid: 768 components: - type: Transform @@ -99429,6 +104937,11 @@ entities: - type: Transform pos: -50.5,12.5 parent: 2 + - uid: 1101 + components: + - type: Transform + pos: -72.5,17.5 + parent: 2 - uid: 1104 components: - type: Transform @@ -99543,44 +105056,8 @@ entities: - uid: 1504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,13.5 - parent: 2 - - uid: 1505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,13.5 - parent: 2 - - uid: 1506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 2 - - uid: 1508 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,13.5 - parent: 2 - - uid: 1517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,13.5 - parent: 2 - - uid: 1518 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,13.5 - parent: 2 - - uid: 1519 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,13.5 + rot: 1.5707963267948966 rad + pos: 9.5,56.5 parent: 2 - uid: 1589 components: @@ -99693,6 +105170,11 @@ entities: - type: Transform pos: -66.5,-0.5 parent: 2 + - uid: 1752 + components: + - type: Transform + pos: -74.5,17.5 + parent: 2 - uid: 1759 components: - type: Transform @@ -99728,6 +105210,11 @@ entities: - type: Transform pos: -46.5,21.5 parent: 2 + - uid: 1772 + components: + - type: Transform + pos: 27.5,33.5 + parent: 2 - uid: 1781 components: - type: Transform @@ -99786,18 +105273,6 @@ entities: rot: -1.5707963267948966 rad pos: -12.5,22.5 parent: 2 - - uid: 1832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,22.5 - parent: 2 - - uid: 1833 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 2 - uid: 1835 components: - type: Transform @@ -99831,8 +105306,7 @@ entities: - uid: 1841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,22.5 + pos: 27.5,37.5 parent: 2 - uid: 1843 components: @@ -99852,18 +105326,6 @@ entities: rot: -1.5707963267948966 rad pos: -37.5,22.5 parent: 2 - - uid: 1847 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,22.5 - parent: 2 - - uid: 1848 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,22.5 - parent: 2 - uid: 1850 components: - type: Transform @@ -99876,18 +105338,6 @@ entities: rot: -1.5707963267948966 rad pos: -31.5,22.5 parent: 2 - - uid: 1854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,22.5 - parent: 2 - - uid: 1856 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,22.5 - parent: 2 - uid: 1863 components: - type: Transform @@ -100380,6 +105830,11 @@ entities: - type: Transform pos: -53.5,33.5 parent: 2 + - uid: 2015 + components: + - type: Transform + pos: -67.5,21.5 + parent: 2 - uid: 2019 components: - type: Transform @@ -100779,6 +106234,11 @@ entities: rot: -1.5707963267948966 rad pos: -7.5,64.5 parent: 2 + - uid: 2250 + components: + - type: Transform + pos: -12.5,23.5 + parent: 2 - uid: 2254 components: - type: Transform @@ -100826,6 +106286,11 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,59.5 parent: 2 + - uid: 2295 + components: + - type: Transform + pos: -27.5,37.5 + parent: 2 - uid: 2337 components: - type: Transform @@ -101083,7 +106548,12 @@ entities: - uid: 2486 components: - type: Transform - pos: -11.5,63.5 + pos: -68.5,-2.5 + parent: 2 + - uid: 2491 + components: + - type: Transform + pos: -72.5,-3.5 parent: 2 - uid: 2499 components: @@ -101097,6 +106567,11 @@ entities: rot: 3.141592653589793 rad pos: 22.5,24.5 parent: 2 + - uid: 2509 + components: + - type: Transform + pos: -67.5,25.5 + parent: 2 - uid: 2536 components: - type: Transform @@ -101111,18 +106586,33 @@ entities: - uid: 2559 components: - type: Transform - pos: 19.5,34.5 + pos: -71.5,-2.5 parent: 2 - uid: 2561 components: - type: Transform pos: 3.5,48.5 parent: 2 + - uid: 2565 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 - uid: 2568 components: - type: Transform pos: 18.5,34.5 parent: 2 + - uid: 2574 + components: + - type: Transform + pos: -73.5,-1.5 + parent: 2 + - uid: 2586 + components: + - type: Transform + pos: -56.5,-2.5 + parent: 2 - uid: 2588 components: - type: Transform @@ -101134,6 +106624,11 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,55.5 parent: 2 + - uid: 2648 + components: + - type: Transform + pos: -70.5,-2.5 + parent: 2 - uid: 2650 components: - type: Transform @@ -101198,7 +106693,7 @@ entities: - uid: 2680 components: - type: Transform - pos: 10.5,66.5 + pos: -57.5,-2.5 parent: 2 - uid: 2682 components: @@ -101250,11 +106745,6 @@ entities: - type: Transform pos: -11.5,60.5 parent: 2 - - uid: 2732 - components: - - type: Transform - pos: -11.5,64.5 - parent: 2 - uid: 2733 components: - type: Transform @@ -101316,11 +106806,6 @@ entities: - type: Transform pos: 16.5,41.5 parent: 2 - - uid: 2805 - components: - - type: Transform - pos: 15.5,41.5 - parent: 2 - uid: 2809 components: - type: Transform @@ -101380,6 +106865,11 @@ entities: - type: Transform pos: -52.5,64.5 parent: 2 + - uid: 2906 + components: + - type: Transform + pos: 25.5,20.5 + parent: 2 - uid: 2907 components: - type: Transform @@ -101425,6 +106915,11 @@ entities: - type: Transform pos: -56.5,68.5 parent: 2 + - uid: 2941 + components: + - type: Transform + pos: -71.5,24.5 + parent: 2 - uid: 2942 components: - type: Transform @@ -101589,11 +107084,6 @@ entities: - type: Transform pos: -26.5,22.5 parent: 2 - - uid: 3064 - components: - - type: Transform - pos: -24.5,22.5 - parent: 2 - uid: 3073 components: - type: Transform @@ -101617,11 +107107,26 @@ entities: rot: 3.141592653589793 rad pos: -32.5,70.5 parent: 2 + - uid: 3120 + components: + - type: Transform + pos: -72.5,23.5 + parent: 2 - uid: 3129 components: - type: Transform pos: -75.5,13.5 parent: 2 + - uid: 3130 + components: + - type: Transform + pos: -71.5,20.5 + parent: 2 + - uid: 3158 + components: + - type: Transform + pos: -68.5,20.5 + parent: 2 - uid: 3160 components: - type: Transform @@ -102134,21 +107639,11 @@ entities: - type: Transform pos: -16.5,33.5 parent: 2 - - uid: 4281 - components: - - type: Transform - pos: -16.5,32.5 - parent: 2 - uid: 4283 components: - type: Transform pos: -20.5,22.5 parent: 2 - - uid: 4284 - components: - - type: Transform - pos: -21.5,22.5 - parent: 2 - uid: 4286 components: - type: Transform @@ -102226,12 +107721,6 @@ entities: - type: Transform pos: -20.5,26.5 parent: 2 - - uid: 4337 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,26.5 - parent: 2 - uid: 4348 components: - type: Transform @@ -102354,17 +107843,42 @@ entities: rot: 3.141592653589793 rad pos: -56.5,40.5 parent: 2 + - uid: 4618 + components: + - type: Transform + pos: -27.5,26.5 + parent: 2 - uid: 4653 components: - type: Transform pos: -43.5,4.5 parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 27.5,31.5 + parent: 2 + - uid: 4658 + components: + - type: Transform + pos: 27.5,32.5 + parent: 2 + - uid: 4677 + components: + - type: Transform + pos: 27.5,35.5 + parent: 2 - uid: 4734 components: - type: Transform rot: -1.5707963267948966 rad pos: -42.5,36.5 parent: 2 + - uid: 4741 + components: + - type: Transform + pos: -73.5,17.5 + parent: 2 - uid: 4786 components: - type: Transform @@ -102398,11 +107912,21 @@ entities: - type: Transform pos: 14.5,30.5 parent: 2 + - uid: 5024 + components: + - type: Transform + pos: -2.5,55.5 + parent: 2 - uid: 5051 components: - type: Transform pos: 17.5,32.5 parent: 2 + - uid: 5133 + components: + - type: Transform + pos: -75.5,17.5 + parent: 2 - uid: 5151 components: - type: Transform @@ -102463,16 +107987,6 @@ entities: - type: Transform pos: -5.5,36.5 parent: 2 - - uid: 5600 - components: - - type: Transform - pos: -14.5,26.5 - parent: 2 - - uid: 5602 - components: - - type: Transform - pos: -16.5,31.5 - parent: 2 - uid: 5611 components: - type: Transform @@ -102567,11 +108081,6 @@ entities: - type: Transform pos: 17.5,30.5 parent: 2 - - uid: 5907 - components: - - type: Transform - pos: 14.5,33.5 - parent: 2 - uid: 5916 components: - type: Transform @@ -102590,24 +108099,12 @@ entities: rot: 3.141592653589793 rad pos: 12.5,62.5 parent: 2 - - uid: 5938 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,56.5 - parent: 2 - uid: 5939 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,56.5 parent: 2 - - uid: 6017 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,56.5 - parent: 2 - uid: 6071 components: - type: Transform @@ -102618,11 +108115,31 @@ entities: - type: Transform pos: 6.5,59.5 parent: 2 + - uid: 6112 + components: + - type: Transform + pos: -77.5,-1.5 + parent: 2 - uid: 6235 components: - type: Transform pos: -39.5,1.5 parent: 2 + - uid: 6289 + components: + - type: Transform + pos: -78.5,-1.5 + parent: 2 + - uid: 6290 + components: + - type: Transform + pos: -72.5,-2.5 + parent: 2 + - uid: 6291 + components: + - type: Transform + pos: -59.5,-2.5 + parent: 2 - uid: 6293 components: - type: Transform @@ -102643,6 +108160,11 @@ entities: - type: Transform pos: -56.5,7.5 parent: 2 + - uid: 6587 + components: + - type: Transform + pos: -66.5,-2.5 + parent: 2 - uid: 6704 components: - type: Transform @@ -102669,6 +108191,11 @@ entities: - type: Transform pos: -47.5,0.5 parent: 2 + - uid: 6894 + components: + - type: Transform + pos: -62.5,-2.5 + parent: 2 - uid: 6895 components: - type: Transform @@ -102679,6 +108206,16 @@ entities: - type: Transform pos: -50.5,6.5 parent: 2 + - uid: 6898 + components: + - type: Transform + pos: -67.5,22.5 + parent: 2 + - uid: 6900 + components: + - type: Transform + pos: -61.5,-2.5 + parent: 2 - uid: 6903 components: - type: Transform @@ -102749,11 +108286,51 @@ entities: - type: Transform pos: -54.5,7.5 parent: 2 + - uid: 6943 + components: + - type: Transform + pos: -72.5,19.5 + parent: 2 - uid: 6960 components: - type: Transform pos: -47.5,9.5 parent: 2 + - uid: 6961 + components: + - type: Transform + pos: -70.5,20.5 + parent: 2 + - uid: 6982 + components: + - type: Transform + pos: 24.5,12.5 + parent: 2 + - uid: 6983 + components: + - type: Transform + pos: -72.5,20.5 + parent: 2 + - uid: 6985 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 6986 + components: + - type: Transform + pos: -68.5,24.5 + parent: 2 + - uid: 6987 + components: + - type: Transform + pos: -69.5,24.5 + parent: 2 + - uid: 6994 + components: + - type: Transform + pos: -72.5,21.5 + parent: 2 - uid: 7003 components: - type: Transform @@ -102764,6 +108341,16 @@ entities: - type: Transform pos: -69.5,8.5 parent: 2 + - uid: 7021 + components: + - type: Transform + pos: -73.5,71.5 + parent: 2 + - uid: 7022 + components: + - type: Transform + pos: -72.5,71.5 + parent: 2 - uid: 7061 components: - type: Transform @@ -102775,11 +108362,81 @@ entities: rot: 3.141592653589793 rad pos: -70.5,54.5 parent: 2 + - uid: 7257 + components: + - type: Transform + pos: -67.5,26.5 + parent: 2 + - uid: 7269 + components: + - type: Transform + pos: -40.5,0.5 + parent: 2 + - uid: 7277 + components: + - type: Transform + pos: -74.5,71.5 + parent: 2 + - uid: 7279 + components: + - type: Transform + pos: -75.5,71.5 + parent: 2 + - uid: 7281 + components: + - type: Transform + pos: -84.5,71.5 + parent: 2 + - uid: 7285 + components: + - type: Transform + pos: -85.5,71.5 + parent: 2 - uid: 7301 components: - type: Transform pos: -7.5,32.5 parent: 2 + - uid: 7381 + components: + - type: Transform + pos: 26.5,24.5 + parent: 2 + - uid: 7382 + components: + - type: Transform + pos: 26.5,23.5 + parent: 2 + - uid: 7384 + components: + - type: Transform + pos: -79.5,-1.5 + parent: 2 + - uid: 7387 + components: + - type: Transform + pos: 26.5,20.5 + parent: 2 + - uid: 7390 + components: + - type: Transform + pos: -70.5,71.5 + parent: 2 + - uid: 7391 + components: + - type: Transform + pos: -82.5,71.5 + parent: 2 + - uid: 7392 + components: + - type: Transform + pos: -39.5,0.5 + parent: 2 + - uid: 7393 + components: + - type: Transform + pos: -65.5,-2.5 + parent: 2 - uid: 7404 components: - type: Transform @@ -102826,6 +108483,11 @@ entities: - type: Transform pos: -21.5,34.5 parent: 2 + - uid: 7940 + components: + - type: Transform + pos: -79.5,71.5 + parent: 2 - uid: 7971 components: - type: Transform @@ -102864,6 +108526,11 @@ entities: rot: 1.5707963267948966 rad pos: -52.5,53.5 parent: 2 + - uid: 8366 + components: + - type: Transform + pos: -83.5,71.5 + parent: 2 - uid: 8763 components: - type: Transform @@ -102958,10 +108625,10 @@ entities: rot: 3.141592653589793 rad pos: -66.5,53.5 parent: 2 - - uid: 11189 + - uid: 11358 components: - type: Transform - pos: -17.5,14.5 + pos: -77.5,71.5 parent: 2 - uid: 11450 components: @@ -102987,6 +108654,12 @@ entities: rot: 1.5707963267948966 rad pos: -53.5,53.5 parent: 2 + - uid: 11965 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -59.5,3.5 + parent: 2 - uid: 12008 components: - type: Transform @@ -103004,6 +108677,11 @@ entities: rot: 3.141592653589793 rad pos: -67.5,50.5 parent: 2 + - uid: 12406 + components: + - type: Transform + pos: -80.5,71.5 + parent: 2 - uid: 12411 components: - type: Transform @@ -103074,6 +108752,11 @@ entities: - type: Transform pos: -39.5,10.5 parent: 2 + - uid: 12976 + components: + - type: Transform + pos: -64.5,-2.5 + parent: 2 - uid: 12980 components: - type: Transform @@ -103090,12 +108773,6 @@ entities: - type: Transform pos: -55.5,18.5 parent: 2 - - uid: 13106 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,56.5 - parent: 2 - uid: 13198 components: - type: Transform @@ -103164,6 +108841,51 @@ entities: - type: Transform pos: 30.5,46.5 parent: 2 + - uid: 13554 + components: + - type: Transform + pos: -71.5,71.5 + parent: 2 + - uid: 13555 + components: + - type: Transform + pos: -76.5,71.5 + parent: 2 + - uid: 13556 + components: + - type: Transform + pos: -81.5,71.5 + parent: 2 + - uid: 13563 + components: + - type: Transform + pos: -78.5,71.5 + parent: 2 + - uid: 13614 + components: + - type: Transform + pos: -67.5,-2.5 + parent: 2 + - uid: 13615 + components: + - type: Transform + pos: -72.5,-1.5 + parent: 2 + - uid: 13617 + components: + - type: Transform + pos: 22.5,5.5 + parent: 2 + - uid: 13618 + components: + - type: Transform + pos: 21.5,5.5 + parent: 2 + - uid: 13619 + components: + - type: Transform + pos: 23.5,5.5 + parent: 2 - uid: 13672 components: - type: Transform @@ -103194,6 +108916,11 @@ entities: - type: Transform pos: -51.5,15.5 parent: 2 + - uid: 13759 + components: + - type: Transform + pos: -67.5,24.5 + parent: 2 - uid: 13760 components: - type: Transform @@ -103220,6 +108947,11 @@ entities: - type: Transform pos: -40.5,4.5 parent: 2 + - uid: 14006 + components: + - type: Transform + pos: -63.5,-2.5 + parent: 2 - uid: 14028 components: - type: Transform @@ -103363,10 +109095,10 @@ entities: - type: Transform pos: -41.5,10.5 parent: 2 - - uid: 14261 + - uid: 14262 components: - type: Transform - pos: -60.5,3.5 + pos: 26.5,21.5 parent: 2 - uid: 14272 components: @@ -103393,6 +109125,11 @@ entities: - type: Transform pos: -66.5,-1.5 parent: 2 + - uid: 14384 + components: + - type: Transform + pos: -86.5,71.5 + parent: 2 - uid: 14401 components: - type: Transform @@ -103460,6 +109197,168 @@ entities: rot: 3.141592653589793 rad pos: 6.5,70.5 parent: 2 + - uid: 16864 + components: + - type: Transform + pos: -67.5,20.5 + parent: 2 + - uid: 17051 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -75.5,-1.5 + parent: 2 + - uid: 17109 + components: + - type: Transform + pos: -72.5,22.5 + parent: 2 + - uid: 17222 + components: + - type: Transform + pos: -64.5,-3.5 + parent: 2 + - uid: 17223 + components: + - type: Transform + pos: -64.5,-5.5 + parent: 2 + - uid: 17224 + components: + - type: Transform + pos: -64.5,-6.5 + parent: 2 + - uid: 17225 + components: + - type: Transform + pos: -64.5,-4.5 + parent: 2 + - uid: 17248 + components: + - type: Transform + pos: -72.5,-5.5 + parent: 2 + - uid: 17251 + components: + - type: Transform + pos: 26.5,19.5 + parent: 2 + - uid: 17252 + components: + - type: Transform + pos: 26.5,18.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + pos: 26.5,17.5 + parent: 2 + - uid: 17254 + components: + - type: Transform + pos: 26.5,16.5 + parent: 2 + - uid: 17255 + components: + - type: Transform + pos: 25.5,12.5 + parent: 2 + - uid: 17256 + components: + - type: Transform + pos: 26.5,12.5 + parent: 2 + - uid: 17257 + components: + - type: Transform + pos: 26.5,15.5 + parent: 2 + - uid: 17258 + components: + - type: Transform + pos: 26.5,14.5 + parent: 2 + - uid: 17259 + components: + - type: Transform + pos: 26.5,13.5 + parent: 2 + - uid: 17293 + components: + - type: Transform + pos: 20.5,-2.5 + parent: 2 + - uid: 17294 + components: + - type: Transform + pos: 20.5,0.5 + parent: 2 + - uid: 17295 + components: + - type: Transform + pos: 20.5,-1.5 + parent: 2 + - uid: 17298 + components: + - type: Transform + pos: 24.5,5.5 + parent: 2 + - uid: 17299 + components: + - type: Transform + pos: 24.5,7.5 + parent: 2 + - uid: 17300 + components: + - type: Transform + pos: 24.5,8.5 + parent: 2 + - uid: 17301 + components: + - type: Transform + pos: 24.5,6.5 + parent: 2 + - uid: 17302 + components: + - type: Transform + pos: 24.5,9.5 + parent: 2 + - uid: 17303 + components: + - type: Transform + pos: 24.5,10.5 + parent: 2 + - uid: 17304 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 17305 + components: + - type: Transform + pos: 26.5,5.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + pos: -76.5,-1.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,3.5 + parent: 2 + - uid: 17448 + components: + - type: Transform + pos: -70.5,74.5 + parent: 2 + - uid: 17449 + components: + - type: Transform + pos: -71.5,74.5 + parent: 2 - proto: WardrobeBlackFilled entities: - uid: 7411 @@ -103570,11 +109469,6 @@ entities: - type: Transform pos: -21.5,50.5 parent: 2 - - uid: 5026 - components: - - type: Transform - pos: -1.5,47.5 - parent: 2 - uid: 5083 components: - type: Transform @@ -103862,21 +109756,34 @@ entities: parent: 2 - type: ChamberMagazineAmmoProvider boltClosed: True -- proto: WeaponLaserCarbine +- proto: WeaponLaserCarbinePractice entities: - - uid: 6442 + - uid: 11651 components: - type: Transform - parent: 13034 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 20.410686,1.5991724 + parent: 2 + - uid: 17216 + components: + - type: Transform + pos: 28.557188,37.582615 + parent: 2 + - uid: 17494 + components: + - type: Transform + pos: 26.457561,4.5835476 + parent: 2 + - uid: 17495 + components: + - type: Transform + pos: 26.613811,-2.5883276 + parent: 2 - proto: WeaponShotgunEnforcer entities: - uid: 6443 components: - type: Transform - parent: 13031 + parent: 13930 - type: Physics canCollide: False - type: InsideEntityStorage @@ -103959,6 +109866,11 @@ entities: - type: Transform pos: 19.5,-5.5 parent: 2 + - uid: 17355 + components: + - type: Transform + pos: -61.5,-3.5 + parent: 2 - proto: Windoor entities: - uid: 93 @@ -104176,6 +110088,11 @@ entities: rot: -1.5707963267948966 rad pos: -36.5,63.5 parent: 2 + - uid: 17657 + components: + - type: Transform + pos: -67.5,64.5 + parent: 2 - proto: WindoorSecureArmoryLocked entities: - uid: 4929 @@ -104197,11 +110114,6 @@ entities: parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 1142 - components: - - type: Transform - pos: -67.5,64.5 - parent: 2 - uid: 1527 components: - type: Transform @@ -104445,8 +110357,20 @@ entities: - type: Transform pos: -31.5,51.5 parent: 2 + - uid: 14218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -67.5,64.5 + parent: 2 - proto: Window entities: + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,26.5 + parent: 2 - uid: 235 components: - type: Transform @@ -104490,11 +110414,28 @@ entities: - type: Transform pos: -66.5,61.5 parent: 2 + - uid: 3657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 + - uid: 3701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,41.5 + parent: 2 - uid: 3843 components: - type: Transform pos: -30.5,22.5 parent: 2 + - uid: 4284 + components: + - type: Transform + pos: -24.5,22.5 + parent: 2 - uid: 4491 components: - type: Transform @@ -104636,10 +110577,11 @@ entities: rot: 3.141592653589793 rad pos: -33.5,13.5 parent: 2 - - uid: 6789 + - uid: 7020 components: - type: Transform - pos: -27.5,26.5 + rot: -1.5707963267948966 rad + pos: -34.5,22.5 parent: 2 - uid: 7089 components: @@ -104749,12 +110691,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,11.5 parent: 2 - - uid: 11920 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,56.5 - parent: 2 - uid: 12106 components: - type: Transform @@ -104805,6 +110741,21 @@ entities: rot: 3.141592653589793 rad pos: -16.5,59.5 parent: 2 + - uid: 14441 + components: + - type: Transform + pos: -14.5,26.5 + parent: 2 + - uid: 14442 + components: + - type: Transform + pos: -16.5,31.5 + parent: 2 + - uid: 14745 + components: + - type: Transform + pos: -16.5,32.5 + parent: 2 - uid: 15197 components: - type: Transform @@ -104821,6 +110772,78 @@ entities: rot: 3.141592653589793 rad pos: 6.5,67.5 parent: 2 + - uid: 17092 + components: + - type: Transform + pos: -11.5,63.5 + parent: 2 + - uid: 17093 + components: + - type: Transform + pos: -11.5,64.5 + parent: 2 + - uid: 17095 + components: + - type: Transform + pos: 10.5,66.5 + parent: 2 + - uid: 17096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,34.5 + parent: 2 + - uid: 17097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,33.5 + parent: 2 + - uid: 17098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,32.5 + parent: 2 + - uid: 17101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.5,22.5 + parent: 2 + - uid: 17103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,22.5 + parent: 2 + - uid: 17107 + components: + - type: Transform + pos: -23.5,22.5 + parent: 2 + - uid: 17568 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,56.5 + parent: 2 + - uid: 17569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -51.5,56.5 + parent: 2 + - uid: 17573 + components: + - type: Transform + pos: -22.5,22.5 + parent: 2 + - uid: 17574 + components: + - type: Transform + pos: -21.5,22.5 + parent: 2 - proto: WindowDirectional entities: - uid: 94 @@ -105179,6 +111202,204 @@ entities: rot: -1.5707963267948966 rad pos: -22.5,63.5 parent: 2 + - uid: 17456 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 + - uid: 17457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,3.5 + parent: 2 + - uid: 17458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,2.5 + parent: 2 + - uid: 17459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,1.5 + parent: 2 + - uid: 17460 + components: + - type: Transform + pos: 21.5,1.5 + parent: 2 + - uid: 17461 + components: + - type: Transform + pos: 20.5,2.5 + parent: 2 + - uid: 17462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 2 + - uid: 17463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - uid: 17464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,1.5 + parent: 2 + - uid: 17465 + components: + - type: Transform + pos: 22.5,0.5 + parent: 2 + - uid: 17466 + components: + - type: Transform + pos: 21.5,-0.5 + parent: 2 + - uid: 17467 + components: + - type: Transform + pos: 21.5,0.5 + parent: 2 + - uid: 17468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-2.5 + parent: 2 + - uid: 17470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 2 + - uid: 17471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-1.5 + parent: 2 + - uid: 17472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 2 + - uid: 17473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-2.5 + parent: 2 + - uid: 17474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 2 + - uid: 17475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 2 + - uid: 17476 + components: + - type: Transform + pos: 26.5,-0.5 + parent: 2 + - uid: 17477 + components: + - type: Transform + pos: 25.5,1.5 + parent: 2 + - uid: 17478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,0.5 + parent: 2 + - uid: 17479 + components: + - type: Transform + pos: 23.5,0.5 + parent: 2 + - uid: 17480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,1.5 + parent: 2 + - uid: 17481 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 2 + - uid: 17482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,4.5 + parent: 2 + - uid: 17483 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 17484 + components: + - type: Transform + pos: 24.5,3.5 + parent: 2 + - uid: 17485 + components: + - type: Transform + pos: 25.5,3.5 + parent: 2 + - uid: 17486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,4.5 + parent: 2 + - uid: 17487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,1.5 + parent: 2 + - uid: 17488 + components: + - type: Transform + pos: 26.5,1.5 + parent: 2 + - uid: 17489 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - uid: 17490 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 - proto: WindowFrostedDirectional entities: - uid: 138 @@ -105222,6 +111443,24 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,61.5 parent: 2 + - uid: 7271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,34.5 + parent: 2 + - uid: 17212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,34.5 + parent: 2 + - uid: 17213 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,34.5 + parent: 2 - proto: WindowReinforcedDirectional entities: - uid: 4401 diff --git a/Resources/Maps/marathon.yml b/Resources/Maps/marathon.yml index 955ebf969ac2..5faaf9e17cfd 100644 --- a/Resources/Maps/marathon.yml +++ b/Resources/Maps/marathon.yml @@ -74,51 +74,51 @@ entities: chunks: -1,0: ind: -1,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABTQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABTQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADTQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAYAAAAAAAYAAAAAABYAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAABfgAAAAAAYAAAAAADYAAAAAAAYAAAAAABYAAAAAAAYAAAAAABfgAAAAAAXQAAAAADHwAAAAABXQAAAAAAHwAAAAADXQAAAAABHwAAAAABXQAAAAABHwAAAAAAXQAAAAACHwAAAAABYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAYAAAAAACfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAXQAAAAADHwAAAAABXQAAAAAAHwAAAAAAXQAAAAAAYAAAAAABYAAAAAADYAAAAAAAYAAAAAAAYAAAAAADfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABHwAAAAACXQAAAAAAHwAAAAAAXQAAAAACHwAAAAACXQAAAAABHwAAAAACYAAAAAADYAAAAAACYAAAAAAAYAAAAAABYAAAAAABfgAAAAAAHwAAAAACXQAAAAACHwAAAAAAXQAAAAABHwAAAAADXQAAAAACHwAAAAADXQAAAAABHwAAAAACXQAAAAAAYAAAAAAAYAAAAAADYAAAAAABYAAAAAAAYAAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAABHwAAAAADXQAAAAADHwAAAAAAXQAAAAADHwAAAAABXQAAAAAAHwAAAAADYAAAAAACYAAAAAACYAAAAAABYAAAAAACYAAAAAACfgAAAAAAHwAAAAACXQAAAAAAHwAAAAACXQAAAAACHwAAAAABXQAAAAACHwAAAAABXQAAAAAAHwAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADLgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAACegAAAAABegAAAAACegAAAAADegAAAAABegAAAAACLgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAADLgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAAB + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAYAAAAAACYAAAAAABYAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAfgAAAAAAYAAAAAADYAAAAAAAYAAAAAAAYAAAAAACYAAAAAADfgAAAAAAXQAAAAAAHwAAAAADXQAAAAAAHwAAAAACXQAAAAACHwAAAAABXQAAAAAAHwAAAAABXQAAAAADHwAAAAABYAAAAAABYAAAAAAAYAAAAAACYAAAAAADYAAAAAACfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAAAHwAAAAADXQAAAAADHwAAAAADXQAAAAABHwAAAAACXQAAAAACYAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAADfgAAAAAAXQAAAAAAHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAADHwAAAAAAXQAAAAADHwAAAAADYAAAAAABYAAAAAACYAAAAAADYAAAAAADYAAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAACXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAADHwAAAAACXQAAAAABYAAAAAABYAAAAAADYAAAAAAAYAAAAAACYAAAAAADfgAAAAAAXQAAAAACHwAAAAAAXQAAAAABHwAAAAACXQAAAAABHwAAAAAAXQAAAAAAHwAAAAACXQAAAAAAHwAAAAAAYAAAAAACYAAAAAAAYAAAAAABYAAAAAAAYAAAAAADfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAAAHwAAAAAAXQAAAAADHwAAAAADXQAAAAADHwAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABLgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACegAAAAABLgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAADegAAAAACLgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAA version: 6 0,0: ind: 0,0 - tiles: XQAAAAABXQAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACTQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAATQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACTQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAHwAAAAABXQAAAAAAHwAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACHwAAAAADXQAAAAACHwAAAAABXQAAAAACHwAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABXQAAAAADHwAAAAABXQAAAAADHwAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAADXQAAAAACfgAAAAAAXQAAAAABHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHwAAAAAAHwAAAAADXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAeQAAAAAAHwAAAAAAcAAAAAAAHwAAAAAAegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAD + tiles: XQAAAAAAXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAADXQAAAAACHwAAAAADXQAAAAADHwAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADHwAAAAACXQAAAAADHwAAAAABXQAAAAACHwAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAABXQAAAAADHwAAAAAAXQAAAAADHwAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAACXQAAAAACHwAAAAADfgAAAAAAHwAAAAADXQAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACXQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAHwAAAAABHwAAAAABXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAcAAAAAABHwAAAAAAcAAAAAAAHwAAAAABegAAAAACfgAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABHwAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: cAAAAAAAcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAADTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAABeQAAAAAAeQAAAAAAcAAAAAABfgAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABeQAAAAADeQAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAADcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAADeQAAAAAAeQAAAAACcAAAAAAAcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAACcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAAATQAAAAAAXQAAAAABXQAAAAACXQAAAAABTQAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACTQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATQAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAACcAAAAAABcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAA + tiles: cAAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAABTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAABfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAACcAAAAAABfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAcAAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: fgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADMwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADegAAAAABegAAAAACegAAAAABJgAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAHwAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAACegAAAAABegAAAAADegAAAAABJgAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAABegAAAAADegAAAAABegAAAAAAJgAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAABMwAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAABMwAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADDgAAAAADDgAAAAACDgAAAAACMwAAAAAAJgAAAAABMwAAAAAAMwAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAAAegAAAAACMwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABegAAAAABegAAAAAAegAAAAABJgAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABHwAAAAAAXQAAAAACHwAAAAADHwAAAAAAHwAAAAABegAAAAABegAAAAABegAAAAACJgAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACegAAAAAAegAAAAADegAAAAADJgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAACMwAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABHwAAAAABHwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABMwAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAADgAAAAABDgAAAAAADgAAAAAAMwAAAAAAJgAAAAAAMwAAAAAAMwAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAA version: 6 -2,0: ind: -2,0 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACTQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABTQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABTQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAYAAAAAAAYAAAAAABHwAAAAABHwAAAAADfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABYAAAAAAAYAAAAAADJAAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADJAAAAAACHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAACYAAAAAADJAAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAYAAAAAADYAAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACYAAAAAACYAAAAAABHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAYAAAAAACYAAAAAACHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAYAAAAAADYAAAAAADHwAAAAACHwAAAAACfgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAAAYAAAAAADYAAAAAAAJAAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAYAAAAAABYAAAAAAAJAAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAYAAAAAADYAAAAAABJAAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAYAAAAAADYAAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAYAAAAAAAYAAAAAADHwAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADYAAAAAABYAAAAAAAHwAAAAABHwAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAHwAAAAADPAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 0,1: ind: 0,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAABKAAAAAAAXQAAAAAAXQAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAKAAAAAACXQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAXQAAAAABXQAAAAADHwAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAACTQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADTQAAAAAAXQAAAAACXQAAAAADTQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADTQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABTQAAAAADTQAAAAAATQAAAAADTQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACHwAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAABfgAAAAAAXQAAAAADHwAAAAADHwAAAAADHwAAAAADXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAHwAAAAABXQAAAAABXQAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADHwAAAAABXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAAAHwAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: LgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACegAAAAADegAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAADDAAAAAABDAAAAAADDAAAAAACfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABTQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACTQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABTQAAAAAATQAAAAAATQAAAAAATQAAAAADTQAAAAADTQAAAAAATQAAAAADTQAAAAAATQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAATQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABTQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAATQAAAAABHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAKAAAAAADHwAAAAABfgAAAAAATQAAAAABTQAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAegAAAAAC + tiles: LgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAADDAAAAAAADAAAAAACfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABegAAAAAD version: 6 -2,1: ind: -2,1 - tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAATQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADTQAAAAAAXQAAAAADTQAAAAAAXQAAAAACXQAAAAACXQAAAAADTQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACTQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAfgAAAAAA + tiles: fgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAACPAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAAAfgAAAAAA version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABHwAAAAADHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAXQAAAAABbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABbQAAAAAAfgAAAAAA + tiles: AAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAABHwAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAADHwAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAADXQAAAAABbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABbQAAAAAAfgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: fgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAABXQAAAAACXQAAAAADXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAABegAAAAACegAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABegAAAAAAegAAAAACfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAADKAAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAKAAAAAABKAAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAKAAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAKAAAAAAAKAAAAAABKAAAAAADKAAAAAACKAAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAADfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAD + tiles: fgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAACXQAAAAABXQAAAAACXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAACXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAACegAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABHwAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAegAAAAABegAAAAACegAAAAABegAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAD version: 6 -4,0: ind: -4,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAABMgAAAAAAXQAAAAABNAAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAMgAAAAABfgAAAAAANAAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAD version: 6 -3,-1: ind: -3,-1 - tiles: fgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAHwAAAAACLwAAAAACHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAAALwAAAAACHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADcAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACcAAAAAABAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAHwAAAAAALwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAABLwAAAAAAHwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAACcAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACcAAAAAADAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAA version: 6 -4,-1: ind: -4,-1 @@ -126,107 +126,107 @@ entities: version: 6 -2,-1: ind: -2,-1 - tiles: fgAAAAAAcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAcAAAAAACeQAAAAADcAAAAAAAcAAAAAADeQAAAAAAeQAAAAACeQAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAeQAAAAAAeQAAAAAAeQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAADcAAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAcAAAAAAAeQAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAACeQAAAAAAeQAAAAACcAAAAAADfgAAAAAAHwAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACcAAAAAABeQAAAAACeQAAAAABeQAAAAACeQAAAAAAeQAAAAADeQAAAAADeQAAAAADcAAAAAAAcAAAAAACHwAAAAACHwAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADcAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAADcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACeQAAAAACeQAAAAACeQAAAAACeQAAAAAAeQAAAAACeQAAAAABcAAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAADcAAAAAACfgAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAADfgAAAAAAcAAAAAACcAAAAAACcAAAAAACcAAAAAABcAAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAAAcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAeQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXwAAAAABXwAAAAADegAAAAAAegAAAAADegAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXwAAAAADXwAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXwAAAAADXwAAAAABegAAAAABegAAAAACegAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAD + tiles: fgAAAAAAcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAcAAAAAADcAAAAAABcAAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAcAAAAAABcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACcAAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAcAAAAAADHwAAAAAAHwAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAACcAAAAAAAcAAAAAABcAAAAAABcAAAAAACcAAAAAADcAAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAADcAAAAAADcAAAAAACcAAAAAADcAAAAAABcAAAAAADcAAAAAADfgAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAADcAAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAcAAAAAABcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXwAAAAACXwAAAAABegAAAAACegAAAAACegAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXwAAAAADXwAAAAACegAAAAABegAAAAABegAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXwAAAAABXwAAAAAAegAAAAADegAAAAADegAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAD version: 6 -2,2: ind: -2,2 - tiles: XQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAADJgAAAAADegAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAACegAAAAACegAAAAADegAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAADJAAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAJAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAACTQAAAAABfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADJgAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACegAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAcAAAAAAAcAAAAAABcAAAAAADUgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADJAAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADJAAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAACHwAAAAADHwAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAXQAAAAACHwAAAAACHwAAAAADHwAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAC + tiles: fgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAMQAAAAAAMQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAHwAAAAAAXQAAAAADHwAAAAADHwAAAAABHwAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAHwAAAAADXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAA version: 6 -4,1: ind: -4,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAADXQAAAAABNAAAAAACXQAAAAAAMQAAAAAAXQAAAAADXQAAAAADXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAADegAAAAAAegAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAD + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAADHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAANAAAAAADfgAAAAAAMQAAAAAAfgAAAAAAXQAAAAABXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAAAegAAAAACAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAACegAAAAADegAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAADegAAAAAAegAAAAAB version: 6 -4,2: ind: -4,2 - tiles: AAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD + tiles: AAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAD version: 6 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAAAcAAAAAACcAAAAAACXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAcAAAAAABcAAAAAACcAAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAADcAAAAAABXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAADcAAAAAABcAAAAAADXQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABcAAAAAABcAAAAAADcAAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfQAAAAAAfgAAAAAAfgAAAAAAMAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAADAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAAA version: 6 -3,3: ind: -3,3 - tiles: XQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: XQAAAAACXQAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAALgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAXQAAAAADUgAAAAAAUgAAAAAAfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 -2,3: ind: -2,3 - tiles: XQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAADXQAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,4: ind: -3,4 - tiles: XQAAAAABXQAAAAABXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: XQAAAAABXQAAAAAAXQAAAAABLgAAAAAALgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAACPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: HwAAAAAAHwAAAAABHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAACHwAAAAAAJAAAAAADHwAAAAACegAAAAADHwAAAAACHwAAAAADfgAAAAAAQAAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAACQAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACegAAAAABHwAAAAADHwAAAAABfgAAAAAAQAAAAAAAegAAAAACLwAAAAAALwAAAAADLwAAAAADegAAAAACQAAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAQAAAAAAAegAAAAACegAAAAADegAAAAABegAAAAAAegAAAAABQAAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAegAAAAABegAAAAAAHwAAAAABHwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADJAAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAACJAAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADDAAAAAACDAAAAAACDAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAABJAAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAA + tiles: HwAAAAAAHwAAAAACHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAADHwAAAAABJAAAAAAAHwAAAAADegAAAAAAHwAAAAADHwAAAAACfgAAAAAAQAAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACegAAAAADQAAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAACegAAAAABHwAAAAABHwAAAAABfgAAAAAAQAAAAAAAegAAAAACLwAAAAABLwAAAAAALwAAAAABegAAAAAAQAAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAQAAAAAAAegAAAAABegAAAAADegAAAAADegAAAAABegAAAAACQAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAADHwAAAAABHwAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACbAAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACJAAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACJAAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAADAAAAAADDAAAAAABDAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAADJAAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAgAAAAAA version: 6 0,2: ind: 0,2 - tiles: egAAAAADegAAAAADegAAAAABegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACegAAAAACegAAAAACegAAAAABKAAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAHwAAAAADOAAAAAAAHwAAAAADfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAABfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA + tiles: egAAAAACegAAAAADegAAAAADegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAOAAAAAAAHwAAAAABOAAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAHwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAABHwAAAAAA + tiles: AAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAACHwAAAAAA version: 6 1,1: ind: 1,1 - tiles: HwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAeQAAAAABeQAAAAABeQAAAAACeQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAAAeQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADcAAAAAACJAAAAAABJAAAAAADJAAAAAAATQAAAAAATQAAAAADHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAJAAAAAABJAAAAAABJAAAAAACTQAAAAADTQAAAAAAHwAAAAADHwAAAAAAHwAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADfgAAAAAAJAAAAAAAJAAAAAAAJAAAAAADTQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABcAAAAAACLgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA + tiles: HwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAACcAAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAABcAAAAAABcAAAAAADcAAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAJAAAAAAAJAAAAAABJAAAAAAAXQAAAAADXQAAAAACHwAAAAAAHwAAAAABHwAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAJAAAAAACJAAAAAACJAAAAAABXQAAAAADXQAAAAABHwAAAAACHwAAAAACHwAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAJAAAAAABJAAAAAADJAAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAALgAAAAAALgAAAAAAEAAAAAAAEAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADcAAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAEAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAA version: 6 1,2: ind: 1,2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAZwAAAAAAZwAAAAAAZwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAZwAAAAADZwAAAAABZwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADegAAAAABegAAAAACegAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAZwAAAAAAZwAAAAACZwAAAAABegAAAAAAegAAAAACegAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACfgAAAAAAZwAAAAABZwAAAAAAZwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAZwAAAAAAZwAAAAACZwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADegAAAAABegAAAAAAegAAAAABegAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAZwAAAAAAZwAAAAAAZwAAAAABegAAAAADegAAAAADegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAbAAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAbQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,2: ind: 2,2 - tiles: fgAAAAAATwAAAAAAfgAAAAAAHwAAAAACJgAAAAACJgAAAAABJgAAAAACJgAAAAAAJgAAAAAAJgAAAAABJgAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAADJgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADJgAAAAABJgAAAAACfgAAAAAAXQAAAAACHwAAAAADfgAAAAAAZwAAAAADZwAAAAADfgAAAAAAJgAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAABJgAAAAADHwAAAAAAHwAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACJgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACJgAAAAABfgAAAAAAXQAAAAAAHwAAAAACfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAAAegAAAAACegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABHwAAAAAAHwAAAAADXQAAAAACfgAAAAAAZwAAAAAAZwAAAAABfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADHwAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAADegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA + tiles: fgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAJgAAAAABJgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAAJgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAABJgAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADJgAAAAADJgAAAAADfgAAAAAAXQAAAAAAHwAAAAABfgAAAAAAZwAAAAACZwAAAAAAfgAAAAAAJgAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAABHwAAAAABJgAAAAADHwAAAAACHwAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAJgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABJgAAAAADfgAAAAAAXQAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAegAAAAADegAAAAABegAAAAACegAAAAABegAAAAADegAAAAABegAAAAADegAAAAABfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAXQAAAAACXQAAAAACHwAAAAABHwAAAAACegAAAAADegAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAADegAAAAADegAAAAAAHwAAAAABHwAAAAACXQAAAAACfgAAAAAAZwAAAAAAZwAAAAACfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAAAfgAAAAAAXQAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAACegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAAAegAAAAADegAAAAABegAAAAADegAAAAABegAAAAACegAAAAABegAAAAABHwAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAegAAAAADfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA version: 6 2,1: ind: 2,1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAATQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAZAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAALgAAAAAALgAAAAAAfgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,0: ind: 1,0 - tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAAAHwAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAADcAAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADcAAAAAABcAAAAAADXQAAAAADXQAAAAACXQAAAAACcAAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAXQAAAAACXQAAAAABXQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAACegAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAAAegAAAAADfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAADegAAAAADfgAAAAAAEQAAAAAA + tiles: XQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABegAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAADegAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACcAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAAAHwAAAAADHwAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABcAAAAAABcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACcAAAAAADcAAAAAAAXQAAAAABXQAAAAACXQAAAAAAcAAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADcAAAAAAAcAAAAAADXQAAAAADXQAAAAABXQAAAAAAcAAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADcAAAAAABcAAAAAADcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAADegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABegAAAAAAfgAAAAAAEQAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAABegAAAAADfgAAAAAAEQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: fQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACbQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAA + tiles: fQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAADbQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: HwAAAAAAfgAAAAAAXQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAATQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABcAAAAAADcAAAAAACcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAcAAAAAADcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA + tiles: HwAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAADEQAAAAAAXQAAAAAAEQAAAAAAXQAAAAAAEQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAAAEQAAAAAAXQAAAAADEQAAAAAAXQAAAAACEQAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADHwAAAAABfgAAAAAAXQAAAAAAEQAAAAAAXQAAAAABEQAAAAAAXQAAAAACEQAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADEQAAAAAAXQAAAAACEQAAAAAAXQAAAAAAEQAAAAAAXQAAAAACEQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABcAAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADcAAAAAACeQAAAAACcAAAAAADDAAAAAADcAAAAAACcAAAAAACcAAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAAADAAAAAACcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAcAAAAAACeQAAAAABcAAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADeQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAABfgAAAAAAcAAAAAAAeQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAABcAAAAAACDAAAAAABcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACDAAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAABeQAAAAAAcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAACcAAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAABcAAAAAAAeQAAAAADcAAAAAACfgAAAAAAeQAAAAABeQAAAAADeQAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAegAAAAABegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAcAAAAAADcAAAAAABcAAAAAABDAAAAAADcAAAAAADcAAAAAABcAAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAADcAAAAAABcAAAAAABDAAAAAABcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAACcAAAAAACfgAAAAAAcAAAAAABcAAAAAADcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACcAAAAAACDAAAAAABcAAAAAACcAAAAAABcAAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAADAAAAAACcAAAAAAAcAAAAAACcAAAAAACcAAAAAADcAAAAAABcAAAAAABcAAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAcAAAAAAAcAAAAAADcAAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAB version: 6 -3,-2: ind: -3,-2 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAHwAAAAADLwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACfgAAAAAAHwAAAAABLwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAADfgAAAAAAHwAAAAADLwAAAAABHwAAAAACbQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADcAAAAAAC + tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAADLwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAHwAAAAADLwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAADfgAAAAAAHwAAAAACLwAAAAABHwAAAAADbQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADcAAAAAAB version: 6 0,-2: ind: 0,-2 - tiles: fgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAATQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABTQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADTQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAACfgAAAAAA + tiles: fgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAADfgAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAADHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACXQAAAAABXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 1,-3: ind: 1,-3 @@ -234,19 +234,19 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: XQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAABTQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAfgAAAAAAXQAAAAACTQAAAAABXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAA + tiles: XQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAAAHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADHwAAAAACHwAAAAAAHwAAAAAAXQAAAAABHwAAAAAAHwAAAAACHwAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAATwAAAAAAfgAAAAAAHwAAAAADXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAADHwAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAATwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADfgAAAAAAHwAAAAAAHwAAAAAAZgAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACZgAAAAACZgAAAAAAZgAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACZgAAAAACHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAZgAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADXQAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAABXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAADfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAA version: 6 -2,-4: ind: -2,-4 - tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAXQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAHwAAAAAAfQAAAAAAHwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAA + tiles: AAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACHwAAAAADHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAACHwAAAAADHwAAAAACfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACXQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAbAAAAAAAHwAAAAADZgAAAAADZgAAAAADZgAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABZgAAAAABZgAAAAACZgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAAAXQAAAAAB version: 6 -1,-4: ind: -1,-4 - tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 0,-4: ind: 0,-4 @@ -254,11 +254,11 @@ entities: version: 6 -2,-5: ind: -2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 @@ -266,7 +266,7 @@ entities: version: 6 2,0: ind: 2,0 - tiles: fgAAAAAAegAAAAACegAAAAABegAAAAADegAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAABcAAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATQAAAAACTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATQAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fgAAAAAAegAAAAAAegAAAAACegAAAAACegAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAfgAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADfgAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 2,-3: ind: 2,-3 @@ -278,15 +278,15 @@ entities: version: 6 2,-4: ind: 2,-4 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAACCQAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAFBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAMBwAAAAAMBwAAAAABBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAFBwAAAAAJBwAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAAfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAABwAAAAAJBwAAAAAABwAAAAAEBwAAAAADCQAAAAAACQAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAHfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAALBwAAAAAABwAAAAAGBwAAAAAAfwAAAAAABwAAAAADAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAACQAAAAAABwAAAAACBwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAABwAAAAAIAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALfwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAADfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAALfwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAACegAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAADegAAAAADfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAADfgAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA + tiles: fQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAABegAAAAABegAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAACegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 3,2: ind: 3,2 @@ -298,7 +298,7 @@ entities: version: 6 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAALwAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 4,2: ind: 4,2 @@ -314,7 +314,7 @@ entities: version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAALwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAA version: 6 -6,3: ind: -6,3 @@ -322,51 +322,51 @@ entities: version: 6 -4,-2: ind: -4,-2 - tiles: BwAAAAAHCwAAAAAACwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAIfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAATgAAAAADTgAAAAAATgAAAAABTgAAAAABTgAAAAABTgAAAAACTgAAAAABXQAAAAABHwAAAAADHwAAAAADXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACXQAAAAADXQAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAATgAAAAAATgAAAAAATgAAAAACTgAAAAADTgAAAAAATgAAAAACTgAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA + tiles: BwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAJBwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAHwAAAAACHwAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAfgAAAAAATgAAAAAATgAAAAADTgAAAAABTgAAAAACTgAAAAACTgAAAAADTgAAAAABXQAAAAADHwAAAAADHwAAAAACXQAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACXQAAAAADXQAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADfgAAAAAATgAAAAAATgAAAAABTgAAAAADTgAAAAAATgAAAAAATgAAAAADTgAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: HwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAQAAAAAAAQAAAAAAAHwAAAAADfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACQAAAAAAAQAAAAAAAHwAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAHBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: HwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACfgAAAAAAHwAAAAABfgAAAAAAfwAAAAAABwAAAAAABwAAAAAKBwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADQAAAAAAAQAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAACBwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: fgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAACfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAJCwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAABwAAAAAICwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAABwAAAAALCwAAAAAABwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAABwAAAAACCwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAGfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMCwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADfgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAABwAAAAAFCwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAADfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAACwAAAAAACwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAAGBwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACwAAAAAABwAAAAABBwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAGCwAAAAAACwAAAAAACwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAKCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABwAAAAAABwAAAAADBwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAAfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAHBwAAAAAABwAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAABJgAAAAADJgAAAAABJgAAAAABJgAAAAABIgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAEBwAAAAAAagAAAAADagAAAAACagAAAAAAagAAAAACagAAAAACagAAAAABagAAAAACZQAAAAABJwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACTAAAAAAAfgAAAAAAawAAAAAAJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAABTAAAAAACTAAAAAACTAAAAAAATAAAAAACfgAAAAAAawAAAAACJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAACTAAAAAADTAAAAAABTAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAACKgAAAAACKgAAAAADKgAAAAABKgAAAAABKgAAAAABHwAAAAACawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAABKgAAAAADTAAAAAAATAAAAAAATAAAAAABfgAAAAAAawAAAAAAJwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAADTAAAAAAATAAAAAADTAAAAAAATAAAAAACTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAABTAAAAAABTAAAAAAATAAAAAABTAAAAAADfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAAAagAAAAABagAAAAAAagAAAAABagAAAAADagAAAAAAagAAAAABZQAAAAABJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAABJgAAAAAAJgAAAAAAJgAAAAACJgAAAAABJgAAAAAAJgAAAAACJgAAAAACIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAGCwAAAAAABwAAAAAAfgAAAAAA + tiles: egAAAAAAegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJgAAAAAAJgAAAAABJgAAAAACJgAAAAACJgAAAAAAJgAAAAACJgAAAAAAJgAAAAADIgAAAAACbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAABagAAAAACagAAAAABagAAAAACagAAAAADagAAAAAAagAAAAACZQAAAAACJwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAAATAAAAAACTAAAAAADTAAAAAADTAAAAAACTAAAAAAAfgAAAAAAawAAAAADJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACKgAAAAACTAAAAAACTAAAAAABTAAAAAABTAAAAAAAfgAAAAAAawAAAAADJwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAADKgAAAAAATAAAAAABTAAAAAACTAAAAAABTAAAAAACfgAAAAAAawAAAAADJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAKgAAAAABKgAAAAABKgAAAAACKgAAAAADKgAAAAADKgAAAAACHwAAAAAAawAAAAAAJwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATAAAAAACTAAAAAACKgAAAAACTAAAAAABTAAAAAACTAAAAAABfgAAAAAAawAAAAABJwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAATAAAAAACTAAAAAACTAAAAAABTAAAAAACTAAAAAABTAAAAAAAfgAAAAAAawAAAAADJwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAAfgAAAAAATAAAAAAATAAAAAACTAAAAAABTAAAAAADTAAAAAACTAAAAAAAfgAAAAAAawAAAAABJwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAALgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAawAAAAADJwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAagAAAAADagAAAAAAagAAAAABagAAAAAAagAAAAADagAAAAACagAAAAACZQAAAAAAJwAAAAACfgAAAAAAfgAAAAAAfgAAAAAACwAAAAAACwAAAAAACwAAAAAAfgAAAAAAJgAAAAAAJgAAAAADJgAAAAABJgAAAAAAJgAAAAAAJgAAAAADJgAAAAACJgAAAAADIgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAACwAAAAAABwAAAAAAfgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: fQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAD + tiles: fQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAADHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACHwAAAAABHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAABHwAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: fgAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAACJwAAAAAAJwAAAAAAIgAAAAADJgAAAAACJgAAAAABJgAAAAABJgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAABHwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADZQAAAAABagAAAAAAagAAAAADagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAJwAAAAAAJwAAAAAAJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAACTAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAJwAAAAADawAAAAACfgAAAAAATAAAAAACTAAAAAAAPgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAAJwAAAAAAawAAAAAAfgAAAAAATAAAAAABTAAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADHwAAAAAAegAAAAADegAAAAADegAAAAAAegAAAAADHwAAAAABJwAAAAAAawAAAAADHwAAAAACKgAAAAAAKgAAAAAAPAAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAADfgAAAAAAJwAAAAACawAAAAAAfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAACfgAAAAAAJwAAAAABawAAAAACfgAAAAAATAAAAAABTAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfgAAAAAAJwAAAAABawAAAAAAfgAAAAAATAAAAAAATAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAABawAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAABagAAAAABagAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAIgAAAAACJgAAAAABJgAAAAADJgAAAAADJgAAAAAC + tiles: fgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAABfgAAAAAAegAAAAACegAAAAAAegAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAADJwAAAAADJwAAAAACIgAAAAAAJgAAAAABJgAAAAAAJgAAAAABJgAAAAABHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAJwAAAAAAJwAAAAAAJwAAAAADZQAAAAAAagAAAAACagAAAAAAagAAAAACHwAAAAACfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAJwAAAAAAJwAAAAABJwAAAAACawAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAADawAAAAADfgAAAAAATAAAAAAATAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAACfgAAAAAAJwAAAAADawAAAAAAfgAAAAAATAAAAAACTAAAAAABPgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAACfgAAAAAAJwAAAAACawAAAAABfgAAAAAATAAAAAABTAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADHwAAAAACegAAAAACegAAAAABegAAAAABegAAAAABHwAAAAABJwAAAAABawAAAAAAHwAAAAACKgAAAAAAKgAAAAACPAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAACegAAAAAAfgAAAAAAJwAAAAAAawAAAAACfgAAAAAATAAAAAADTAAAAAACPAAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAfgAAAAAAJwAAAAADawAAAAABfgAAAAAATAAAAAABTAAAAAADPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAABfgAAAAAAJwAAAAABawAAAAABfgAAAAAATAAAAAACTAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAADawAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAJwAAAAACZQAAAAAAagAAAAADagAAAAABagAAAAADHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAIgAAAAACJgAAAAAAJgAAAAABJgAAAAACJgAAAAAB version: 6 -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAMfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAIfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAC version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABwAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAABfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAABwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAFfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAAB version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAADBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAABwAAAAAABwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAABBwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAAAegAAAAABfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAA version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA version: 6 -3,-4: ind: -3,-4 @@ -374,19 +374,19 @@ entities: version: 6 0,4: ind: 0,4 - tiles: HwAAAAACQAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAABQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADQAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HwAAAAACQAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAHwAAAAACQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACQAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAQAAAAAAAHwAAAAABHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAQAAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAcAAAAAADcAAAAAACcAAAAAAAcAAAAAADcAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA version: 6 -1,5: ind: -1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAEQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAcAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAcAAAAAAAcAAAAAABcAAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAcAAAAAACcAAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAATwAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,5: ind: 0,5 - tiles: fgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcAAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAADcAAAAAACcAAAAAACEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcAAAAAADcAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 @@ -394,7 +394,7 @@ entities: version: 6 2,-5: ind: 2,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAECQAAAAAACQAAAAAIfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAGBwAAAAAABwAAAAAHCQAAAAAJBwAAAAAABwAAAAAIfwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAfwAAAAAABwAAAAACCQAAAAAABwAAAAALCQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAIBwAAAAAABwAAAAAABwAAAAAACQAAAAAACQAAAAAJCQAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAADBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAfgAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAABwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfwAAAAAAfgAAAAAAfgAAAAAAfwAAAAAAfgAAAAAAfgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAALfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAABwAAAAAABwAAAAAACQAAAAAABwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAKfwAAAAAABwAAAAAABwAAAAAAfwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACQAAAAAMBwAAAAAHfwAAAAAABwAAAAAAfwAAAAAA version: 6 1,-5: ind: 1,-5 @@ -402,7 +402,7 @@ entities: version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 @@ -2567,8 +2567,6 @@ entities: color: '#334E6DC8' id: HalfTileOverlayGreyscale decals: - 393: -9,27 - 394: -11,27 395: -8,27 396: -7,27 397: -6,27 @@ -2578,8 +2576,14 @@ entities: 898: -1,66 1422: -3,27 1424: -17,27 - 3122: -10,27 - 3125: -10,26 + - node: + zIndex: 1 + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 3173: -9,27 + 3174: -10,27 + 3175: -11,27 - node: color: '#33666DC8' id: HalfTileOverlayGreyscale @@ -3314,7 +3318,6 @@ entities: 1502: -16,41 1503: -16,40 1504: -16,39 - 3127: -9,26 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale @@ -3544,7 +3547,6 @@ entities: 2386: 11,38 2387: 12,38 2388: 12,39 - 3123: -11,27 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 @@ -3776,7 +3778,6 @@ entities: 2383: 5,38 2384: 6,38 2385: 7,38 - 3124: -9,27 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -3984,7 +3985,6 @@ entities: 1510: -22,27 1511: -23,27 1512: -24,27 - 3126: -11,26 - node: color: '#52B4E957' id: QuarterTileOverlayGreyscale90 @@ -5135,12 +5135,6 @@ entities: id: bushsnowb3 decals: 1461: -9,41 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: grasssnow - decals: - 3128: -9.993465,26.89989 - type: GridAtmosphere version: 2 data: @@ -11573,7 +11567,7 @@ entities: pos: 34.5,45.5 parent: 30 - type: Door - secondsUntilStateChange: -3310.928 + secondsUntilStateChange: -3847.4316 state: Opening - type: DeviceLinkSource lastSignals: @@ -44407,23 +44401,21 @@ entities: parent: 30 - proto: Carpet entities: - - uid: 558 + - uid: 560 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,9.5 + pos: -4.5,8.5 parent: 30 - - uid: 559 + - uid: 568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,8.5 + pos: -1.5,9.5 parent: 30 - - uid: 560 + - uid: 569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,8.5 + pos: -1.5,8.5 parent: 30 - uid: 626 components: @@ -50556,12 +50548,6 @@ entities: rot: -1.5707963267948966 rad pos: -4.6779566,8.5487995 parent: 30 - - uid: 568 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.2799418,8.559224 - parent: 30 - uid: 573 components: - type: Transform @@ -50579,6 +50565,12 @@ entities: - type: Transform pos: 2.5,10.5 parent: 30 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 30 - uid: 661 components: - type: Transform @@ -50897,23 +50889,23 @@ entities: rot: 1.5707963267948966 rad pos: -29.5,-47.5 parent: 30 - - uid: 21379 + - uid: 21308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 + rot: 1.5707963267948966 rad + pos: -1.5,8.5 parent: 30 - - uid: 21390 + - uid: 21378 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,8.5 + pos: 0.5,8.5 parent: 30 - - uid: 21438 + - uid: 21379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.31120706,9.570343 + rot: -1.5707963267948966 rad + pos: 0.5,9.5 parent: 30 - uid: 21518 components: @@ -53006,48 +52998,6 @@ entities: - type: Transform pos: 19.385248,46.62064 parent: 30 -- proto: ClothingHeadHatSantahat - entities: - - uid: 22647 - components: - - type: Transform - pos: -28.484512,57.810516 - parent: 30 - - uid: 22651 - components: - - type: Transform - pos: -32.318687,58.626637 - parent: 30 - - uid: 22652 - components: - - type: Transform - pos: -32.611557,58.550613 - parent: 30 - - uid: 22653 - components: - - type: Transform - pos: -32.486496,58.74867 - parent: 30 - - uid: 22655 - components: - - type: Transform - pos: -42.46656,46.8322 - parent: 30 - - uid: 22657 - components: - - type: Transform - pos: -24.439611,51.525856 - parent: 30 - - uid: 22659 - components: - - type: Transform - pos: -33.486233,53.468388 - parent: 30 - - uid: 22661 - components: - - type: Transform - pos: -17.453934,40.800747 - parent: 30 - proto: ClothingHeadHatTophat entities: - uid: 19620 @@ -53510,48 +53460,6 @@ entities: - type: Transform pos: -75.60953,-47.39969 parent: 30 -- proto: ClothingOuterSanta - entities: - - uid: 22646 - components: - - type: Transform - pos: -28.5262,57.539494 - parent: 30 - - uid: 22648 - components: - - type: Transform - pos: -33.559944,58.70697 - parent: 30 - - uid: 22649 - components: - - type: Transform - pos: -33.330666,58.70697 - parent: 30 - - uid: 22650 - components: - - type: Transform - pos: -33.13159,58.72045 - parent: 30 - - uid: 22654 - components: - - type: Transform - pos: -42.52909,46.582027 - parent: 30 - - uid: 22656 - components: - - type: Transform - pos: -24.470877,50.60855 - parent: 30 - - uid: 22658 - components: - - type: Transform - pos: -32.50658,53.572628 - parent: 30 - - uid: 22660 - components: - - type: Transform - pos: -17.485199,40.560997 - parent: 30 - proto: ClothingOuterSuitChicken entities: - uid: 16151 @@ -65935,21 +65843,6 @@ entities: - type: Transform pos: -63.548233,-52.495842 parent: 30 -- proto: FloraTreeChristmas01 - entities: - - uid: 22603 - components: - - type: Transform - pos: -9.5,27.5 - parent: 30 -- proto: FloraTreeChristmas02 - entities: - - uid: 567 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 30 - proto: FloraTreeLarge entities: - uid: 22215 @@ -66056,14 +65949,6 @@ entities: - type: Transform pos: -11.54011,18.632044 parent: 30 -- proto: FoodCakeChristmas - entities: - - uid: 561 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 30 - proto: FoodCartCold entities: - uid: 4453 @@ -101073,12 +100958,12 @@ entities: - uid: 9248 components: - type: Transform - pos: 12.575159,-25.455227 + pos: 9.443903,-26.334238 parent: 30 - uid: 21276 components: - type: Transform - pos: 12.611021,-25.419067 + pos: 13.1149025,-25.293915 parent: 30 - proto: IngotGold entities: @@ -111358,267 +111243,6 @@ entities: - type: Transform pos: -42.5,22.5 parent: 30 -- proto: Present - entities: - - uid: 562 - components: - - type: Transform - pos: -2.924169,7.831236 - parent: 30 - - uid: 22606 - components: - - type: Transform - pos: -8.5774555,27.51071 - parent: 30 - - uid: 22607 - components: - - type: Transform - pos: -10.536761,27.687916 - parent: 30 - - uid: 22608 - components: - - type: Transform - pos: -1.4184723,9.5061245 - parent: 30 - - uid: 22627 - components: - - type: Transform - pos: 5.512489,44.484703 - parent: 30 - - uid: 22630 - components: - - type: Transform - pos: 24.481426,36.721195 - parent: 30 - - uid: 22634 - components: - - type: Transform - pos: 4.0067887,-15.3338375 - parent: 30 - - uid: 22662 - components: - - type: Transform - pos: -54.520042,21.45148 - parent: 30 -- proto: PresentRandom - entities: - - uid: 21378 - components: - - type: Transform - pos: -1.579752,8.102257 - parent: 30 - - uid: 21387 - components: - - type: Transform - pos: 26.520187,2.4394562 - parent: 30 - - uid: 21389 - components: - - type: Transform - pos: -3.309777,10.009832 - parent: 30 - - uid: 22556 - components: - - type: Transform - pos: -17.514753,-67.4598 - parent: 30 - - uid: 22598 - components: - - type: Transform - pos: -33.75367,-16.76977 - parent: 30 - - uid: 22599 - components: - - type: Transform - pos: -27.60882,15.614613 - parent: 30 - - uid: 22600 - components: - - type: Transform - pos: -15.4604845,7.6557884 - parent: 30 - - uid: 22601 - components: - - type: Transform - pos: -11.584989,19.223238 - parent: 30 - - uid: 22602 - components: - - type: Transform - pos: 4.947539,34.155647 - parent: 30 - - uid: 22604 - components: - - type: Transform - pos: -10.067778,27.01036 - parent: 30 - - uid: 22610 - components: - - type: Transform - pos: -31.492609,7.4731913 - parent: 30 - - uid: 22611 - components: - - type: Transform - pos: -15.973673,-20.486454 - parent: 30 - - uid: 22612 - components: - - type: Transform - pos: 9.520328,-26.347212 - parent: 30 - - uid: 22613 - components: - - type: Transform - pos: -8.876982,-35.4152 - parent: 30 - - uid: 22614 - components: - - type: Transform - pos: -21.542952,-40.416473 - parent: 30 - - uid: 22615 - components: - - type: Transform - pos: -65.506134,-64.19724 - parent: 30 - - uid: 22616 - components: - - type: Transform - pos: -82.53097,-45.40445 - parent: 30 - - uid: 22618 - components: - - type: Transform - pos: 5.5226407,14.507042 - parent: 30 - - uid: 22619 - components: - - type: Transform - pos: 3.4884644,13.558466 - parent: 30 - - uid: 22620 - components: - - type: Transform - pos: 28.505388,-7.37985 - parent: 30 - - uid: 22621 - components: - - type: Transform - pos: -31.008707,51.68482 - parent: 30 - - uid: 22622 - components: - - type: Transform - pos: -44.68347,46.525394 - parent: 30 - - uid: 22623 - components: - - type: Transform - pos: -23.316933,50.046917 - parent: 30 - - uid: 22624 - components: - - type: Transform - pos: -48.52359,29.68323 - parent: 30 - - uid: 22625 - components: - - type: Transform - pos: -59.50853,44.673046 - parent: 30 - - uid: 22626 - components: - - type: Transform - pos: -0.5203595,35.391735 - parent: 30 - - uid: 22628 - components: - - type: Transform - pos: 6.134218,44.232304 - parent: 30 - - uid: 22629 - components: - - type: Transform - pos: 4.831488,44.19061 - parent: 30 - - uid: 22631 - components: - - type: Transform - pos: 29.476475,27.5537 - parent: 30 - - uid: 22632 - components: - - type: Transform - pos: 27.515238,14.783981 - parent: 30 - - uid: 22633 - components: - - type: Transform - pos: 23.429405,13.939615 - parent: 30 - - uid: 22635 - components: - - type: Transform - pos: 46.497482,36.618343 - parent: 30 - - uid: 22636 - components: - - type: Transform - pos: 15.359613,60.611412 - parent: 30 - - uid: 22637 - components: - - type: Transform - pos: -8.331337,35.65068 - parent: 30 - - uid: 22638 - components: - - type: Transform - pos: -20.475868,30.629063 - parent: 30 - - uid: 22639 - components: - - type: Transform - pos: -29.246494,33.607082 - parent: 30 - - uid: 22640 - components: - - type: Transform - pos: -39.495163,3.4868627 - parent: 30 - - uid: 22641 - components: - - type: Transform - pos: -37.349785,-33.908993 - parent: 30 - - uid: 22642 - components: - - type: Transform - pos: -42.496124,32.501785 - parent: 30 - - uid: 22643 - components: - - type: Transform - pos: -0.48171067,83.517715 - parent: 30 - - uid: 22644 - components: - - type: Transform - pos: -23.524483,-4.499471 - parent: 30 - - uid: 22645 - components: - - type: Transform - pos: 35.999138,0.3531096 - parent: 30 -- proto: PresentRandomCoal - entities: - - uid: 22609 - components: - - type: Transform - pos: -3.6431541,8.850039 - parent: 30 - proto: Protolathe entities: - uid: 12864 @@ -112156,13 +111780,6 @@ entities: - type: Transform pos: 7.5,-8.5 parent: 30 -- proto: RailingRound - entities: - - uid: 22605 - components: - - type: Transform - pos: -9.5,27.5 - parent: 30 - proto: RandomArtifactSpawner entities: - uid: 10151 @@ -112202,6 +111819,20 @@ entities: - type: Transform pos: 3.5,23.5 parent: 30 +- proto: RandomDrinkGlass + entities: + - uid: 561 + components: + - type: Transform + pos: -4.5,12.5 + parent: 30 +- proto: RandomDrinkSoda + entities: + - uid: 559 + components: + - type: Transform + pos: 0.5,6.5 + parent: 30 - proto: RandomFoodMeal entities: - uid: 338 @@ -112221,6 +111852,11 @@ entities: parent: 30 - proto: RandomFoodSingle entities: + - uid: 558 + components: + - type: Transform + pos: -0.5,9.5 + parent: 30 - uid: 22617 components: - type: Transform @@ -123810,17 +123446,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: Laundry Room - - uid: 21308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,29.5 - parent: 30 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Shower Room - uid: 21400 components: - type: Transform @@ -126856,6 +126481,12 @@ entities: - type: Transform pos: 2.5,9.5 parent: 30 + - uid: 562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,9.5 + parent: 30 - uid: 563 components: - type: Transform @@ -126868,23 +126499,17 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,8.5 parent: 30 - - uid: 569 + - uid: 567 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,8.5 + rot: 1.5707963267948966 rad + pos: -0.5,8.5 parent: 30 - uid: 572 components: - type: Transform pos: 39.5,40.5 parent: 30 - - uid: 630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,9.5 - parent: 30 - uid: 656 components: - type: Transform diff --git a/Resources/Maps/oasis.yml b/Resources/Maps/oasis.yml index 17b5285296f3..6d81de1989c2 100644 --- a/Resources/Maps/oasis.yml +++ b/Resources/Maps/oasis.yml @@ -2,61 +2,60 @@ meta: format: 6 postmapinit: false tilemap: - 42: Space - 88: FloorArcadeBlue2 - 95: FloorAsteroidIronsand - 85: FloorAsteroidSand - 77: FloorAstroGrass - 26: FloorAstroIce - 16: FloorAstroSnow - 21: FloorBar - 90: FloorBlue - 94: FloorBlueCircuit - 93: FloorBoxing - 87: FloorBrokenWood - 80: FloorClown - 10: FloorConcrete - 8: FloorConcreteSmooth - 44: FloorDark - 62: FloorDarkDiagonal - 84: FloorDarkMini - 69: FloorDarkMono - 73: FloorDarkOffset - 81: FloorDarkPavement - 51: FloorDarkPlastic - 30: FloorDirt - 34: FloorFreezer - 72: FloorGlass - 19: FloorGrass - 20: FloorGrayConcrete - 27: FloorGrayConcreteMono - 49: FloorGreenCircuit - 58: FloorHydro - 56: FloorJungleAstroGrass - 40: FloorKitchen - 89: FloorLino - 53: FloorLowDesert - 60: FloorMetalDiamond - 24: FloorMowedAstroGrass - 70: FloorReinforced - 91: FloorReinforcedHardened - 98: FloorSnow - 45: FloorSteel - 59: FloorSteelDiagonal - 76: FloorSteelOffset - 43: FloorTechMaint - 52: FloorTechMaint2 - 86: FloorTechMaint3 - 71: FloorWhite - 75: FloorWhiteMini - 78: FloorWhiteOffset - 46: FloorWhitePlastic - 35: FloorWood - 25: FloorWoodLarge - 65: FloorWoodTile - 92: Lattice - 11: Plating - 97: PlatingDamaged + 14: Space + 45: FloorArcadeBlue2 + 52: FloorAsteroidIronsand + 42: FloorAsteroidSand + 6: FloorAstroGrass + 36: FloorAstroIce + 35: FloorAstroSnow + 8: FloorBar + 47: FloorBlue + 51: FloorBlueCircuit + 50: FloorBoxing + 44: FloorBrokenWood + 39: FloorClown + 1: FloorConcrete + 0: FloorConcreteSmooth + 16: FloorDark + 27: FloorDarkDiagonal + 41: FloorDarkMini + 29: FloorDarkMono + 33: FloorDarkOffset + 40: FloorDarkPavement + 20: FloorDarkPlastic + 11: FloorFreezer + 32: FloorGlass + 4: FloorGrass + 5: FloorGrayConcrete + 10: FloorGrayConcreteMono + 19: FloorGreenCircuit + 24: FloorHydro + 23: FloorJungleAstroGrass + 13: FloorKitchen + 46: FloorLino + 22: FloorLowDesert + 26: FloorMetalDiamond + 3: FloorMowedAstroGrass + 7: FloorPlanetGrass + 30: FloorReinforced + 48: FloorReinforcedHardened + 17: FloorSteel + 25: FloorSteelDiagonal + 37: FloorSteelOffset + 15: FloorTechMaint + 21: FloorTechMaint2 + 43: FloorTechMaint3 + 31: FloorWhite + 34: FloorWhiteMini + 38: FloorWhiteOffset + 18: FloorWhitePlastic + 12: FloorWood + 9: FloorWoodLarge + 28: FloorWoodTile + 49: Lattice + 2: Plating + 53: PlatingDamaged entities: - proto: "" entities: @@ -85,339 +84,339 @@ entities: chunks: 0,0: ind: 0,0 - tiles: CAAAAAADCAAAAAADCAAAAAABCgAAAAADCgAAAAACCgAAAAABCgAAAAABCgAAAAADCgAAAAABCgAAAAADCgAAAAACCgAAAAADCgAAAAACCgAAAAACCgAAAAACCgAAAAAACAAAAAAACAAAAAABCAAAAAACCgAAAAAACgAAAAAACgAAAAADCgAAAAABCgAAAAAACgAAAAACCgAAAAACCgAAAAABCgAAAAABCgAAAAACCgAAAAAACgAAAAACCgAAAAABCAAAAAACCAAAAAACCAAAAAADCgAAAAABCgAAAAAACwAAAAAAEAAAAAADEAAAAAAAEAAAAAAACwAAAAAAEAAAAAAAEAAAAAAAFAAAAAABFAAAAAADEAAAAAAACwAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAACCwAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAKEAAAAAAJEAAAAAAAFAAAAAAAFAAAAAADEAAAAAAAEAAAAAAACgAAAAACCgAAAAAACgAAAAABCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAAAEAAAAAAACgAAAAADCgAAAAADCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADCgAAAAABCgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAKEAAAAAAKCgAAAAADCgAAAAABEwAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAADCgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJCgAAAAAACgAAAAACFAAAAAADFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAABCgAAAAADFAAAAAACFAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAMEAAAAAACEAAAAAAACgAAAAADCgAAAAACEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAGEAAAAAACEAAAAAAACgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAACgAAAAACCgAAAAABCwAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAA + tiles: AAAAAAADAAAAAAACAAAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAAAAQAAAAABAAAAAAACAAAAAAADAAAAAAABAQAAAAAAAQAAAAAAAQAAAAADAQAAAAAAAQAAAAACAQAAAAADAQAAAAACAQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAABAAAAAAAAAAAAAAACAAAAAAACAQAAAAACAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAABQAAAAADBQAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAgAAAAAABwAAAAABBgAAAAACBgAAAAADAwAAAAAABgAAAAADAwAAAAAAAwAAAAAABQAAAAADBQAAAAADAwAAAAAAAwAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAgAAAAAABgAAAAABBgAAAAADBgAAAAACBgAAAAABBgAAAAACBgAAAAADBgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAACBgAAAAACBgAAAAADBgAAAAACBgAAAAAABgAAAAACBgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAABAwAAAAAABgAAAAADBgAAAAACBgAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAABAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAADAQAAAAABAQAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABBgAAAAAAAQAAAAADAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABBgAAAAADBgAAAAABAQAAAAABAQAAAAABBQAAAAAABQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAADAwAAAAAAAQAAAAADAQAAAAABBQAAAAACBQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABAQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABBgAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAABBgAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA version: 6 -1,0: ind: -1,0 - tiles: CgAAAAADCgAAAAADCgAAAAACCgAAAAAACgAAAAADCgAAAAADCgAAAAADCgAAAAABCgAAAAAACgAAAAABCgAAAAABCgAAAAADCgAAAAADCgAAAAAACAAAAAABCAAAAAACCgAAAAACCgAAAAACCgAAAAAACgAAAAACCgAAAAAACgAAAAACCgAAAAACCgAAAAACCgAAAAACCgAAAAAACgAAAAADCgAAAAABCgAAAAADCgAAAAACCAAAAAAACAAAAAAAFQAAAAADCwAAAAAAEAAAAAAJEAAAAAAAFAAAAAACFAAAAAADEAAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAAACgAAAAAACAAAAAADCAAAAAADFQAAAAAAFQAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAADEAAAAAAKEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAJEAAAAAAACwAAAAAACgAAAAADCgAAAAAACgAAAAACFQAAAAAAFQAAAAADFQAAAAACEAAAAAAAFAAAAAAAFAAAAAACFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAIEAAAAAAACwAAAAAACgAAAAAACgAAAAABFQAAAAACFQAAAAAAFQAAAAACFAAAAAACFAAAAAAAFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAACwAAAAAACgAAAAABFQAAAAAAFQAAAAAAFQAAAAABFAAAAAACFAAAAAADFAAAAAABEAAAAAALEAAAAAAAFQAAAAADFQAAAAACFQAAAAACFQAAAAAAEAAAAAAGEAAAAAAAEAAAAAACCgAAAAADFQAAAAABFQAAAAAAFQAAAAACFAAAAAABFAAAAAACFAAAAAACEAAAAAAAEAAAAAAAFQAAAAABFQAAAAAAFQAAAAADFQAAAAADEAAAAAAAEAAAAAAAEAAAAAAACgAAAAADFQAAAAABFQAAAAABFQAAAAADEAAAAAAGFAAAAAADFAAAAAADEAAAAAAAEAAAAAAAFQAAAAABFQAAAAAAFQAAAAADFQAAAAACEAAAAAABEAAAAAAAEAAAAAAACgAAAAABFQAAAAABFQAAAAABFQAAAAACEAAAAAAAFAAAAAADFAAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAADFQAAAAAAFQAAAAABEAAAAAAAEAAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAALEAAAAAAACgAAAAACFQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAACFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAKCgAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAACgAAAAACEAAAAAACGQAAAAACGQAAAAADGQAAAAAAGQAAAAAAEAAAAAAKFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAACgAAAAAAGAAAAAAAGQAAAAABGQAAAAAAGQAAAAADGQAAAAADEAAAAAAAFAAAAAACFAAAAAACEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAAAFAAAAAAAEAAAAAAACgAAAAAAEAAAAAAGGQAAAAADGQAAAAAAGQAAAAAAGQAAAAADEAAAAAAAFAAAAAABFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAAACwAAAAAACgAAAAAC + tiles: AQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAADAQAAAAAAAQAAAAADAQAAAAABAQAAAAABAQAAAAADAQAAAAABAQAAAAABAQAAAAADAAAAAAAAAAAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAABAQAAAAABAAAAAAABAAAAAAADCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAABAAAAAAADAAAAAAAACAAAAAABCAAAAAACAwAAAAAAAwAAAAAABQAAAAADBQAAAAABAwAAAAAABgAAAAADAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAAgAAAAAAAQAAAAABAQAAAAAAAQAAAAADCAAAAAABCAAAAAAACAAAAAACAwAAAAAABQAAAAADBQAAAAAABQAAAAADBgAAAAACAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAACAgAAAAAAAQAAAAADAQAAAAAACAAAAAABCAAAAAADCAAAAAABBQAAAAADBQAAAAAABQAAAAACBgAAAAACBgAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAACBgAAAAACAgAAAAAAAQAAAAAACAAAAAAACAAAAAADCAAAAAACBQAAAAAABQAAAAACBQAAAAACAwAAAAAAAwAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACCAAAAAACCAAAAAACCAAAAAADBQAAAAABBQAAAAAABQAAAAAABAAAAAAAAwAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAACCAAAAAAACAAAAAACCAAAAAACBgAAAAABBQAAAAAABQAAAAAAAwAAAAAAAwAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABCAAAAAABCAAAAAADCAAAAAAABgAAAAACBQAAAAABBQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAADAgAAAAAAAQAAAAABCAAAAAADCAAAAAAABgAAAAACBgAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAACAwAAAAAAAwAAAAAABgAAAAADBgAAAAABBgAAAAACBgAAAAADBAAAAAAAAQAAAAABCAAAAAABBgAAAAAABgAAAAAAAwAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAAABgAAAAADBgAAAAABBgAAAAACBAAAAAAABAAAAAAABAAAAAAAAQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAADBQAAAAADBQAAAAAABQAAAAACAQAAAAABAwAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABAwAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAADBQAAAAACBQAAAAAAAQAAAAAAAwAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABAwAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAADAwAAAAAAAQAAAAADAwAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADAwAAAAAABQAAAAACBQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAACAgAAAAAAAQAAAAAC version: 6 0,-1: ind: 0,-1 - tiles: CgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAABCgAAAAACCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAIEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAALEAAAAAAAEAAAAAAACgAAAAADCgAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABEAAAAAAAEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAACgAAAAADCgAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAADEAAAAAAAEAAAAAAACgAAAAAACgAAAAAAEAAAAAAAEAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAEAAAAAAAEAAAAAABEAAAAAALEAAAAAAACgAAAAACCgAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAABEAAAAAADEAAAAAAAEAAAAAAACgAAAAABCgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAEAAAAAAGEAAAAAAAEAAAAAAACgAAAAADCgAAAAABCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAACFAAAAAACEAAAAAAAEAAAAAAAEAAAAAABCgAAAAACCgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAFGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAACEAAAAAAAFAAAAAAAFAAAAAABFAAAAAACEAAAAAAAEAAAAAAACgAAAAACCgAAAAADEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAAGgAAAAAAGwAAAAADGgAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAABFAAAAAABEAAAAAAAEAAAAAABCgAAAAADCgAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAAEEAAAAAAAEAAAAAAAFAAAAAAAFAAAAAAAEAAAAAAAEAAAAAAACgAAAAAACgAAAAACCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAABFAAAAAADFAAAAAABEAAAAAAHCgAAAAACCgAAAAADCgAAAAABCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAACFAAAAAAAEAAAAAAACgAAAAADCgAAAAAACgAAAAAACgAAAAABCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAKEAAAAAAMEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAACFAAAAAAAEAAAAAAFCAAAAAAACAAAAAABCAAAAAABCgAAAAADCgAAAAADCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAEAAAAAACEAAAAAAAEAAAAAALFAAAAAABFAAAAAABCwAAAAAACAAAAAABCAAAAAABCAAAAAADCgAAAAACCgAAAAAACgAAAAABCgAAAAAACgAAAAABCgAAAAAACgAAAAADCgAAAAACCgAAAAACCgAAAAADCgAAAAAACgAAAAAACgAAAAAA + tiles: AQAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAACBgAAAAABBgAAAAADBAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABAQAAAAABAQAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAADAQAAAAACAQAAAAACBQAAAAAABQAAAAADBQAAAAAABQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAADBQAAAAADAQAAAAAAAQAAAAABBQAAAAADBQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAACBQAAAAAAAwAAAAAAAQAAAAAAAQAAAAACAwAAAAAAAwAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAQAAAAACAQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAADBQAAAAAABQAAAAADBQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAQAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAACBQAAAAAABQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAACCgAAAAACCgAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAQAAAAADAQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAAACgAAAAADCgAAAAADAwAAAAAAAwAAAAAABQAAAAACBQAAAAABBQAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAADCgAAAAADCgAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAABAwAAAAAAAwAAAAAAAQAAAAADAQAAAAAAAgAAAAAABgAAAAABBgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAABBQAAAAAAAwAAAAAAAQAAAAACAQAAAAADAQAAAAADAgAAAAAABgAAAAACBgAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAACBQAAAAADBQAAAAAAAwAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAACAgAAAAAABgAAAAAABgAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAAABQAAAAAAAwAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAABAQAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAABAgAAAAAAAAAAAAADAAAAAAAAAAAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAABAQAAAAAB version: 6 -1,-1: ind: -1,-1 - tiles: FAAAAAACFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAACCgAAAAADFAAAAAABEwAAAAAAGgAAAAAAGgAAAAAAEwAAAAAAFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAADFAAAAAADGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAAAFAAAAAACEAAAAAAAEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAAAFAAAAAACGgAAAAAAGgAAAAAAEAAAAAAAEAAAAAAAFAAAAAACEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAACFAAAAAAAEwAAAAAAGgAAAAAAEAAAAAAAEwAAAAAAFAAAAAACFAAAAAACEAAAAAAFEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAEAAAAAAMEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAFAAAAAAAFAAAAAABFAAAAAACCgAAAAAAFAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAFAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABCgAAAAACFAAAAAACEAAAAAAAEwAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAEAAAAAAHEAAAAAAEEAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAADCgAAAAABFAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAABEAAAAAAAEAAAAAAACgAAAAABFAAAAAABEAAAAAAEEAAAAAAGEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAABEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAACgAAAAABFAAAAAAAEAAAAAAEEAAAAAAGEAAAAAAIEAAAAAAAEAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAGCgAAAAADFAAAAAADEAAAAAAAEwAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAFAAAAAACFAAAAAAAFAAAAAABEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAACwAAAAAACgAAAAAAFAAAAAABEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAADCgAAAAACFAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAACwAAAAAACgAAAAAACgAAAAAACgAAAAACFAAAAAADCwAAAAAAEAAAAAAJEAAAAAAAEAAAAAALFAAAAAAAFAAAAAADFAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACgAAAAADCgAAAAACCAAAAAACCAAAAAADCgAAAAACCgAAAAAACgAAAAAACgAAAAABCgAAAAABCgAAAAABCgAAAAABCgAAAAADCgAAAAADCgAAAAACCgAAAAABCgAAAAABCgAAAAACCgAAAAAACAAAAAADCAAAAAAB + tiles: BQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAADBQAAAAACBQAAAAABBQAAAAAAAQAAAAACBQAAAAAABAAAAAAACgAAAAAACgAAAAAABAAAAAAABQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAACBgAAAAACAwAAAAAAAgAAAAAAAQAAAAABBQAAAAACCgAAAAACCgAAAAACCgAAAAADAwAAAAAABQAAAAADAwAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAABgAAAAABAwAAAAAAAwAAAAAAAQAAAAADBQAAAAABCgAAAAACCgAAAAABAwAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAADBQAAAAABBAAAAAAACgAAAAADAwAAAAAABAAAAAAABQAAAAACBQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABAAAAAAABQAAAAAABQAAAAACBQAAAAABAQAAAAABBQAAAAAABgAAAAAABgAAAAACAwAAAAAABQAAAAACAwAAAAAAAwAAAAAABgAAAAAABgAAAAADAwAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAABBQAAAAADAQAAAAABBQAAAAACBgAAAAADBAAAAAAAAwAAAAAAAwAAAAAABAAAAAAABgAAAAADBgAAAAACAwAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAAABQAAAAADBQAAAAAAAQAAAAACBQAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABBgAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAACAwAAAAAAAwAAAAAAAQAAAAADBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAAAwAAAAAABAAAAAAAAwAAAAAAAwAAAAAABAAAAAAABQAAAAADBQAAAAABBQAAAAAAAwAAAAAAAwAAAAAABgAAAAABBgAAAAADBgAAAAADAgAAAAAAAQAAAAACBQAAAAADAwAAAAAABgAAAAADBgAAAAAAAwAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAAAAwAAAAAABgAAAAABBgAAAAAABgAAAAABAgAAAAAAAQAAAAACAQAAAAAABQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAADBQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABAgAAAAAAAQAAAAACAQAAAAADAQAAAAADBQAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABQAAAAADBQAAAAADBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAABAQAAAAABAAAAAAACAAAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAACAQAAAAADAAAAAAACAAAAAAAB version: 6 -1,1: ind: -1,1 - tiles: HgAAAAABHgAAAAABHgAAAAAAHgAAAAADHgAAAAAACwAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAACEAAAAAAHCgAAAAAAHgAAAAAAHgAAAAADHgAAAAABHgAAAAADHgAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAACEAAAAAAACgAAAAADCwAAAAAAHgAAAAADHgAAAAAAHgAAAAAAHgAAAAABCwAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAALQAAAAADCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAALQAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAALAAAAAACLQAAAAACIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAALQAAAAADIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAAALQAAAAAAIwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACIwAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAABLQAAAAAAIwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAADIwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABIwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAADCwAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAACIwAAAAACIwAAAAACIwAAAAABCwAAAAAALQAAAAACLQAAAAAC + tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAAAAwAAAAAAAQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAACBQAAAAABAwAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAAEQAAAAADAgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAAEQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEAAAAAABEQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAgAAAAAAEQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAADEQAAAAAADAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADDAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAACDAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADDAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABDAAAAAACAgAAAAAADAAAAAAADAAAAAADDAAAAAAAAgAAAAAADAAAAAABDAAAAAABDAAAAAABDAAAAAADDAAAAAABDAAAAAAADAAAAAAAAgAAAAAAEQAAAAABEQAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: LgAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAMLgAAAAADLgAAAAADLgAAAAADLgAAAAACLgAAAAABLgAAAAACLgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANQAAAAACNQAAAAAAEAAAAAAAEAAAAAAKCwAAAAAACwAAAAAALgAAAAABCwAAAAAACwAAAAAACwAAAAAALgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANQAAAAABNQAAAAACEAAAAAAAEAAAAAAMLgAAAAACCwAAAAAALgAAAAABLgAAAAABCwAAAAAALgAAAAACLgAAAAADLgAAAAAACwAAAAAAKwAAAAAAKwAAAAAANAAAAAAANQAAAAADNQAAAAAEEAAAAAAAEAAAAAAALgAAAAABCwAAAAAALgAAAAAALgAAAAABCwAAAAAALgAAAAADLgAAAAAALgAAAAACCwAAAAAAKwAAAAAAKwAAAAAACwAAAAAANQAAAAAENQAAAAADEAAAAAAAEAAAAAAALgAAAAABCwAAAAAALgAAAAACLgAAAAABCwAAAAAALgAAAAADLgAAAAAALgAAAAABCwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEAAAAAAAMQAAAAAALQAAAAABMQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAANAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEAAAAAAAMQAAAAAALQAAAAACMQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAEAAAAAAAMQAAAAAAMwAAAAABMQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAMQAAAAAALQAAAAABMQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAACIwAAAAAAIwAAAAAACwAAAAAAEAAAAAAAMQAAAAAALQAAAAABMQAAAAAALQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAIwAAAAACIwAAAAADIwAAAAACIwAAAAABCwAAAAAAEAAAAAAALAAAAAACCwAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAABCwAAAAAAEAAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAALAAAAAAACwAAAAAACwAAAAAAEAAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAAALQAAAAAALQAAAAABCgAAAAAA + tiles: EgAAAAAAEgAAAAAAEgAAAAACEgAAAAACEgAAAAADEgAAAAACEgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAEgAAAAACEgAAAAABEgAAAAAAEgAAAAAAEgAAAAACEgAAAAAAEgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAAFgAAAAAFBgAAAAABAwAAAAAAAgAAAAAAAgAAAAAAEgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAAFFgAAAAAEBgAAAAACAwAAAAAAEgAAAAAAAgAAAAAAEgAAAAABEgAAAAACAgAAAAAAEgAAAAABEgAAAAAAEgAAAAADAgAAAAAADwAAAAAADwAAAAAAFQAAAAAAFgAAAAADFgAAAAAABgAAAAACAwAAAAAAEgAAAAADAgAAAAAAEgAAAAAAEgAAAAAAAgAAAAAAEgAAAAADEgAAAAAAEgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAFgAAAAADFgAAAAAEBgAAAAABAwAAAAAAEgAAAAACAgAAAAAAEgAAAAADEgAAAAAAAgAAAAAAEgAAAAACEgAAAAACEgAAAAACAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAwAAAAAAEwAAAAAAEQAAAAADEwAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAFQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAwAAAAAAEwAAAAAAEQAAAAACEwAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAwAAAAAAEwAAAAAAFAAAAAABEwAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAEwAAAAAAEQAAAAADEwAAAAAAEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAABAgAAAAAAAwAAAAAAEwAAAAAAEQAAAAABEwAAAAAAEQAAAAADAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAADAAAAAABDAAAAAACDAAAAAACDAAAAAAAAgAAAAAAAwAAAAAAEAAAAAABAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAABAgAAAAAAAwAAAAAAEQAAAAADEQAAAAACEQAAAAABEQAAAAACAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAwAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAADEQAAAAABEQAAAAABEQAAAAACEQAAAAACEQAAAAAAEQAAAAADEQAAAAADEQAAAAAAAQAAAAAD version: 6 -2,0: ind: -2,0 - tiles: LQAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAABLQAAAAABCgAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAABCgAAAAADCwAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAALAAAAAACCwAAAAAACwAAAAAAFQAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAFQAAAAADFQAAAAADFQAAAAAAFQAAAAADCwAAAAAAFQAAAAABLQAAAAABLQAAAAABLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAFQAAAAAAFQAAAAABFQAAAAADFQAAAAAAMwAAAAACFQAAAAABLQAAAAAALQAAAAADLQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAABFQAAAAAAFQAAAAAAFQAAAAAAMwAAAAAAFQAAAAADLQAAAAADLQAAAAABLQAAAAAALQAAAAABCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAABFQAAAAADFQAAAAADFQAAAAACMwAAAAABFQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAAAFQAAAAADFQAAAAACFQAAAAABMwAAAAAAFQAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAACMwAAAAABFQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAADFQAAAAABFQAAAAAAFQAAAAAAMwAAAAACFQAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAFQAAAAADFQAAAAABFQAAAAADFQAAAAADCwAAAAAAFQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAFQAAAAAACwAAAAAACwAAAAAACwAAAAAAFQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAADIwAAAAABIwAAAAADCwAAAAAAFQAAAAABFQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAAAIwAAAAABCwAAAAAAFQAAAAABFQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAABIwAAAAAACwAAAAAAFQAAAAAAFQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAACIwAAAAADCwAAAAAAFQAAAAAAFQAAAAAC + tiles: EQAAAAADEQAAAAABEQAAAAABEQAAAAABEQAAAAACEQAAAAAAEQAAAAADEQAAAAABEQAAAAADEQAAAAADEQAAAAADEQAAAAAAEQAAAAABEQAAAAACEQAAAAAAAQAAAAAAEQAAAAACEQAAAAABEQAAAAACEQAAAAABEQAAAAADEQAAAAACEQAAAAACEQAAAAABEQAAAAADEQAAAAABEQAAAAACEQAAAAAAEQAAAAACEQAAAAACEQAAAAACAQAAAAADAgAAAAAAAgAAAAAAEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAACAAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABAgAAAAAACAAAAAADEQAAAAADEQAAAAABEQAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAACFAAAAAABCAAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAAFAAAAAACCAAAAAABEQAAAAACEQAAAAACEQAAAAACEQAAAAADAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADFAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACFAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACFAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABFAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAADAAAAAACDAAAAAADDAAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADAAAAAABDAAAAAABDAAAAAACAgAAAAAACAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADAAAAAABDAAAAAACDAAAAAABAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADAAAAAAADAAAAAADDAAAAAADAgAAAAAACAAAAAABCAAAAAAC version: 6 -2,1: ind: -2,1 - tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAHgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAHgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAIwAAAAABIwAAAAABIwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAABIwAAAAAD + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADAAAAAABDAAAAAABDAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADAAAAAACDAAAAAACDAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADAAAAAAADAAAAAABDAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAADAAAAAAADAAAAAABDAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAACDAAAAAAADAAAAAAB version: 6 0,1: ind: 0,1 - tiles: CgAAAAACCgAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACgAAAAAACgAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAALQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAALEAAAAAAAEAAAAAADEAAAAAABLQAAAAADLQAAAAADMwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABMwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACwAAAAAAOwAAAAADOwAAAAABOwAAAAABOwAAAAACLQAAAAACLQAAAAAAMwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAMwAAAAAAOwAAAAADOwAAAAABOwAAAAAAOwAAAAAALQAAAAACLQAAAAACCwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAMwAAAAAAOwAAAAADOwAAAAACOwAAAAACOwAAAAAALQAAAAADLQAAAAABLQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACwAAAAAAOwAAAAAAOwAAAAADOwAAAAAAOwAAAAAALQAAAAACLQAAAAABCwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADLQAAAAABLQAAAAABCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAABLQAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAABLQAAAAABKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAACLQAAAAADCwAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAACLQAAAAADCwAAAAAAKwAAAAAACwAAAAAAIwAAAAACIwAAAAAAIwAAAAACIwAAAAADLQAAAAAALQAAAAADLQAAAAADCwAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAADCwAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAAD + tiles: AQAAAAAAAQAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAAABgAAAAADBgAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAABAQAAAAACAwAAAAAABgAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAACBgAAAAABBgAAAAAABgAAAAADBgAAAAACBgAAAAADBgAAAAADBgAAAAACEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAACEQAAAAACEQAAAAADFAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAFAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAGQAAAAABGQAAAAACGQAAAAADGQAAAAACEQAAAAABEQAAAAACFAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAFAAAAAAAGQAAAAADGQAAAAABGQAAAAABGQAAAAAAEQAAAAAAEQAAAAABAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAFAAAAAABGQAAAAADGQAAAAABGQAAAAADGQAAAAABEQAAAAABEQAAAAADEQAAAAABGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAGQAAAAADGQAAAAABGQAAAAABGQAAAAADEQAAAAAAEQAAAAADAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAACEQAAAAABEQAAAAABAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAABAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADEQAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAABEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAAAEQAAAAACEQAAAAAAAgAAAAAADwAAAAAAAgAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAADEQAAAAAAEQAAAAACEQAAAAAAAgAAAAAAEQAAAAABEQAAAAABEQAAAAABEQAAAAADEQAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAAD version: 6 1,1: ind: 1,1 - tiles: EAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAAAMwAAAAAAMwAAAAACCwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAACEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAAAQQAAAAADCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAAACwAAAAAAQQAAAAAAQQAAAAADQQAAAAABQQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAADIwAAAAABIwAAAAACIwAAAAABCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAALAAAAAAALAAAAAABCwAAAAAAQQAAAAAAIwAAAAACIwAAAAACIwAAAAADCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAACCwAAAAAAQQAAAAACIwAAAAABIwAAAAADIwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAAPAAAAAAALAAAAAACLAAAAAACCwAAAAAAQQAAAAADQQAAAAADQQAAAAADQQAAAAACCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAALAAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAPgAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAAALQAAAAACKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAACCwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAACLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAABKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAABOwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAACCwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAAACwAAAAAANAAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAABCwAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAACLQAAAAAACwAAAAAANAAAAAAA + tiles: BgAAAAADBgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAACFAAAAAAABgAAAAACBgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABHAAAAAADAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAACAgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABDAAAAAAADAAAAAADDAAAAAACAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAHAAAAAADDAAAAAACDAAAAAABDAAAAAABAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAHAAAAAADDAAAAAAADAAAAAACDAAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAEAAAAAAAEAAAAAABAgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGwAAAAACAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADDwAAAAAADwAAAAAADwAAAAAAAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAABEQAAAAADEQAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAACEQAAAAAAEQAAAAACEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABEQAAAAACEQAAAAABEQAAAAABEQAAAAADDwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAACGQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAACDAAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAABEQAAAAABEQAAAAACEQAAAAAAAgAAAAAAFQAAAAAAEQAAAAACEQAAAAACEQAAAAACEQAAAAADAgAAAAAAEQAAAAACEQAAAAACEQAAAAABEQAAAAABEQAAAAAAEQAAAAABEQAAAAABEQAAAAADEQAAAAADAgAAAAAAFQAAAAAA version: 6 1,0: ind: 1,0 - tiles: CgAAAAADCgAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAAALQAAAAACCgAAAAAACgAAAAACLQAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAABEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAADEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAAMwAAAAADCwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAABEAAAAAAAEAAAAAAACwAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAABRQAAAAABRQAAAAACRQAAAAACCwAAAAAACwAAAAAAMwAAAAAAMwAAAAACEAAAAAAAEAAAAAAACwAAAAAALAAAAAADPgAAAAADPgAAAAADPgAAAAABPgAAAAACPgAAAAACRQAAAAACRQAAAAADRQAAAAABMwAAAAADCwAAAAAAMwAAAAACMwAAAAABEAAAAAABEAAAAAAACwAAAAAALAAAAAACPgAAAAADMwAAAAABPgAAAAADPgAAAAACMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAACEAAAAAAAEAAAAAAACwAAAAAAMwAAAAADPgAAAAACMwAAAAAAPgAAAAADPgAAAAABMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAAAEAAAAAAAEAAAAAAACwAAAAAALAAAAAAAPgAAAAACPgAAAAAAPgAAAAABPgAAAAABPgAAAAACRQAAAAABRQAAAAAARQAAAAADMwAAAAABCwAAAAAAMwAAAAADMwAAAAABEAAAAAAAEAAAAAAACwAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAADRQAAAAACRQAAAAAARQAAAAACCwAAAAAACwAAAAAAMwAAAAACMwAAAAABEAAAAAAEEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAACEAAAAAAGEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABCwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAAAEAAAAAAAEAAAAAAEEAAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAACMwAAAAABCwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAAEAAAAAAAEAAAAAAAEAAAAAACCwAAAAAACwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACEAAAAAAEEAAAAAAAEAAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADEAAAAAAAEAAAAAACEAAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAACCwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAAC + tiles: AQAAAAADAQAAAAABEQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAABEQAAAAAAEQAAAAAAEQAAAAADEQAAAAABEQAAAAAAAQAAAAAAAQAAAAABEQAAAAADEQAAAAACEQAAAAACEQAAAAABEQAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAABEQAAAAABEQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACAgAAAAAAFAAAAAADAgAAAAAAFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAABAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAFAAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAAABgAAAAADAgAAAAAAEAAAAAAAGwAAAAAAFAAAAAACGwAAAAAAGwAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAACBgAAAAADBgAAAAACAgAAAAAAFAAAAAADGwAAAAAAFAAAAAAAGwAAAAAAGwAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAADBgAAAAADBgAAAAACAgAAAAAAEAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAFAAAAAAAAgAAAAAAFAAAAAABFAAAAAAABgAAAAADBgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAABBgAAAAACBgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAABFAAAAAABAwAAAAAABgAAAAABBgAAAAADAgAAAAAAAgAAAAAAFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAACAgAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAADAwAAAAAABgAAAAABBgAAAAABAgAAAAAAAgAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAABAwAAAAAABgAAAAAABgAAAAADAgAAAAAAAgAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAAwAAAAAABgAAAAAABgAAAAACAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAAAAgAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAC version: 6 1,-1: ind: 1,-1 - tiles: EAAAAAAGEAAAAAAICwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADEAAAAAAAEAAAAAAJGgAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAEAAAAAAEEAAAAAAAGgAAAAAACwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAEAAAAAAAEAAAAAAAGgAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAADMwAAAAABKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAADMwAAAAACEAAAAAAAEAAAAAAEGgAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAACMwAAAAAAEAAAAAAAEAAAAAAJCwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAACEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAACwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAADMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACEAAAAAAAEAAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAAAEAAAAAAAEAAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAADMwAAAAABEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAACMwAAAAACEAAAAAAAEAAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAADMwAAAAADEAAAAAAAEAAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAMwAAAAADMwAAAAABEAAAAAAAEAAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAACMwAAAAACEAAAAAAAEAAAAAAMCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAACwAAAAAALQAAAAADCgAAAAACCgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAABLQAAAAABLQAAAAAB + tiles: BQAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAABQAAAAABAwAAAAAACgAAAAABAgAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAAAAwAAAAAAAwAAAAAACgAAAAABAgAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABAwAAAAAAAwAAAAAACgAAAAACAgAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAADDwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFAAAAAADFAAAAAABAwAAAAAAAwAAAAAACgAAAAADAgAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFAAAAAAAFAAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAACAwAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAACBgAAAAACAgAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAABBgAAAAADBgAAAAADAgAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAABBgAAAAADBgAAAAACAgAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFAAAAAABFAAAAAAAAwAAAAAABgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFAAAAAADFAAAAAAAAwAAAAAABgAAAAABAgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFAAAAAABFAAAAAADAwAAAAAAAwAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFAAAAAAAFAAAAAABAwAAAAAAAwAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAEQAAAAACAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAEQAAAAADAQAAAAACAQAAAAADEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAADEQAAAAACEQAAAAADEQAAAAADEQAAAAACEQAAAAABEQAAAAACEQAAAAACEQAAAAABEQAAAAAD version: 6 1,-2: ind: 1,-2 - tiles: IwAAAAADIwAAAAAACwAAAAAAIwAAAAABIwAAAAABCwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAMwAAAAAAMwAAAAAAPgAAAAABMwAAAAACMwAAAAADIwAAAAAAIwAAAAACQQAAAAABIwAAAAADIwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAMwAAAAADMwAAAAABCwAAAAAAMwAAAAAAMwAAAAACIwAAAAADIwAAAAACCwAAAAAAIwAAAAACIwAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAMwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAMwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAADMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAACMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACCwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAACMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAADCwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAC + tiles: DAAAAAADDAAAAAAAAgAAAAAADAAAAAACDAAAAAACAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAFAAAAAADFAAAAAADGwAAAAADFAAAAAABFAAAAAACDAAAAAABDAAAAAADHAAAAAAADAAAAAABDAAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAFAAAAAAAFAAAAAADDAAAAAABDAAAAAADAgAAAAAADAAAAAAADAAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFAAAAAADFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAFAAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAACFAAAAAAAFAAAAAACAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAABFAAAAAABFAAAAAABFAAAAAABFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAABFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAADFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACBQAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABAgAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: LQAAAAACLQAAAAABCwAAAAAAKgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAKgAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAABLQAAAAACLQAAAAAACwAAAAAAKgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAKgAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAACLQAAAAABLQAAAAADCwAAAAAAKgAAAAAACwAAAAAACwAAAAAARgAAAAAACwAAAAAARgAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAAALQAAAAAALQAAAAADCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAABLQAAAAACLQAAAAABKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAACCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAADLQAAAAADLQAAAAABMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABMwAAAAAAMwAAAAACLQAAAAAALQAAAAADCwAAAAAAMwAAAAAAMwAAAAACMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAABLQAAAAACLQAAAAACCwAAAAAAMwAAAAABMwAAAAABMwAAAAACCwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADCwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABLQAAAAADLQAAAAADCwAAAAAAMwAAAAACMwAAAAAAMwAAAAAACwAAAAAAIwAAAAACIwAAAAACIwAAAAACIwAAAAACQQAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAABLQAAAAAALQAAAAABCwAAAAAAMwAAAAACMwAAAAABMwAAAAAACwAAAAAAIwAAAAADIwAAAAADIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAACgAAAAACCgAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAA + tiles: EQAAAAABEQAAAAAAAgAAAAAADgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAADgAAAAAAAgAAAAAADAAAAAAADAAAAAACDAAAAAABEQAAAAABEQAAAAABAgAAAAAADgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAADgAAAAAAAgAAAAAADAAAAAAADAAAAAABDAAAAAADEQAAAAACEQAAAAABAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAAgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAADAAAAAAADAAAAAABDAAAAAADEQAAAAABEQAAAAABAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAACEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAABEQAAAAACEQAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAAAEQAAAAABAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACAgAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAAAEQAAAAABEQAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAADEQAAAAACEQAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAADEQAAAAAAEQAAAAAAAgAAAAAAFAAAAAADFAAAAAAAFAAAAAABAgAAAAAADAAAAAAADAAAAAADDAAAAAADDAAAAAADAgAAAAAAFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAEQAAAAAAEQAAAAADAgAAAAAAFAAAAAACFAAAAAAAFAAAAAABAgAAAAAADAAAAAACDAAAAAADDAAAAAABDAAAAAACHAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAADEQAAAAAAEQAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAABCgAAAAADCgAAAAAACgAAAAAAAQAAAAABAQAAAAADAwAAAAAAAwAAAAAABgAAAAACBgAAAAABBgAAAAAABgAAAAADBgAAAAAABgAAAAABBgAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: RwAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAARwAAAAACRwAAAAABRwAAAAADCwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAACwAAAAAALQAAAAAARwAAAAABRwAAAAABCwAAAAAARwAAAAADRwAAAAAARwAAAAAACwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAACLQAAAAADRwAAAAADRwAAAAACRwAAAAACRwAAAAAARwAAAAACRwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAACCwAAAAAALQAAAAABRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAAMwAAAAABSwAAAAACSwAAAAACSwAAAAADCwAAAAAALQAAAAAARwAAAAADRwAAAAACCwAAAAAARwAAAAABRwAAAAACRwAAAAADCwAAAAAASQAAAAAASQAAAAAASQAAAAAAMwAAAAADSwAAAAABSwAAAAACSwAAAAADCwAAAAAALQAAAAADRwAAAAADRwAAAAADCwAAAAAARwAAAAACRwAAAAACRwAAAAADCwAAAAAASQAAAAAASQAAAAAASQAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAABCwAAAAAALQAAAAAARwAAAAADRwAAAAABCwAAAAAACwAAAAAARwAAAAAARwAAAAACCwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAASQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAALQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACCwAAAAAASAAAAAAASAAAAAAASAAAAAACSAAAAAABCwAAAAAANQAAAAAANQAAAAABNQAAAAAFNQAAAAAACwAAAAAAEAAAAAADEAAAAAAAEAAAAAAACwAAAAAALQAAAAABCwAAAAAASAAAAAAASAAAAAACSAAAAAAASAAAAAACCwAAAAAANQAAAAAANQAAAAAFNQAAAAAENQAAAAAECwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAALQAAAAADCwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAMCwAAAAAANQAAAAAENQAAAAADNQAAAAABNQAAAAACCwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAACwAAAAAALQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAFEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAKEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJCgAAAAAA + tiles: HwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAABHwAAAAAAHwAAAAABAgAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAADFAAAAAAAFAAAAAADAgAAAAAAEQAAAAABHwAAAAAAHwAAAAACAgAAAAAAHwAAAAABHwAAAAACHwAAAAADAgAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADEQAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAAAHwAAAAADFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAADAgAAAAAAEQAAAAABHwAAAAABHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFAAAAAADIgAAAAACIgAAAAACIgAAAAABAgAAAAAAEQAAAAABHwAAAAACHwAAAAAAAgAAAAAAHwAAAAACHwAAAAACHwAAAAAAAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFAAAAAADIgAAAAABIgAAAAAAIgAAAAABAgAAAAAAEQAAAAABHwAAAAAAHwAAAAABAgAAAAAAHwAAAAAAHwAAAAADHwAAAAADAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAADAgAAAAAAEQAAAAAAHwAAAAABHwAAAAAAAgAAAAAAAgAAAAAAHwAAAAAAHwAAAAAAAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAgAAAAAAEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACDwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEQAAAAACEQAAAAACDwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAEQAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADAgAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAABAgAAAAAAFgAAAAACFgAAAAAFFgAAAAABFgAAAAACAgAAAAAAIwAAAAAAIwAAAAAJIwAAAAAAAgAAAAAAEQAAAAACAgAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAABAgAAAAAAFgAAAAAFFgAAAAABFgAAAAACFgAAAAABAgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAgAAAAAAEQAAAAACAgAAAAAABgAAAAAAAwAAAAAABgAAAAADBgAAAAADAgAAAAAAFgAAAAABFgAAAAABFgAAAAACFgAAAAACAgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAAgAAAAAAEQAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAC version: 6 -2,-2: ind: -2,-2 - tiles: RwAAAAACRwAAAAACRwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAAARwAAAAADCwAAAAAARwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAAARwAAAAAARwAAAAAACwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAACCwAAAAAARwAAAAABRwAAAAABRwAAAAAACwAAAAAARwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAADRwAAAAABTAAAAAAATAAAAAAATAAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAACRwAAAAACRwAAAAAARwAAAAACTAAAAAAATAAAAAAATAAAAAAARwAAAAADRwAAAAADRwAAAAADRwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAABTAAAAAAATAAAAAAATAAAAAAARwAAAAADCwAAAAAARwAAAAABRwAAAAACRwAAAAADCwAAAAAARwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAACRwAAAAACCwAAAAAARwAAAAAARwAAAAACRwAAAAADCwAAAAAARwAAAAAARwAAAAAACwAAAAAARwAAAAACRwAAAAADRwAAAAAACwAAAAAALgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAABRwAAAAACCwAAAAAARwAAAAAARwAAAAAARwAAAAABCwAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAADLgAAAAAALgAAAAACLgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAALgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALgAAAAACLgAAAAAALgAAAAABLgAAAAABCwAAAAAALgAAAAABLgAAAAACLgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAABLgAAAAABLgAAAAABLgAAAAADCwAAAAAALgAAAAABLgAAAAAALgAAAAACKwAAAAAACwAAAAAACwAAAAAACwAAAAAAGAAAAAAATQAAAAACTQAAAAACTQAAAAACLgAAAAADLgAAAAADLgAAAAAALgAAAAACCwAAAAAALgAAAAACLgAAAAACLgAAAAADCwAAAAAACwAAAAAACwAAAAAANAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAATQAAAAACLgAAAAADLgAAAAABLgAAAAAALgAAAAADCwAAAAAACwAAAAAALgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAATQAAAAADGAAAAAAAEwAAAAAAEwAAAAAALgAAAAADLgAAAAADLgAAAAADLgAAAAADLgAAAAABLgAAAAADLgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAATQAAAAABGAAAAAAAEwAAAAAAEAAAAAAA + tiles: HwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABAgAAAAAAHwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAABHwAAAAABHwAAAAACAgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACAgAAAAAAHwAAAAACHwAAAAABHwAAAAADAgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAABJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABHwAAAAABJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACJQAAAAAAJQAAAAAAJQAAAAAAHwAAAAAAAgAAAAAAHwAAAAAAHwAAAAACHwAAAAACAgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAABAgAAAAAAHwAAAAABHwAAAAAAHwAAAAABAgAAAAAAHwAAAAACHwAAAAACAgAAAAAAHwAAAAADHwAAAAABHwAAAAACAgAAAAAAEgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAACHwAAAAADAgAAAAAAHwAAAAABHwAAAAABHwAAAAABAgAAAAAAEgAAAAABEgAAAAACEgAAAAAAEgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEgAAAAABEgAAAAAAEgAAAAACEgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAEgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEgAAAAADEgAAAAACEgAAAAABEgAAAAAAAgAAAAAAEgAAAAAAEgAAAAADEgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEgAAAAADEgAAAAABEgAAAAACEgAAAAADAgAAAAAAEgAAAAABEgAAAAABEgAAAAACDwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABgAAAAACBgAAAAACBgAAAAADEgAAAAADEgAAAAAAEgAAAAAAEgAAAAAAAgAAAAAAEgAAAAABEgAAAAAAEgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABEgAAAAAAEgAAAAABEgAAAAABEgAAAAABAgAAAAAAAgAAAAAAEgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAACAwAAAAAABAAAAAAABAAAAAAAEgAAAAADEgAAAAACEgAAAAADEgAAAAABEgAAAAACEgAAAAACEgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAAwAAAAAABAAAAAAAAwAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: MwAAAAABCwAAAAAARwAAAAABRwAAAAAARwAAAAAARwAAAAAACwAAAAAALAAAAAACTAAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABMwAAAAACCwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAAACwAAAAAALAAAAAADTAAAAAAALAAAAAACPgAAAAADLQAAAAACLQAAAAACLQAAAAAAPgAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAABTAAAAAAALAAAAAACCwAAAAAALQAAAAADLQAAAAACLQAAAAADCwAAAAAALQAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAADPgAAAAAALAAAAAADTAAAAAAALAAAAAACCwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAALAAAAAACLQAAAAABCwAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAACTAAAAAAALAAAAAAALQAAAAACPAAAAAAAPAAAAAAAPAAAAAAALAAAAAABLQAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAAACwAAAAAALAAAAAACLAAAAAACLAAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAALAAAAAABLQAAAAABSwAAAAAASwAAAAACSwAAAAABRwAAAAABRwAAAAAARwAAAAACCwAAAAAALAAAAAAALAAAAAACLAAAAAADCwAAAAAALAAAAAACLAAAAAADLAAAAAADCwAAAAAALQAAAAABSwAAAAADSwAAAAAASwAAAAADRwAAAAAARwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADSwAAAAAASwAAAAAASwAAAAAARwAAAAAARwAAAAAACwAAAAAALgAAAAABLgAAAAAALgAAAAAALgAAAAACLgAAAAAALgAAAAADCwAAAAAALgAAAAABLgAAAAADLQAAAAACRwAAAAABRwAAAAAARwAAAAAARwAAAAACRwAAAAADRwAAAAACLgAAAAABLgAAAAADLgAAAAADLgAAAAACLgAAAAACLgAAAAACCwAAAAAALgAAAAAALgAAAAADLgAAAAABRwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAABLgAAAAABLgAAAAAALgAAAAADLgAAAAABLgAAAAACCwAAAAAALgAAAAAALgAAAAAALgAAAAABRwAAAAAARwAAAAAARwAAAAABRwAAAAACRwAAAAAALgAAAAAALgAAAAABLgAAAAACLgAAAAABLgAAAAACLgAAAAABLgAAAAADLgAAAAABLgAAAAABLgAAAAACLgAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAAALgAAAAABLgAAAAACLgAAAAABLgAAAAABLgAAAAAALgAAAAADLgAAAAACLgAAAAACLgAAAAAALgAAAAABLgAAAAADTgAAAAAATgAAAAAARwAAAAAARwAAAAADRwAAAAABCwAAAAAALgAAAAADLgAAAAABLgAAAAADLgAAAAABLgAAAAAALgAAAAAACwAAAAAALgAAAAAALgAAAAAALgAAAAADTgAAAAAATgAAAAAARwAAAAABRwAAAAABRwAAAAADCwAAAAAALgAAAAACLgAAAAAALgAAAAABLgAAAAADLgAAAAADLgAAAAADCwAAAAAALgAAAAACLgAAAAABLgAAAAACRwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAADLgAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAADLgAAAAADLgAAAAAACwAAAAAALgAAAAADLgAAAAABLQAAAAAC + tiles: FAAAAAACAgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAAgAAAAAAEAAAAAADJQAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAFAAAAAABAgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABAgAAAAAAEAAAAAACJQAAAAAAEAAAAAABGwAAAAADEQAAAAABEQAAAAAAEQAAAAACGwAAAAABEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABJQAAAAAAEAAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAACAgAAAAAAEQAAAAADEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAAAGwAAAAAAEAAAAAABJQAAAAAAEAAAAAACAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAAAEQAAAAACAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACJQAAAAAAEAAAAAACEQAAAAACGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAADEQAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAABAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAEAAAAAAAEQAAAAADIgAAAAABIgAAAAADIgAAAAAAHwAAAAABHwAAAAAAHwAAAAABAgAAAAAAEAAAAAABEAAAAAABEAAAAAACAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAAgAAAAAAEQAAAAADIgAAAAACIgAAAAABIgAAAAACHwAAAAADHwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABIgAAAAADIgAAAAAAIgAAAAADHwAAAAAAHwAAAAADAgAAAAAAEgAAAAAAEgAAAAABEgAAAAACEgAAAAABEgAAAAADEgAAAAACAgAAAAAAEgAAAAAAEgAAAAACEQAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADEgAAAAABEgAAAAABEgAAAAAAEgAAAAAAEgAAAAABEgAAAAABAgAAAAAAEgAAAAACEgAAAAABEgAAAAACHwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAADEgAAAAABEgAAAAADAgAAAAAAEgAAAAAAEgAAAAABEgAAAAADHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAEgAAAAACEgAAAAACEgAAAAACEgAAAAAAEgAAAAABEgAAAAABEgAAAAAAEgAAAAABEgAAAAADEgAAAAACEgAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACEgAAAAABEgAAAAAAEgAAAAACEgAAAAABEgAAAAADEgAAAAACEgAAAAAAEgAAAAADEgAAAAADEgAAAAACEgAAAAADJgAAAAAAJgAAAAAAHwAAAAADHwAAAAACHwAAAAABAgAAAAAAEgAAAAAAEgAAAAABEgAAAAAAEgAAAAABEgAAAAACEgAAAAADAgAAAAAAEgAAAAABEgAAAAADEgAAAAADJgAAAAAAJgAAAAAAHwAAAAAAHwAAAAADHwAAAAADAgAAAAAAEgAAAAADEgAAAAADEgAAAAABEgAAAAACEgAAAAADEgAAAAADAgAAAAAAEgAAAAAAEgAAAAABEgAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAADHwAAAAACEgAAAAABEgAAAAADEgAAAAAAEgAAAAABEgAAAAAAEgAAAAAAEgAAAAACAgAAAAAAEgAAAAACEgAAAAACEQAAAAAC version: 6 0,-3: ind: 0,-3 - tiles: LQAAAAAALQAAAAABLQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAABOwAAAAADLQAAAAAALQAAAAADLQAAAAACLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACOwAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAADCwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAAALQAAAAABCwAAAAAALQAAAAADRQAAAAACRQAAAAACRQAAAAADRQAAAAAARQAAAAACRQAAAAACRQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAACCwAAAAAALQAAAAADRQAAAAAARQAAAAAARQAAAAAARQAAAAACRQAAAAABRQAAAAACRQAAAAADLQAAAAADRQAAAAADRQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAACCwAAAAAALQAAAAAARQAAAAABRQAAAAADRQAAAAAARQAAAAACRQAAAAABRQAAAAABRQAAAAABLQAAAAADRQAAAAADRQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAAALQAAAAACLQAAAAADRQAAAAABRQAAAAABLQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADRQAAAAADRQAAAAADLQAAAAADLQAAAAABCwAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAADCwAAAAAALQAAAAABRQAAAAADRQAAAAADLQAAAAABLQAAAAACCwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAABRQAAAAACRQAAAAACLQAAAAADLQAAAAADCwAAAAAALQAAAAABLQAAAAACLQAAAAABRQAAAAACRQAAAAACRQAAAAACLQAAAAACLQAAAAACLQAAAAACCwAAAAAALQAAAAAARQAAAAAARQAAAAACLQAAAAAALQAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAACwAAAAAALQAAAAACRQAAAAABRQAAAAADLQAAAAABLQAAAAADCwAAAAAALQAAAAADLQAAAAADLQAAAAAARQAAAAADRQAAAAAARQAAAAADLQAAAAADLQAAAAAALQAAAAACCwAAAAAALQAAAAAARQAAAAABRQAAAAACLQAAAAAALQAAAAABCwAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAALQAAAAADRQAAAAAARQAAAAADLQAAAAABLQAAAAABCwAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAALQAAAAABLQAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: EQAAAAABEQAAAAADEQAAAAADEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAACEQAAAAACGQAAAAACEQAAAAADEQAAAAAAEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADEQAAAAAAEQAAAAACGQAAAAABEQAAAAAAEQAAAAACEQAAAAABEQAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAADEQAAAAACEQAAAAAAAgAAAAAAEQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACEQAAAAABEQAAAAABEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAEQAAAAACAgAAAAAAEQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAEQAAAAACHQAAAAABHQAAAAABEQAAAAABEQAAAAACEQAAAAABEQAAAAACAgAAAAAAEQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAADEQAAAAADHQAAAAACHQAAAAAAEQAAAAABEQAAAAACEQAAAAACEQAAAAABAgAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAACEQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADHQAAAAADHQAAAAACEQAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAHQAAAAADHQAAAAACEQAAAAADEQAAAAABAgAAAAAAEQAAAAADEQAAAAAAEQAAAAAAEQAAAAACEQAAAAABEQAAAAACEQAAAAABEQAAAAABEQAAAAAAAgAAAAAAEQAAAAADHQAAAAABHQAAAAABEQAAAAACEQAAAAABAgAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAACEQAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAADEQAAAAADEQAAAAADHQAAAAACHQAAAAACEQAAAAAAEQAAAAADAgAAAAAAEQAAAAACEQAAAAACEQAAAAACHQAAAAABHQAAAAACHQAAAAADEQAAAAADEQAAAAADEQAAAAADAgAAAAAAEQAAAAADHQAAAAADHQAAAAABEQAAAAACEQAAAAABAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAEQAAAAADHQAAAAADHQAAAAABEQAAAAABEQAAAAACAgAAAAAAEQAAAAADEQAAAAADEQAAAAACHQAAAAADHQAAAAABHQAAAAADEQAAAAADEQAAAAAAEQAAAAADAgAAAAAAEQAAAAABHQAAAAADHQAAAAABEQAAAAABEQAAAAABAgAAAAAAEQAAAAACEQAAAAAAEQAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAACEQAAAAADEQAAAAACAgAAAAAAEQAAAAACHQAAAAADHQAAAAACEQAAAAAAEQAAAAAAAgAAAAAAEQAAAAADEQAAAAAAEQAAAAABEQAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAABEQAAAAADAgAAAAAAEQAAAAADEQAAAAACEQAAAAACEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: UAAAAAAAUAAAAAAAUAAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAABMwAAAAADCwAAAAAALQAAAAABLQAAAAAALQAAAAAACwAAAAAAMwAAAAADMwAAAAABUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAABCwAAAAAAMwAAAAABMwAAAAADUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAADLAAAAAABLQAAAAADLQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAALAAAAAADLAAAAAACLAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACCwAAAAAARwAAAAACRwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAABRwAAAAAACwAAAAAACwAAAAAARwAAAAACCwAAAAAACwAAAAAARwAAAAABRwAAAAABIwAAAAABIwAAAAABIwAAAAACCwAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAACRwAAAAABCwAAAAAARwAAAAACRwAAAAAARwAAAAAACwAAAAAARwAAAAABRwAAAAACIwAAAAADIwAAAAACIwAAAAABCwAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAABRwAAAAADRwAAAAAARwAAAAADRwAAAAABIwAAAAAAIwAAAAADIwAAAAACCwAAAAAARwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAACCwAAAAAARwAAAAADRwAAAAABRwAAAAAACwAAAAAARwAAAAACRwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAACRwAAAAACRwAAAAADCwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAADIwAAAAABCwAAAAAARwAAAAACRwAAAAADLAAAAAACRwAAAAACRwAAAAABCwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAABRwAAAAACRwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAQQAAAAADRwAAAAACLAAAAAADLAAAAAABLAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAADRwAAAAABIwAAAAABIwAAAAABIwAAAAABCwAAAAAARwAAAAADRwAAAAAARwAAAAABRwAAAAADRwAAAAABCwAAAAAARwAAAAACRwAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAACwAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAADRwAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAAARwAAAAADRwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAAC + tiles: JwAAAAAAJwAAAAAAJwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAABAgAAAAAAEQAAAAADEQAAAAABEQAAAAABAgAAAAAAFAAAAAACFAAAAAABJwAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAABAgAAAAAAFAAAAAAAFAAAAAABJwAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADEAAAAAACEQAAAAACEQAAAAADEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAACAgAAAAAAEQAAAAAAEQAAAAACEQAAAAACEAAAAAADEAAAAAACEAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAAgAAAAAAEQAAAAACEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAAAEQAAAAAAAgAAAAAAHwAAAAABHwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAAgAAAAAAAgAAAAAAHwAAAAABAgAAAAAAAgAAAAAAHwAAAAADHwAAAAABDAAAAAAADAAAAAACDAAAAAABAgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADHwAAAAADAgAAAAAAHwAAAAACHwAAAAAAHwAAAAABAgAAAAAAHwAAAAADHwAAAAABDAAAAAACDAAAAAADDAAAAAAAAgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAABDAAAAAACDAAAAAADDAAAAAABAgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAACAgAAAAAAHwAAAAAAHwAAAAABHwAAAAADAgAAAAAAHwAAAAADHwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAADHwAAAAABHwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAADDAAAAAADDAAAAAABAgAAAAAAHwAAAAAAHwAAAAAAEAAAAAAAHwAAAAABHwAAAAAAAgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACDAAAAAADDAAAAAABDAAAAAAAHAAAAAAAHwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAADAAAAAAADAAAAAABDAAAAAABAgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAAgAAAAAAHwAAAAADHwAAAAACJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAABHwAAAAABJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: CwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAABCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAADKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAALQAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACRQAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAAALQAAAAADCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADRQAAAAABLQAAAAAALQAAAAADNAAAAAAANAAAAAAANAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABSwAAAAABSwAAAAAASwAAAAABRQAAAAABLQAAAAAALQAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAADLQAAAAACSwAAAAAASwAAAAADSwAAAAADRQAAAAACLQAAAAAALQAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAADLQAAAAADSwAAAAADSwAAAAADSwAAAAAARQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAABRQAAAAACLQAAAAABCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAARQAAAAABLQAAAAACCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAACwAAAAAAMwAAAAACMwAAAAAALQAAAAABLQAAAAADCwAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACQQAAAAACCwAAAAAACwAAAAAAQQAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAMwAAAAAAMwAAAAADPgAAAAADMwAAAAABMwAAAAAD + tiles: AgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAADEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAADEQAAAAACEQAAAAAAEQAAAAAAEQAAAAABEQAAAAADAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAHQAAAAABEQAAAAACEQAAAAACEQAAAAABEQAAAAAAEQAAAAABDwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAEQAAAAACEQAAAAABEQAAAAABEQAAAAACEQAAAAACAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAABEQAAAAAAHQAAAAADEQAAAAACEQAAAAABEQAAAAABEQAAAAABEQAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAAAEQAAAAADEQAAAAABEQAAAAADHQAAAAADEQAAAAABEQAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABIgAAAAACIgAAAAADIgAAAAAAHQAAAAACEQAAAAACEQAAAAABFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEQAAAAADEQAAAAABIgAAAAACIgAAAAACIgAAAAABHQAAAAAAEQAAAAADEQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEQAAAAADEQAAAAAAIgAAAAADIgAAAAABIgAAAAAAHQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAAAEQAAAAABEQAAAAADEQAAAAADHQAAAAAAEQAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAACEQAAAAABAgAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAAgAAAAAAFAAAAAABFAAAAAAAEQAAAAABEQAAAAACAgAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAADHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAABAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAFAAAAAAAFAAAAAABGwAAAAABFAAAAAACFAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: MwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAAAPgAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAACCwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAACMwAAAAABCwAAAAAACwAAAAAAPgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADPgAAAAACMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAACwAAAAAAUQAAAAACUQAAAAACUQAAAAACCwAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAMwAAAAACMwAAAAAAMwAAAAAACwAAAAAAUQAAAAAAUQAAAAACUQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARgAAAAAARgAAAAAARgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACCwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAACMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAABCwAAAAAAMwAAAAACMwAAAAACCwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAAA + tiles: FAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAADGwAAAAADFAAAAAACFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAACAgAAAAAAAgAAAAAAGwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAABFAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAABGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAGwAAAAACFAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAFAAAAAACFAAAAAACFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAFAAAAAACFAAAAAABAgAAAAAAKAAAAAADKAAAAAACKAAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAFAAAAAACFAAAAAABAgAAAAAAKAAAAAABKAAAAAACKAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADAgAAAAAAAgAAAAAAFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAAAAgAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAAAAgAAAAAAFAAAAAACFAAAAAAAAgAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: CwAAAAAAKwAAAAAAMwAAAAABMwAAAAACKwAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAMwAAAAABKwAAAAAAMwAAAAADMwAAAAACKwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAVQAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAAMwAAAAAAMwAAAAADCwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAAACwAAAAAAMwAAAAADMwAAAAADPgAAAAABMwAAAAADMwAAAAADMwAAAAADMwAAAAAAMwAAAAACCwAAAAAACwAAAAAAVAAAAAADCwAAAAAASwAAAAADLQAAAAABLQAAAAADCwAAAAAAMwAAAAADMwAAAAAACwAAAAAAMwAAAAACSQAAAAAASQAAAAAASQAAAAAAMwAAAAACCwAAAAAAMwAAAAABMwAAAAAAMwAAAAABSwAAAAABLQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAADMwAAAAABCwAAAAAAMwAAAAACMwAAAAADMwAAAAABSwAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAABLQAAAAACCwAAAAAACwAAAAAACwAAAAAAPgAAAAADCwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAABLQAAAAACLQAAAAADCwAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAABMwAAAAAAPgAAAAACMwAAAAABMwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAABCwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAACCwAAAAAACwAAAAAAVAAAAAADCwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAABMwAAAAAAMwAAAAACPgAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACCwAAAAAAKwAAAAAAKwAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABCwAAAAAACwAAAAAACwAAAAAA + tiles: AgAAAAAADwAAAAAAFAAAAAADFAAAAAADDwAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAAFAAAAAACDwAAAAAAFAAAAAADFAAAAAADDwAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAADgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAADEQAAAAABAgAAAAAAFAAAAAABFAAAAAADAgAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAACFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAABEQAAAAACAgAAAAAAFAAAAAACFAAAAAABGwAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAADFAAAAAACAgAAAAAAAgAAAAAAKQAAAAAAAgAAAAAAIgAAAAAAEQAAAAADEQAAAAADAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAFAAAAAABIQAAAAAAIQAAAAAAIQAAAAAAFAAAAAADAgAAAAAAFAAAAAADFAAAAAABFAAAAAADIgAAAAADEQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAACFAAAAAADFAAAAAAAAgAAAAAAFAAAAAAAFAAAAAACFAAAAAACIgAAAAABEQAAAAABEQAAAAAAEQAAAAABEQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAGwAAAAACAgAAAAAAAgAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAABEQAAAAABEQAAAAABEQAAAAACEQAAAAAAEQAAAAABEQAAAAACAgAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAADGwAAAAABFAAAAAACFAAAAAADFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAACAgAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAABFAAAAAADFAAAAAADFAAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAADAgAAAAAAAgAAAAAAKQAAAAADAgAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAACGwAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABAgAAAAAADwAAAAAADwAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAABFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: MwAAAAAACwAAAAAAMwAAAAABMwAAAAADCwAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAADMwAAAAABCwAAAAAAMwAAAAABMwAAAAADCwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAAAUQAAAAACUQAAAAACUQAAAAAAUQAAAAADUQAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAADMwAAAAADMwAAAAACUQAAAAACUQAAAAADUQAAAAACUQAAAAACUQAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAABUQAAAAAAUQAAAAACUQAAAAAAUQAAAAADUQAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAABCwAAAAAAMwAAAAABMwAAAAAAMwAAAAABMwAAAAADCwAAAAAAIwAAAAACIwAAAAABIwAAAAACIwAAAAADPgAAAAABPgAAAAABCwAAAAAAIwAAAAABIwAAAAADIwAAAAABCwAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAABCwAAAAAAIwAAAAABIwAAAAABIwAAAAACQQAAAAAAPgAAAAAAPgAAAAADCwAAAAAACwAAAAAAQQAAAAADCwAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAABQQAAAAABIwAAAAACIwAAAAACIwAAAAAAQQAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAACIwAAAAABIwAAAAADCwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADCwAAAAAAQQAAAAABQQAAAAADQQAAAAAAQQAAAAACIwAAAAACIwAAAAACIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAQQAAAAABIwAAAAABCwAAAAAAMwAAAAADMwAAAAABQQAAAAAAIwAAAAADIwAAAAACIwAAAAAAQQAAAAADIwAAAAAAIwAAAAADIwAAAAACIwAAAAAAIwAAAAABIwAAAAACCwAAAAAAIwAAAAABCwAAAAAAMwAAAAABMwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAACQQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABCwAAAAAAMwAAAAADMwAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAADCwAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACCwAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAAMwAAAAACMwAAAAACLQAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAAALQAAAAAB + tiles: FAAAAAAAAgAAAAAAFAAAAAABFAAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFAAAAAACFAAAAAADFAAAAAADFAAAAAADFAAAAAABFAAAAAADAgAAAAAAFAAAAAACFAAAAAAAAgAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADAgAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAADKAAAAAACKAAAAAAAKAAAAAAAKAAAAAACKAAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAACFAAAAAADKAAAAAABKAAAAAAAKAAAAAABKAAAAAADKAAAAAACFAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAADKAAAAAACKAAAAAACKAAAAAAAKAAAAAADKAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAACFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAABFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADAAAAAABDAAAAAACDAAAAAADAgAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAADAgAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAACGwAAAAAAGwAAAAACAgAAAAAADAAAAAACDAAAAAAADAAAAAABAgAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAADAgAAAAAADAAAAAAADAAAAAACDAAAAAACHAAAAAACGwAAAAADGwAAAAACAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAABHAAAAAABDAAAAAACDAAAAAACDAAAAAAAHAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAACDAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAAAAgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAADDAAAAAADDAAAAAADHAAAAAAADAAAAAACAgAAAAAAFAAAAAABFAAAAAADHAAAAAAADAAAAAAADAAAAAADDAAAAAADHAAAAAABDAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAABDAAAAAACAgAAAAAADAAAAAAAAgAAAAAAFAAAAAABFAAAAAAAAgAAAAAADAAAAAADDAAAAAADDAAAAAACHAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACAgAAAAAAFAAAAAADFAAAAAADAgAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAAAEQAAAAACAgAAAAAAEQAAAAADEQAAAAAAEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACFAAAAAAAFAAAAAACEQAAAAAAAgAAAAAAEQAAAAADEQAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAADEQAAAAABEQAAAAACEQAAAAAAEQAAAAABEQAAAAACEQAAAAABEQAAAAAA version: 6 2,0: ind: 2,0 - tiles: LQAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAAALQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAABCwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAAACwAAAAAAIgAAAAAALQAAAAADLQAAAAAAIgAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAACwAAAAAAIgAAAAAALQAAAAADLQAAAAAAIgAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAABCwAAAAAAIgAAAAAALQAAAAABLQAAAAADLQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAADCwAAAAAAIgAAAAAALQAAAAACIgAAAAAAIgAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAADIwAAAAABIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAAACwAAAAAAIwAAAAADIwAAAAABQQAAAAABIwAAAAAAIwAAAAADIwAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAQQAAAAAAIwAAAAABIwAAAAACQQAAAAABIwAAAAADIwAAAAAAIwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAADQQAAAAACIwAAAAACIwAAAAACQQAAAAACIwAAAAAAIwAAAAACIwAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAADCwAAAAAAIwAAAAADIwAAAAAAQQAAAAADIwAAAAABIwAAAAACIwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: EQAAAAABEQAAAAABEQAAAAADEQAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAACEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAEQAAAAABEQAAAAACEQAAAAACEQAAAAADEQAAAAAAEQAAAAABEQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAABEQAAAAAAEQAAAAAAEQAAAAADEQAAAAADEQAAAAAAEQAAAAABAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAACEQAAAAADAgAAAAAACwAAAAAAEQAAAAABEQAAAAADCwAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAADEQAAAAABAgAAAAAACwAAAAAAEQAAAAAAEQAAAAABCwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABEQAAAAABEQAAAAADEQAAAAADAgAAAAAACwAAAAAAEQAAAAABEQAAAAABEQAAAAABAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAACAgAAAAAACwAAAAAAEQAAAAACCwAAAAAACwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADAAAAAAADAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAADAAAAAAADAAAAAACHAAAAAAADAAAAAAADAAAAAACDAAAAAADAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAADHAAAAAAADAAAAAABDAAAAAACHAAAAAADDAAAAAABDAAAAAAADAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAABHAAAAAABDAAAAAACDAAAAAABHAAAAAADDAAAAAABDAAAAAAADAAAAAADAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABFAAAAAADAgAAAAAADAAAAAACDAAAAAAAHAAAAAACDAAAAAADDAAAAAACDAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,1: ind: 2,1 - tiles: MwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAAACwAAAAAAIwAAAAAAIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAABQQAAAAADQQAAAAABIwAAAAAAIwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAACQQAAAAAACwAAAAAACwAAAAAAQQAAAAAACwAAAAAACwAAAAAAVwAAAAADIwAAAAAAIwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAADQQAAAAADCwAAAAAALgAAAAABLgAAAAADCwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAADKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAADQQAAAAADCwAAAAAALgAAAAABLgAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAQQAAAAABQQAAAAACCwAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAAAIwAAAAACIwAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAANAAAAAAAVgAAAAADVgAAAAAAVgAAAAABNAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAA + tiles: FAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAAgAAAAAADAAAAAACDAAAAAABDAAAAAADAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAACDAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDAAAAAADDAAAAAAAAgAAAAAAAgAAAAAADAAAAAAADAAAAAACDAAAAAADAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAADHAAAAAAAAgAAAAAAAgAAAAAAHAAAAAACAgAAAAAAAgAAAAAALAAAAAAADAAAAAACDAAAAAACAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAADHAAAAAACAgAAAAAAEgAAAAADEgAAAAABAgAAAAAAAgAAAAAADAAAAAACDAAAAAACDAAAAAADDwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAADHAAAAAABAgAAAAAAEgAAAAACEgAAAAADAgAAAAAAAgAAAAAADAAAAAAADAAAAAABDAAAAAABAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAAAHAAAAAADAgAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAADAAAAAABDAAAAAAADAAAAAABAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAADDAAAAAAADAAAAAABAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFQAAAAAAKwAAAAAAKwAAAAADKwAAAAACFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAACwAAAAAAWgAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAWgAAAAAAWgAAAAAAWgAAAAAACwAAAAAACwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAIwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAKwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALQAAAAADLQAAAAAALQAAAAABCwAAAAAAWQAAAAAAWQAAAAAAQQAAAAADIwAAAAABIwAAAAAAIwAAAAABIwAAAAACCwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAIwAAAAAAIwAAAAABIwAAAAAAIwAAAAABCwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAABWQAAAAAAWQAAAAAAWQAAAAAACwAAAAAAIwAAAAABIwAAAAABCwAAAAAAIwAAAAABIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAADCwAAAAAAWQAAAAAAWQAAAAAACwAAAAAAQQAAAAADCwAAAAAACwAAAAAAIwAAAAACIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADCwAAAAAALgAAAAACLgAAAAACLgAAAAABLgAAAAABLgAAAAABCwAAAAAAIwAAAAADIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAABCwAAAAAALgAAAAACLgAAAAACLgAAAAABLgAAAAACLgAAAAABCwAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAAACwAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAABLgAAAAACRwAAAAACRwAAAAAB + tiles: DwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADwAAAAAAAgAAAAAADgAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADgAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAAAgAAAAAALwAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADgAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAALwAAAAAALwAAAAAALwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAALwAAAAAALwAAAAAALwAAAAAAAgAAAAAAAgAAAAAALQAAAAAALQAAAAAALQAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAALQAAAAAALQAAAAAALQAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAADAAAAAABDAAAAAAADAAAAAACDAAAAAAADwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAgAAAAAALgAAAAAALgAAAAAAHAAAAAACDAAAAAABDAAAAAABDAAAAAADDAAAAAACAgAAAAAALQAAAAAALQAAAAAALQAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAABAgAAAAAALQAAAAAALQAAAAAALQAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAADAAAAAACDAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAADAAAAAAADAAAAAADAgAAAAAADAAAAAADCwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAgAAAAAALgAAAAAALgAAAAAAAgAAAAAAHAAAAAADAgAAAAAAAgAAAAAADAAAAAABCwAAAAAACwAAAAAACwAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAgAAAAAAEgAAAAADEgAAAAABEgAAAAADEgAAAAABEgAAAAABAgAAAAAADAAAAAADCwAAAAAACwAAAAAACwAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAgAAAAAAEgAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAACAgAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAgAAAAAAEgAAAAABEgAAAAAAEgAAAAACEgAAAAABEgAAAAACHwAAAAABHwAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: IgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAACCwAAAAAALgAAAAABLgAAAAADLgAAAAADLgAAAAABLgAAAAAARwAAAAABRwAAAAADLAAAAAAALAAAAAACLAAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAADCwAAAAAALgAAAAABLgAAAAACLgAAAAACLgAAAAADLgAAAAAACwAAAAAACwAAAAAALAAAAAACLAAAAAAALAAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAAAMwAAAAADMwAAAAAALQAAAAADLQAAAAACCwAAAAAALQAAAAACLQAAAAAALQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAAAMwAAAAACMwAAAAABLQAAAAADLQAAAAABCwAAAAAALQAAAAADLQAAAAADLQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAACMwAAAAAAMwAAAAAALQAAAAADLQAAAAAAMwAAAAACLQAAAAACLQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAARwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAAACwAAAAAALQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAACLQAAAAABLQAAAAAACwAAAAAALQAAAAABLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAACLQAAAAABLQAAAAAACwAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALgAAAAAAWwAAAAAAWwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAAACwAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAAACwAAAAAALQAAAAADLQAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAAD + tiles: CwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAgAAAAAAEgAAAAABEgAAAAACEgAAAAABEgAAAAABEgAAAAAAHwAAAAAAHwAAAAABEAAAAAADEAAAAAABEAAAAAABEQAAAAACEQAAAAABEQAAAAADEQAAAAAAEQAAAAAAAgAAAAAAEgAAAAADEgAAAAABEgAAAAABEgAAAAACEgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEQAAAAAAEQAAAAABEQAAAAACEQAAAAACEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAABAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAADFAAAAAACFAAAAAADEQAAAAAAEQAAAAADAgAAAAAAEQAAAAADEQAAAAADEQAAAAACAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAAAFAAAAAABFAAAAAADEQAAAAABEQAAAAABAgAAAAAAEQAAAAABEQAAAAADEQAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAABFAAAAAAAFAAAAAADEQAAAAABEQAAAAADFAAAAAADEQAAAAABEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAABEQAAAAABEQAAAAABEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMAAAAAAAMAAAAAAAAgAAAAAADgAAAAAAAgAAAAAAEQAAAAACEQAAAAAAEQAAAAADAgAAAAAAEQAAAAADEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEgAAAAADMAAAAAAAMAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEgAAAAADMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAEQAAAAACEQAAAAAAEQAAAAAAAgAAAAAAEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAEQAAAAACEQAAAAABEQAAAAAAAgAAAAAAEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEgAAAAADMAAAAAAAMAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAACEQAAAAADEQAAAAACEQAAAAADAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAADMAAAAAAAMAAAAAAAAgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAAAEQAAAAACAgAAAAAAEQAAAAAAEQAAAAACAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAAD version: 6 -3,-1: ind: -3,-1 - tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAACCwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAABCwAAAAAALQAAAAACLQAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAADLQAAAAACKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAALgAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAABCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAABWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAADCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAABCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAABCwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAABLQAAAAAACwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAACIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAAC + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAAAEQAAAAABEQAAAAACAgAAAAAAEQAAAAAAEQAAAAADAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAABEQAAAAACEQAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAAAEQAAAAAAAgAAAAAAEQAAAAAAEQAAAAABAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAADMAAAAAAAMAAAAAAAMAAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAACEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAgAAAAAAEQAAAAAAEQAAAAABEQAAAAAAEQAAAAACEQAAAAABDwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEgAAAAABMAAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAEQAAAAACEQAAAAABEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAADEQAAAAABAgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAEQAAAAACMAAAAAAAMAAAAAAAMAAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAACEQAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAABAgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAACAgAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABAgAAAAAAEQAAAAADEQAAAAADEQAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAACAgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAABEQAAAAAAEQAAAAADEQAAAAABEQAAAAACEQAAAAABEQAAAAAAAgAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAACEQAAAAADEQAAAAABEQAAAAABEQAAAAAAEQAAAAAAEQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAACEQAAAAABEQAAAAAAEQAAAAADEQAAAAAAEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAADEQAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAACEQAAAAADEQAAAAAD version: 6 -3,0: ind: -3,0 - tiles: LQAAAAACLQAAAAADLQAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAADLQAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAACCwAAAAAALQAAAAABLQAAAAADCwAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAAMwAAAAACMwAAAAAACwAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAALQAAAAACCwAAAAAALQAAAAABLQAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAADLQAAAAACCwAAAAAALQAAAAAALQAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: EQAAAAAAEQAAAAADEQAAAAACEQAAAAADEQAAAAABEQAAAAADEQAAAAADEQAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAADEQAAAAABEQAAAAACEQAAAAACEQAAAAADEQAAAAADEQAAAAABEQAAAAAAEQAAAAADEQAAAAADEQAAAAAAEQAAAAACEQAAAAABEQAAAAADEQAAAAABEQAAAAABEQAAAAACEQAAAAADEQAAAAACEQAAAAABAgAAAAAAEQAAAAABEQAAAAACAgAAAAAAAgAAAAAAEQAAAAADEQAAAAACAgAAAAAAFAAAAAABFAAAAAABAgAAAAAAEQAAAAACEQAAAAABAgAAAAAAAgAAAAAAEQAAAAABAgAAAAAAEQAAAAACEQAAAAABAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAACEQAAAAACEQAAAAABEQAAAAACEQAAAAAAAgAAAAAAEQAAAAACEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAABEQAAAAABEQAAAAABEQAAAAAAEQAAAAADEQAAAAAAEQAAAAAAAgAAAAAAEQAAAAADEQAAAAACAgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAACEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADAgAAAAAAEQAAAAADEQAAAAADAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -3,1: ind: -3,1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: CwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAALQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAALQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADKwAAAAAACwAAAAAACwAAAAAACwAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAAFQAAAAABFQAAAAADCwAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAADLQAAAAACCwAAAAAAFQAAAAABFQAAAAAACwAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAACCwAAAAAAFQAAAAADFQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAADCwAAAAAAFQAAAAADFQAAAAABCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAEQAAAAACEQAAAAABEQAAAAAAEQAAAAABEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAEQAAAAACEQAAAAAAEQAAAAADEQAAAAABEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAEQAAAAAAEQAAAAABEQAAAAABEQAAAAADEQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAEQAAAAADEQAAAAADEQAAAAABEQAAAAADEQAAAAABAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAEQAAAAAAEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABDwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAACAAAAAADCAAAAAADAgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAACEQAAAAABAgAAAAAACAAAAAACCAAAAAADAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAABEQAAAAACAgAAAAAACAAAAAADCAAAAAABAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAABEQAAAAADEQAAAAADEQAAAAACEQAAAAADAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADEQAAAAACEQAAAAACEQAAAAACDwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAABEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAABLQAAAAACLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAABLQAAAAABCwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAABLQAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAADCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAACCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAAACwAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAALAAAAAACTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAABCwAAAAAALQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAALAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAAACwAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAADCwAAAAAALQAAAAACMwAAAAABCwAAAAAARwAAAAADRwAAAAACRwAAAAADRwAAAAADCwAAAAAALAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAADCwAAAAAALQAAAAADMwAAAAADCwAAAAAARwAAAAAARwAAAAABRwAAAAABRwAAAAABCwAAAAAALAAAAAABTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAALAAAAAABCwAAAAAALQAAAAADMwAAAAADCwAAAAAARwAAAAABRwAAAAABRwAAAAAARwAAAAADPgAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAABCwAAAAAALQAAAAAC + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAEQAAAAABEQAAAAACEQAAAAADEQAAAAACEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAADEQAAAAADEQAAAAAAEQAAAAACEQAAAAACEQAAAAAAEQAAAAADEQAAAAABAgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAABEQAAAAACEQAAAAABEQAAAAACEQAAAAACEQAAAAAAEQAAAAADEQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAADEQAAAAADEQAAAAABEQAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAAAEQAAAAABAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAAAEQAAAAACEQAAAAADEQAAAAABEQAAAAABEQAAAAACEQAAAAACEQAAAAABAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAACEQAAAAADEQAAAAAAEQAAAAAAEQAAAAADEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAADEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAADAgAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAEAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAEAAAAAACAgAAAAAAEQAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAEAAAAAAAAgAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAEAAAAAADAgAAAAAAEQAAAAABFAAAAAABAgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAAAAgAAAAAAEAAAAAABJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAEAAAAAACAgAAAAAAEQAAAAADFAAAAAACAgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAAgAAAAAAEAAAAAADJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAEAAAAAABAgAAAAAAEQAAAAABFAAAAAACAgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACGwAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAAAAgAAAAAAEQAAAAAB version: 6 -2,-4: ind: -2,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABCwAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADCwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAACKAAAAAAAKAAAAAAAKAAAAAAACwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAACCwAAAAAAMwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAABMwAAAAABLAAAAAADLQAAAAABLQAAAAAALQAAAAACLAAAAAAAMwAAAAADMwAAAAAD + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAFAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAALgAAAAAAAgAAAAAALgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAADLgAAAAAALgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAACFAAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAAAAgAAAAAAFAAAAAAAFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAACEAAAAAADEQAAAAACEQAAAAACEQAAAAADEAAAAAADFAAAAAAAFAAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAXAAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAPAAAAAAACwAAAAAACwAAAAAALAAAAAADLAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAABLAAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADLAAAAAADCwAAAAAAPAAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAACKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKMQAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAGgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAALgAAAAAAAgAAAAAAAgAAAAAALgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAALgAAAAAAAgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAACCwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAABKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAAOwAAAAADOwAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAAPAAAAAAACwAAAAAAOwAAAAAAOwAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAAOwAAAAAAOwAAAAACLQAAAAADLQAAAAACLQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAEQAAAAACEQAAAAADEQAAAAABEQAAAAAAEQAAAAABEQAAAAABAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAADEQAAAAACEQAAAAACEQAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAACEQAAAAAAEQAAAAABEQAAAAADDwAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAABEQAAAAAAEQAAAAACEQAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAGQAAAAACGQAAAAADEQAAAAACEQAAAAADEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGQAAAAAAGQAAAAABEQAAAAACEQAAAAADEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAGQAAAAABGQAAAAACEQAAAAACEQAAAAABEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAADEQAAAAAAEQAAAAACEQAAAAACEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAIVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAECwAAAAAACwAAAAAACwAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAEAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAACVwAAAAAECwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAIwAAAAADIwAAAAABIwAAAAABIwAAAAADIwAAAAAAIwAAAAACCwAAAAAACwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAADVQAAAAAACwAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAACIwAAAAADIwAAAAACCwAAAAAACwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAGVQAAAAAACwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADIwAAAAAAIwAAAAABCwAAAAAACwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAAAVwAAAAADIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAFVQAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAABIwAAAAABIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAECwAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAAAIwAAAAADCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHCwAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAABIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAACIwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAADKgAAAAAAKgAAAAAGKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAMKgAAAAAEKgAAAAAHKgAAAAAAKgAAAAAGAgAAAAAABwAAAAACDwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAADAAAAAABDAAAAAACDAAAAAABDAAAAAADDAAAAAADLAAAAAAEAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAABDAAAAAAADAAAAAAAAgAAAAAAAgAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHAgAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAABDAAAAAABDAAAAAABAgAAAAAAAgAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAACDAAAAAADAgAAAAAAAgAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAADAAAAAACDAAAAAABDAAAAAABDAAAAAACLAAAAAAGDAAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAGKgAAAAABAgAAAAAADAAAAAADDAAAAAABDAAAAAAADAAAAAADDAAAAAAADAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAAgAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAADAAAAAADDAAAAAABDAAAAAACDAAAAAACDAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 2,2: ind: 2,2 - tiles: NAAAAAAAVgAAAAACVgAAAAADVgAAAAACNAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAANAAAAAAAVgAAAAADVgAAAAAAVgAAAAABNAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAVgAAAAABVgAAAAADVgAAAAAAVgAAAAAAVgAAAAABCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAACLAAAAAAALAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAAALAAAAAADLAAAAAACKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAABLAAAAAADLAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVgAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAABLAAAAAABLAAAAAADCwAAAAAAXAAAAAAAXAAAAAAAVgAAAAABVgAAAAADVgAAAAACVgAAAAAAVgAAAAADCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAABLAAAAAAALAAAAAAACwAAAAAAXAAAAAAAXAAAAAAACwAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAAALAAAAAACLAAAAAABCwAAAAAAXAAAAAAAXAAAAAAAPgAAAAADPgAAAAACPgAAAAAAPgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALAAAAAACLAAAAAAALAAAAAACCwAAAAAAXAAAAAAAXAAAAAAAPgAAAAABPgAAAAACPgAAAAADPgAAAAADCwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAVQAAAAACVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAA + tiles: FQAAAAAAKwAAAAADKwAAAAADKwAAAAABFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFQAAAAAAKwAAAAACKwAAAAABKwAAAAABFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAKwAAAAAAKwAAAAACKwAAAAABKwAAAAADKwAAAAACAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAABAgAAAAAAMQAAAAAAMQAAAAAAKwAAAAABKwAAAAADKwAAAAADKwAAAAACKwAAAAADAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABAgAAAAAAMQAAAAAAMQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAMQAAAAAAMQAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAA version: 6 1,2: ind: 1,2 - tiles: RQAAAAADRQAAAAABLQAAAAABLQAAAAABOwAAAAADLQAAAAABLQAAAAADRQAAAAACRQAAAAADRQAAAAAARQAAAAACRQAAAAAALQAAAAABLQAAAAADCwAAAAAANAAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACOwAAAAABLQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAABLQAAAAADLQAAAAAALQAAAAABCwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAADLAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAAACwAAAAAAOwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAALAAAAAABRQAAAAADLAAAAAADCwAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAAVgAAAAACCwAAAAAALAAAAAAALAAAAAADLAAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAABCwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAABLQAAAAABLQAAAAACCwAAAAAACwAAAAAAMwAAAAACLQAAAAADLQAAAAABLQAAAAABCwAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAACCwAAAAAAVgAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAABCwAAAAAAOwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAADLQAAAAACPgAAAAADPgAAAAADPgAAAAABPgAAAAABPgAAAAADPgAAAAAAPgAAAAACPgAAAAADPgAAAAAAPgAAAAACPgAAAAACMwAAAAABLQAAAAABLQAAAAAALQAAAAABLQAAAAABPgAAAAADPgAAAAADPgAAAAABPgAAAAACPgAAAAACPgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAABPgAAAAADLQAAAAACLQAAAAACLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAAAPAAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAADCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAACPAAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA + tiles: HQAAAAAAHQAAAAADEQAAAAAAEQAAAAABGQAAAAABEQAAAAADEQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADEQAAAAAAEQAAAAADAgAAAAAAFQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAACGQAAAAABEQAAAAACEQAAAAACEQAAAAADEQAAAAACEQAAAAADEQAAAAADEQAAAAAAEQAAAAAAEQAAAAACAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAABEQAAAAACEQAAAAABEQAAAAABEQAAAAACEQAAAAADEQAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAAgAAAAAAGQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAEAAAAAAAHQAAAAAAEAAAAAAAAgAAAAAAEQAAAAAAEQAAAAACEQAAAAACEQAAAAADEQAAAAAAEQAAAAADEQAAAAACEQAAAAACEQAAAAABAgAAAAAAKwAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAEQAAAAAAEQAAAAABEQAAAAAAEQAAAAABEQAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAABEQAAAAABEQAAAAACEQAAAAACEQAAAAACEQAAAAADEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAACEQAAAAABAgAAAAAAEQAAAAACEQAAAAADEQAAAAABEQAAAAAAEQAAAAACEQAAAAABEQAAAAABEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAFAAAAAABEQAAAAACEQAAAAADEQAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAABEQAAAAAAEQAAAAADEQAAAAADEQAAAAACEQAAAAABAgAAAAAAKwAAAAADAgAAAAAAEQAAAAACEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAAgAAAAAAGQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADEQAAAAABEQAAAAADEQAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACFAAAAAAAEQAAAAACEQAAAAACEQAAAAABEQAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAABEQAAAAABEQAAAAABEQAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAACEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAAAGgAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAACEQAAAAADEQAAAAAAGgAAAAAAFAAAAAABFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAA version: 6 0,2: ind: 0,2 - tiles: LQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAAARQAAAAACLQAAAAACLQAAAAADOwAAAAACLQAAAAACLQAAAAACRQAAAAAARQAAAAAARQAAAAAARQAAAAABLQAAAAABLQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAACRQAAAAAALQAAAAADLQAAAAAAOwAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAAACwAAAAAALQAAAAADLQAAAAABRQAAAAABLQAAAAACLQAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAAAIwAAAAAAIwAAAAABIwAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAADLQAAAAABLQAAAAABRQAAAAACLQAAAAACLQAAAAADCwAAAAAAIgAAAAAALQAAAAADIwAAAAADIwAAAAABIwAAAAACIwAAAAADLQAAAAABLQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAACRQAAAAADLQAAAAABLQAAAAAACwAAAAAAIgAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAABIwAAAAACLQAAAAABLQAAAAAALQAAAAADCwAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAABCwAAAAAAIgAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAABIwAAAAAALQAAAAADLQAAAAADLQAAAAACCwAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAADLQAAAAABLQAAAAADCwAAAAAAIwAAAAAAIwAAAAACIwAAAAACCwAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAAACwAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAABLQAAAAACLQAAAAABCwAAAAAAIwAAAAABIwAAAAADIwAAAAABCwAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAAIwAAAAACIwAAAAAAIwAAAAACQQAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAAIwAAAAABIwAAAAADIwAAAAACCwAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAAIwAAAAAAIwAAAAACIwAAAAABCwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAAQQAAAAACCwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAAACwAAAAAAIwAAAAABIwAAAAACIwAAAAADCwAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAACwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACCwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAACwAAAAAA + tiles: EQAAAAABEQAAAAADEQAAAAABEQAAAAACEQAAAAABEQAAAAACHQAAAAACEQAAAAADEQAAAAACGQAAAAADEQAAAAACEQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAAAEQAAAAACHQAAAAABEQAAAAABEQAAAAACGQAAAAABEQAAAAAAEQAAAAACEQAAAAAAEQAAAAAAEQAAAAABEQAAAAABEQAAAAAAEQAAAAADEQAAAAAAAgAAAAAAEQAAAAADEQAAAAADHQAAAAADEQAAAAADEQAAAAACAgAAAAAAEQAAAAADEQAAAAAAEQAAAAAADAAAAAAADAAAAAAADAAAAAAAEQAAAAADEQAAAAAAEQAAAAABEQAAAAADEQAAAAADEQAAAAACHQAAAAABEQAAAAAAEQAAAAAAAgAAAAAACwAAAAAAEQAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAAEQAAAAABEQAAAAAAEQAAAAADEQAAAAAAEQAAAAACEQAAAAAAHQAAAAADEQAAAAAAEQAAAAADAgAAAAAACwAAAAAADAAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAAEQAAAAACEQAAAAABEQAAAAABAgAAAAAAEQAAAAACEQAAAAACEQAAAAAAEQAAAAABEQAAAAADAgAAAAAACwAAAAAADAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAAEQAAAAABEQAAAAADEQAAAAADAgAAAAAAEQAAAAABEQAAAAAAEQAAAAAAEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAAAEQAAAAACEQAAAAADAgAAAAAADAAAAAABDAAAAAABDAAAAAABAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAACAgAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAAAEQAAAAABEQAAAAABAgAAAAAADAAAAAADDAAAAAACDAAAAAAAAgAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAABAgAAAAAADAAAAAABDAAAAAABDAAAAAADHAAAAAACEQAAAAAAEQAAAAADEQAAAAACEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADAgAAAAAADAAAAAADDAAAAAABDAAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAAAEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAABAgAAAAAADAAAAAADDAAAAAABDAAAAAAAAgAAAAAAEQAAAAAAEQAAAAABEQAAAAABEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAHAAAAAABAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAABEQAAAAABEQAAAAAAEQAAAAABEQAAAAABEQAAAAACEQAAAAADEQAAAAABEQAAAAADAgAAAAAADAAAAAAADAAAAAABDAAAAAADAgAAAAAAEQAAAAAAEQAAAAABEQAAAAADEQAAAAACEQAAAAACEQAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAABEQAAAAACAgAAAAAADAAAAAABDAAAAAABDAAAAAABAgAAAAAAEQAAAAADEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAA version: 6 3,0: ind: 3,0 - tiles: LQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAACEAAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAADCwAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAADEAAAAAAELQAAAAACLQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAADLQAAAAACLQAAAAACLQAAAAADLQAAAAACCwAAAAAACwAAAAAALQAAAAAALQAAAAADIgAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAADCwAAAAAACwAAAAAALQAAAAABLQAAAAABIgAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADCwAAAAAACwAAAAAALQAAAAADLQAAAAAAIgAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAABCwAAAAAACwAAAAAAIgAAAAAALQAAAAACIgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAPAAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAPAAAAAAARgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAPAAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABVAAAAAABVAAAAAABMwAAAAACCwAAAAAACwAAAAAARgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABVAAAAAABVAAAAAADMwAAAAAACwAAAAAACwAAAAAAXgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADXgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADVAAAAAABVAAAAAADMwAAAAAACwAAAAAACwAAAAAAXgAAAAAALAAAAAADXgAAAAAACwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAAVAAAAAACVAAAAAACMwAAAAADCwAAAAAACwAAAAAA + tiles: EQAAAAACEQAAAAABEQAAAAADEQAAAAABEQAAAAACEQAAAAADEQAAAAACEQAAAAAAEQAAAAADEQAAAAADBgAAAAACEQAAAAACEQAAAAADEQAAAAADEQAAAAADAgAAAAAAEQAAAAACEQAAAAADEQAAAAABEQAAAAADEQAAAAABEQAAAAACEQAAAAABEQAAAAABEQAAAAACEQAAAAABBgAAAAABEQAAAAAAEQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAABEQAAAAADEQAAAAACEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAADCwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAAAEQAAAAACEQAAAAACEQAAAAAAEQAAAAACEQAAAAACEQAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAABCwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAEQAAAAACEQAAAAAAEQAAAAABEQAAAAAAEQAAAAABEQAAAAACEQAAAAABAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACCwAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADEQAAAAAAEQAAAAABEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAACwAAAAAAEQAAAAABCwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAGgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAGgAAAAAAHgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAGgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAADKQAAAAADKQAAAAAAFAAAAAADAgAAAAAAAgAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABKQAAAAAAKQAAAAADFAAAAAACAgAAAAAAAgAAAAAAMwAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAMwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACKQAAAAAAKQAAAAAAFAAAAAABAgAAAAAAAgAAAAAAMwAAAAAAEAAAAAADMwAAAAAAAgAAAAAAAgAAAAAAMwAAAAAAMwAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAADKQAAAAACKQAAAAADFAAAAAACAgAAAAAAAgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: MwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAADMwAAAAADCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAADCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAXAAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAACCwAAAAAAMwAAAAABMwAAAAABCwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAXAAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAAACwAAAAAAMwAAAAACMwAAAAADCwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAACCwAAAAAAKgAAAAAAXAAAAAAACwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAACwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADLQAAAAAALQAAAAABLQAAAAACLQAAAAADCwAAAAAAKgAAAAAAXAAAAAAACwAAAAAAMwAAAAACMwAAAAAAMwAAAAAACwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAABCwAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAABCwAAAAAAKgAAAAAAXAAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAABMwAAAAAAMwAAAAADMwAAAAABCwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABCwAAAAAAKgAAAAAAXAAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAABCwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAADCwAAAAAACwAAAAAAXAAAAAAAMwAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAADCwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAAALQAAAAABLQAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAACMwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAAPgAAAAACCwAAAAAAPgAAAAABCwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAAMwAAAAACMwAAAAABMwAAAAADCwAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAAMwAAAAAAMwAAAAADMwAAAAACCwAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAABLQAAAAAAEAAAAAAALQAAAAADLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAAPgAAAAABCwAAAAAAPgAAAAABCwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAADEAAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADCwAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAABLQAAAAABLQAAAAABLQAAAAABLQAAAAABLQAAAAACLQAAAAACEAAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAAACwAAAAAA + tiles: FAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAADFAAAAAACAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAFAAAAAADAgAAAAAAAgAAAAAAFAAAAAABFAAAAAABAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAFAAAAAACFAAAAAACFAAAAAAAAgAAAAAAFAAAAAADFAAAAAADAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAFAAAAAABFAAAAAADFAAAAAAAAgAAAAAAFAAAAAAAFAAAAAADAgAAAAAAAgAAAAAAEQAAAAABEQAAAAAAEQAAAAABEQAAAAAAAgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAFAAAAAABFAAAAAADFAAAAAACAgAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAEQAAAAACEQAAAAADEQAAAAACEQAAAAADAgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAFAAAAAAAFAAAAAACFAAAAAADAgAAAAAAFAAAAAADFAAAAAADFAAAAAADFAAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAAgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAFAAAAAADAgAAAAAAAgAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAABEQAAAAACEQAAAAADEQAAAAABEQAAAAABAgAAAAAADgAAAAAAMQAAAAAAFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABEQAAAAAAEQAAAAADAgAAAAAADgAAAAAAMQAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAABAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAMQAAAAAAFAAAAAABFAAAAAADFAAAAAADFAAAAAACFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAADEQAAAAAAEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAACAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAABEQAAAAACEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAGwAAAAABAgAAAAAAGwAAAAACAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAAAEQAAAAACEQAAAAAAEQAAAAABEQAAAAACEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAAAFAAAAAADAgAAAAAAEQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAABEQAAAAABEQAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAACFAAAAAABAgAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAADEQAAAAABBgAAAAACEQAAAAADEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGwAAAAAAAgAAAAAAGwAAAAADAgAAAAAAEQAAAAACEQAAAAABEQAAAAAAEQAAAAACEQAAAAABBgAAAAAAEQAAAAABEQAAAAAAEQAAAAACEQAAAAACAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAACEQAAAAABEQAAAAABEQAAAAACEQAAAAADEQAAAAADEQAAAAAAEQAAAAABBgAAAAABEQAAAAACEQAAAAABEQAAAAABEQAAAAACAgAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAUQAAAAABUQAAAAADUQAAAAADCwAAAAAAUQAAAAACUQAAAAADUQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAUQAAAAABUQAAAAAAUQAAAAADCwAAAAAAUQAAAAABUQAAAAADUQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAACwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAADMwAAAAABMwAAAAACMwAAAAABCwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAXAAAAAAAMwAAAAADMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAADMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAXAAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAKAAAAAADKAAAAAAAKAAAAAAAAgAAAAAAKAAAAAADKAAAAAADKAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAKAAAAAABKAAAAAADKAAAAAADAgAAAAAAKAAAAAADKAAAAAAAKAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAAgAAAAAAFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAAAFAAAAAADFAAAAAABFAAAAAABAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAACFAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADgAAAAAAMQAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: KgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAHCwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAMwAAAAAACwAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABCwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAAAMwAAAAABMwAAAAACMwAAAAACCwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAACCwAAAAAAVQAAAAAAVQAAAAAAMwAAAAABCwAAAAAAMwAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACCwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAAFAAAAAAAAgAAAAAAFAAAAAABFAAAAAABFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAFAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAADFAAAAAABAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAADAgAAAAAAKgAAAAAAKgAAAAAAFAAAAAABAgAAAAAAFAAAAAADFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAABFAAAAAADFAAAAAACFAAAAAACFAAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAA version: 6 -1,2: ind: -1,2 - tiles: IwAAAAABQQAAAAABIwAAAAAAIwAAAAABIwAAAAACCwAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAADIwAAAAAAIwAAAAACIwAAAAACCwAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAAIwAAAAAAIwAAAAADIwAAAAABCwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAACIwAAAAACIwAAAAADCwAAAAAALQAAAAADLQAAAAACKwAAAAAACwAAAAAACwAAAAAAQQAAAAABCwAAAAAACwAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAADCwAAAAAALQAAAAACLQAAAAADKwAAAAAACwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAADIwAAAAAAIwAAAAACIwAAAAACCwAAAAAALQAAAAABLQAAAAADKwAAAAAACwAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAAAIwAAAAACIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAABLQAAAAABLQAAAAACLQAAAAABKwAAAAAAKwAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAAAIwAAAAADIwAAAAABIwAAAAADIwAAAAACLQAAAAABLQAAAAAALQAAAAACCwAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAACIwAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAAAIwAAAAAAIwAAAAACIwAAAAABCwAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAALQAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAALQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAAACwAAAAAA + tiles: DAAAAAAAHAAAAAADDAAAAAABDAAAAAADDAAAAAADAgAAAAAADAAAAAACDAAAAAABDAAAAAADDAAAAAADDAAAAAACDAAAAAABDAAAAAABAgAAAAAAEQAAAAADEQAAAAADAgAAAAAAAgAAAAAADAAAAAADDAAAAAAADAAAAAACAgAAAAAADAAAAAABDAAAAAADDAAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAAAAgAAAAAAEQAAAAADEQAAAAABDwAAAAAAAgAAAAAAAgAAAAAAHAAAAAACAgAAAAAAAgAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAAADAAAAAABDAAAAAABDAAAAAAAAgAAAAAAEQAAAAACEQAAAAADDwAAAAAAAgAAAAAADAAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAABDAAAAAACAgAAAAAAEQAAAAABEQAAAAABDwAAAAAAAgAAAAAADAAAAAADDAAAAAACDAAAAAADDAAAAAADDAAAAAAADAAAAAACDAAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAADEQAAAAABEQAAAAADEQAAAAACDwAAAAAADwAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAACDAAAAAAAEQAAAAACEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAADAAAAAACDAAAAAADDAAAAAADDAAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAABAgAAAAAAEQAAAAADEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAADEQAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAEQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEQAAAAADEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAEQAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEQAAAAADEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAACEQAAAAABEQAAAAADEQAAAAACEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAACAgAAAAAA version: 6 -2,2: ind: -2,2 - tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAABIwAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAAALQAAAAADLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAABLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAADDAAAAAABDAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAABEQAAAAAAEQAAAAADEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAEQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAADEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA version: 6 -3,2: ind: -3,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAPAAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAADLQAAAAADKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAALQAAAAABSQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAALQAAAAAASQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAALQAAAAACSQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAALQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAADwAAAAAADwAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAGgAAAAAADwAAAAAADwAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAADwAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAADwAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAEQAAAAAAEQAAAAABDgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAEQAAAAAAIQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAEQAAAAACIQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAEQAAAAACIQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAEQAAAAACEQAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAMwAAAAABMwAAAAACCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAABMwAAAAACMwAAAAACMwAAAAAAMwAAAAACMwAAAAABCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAADMwAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAAAMwAAAAADKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAACMwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAACMwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAMwAAAAADMwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAAAMwAAAAABKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAAPAAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAMwAAAAADMwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAFAAAAAACFAAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAFAAAAAABFAAAAAABFAAAAAADFAAAAAABFAAAAAABFAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAADAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAAAFAAAAAADFAAAAAABFAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAFAAAAAAAFAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAAgAAAAAADwAAAAAAFAAAAAAAFAAAAAADDwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAAgAAAAAADwAAAAAAFAAAAAABFAAAAAAADwAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAAgAAAAAADwAAAAAAFAAAAAACFAAAAAADDwAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAADwAAAAAAFAAAAAACFAAAAAABDwAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAAgAAAAAADwAAAAAAFAAAAAADFAAAAAABDwAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAGgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAADwAAAAAAFAAAAAACFAAAAAACDwAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: XAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAKVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAKVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAKVQAAAAABVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAEVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAMwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAMwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAARgAAAAAARgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAARgAAAAAARgAAAAAACwAAAAAAWwAAAAAAWwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: MQAAAAAAMQAAAAAAKgAAAAABKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAFAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAFAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAMAAAAAAAMAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAMAAAAAAAMAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAMAAAAAAAMAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -2,3: ind: -2,3 - tiles: KgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAACXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAMMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAALKgAAAAAAKgAAAAAFKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAKgAAAAAIKgAAAAALKgAAAAAAKgAAAAAGKgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,3: ind: -1,3 - tiles: CwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAADLQAAAAABCwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABCwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAADPAAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAACLQAAAAABVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAACwAAAAAAPAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAFVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAAAEQAAAAACEQAAAAADEQAAAAAAEQAAAAADEQAAAAADEQAAAAADEQAAAAACEQAAAAAAEQAAAAACEQAAAAADEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAABEQAAAAADEQAAAAACEQAAAAAAEQAAAAADEQAAAAADEQAAAAAAEQAAAAAAEQAAAAACEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAACEQAAAAAAEQAAAAADAgAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEQAAAAACEQAAAAACEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAABEQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAACGgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAABEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABEQAAAAADKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAGKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,3: ind: 0,3 - tiles: LQAAAAACLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAABLQAAAAABCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAAALQAAAAADCwAAAAAALQAAAAAALQAAAAAALQAAAAABCwAAAAAALQAAAAABLQAAAAACLQAAAAACMwAAAAABKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAAALQAAAAABCwAAAAAALQAAAAACVAAAAAACLQAAAAAALQAAAAABLQAAAAAALQAAAAADLQAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAADLQAAAAACCwAAAAAALQAAAAADLQAAAAAALQAAAAACCwAAAAAALQAAAAACLQAAAAABLQAAAAADCwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAABLQAAAAADCwAAAAAAKwAAAAAACwAAAAAAKwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAABLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAA + tiles: EQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAACEQAAAAADAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAEQAAAAADEQAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAABAgAAAAAAEQAAAAADEQAAAAACEQAAAAABFAAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEQAAAAAAEQAAAAACAgAAAAAAEQAAAAADKQAAAAACEQAAAAABEQAAAAADEQAAAAACEQAAAAADEQAAAAADAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEQAAAAABEQAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAACAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEQAAAAABEQAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEQAAAAACEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAA version: 6 1,3: ind: 1,3 - tiles: CwAAAAAALQAAAAADLQAAAAADLQAAAAAAPAAAAAAAMwAAAAACMwAAAAADMwAAAAABMwAAAAAAMwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAMwAAAAACLQAAAAACLQAAAAAALQAAAAABPAAAAAAAMwAAAAABMwAAAAABMwAAAAABMwAAAAAAMwAAAAABCwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAALCwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAVQAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAPAAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAPAAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AgAAAAAAEQAAAAADEQAAAAACEQAAAAAAGgAAAAAAFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAACAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAFAAAAAAAEQAAAAAAEQAAAAABEQAAAAACGgAAAAAAFAAAAAADFAAAAAACFAAAAAACFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAAAEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAEQAAAAAAEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAGKgAAAAABAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAGgAAAAAAGgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAGgAAAAAAGgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 2,3: ind: 2,3 - tiles: CwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAVQAAAAAKVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAKgAAAAAIKgAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 3,2: ind: 3,2 - tiles: XAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: MQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 3,1: ind: 3,1 - tiles: XgAAAAAALAAAAAAAXgAAAAAAXgAAAAAACwAAAAAAXgAAAAAALAAAAAADCwAAAAAAMwAAAAAACwAAAAAAMwAAAAADVAAAAAACVAAAAAABMwAAAAACCwAAAAAACwAAAAAAXgAAAAAALAAAAAAAXgAAAAAACwAAAAAACwAAAAAAXgAAAAAAXgAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAAAVAAAAAADVAAAAAACMwAAAAAACwAAAAAACwAAAAAARgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAAXgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAACVAAAAAACVAAAAAAAMwAAAAABCwAAAAAACwAAAAAAXgAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAALAAAAAAAXgAAAAAACwAAAAAACwAAAAAACwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAACCwAAAAAACwAAAAAAXgAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAALAAAAAACXgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAAXgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADXgAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAARgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAARgAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKwAAAAAACwAAAAAACwAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAA + tiles: MwAAAAAAEAAAAAAAMwAAAAAAMwAAAAAAAgAAAAAAMwAAAAAAEAAAAAAAAgAAAAAAFAAAAAADAgAAAAAAFAAAAAAAKQAAAAAAKQAAAAACFAAAAAACAgAAAAAAAgAAAAAAMwAAAAAAEAAAAAADMwAAAAAAAgAAAAAAAgAAAAAAMwAAAAAAMwAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAAKQAAAAACKQAAAAACFAAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAAAMwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAACKQAAAAACKQAAAAAAFAAAAAADAgAAAAAAAgAAAAAAMwAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACMwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAADFAAAAAACFAAAAAADAgAAAAAAAgAAAAAAMwAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABMwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMwAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAADMwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAA version: 6 3,3: ind: 3,3 - tiles: XAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: MQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,3: ind: 4,3 - tiles: XAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: MQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,4: ind: 0,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 1,4: ind: 1,4 - tiles: XAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: MQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,0: ind: -4,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAAALQAAAAACLQAAAAACTAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAABCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAAACwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAABLQAAAAACLQAAAAAALQAAAAABCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAACwAAAAAAIwAAAAADIwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAQQAAAAAAIwAAAAABIwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAACwAAAAAAIwAAAAABIwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAACwAAAAAAIwAAAAABSQAAAAAASQAAAAAASQAAAAAAIwAAAAABCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAADIwAAAAACIwAAAAACIwAAAAADCwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAAIwAAAAACIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAABIwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAIwAAAAADIwAAAAACIwAAAAADCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAIwAAAAADIwAAAAAAIwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAABEQAAAAABEQAAAAABEQAAAAADEQAAAAACEQAAAAADJQAAAAAAJQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAADEQAAAAACEQAAAAACEQAAAAADAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAADEQAAAAADEQAAAAADEQAAAAADEQAAAAACAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAAAEQAAAAABEQAAAAABEQAAAAABAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAgAAAAAADAAAAAABDAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAHAAAAAAADAAAAAACDAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAAgAAAAAADAAAAAAADAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAAgAAAAAADAAAAAABIQAAAAAAIQAAAAAAIQAAAAAADAAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAADAAAAAABDAAAAAAADAAAAAABDAAAAAADDAAAAAABDAAAAAADDAAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAABDAAAAAACDAAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAADAAAAAADDAAAAAABDAAAAAABAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAA version: 6 -4,1: ind: -4,1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAA version: 6 -4,2: ind: -4,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,3: ind: -3,3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: XAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAPAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAACwAAAAAAKwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAALVQAAAAAAVQAAAAAKPAAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAGVQAAAAABVQAAAAACCwAAAAAACwAAAAAACwAAAAAA + tiles: MQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAGgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADwAAAAAADwAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAKgAAAAACKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADwAAAAAADwAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAADwAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAIKgAAAAAADgAAAAAADgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFAgAAAAAAAgAAAAAAAgAAAAAA version: 6 1,-5: ind: 1,-5 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAFVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAGKgAAAAALKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAABKgAAAAABKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAKgAAAAAAKgAAAAAHKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: KgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAALQAAAAABLQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAAALQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAALQAAAAACLQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAADLQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGgAAAAAAEQAAAAACEQAAAAABEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAACEQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAAAEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAABAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAABEQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGgAAAAAAEQAAAAABEQAAAAABEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAAAEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAAAEQAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: KgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAACLQAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAADLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAAALQAAAAABPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAAALQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAABLQAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAACLQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAAAEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAAAEQAAAAABGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAAAEQAAAAACEQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAAAEQAAAAACEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAACEQAAAAADEQAAAAACGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAABEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAACEQAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAABEQAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAACLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAALQAAAAADLQAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEQAAAAACEQAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAEQAAAAABEQAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAAALQAAAAAAKwAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALQAAAAADLQAAAAACKwAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAACDwAAAAAAAgAAAAAAAgAAAAAAGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAACEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEQAAAAADEQAAAAADDwAAAAAAAgAAAAAAAgAAAAAAGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: KgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKwAAAAAACwAAAAAALQAAAAACLQAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAABLQAAAAAALQAAAAABKwAAAAAAKwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAABRQAAAAAARQAAAAACRQAAAAAALQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALQAAAAADRQAAAAACRQAAAAAARQAAAAACLQAAAAADLQAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAALQAAAAADRQAAAAADRQAAAAACRQAAAAACLQAAAAACLQAAAAADLQAAAAADCwAAAAAAMQAAAAAAWwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAADRQAAAAADRQAAAAABRQAAAAACLQAAAAADLQAAAAABLQAAAAACWwAAAAAAMQAAAAAAWwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAACCwAAAAAAMQAAAAAAWwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAARQAAAAAARQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAAACwAAAAAACwAAAAAAWwAAAAAAWwAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAADLQAAAAACLQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAPAAAAAAARQAAAAADRQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAAOwAAAAACOwAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAABCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAOwAAAAADOwAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAABCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAKwAAAAAAOwAAAAACOwAAAAABLQAAAAACLQAAAAABLQAAAAACLQAAAAAACwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAAPAAAAAAACwAAAAAACwAAAAAAPAAAAAAARQAAAAABRQAAAAABLQAAAAAALQAAAAACLQAAAAADLQAAAAACCwAAAAAATAAAAAAATAAAAAAATAAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAABLQAAAAAATAAAAAAATAAAAAAA + tiles: DgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAADwAAAAAAAgAAAAAAEQAAAAACEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAEQAAAAADEQAAAAADEQAAAAAAEQAAAAAAEQAAAAADEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAEQAAAAACEQAAAAABEQAAAAAAEQAAAAADEQAAAAAAEQAAAAADDwAAAAAADwAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAEQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAABEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAEQAAAAAAHQAAAAAAHQAAAAADHQAAAAADEQAAAAAAEQAAAAABAgAAAAAAAgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAEQAAAAABHQAAAAAAHQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAADAgAAAAAAEwAAAAAAMAAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAACEQAAAAAAEQAAAAAAMAAAAAAAEwAAAAAAMAAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAACEQAAAAADAgAAAAAAEwAAAAAAMAAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAEQAAAAADEQAAAAADEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADEQAAAAACEQAAAAADEQAAAAAAEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAHQAAAAAAHQAAAAAAEQAAAAACEQAAAAAAEQAAAAADEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAGQAAAAAAGQAAAAADEQAAAAABEQAAAAADEQAAAAAAEQAAAAACAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAACGQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAAAAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAADgAAAAAADgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAGQAAAAACGQAAAAADEQAAAAACEQAAAAACEQAAAAACEQAAAAACAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAADgAAAAAADgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAHQAAAAAAHQAAAAAAEQAAAAADEQAAAAACEQAAAAADEQAAAAABAgAAAAAAJQAAAAAAJQAAAAAAJQAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAAAEQAAAAAAEQAAAAADEQAAAAABEQAAAAABEQAAAAABEQAAAAABEQAAAAADJQAAAAAAJQAAAAAA version: 6 4,1: ind: 4,1 - tiles: CwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAA + tiles: AgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAA version: 6 4,0: ind: 4,0 - tiles: EAAAAAAJCwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: BgAAAAABAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAPAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAEAAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAEAAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABgAAAAACAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABgAAAAABAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAKgAAAAAAKgAAAAAFKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAKKgAAAAAHKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAACKgAAAAABKgAAAAABKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAKgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAEDgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAADgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: KgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,2: ind: 4,2 - tiles: XAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: MQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 5,1: ind: 5,1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 - type: Broadphase - type: Physics @@ -2795,23 +2794,321 @@ entities: decals: 577: -32,-28 578: -32,-28 + - node: + color: '#FFFFFFFF' + id: BushAOne + decals: + 2645: -12.173578,-13.16537 + - node: + color: '#FFFFFFFF' + id: BushAThree + decals: + 2602: 7.063609,-17.083809 + 2646: -12.954828,-13.13412 + 2978: -13.009358,7.995878 + 2983: -15.09027,11.031727 + - node: + color: '#FFFFFFFF' + id: BushATwo + decals: + 2647: -12.996495,-12.238287 + 2648: -6.0969057,-13.717453 + - node: + color: '#FFFFFFFF' + id: BushCOne + decals: + 2971: -11.007082,13.412277 + - node: + color: '#FFFFFFFF' + id: BushCThree + decals: + 2596: 17.014423,-8.300894 + 2632: -4.785802,3.4705331 + - node: + color: '#FFFFFFFF' + id: BushCTwo + decals: + 2651: -5.148989,-12.144537 + - node: + color: '#FFFFFFFF' + id: BushDTwo + decals: + 2588: 17.163681,15.561111 + 2589: 3.516313,17.119299 + - node: + color: '#FFFFFFFF' + id: Busha1 + decals: + 2590: 4.90173,16.900549 + 2975: -13.092692,9.881294 + - node: + color: '#FFFFFFFF' + id: Busha2 + decals: + 2980: -13.96527,9.885894 + 2982: -14.642353,10.979644 + - node: + color: '#FFFFFFFF' + id: Bushb1 + decals: + 2972: -10.975832,14.18311 + 2976: -13.092692,9.006294 + - node: + color: '#FFFFFFFF' + id: Bushb2 + decals: + 2644: -12.183994,-14.061203 + 2973: -10.996666,15.02686 + 3638: -16,13 + - node: + color: '#FFFFFFFF' + id: Bushb3 + decals: + 2977: -13.009358,8.402128 + 2981: -14.017353,10.354644 + - node: + color: '#FFFFFFFF' + id: Bushc1 + decals: + 2649: -5.1698227,-12.957037 + 2979: -14.02777,11.062977 + - node: + color: '#FFFFFFFF' + id: Bushc2 + decals: + 3639: -16,15 + - node: + color: '#FFFFFFFF' + id: Bushc3 + decals: + 2587: 17.194931,12.9986105 + 2650: -8.055239,-11.332037 + 2974: -11.044625,12.930744 + - node: + color: '#FFFFFFFF' + id: Bushe1 + decals: + 2578: 6.2998166,3.7755318 + 2593: 17.076923,-7.467561 + 2594: 16.566507,-7.988394 + 2600: 7.2406926,-16.500475 + 2615: 3.5204434,-9.447139 + 2616: 3.2912767,-9.686723 + 2652: -8.044823,-11.092453 + - node: + color: '#FFFFFFFF' + id: Bushe2 + decals: + 2579: 6.6984973,3.4174294 + 2595: 17.014423,-8.030061 + 2609: 7.441076,6.766222 + 2992: -4.0134697,4.9046235 + 3474: 63.771957,-1.9947927 + 3478: 64.23029,-2.0052094 + - node: + color: '#FFFFFFFF' + id: Bushe3 + decals: + 2601: 6.6990256,-16.510893 + 3373: 58.245747,-2.973395 + 3374: 57.818665,-3.0463119 + 3375: 58.308247,-2.1817284 + 3473: 64.15737,-0.19270933 + - node: + color: '#FFFFFFFF' + id: Bushe4 + decals: + 1302: 57.84424,1.1426643 + 1303: 58.21924,0.9864143 + 1304: 57.885906,-2.0552526 + 1305: 58.15674,-1.5865024 + 1306: 57.90674,0.18433094 + 2626: 6.6556993,14.650438 + 2633: -4.7441354,3.6892834 + 2658: -12.329075,-5.2076516 + 2659: -11.683241,-5.540985 + 2993: -4.2530527,4.29004 + 3472: 63.792793,0.09895742 + - node: + color: '#FFFFFFFF' + id: Bushf1 + decals: + 1309: 58.167156,-0.24275243 + 3006: -4.922404,-3.8768375 + - node: + color: '#FFFFFFFF' + id: Bushf2 + decals: + 1310: 57.833824,-0.37816906 + 3008: -4.4328203,-4.7726707 + 3009: -4.3255215,-5.3247385 + - node: + color: '#FFFFFFFF' + id: Bushf3 + decals: + 3007: -4.3703203,-4.199754 + 3372: 57.943665,-2.723395 + - node: + color: '#FFFFFFFF' + id: Bushg1 + decals: + 2597: 17.14984,-5.092561 + 2603: 8.53236,-17.187975 + 2637: 3.404969,-4.7533755 + 2984: -9.359586,2.9312673 + - node: + color: '#FFFFFFFF' + id: Bushg2 + decals: + 2638: 4.175802,-4.0346255 + - node: + color: '#FFFFFFFF' + id: Bushg3 + decals: + 2557: -2.1416075,5.8916445 + 2558: -2.162441,14.072103 + 2559: 17.866562,15.155413 + 2560: 18.231146,11.999163 + 2561: 3.059716,-17.07088 + 2562: -4.1298733,-14.029394 + 2563: -2.3702574,-5.9809127 + 2564: -8.961391,-10.053829 + 2565: -17.146135,-6.1901164 + - node: + color: '#FFFFFFFF' + id: Bushg4 + decals: + 2598: 17.160257,-5.6342273 + 2627: 7.2077823,13.712938 + - node: + color: '#FFFFFFFF' + id: Bushh1 + decals: + 2575: 5.9211392,3.1419072 + 2580: 8.507914,15.796663 + 2581: 9.528748,15.46333 + 2991: -3.4732609,5.2424126 + - node: + color: '#FFFFFFFF' + id: Bushh2 + decals: + 2576: 5.087806,3.9127407 + 2582: 8.528747,14.473747 + 2660: -13.162408,-5.0826516 + 2661: -14.037408,-5.988902 + - node: + color: '#FFFFFFFF' + id: Bushh3 + decals: + 2577: 7.181556,4.0273237 + 2586: 17.465765,12.071527 + 2662: -13.756159,-5.822237 + 2663: -13.901991,-8.228487 + 2988: -9.230458,4.9216795 - node: color: '#FFFFFFFF' id: Bushi1 decals: + 2566: -17.677385,-15.149096 + 2567: -6.0205603,-17.117607 + 2568: -9.970078,-14.052947 + 2569: -9.887934,2.4137444 + 2599: 6.2927756,-17.073393 + 2610: 15.850491,-4.61609 + 2612: 9.772904,-4.483665 + 2624: 13.70388,8.66825 + 2625: 7.1036158,14.358771 + 2628: -5.465275,9.849015 + 2629: -6.746525,10.213598 + 2642: 3.4466357,-5.461709 2677: -20.130556,-17.838984 2678: -16.849306,-19.984818 2679: -17.307638,-19.6619 2680: -19.265972,-20.13065 + 2996: -14.051299,-2.1793242 + 2999: -17.143507,-2.1316965 + 3000: -14.734559,-9.289597 + 3002: -14.390809,-9.633347 + 3003: -10.377625,-9.233512 + 3011: -3.5338547,-5.210155 + 3012: -4.8467765,-14.670914 + 3368: -2.6337829,9.646117 - node: color: '#FFFFFFFF' id: Bushi2 decals: + 2572: 18.117056,13.867498 + 2617: 3.580893,-8.535644 + 2618: 8.918044,-3.98356 + 2619: 15.266736,-5.8692675 + 2620: 16.209822,-5.8538113 + 2621: 7.318463,5.66825 + 2622: 6.4642963,5.85575 + 2623: 14.620547,8.230751 + 2634: 6.318049,2.225238 + 2653: -8.044823,-13.97787 + 2654: -8.878156,-13.144537 + 2655: -5.867739,-11.154953 + 2656: -13.026991,-9.009735 + 2657: -11.860325,-5.124318 2681: -16.859722,-18.94315 + 2985: -8.75542,2.9208503 + 2990: -13.95071,2.256745 + 2997: -14.165881,-2.439741 + 3001: -14.713725,-9.602097 + 3004: -9.76849,-14.395954 + 3013: -4.450943,-14.608414 + 3369: -2.8004496,9.333617 + - node: + color: '#FFFFFFFF' + id: Bushi3 + decals: + 2573: 17.117056,10.211248 + 2574: 9.26489,2.9960737 + 2604: 14.499886,6.958212 + 2605: 13.541552,7.447795 + 2606: 6.0254874,14.498462 + 2611: 16.579659,-3.9598398 + 2635: 7.224299,2.3710713 + 2636: 4.0082765,6.5204124 + 2643: 5.713353,-3.1926599 + 2987: -9.557503,5.8271008 + 2989: -14.0402975,2.506745 + 3370: -2.8212829,8.989867 + - node: + color: '#FFFFFFFF' + id: Bushi4 + decals: + 2545: -15.13607,-18.199955 + 2546: -18.14605,-11.80234 + 2547: -13.963279,-4.177868 + 2548: -5.8667884,-5.4799514 + 2549: 8.061129,-4.427868 + 2550: 15.901968,-2.2820346 + 2551: 17.151968,2.9988291 + 2552: 9.610178,17.11985 + 2553: 4.0546904,17.078184 + 2554: 3.480264,5.210905 + 2556: -5.5270247,2.9853945 + 2591: 5.777904,17.049623 + 2592: 9.139725,14.0701685 + 2607: 6.567154,13.456795 + 2608: 6.441076,6.7870555 + 2613: 9.397904,-5.046165 + 2614: 4.3850265,-9.488806 + 2630: -6.2881913,9.494848 + 2631: -5.402775,10.869849 + 2639: 3.8528857,-4.5242085 + 2664: -11.037408,-8.100949 + 2994: -3.7009702,4.4983735 + 2995: -5.697132,-3.1168242 + 3005: -9.425084,-14.560988 + 3010: -3.5442712,-4.7830715 - node: color: '#FFFFFFFF' id: Bushj1 decals: + 2583: 8.789164,15.109163 2669: -19.824345,-10.10782 2670: -20.11601,-9.63907 2672: -20.011845,-8.243237 @@ -2830,49 +3127,48 @@ entities: 3387: -19.318695,-8.485081 - node: color: '#FFFFFFFF' - id: Bushl1 + id: Bushj3 decals: - 4323: -13.831512,-5.904546 + 3371: -4.6337833,10.114867 - node: color: '#FFFFFFFF' - id: Bushl4 + id: Bushk1 decals: - 4095: 5.9312387,-2.428447 + 2641: 3.0091357,-5.795042 + 2986: -10.00542,5.191684 - node: color: '#FFFFFFFF' - id: Bushm1 + id: Bushk3 decals: - 4093: 5.9126606,3.2848876 - 4140: 17.223246,2.9212363 - 4221: 5.9121523,-16.916327 - 4322: -13.154429,-5.217046 - 4386: -9.384194,5.7898264 - 4416: -13.913179,3.49077 + 2584: 15.903748,17.02583 + 2585: 18.067644,12.942497 + 2640: 4.8112187,-3.7846253 - node: color: '#FFFFFFFF' - id: Bushm2 + id: Bushm1 decals: - 4171: 17.054253,11.857221 - 4172: 16.1498,-5.524193 - 4337: -8.1796875,-11.195033 - 4444: 63.84961,-0.75471026 + 3475: 63.81363,-0.83854264 - node: color: '#FFFFFFFF' id: Bushm3 decals: - 4091: 18.271273,15.21118 - 4094: 4.0145736,-5.4180317 - 4173: 17.066467,-8.451276 - 4216: 10.466326,16.670284 - 4321: -10.977345,-6.602461 - 4374: -16.047321,15.13021 + 3476: 64.29279,-0.73437595 - node: color: '#FFFFFFFF' id: Bushm4 decals: - 4092: 3.5584922,5.7744694 - 4097: 3.5476413,16.92292 - 4348: -8.242186,-13.767948 + 2665: -10.9586735,-6.0094166 + 2666: -11.224603,-5.736016 + 2667: -13.307937,-8.381849 + 2668: -14.067469,-7.593817 + 3477: 64.12612,-1.2864593 + - node: + color: '#FFFFFFFF' + id: Bushn1 + decals: + 1307: 58.021324,0.5489143 + 1308: 57.96924,-1.1594192 + 3376: 57.99387,-2.411529 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2955,11 +3251,27 @@ entities: 27: -2,0 28: -2,-1 42: 1,0 + 79: -2,-17 80: -2,-16 + 81: -2,-14 + 82: -2,-13 + 83: -2,-12 84: -2,-11 85: -2,-10 + 86: -2,-8 + 87: -2,-7 + 88: -2,-6 + 108: -2,6 + 109: -2,7 + 110: -2,8 + 111: -2,10 + 112: -2,11 + 113: -2,11 114: -2,12 115: -2,13 + 116: -2,14 + 117: -2,16 + 118: -2,17 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN @@ -2971,11 +3283,26 @@ entities: 18: 0,-2 19: 1,-2 39: 0,1 + 59: 17,-2 + 60: 16,-2 61: 14,-2 62: 13,-2 + 63: 12,-2 + 64: 11,-2 + 65: 10,-2 + 66: 8,-2 + 67: 7,-2 + 68: 6,-2 + 89: -6,-2 + 90: -7,-2 + 91: -8,-2 92: -10,-2 93: -11,-2 + 94: -12,-2 + 95: -13,-2 96: -16,-2 + 97: -17,-2 + 2998: -14,-2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS @@ -2988,12 +3315,26 @@ entities: 25: -1,2 34: 0,-1 41: 0,-1 + 51: 6,2 + 52: 7,2 + 53: 8,2 + 54: 10,2 55: 12,2 56: 13,2 + 57: 16,2 + 58: 17,2 98: -17,2 99: -16,2 + 100: -14,2 + 101: -13,2 102: -12,2 103: -11,2 + 104: -10,2 + 105: -8,2 + 106: -7,2 + 107: -6,2 + 3394: 11,2 + 3395: 14,2 - node: color: '#FFFFFFFF' id: ConcreteTrimLineW @@ -3005,10 +3346,26 @@ entities: 21: 2,0 22: 2,1 40: -1,0 + 43: 2,6 + 44: 2,7 + 45: 2,8 46: 2,11 47: 2,12 + 48: 2,14 + 49: 2,16 + 50: 2,17 + 69: 2,-6 + 70: 2,-7 + 71: 2,-8 + 72: 2,-10 + 73: 2,-11 + 74: 2,-12 75: 2,-13 76: 2,-14 + 77: 2,-16 + 78: 2,-17 + 3400: 2,10 + 3401: 2,13 - node: color: '#FFFFFFFF' id: Delivery @@ -3092,6 +3449,150 @@ entities: 1821: 9,32 1823: 20,32 3730: 18,38 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 2747: 16.070688,16.03927 + 2778: 9.361443,4.4135666 + 2779: 8.71561,5.3614836 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 2748: 17.062426,11.239492 + 2749: 10.321154,17.060677 + 2782: 7.6635256,6.1948166 + 2783: 8.538526,6.2989836 + 2818: 9.51524,6.327868 + - node: + color: '#FFFFFFFF' + id: FlowersBRTwo + decals: + 2775: 10.111443,4.4344 + 2776: 8.663526,4.5594 + 2777: 8.05936,5.5073166 + 2819: 9.79649,6.7862015 + - node: + color: '#FFFFFFFF' + id: Flowersbr1 + decals: + 2744: 3.1090877,15.838451 + 2745: 15.10194,16.174686 + - node: + color: '#FFFFFFFF' + id: Flowersbr2 + decals: + 2746: 15.393607,16.737186 + 2780: 9.49686,5.1010666 + 2781: 9.080193,5.7260666 + 2784: 10.324566,5.2335067 + 2806: 16.988474,10.508276 + 2807: 16.363474,10.747859 + 2808: 11.000941,16.992361 + 2809: 11.6309395,17.170504 + 2825: 7.8013525,4.69695 + 2826: 9.145103,3.603201 + 2827: 9.15132,6.0905905 + - node: + color: '#FFFFFFFF' + id: Flowersbr3 + decals: + 2817: 8.806907,6.8799515 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 2785: 15.255633,6.9409747 + 2786: 14.661882,7.545141 + - node: + color: '#FFFFFFFF' + id: Flowerspv2 + decals: + 2787: 15.463966,7.690975 + 2789: 14.5844555,8.774308 + 2793: 14.978545,6.1768036 + 2794: 15.728544,6.3643036 + 2820: 14.814111,5.0989227 + 2821: 15.56411,4.4947557 + 2824: 12.9190645,9.799427 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 2738: 8.013186,3.1140726 + 2739: 10.378889,-5.012858 + 2740: 10.274722,-4.383773 + 2788: 15.219872,8.347224 + 2790: 13.9177885,8.774308 + 2791: 13.252036,8.115639 + 2792: 13.134795,8.926804 + 2795: 16.103544,7.1143036 + 2796: 16.42646,6.1143036 + 2797: 15.748611,5.544657 + 2822: 14.501611,4.234339 + 2823: 13.6690645,9.570259 + - node: + color: '#FFFFFFFF' + id: Flowersy1 + decals: + 2736: 7.160172,13.449887 + 2737: 5.483089,13.918637 + 2750: 12.341987,18.164845 + 2757: 4.084557,12.876521 + 2758: 6.313724,11.689021 + 2759: 9.0012245,11.564021 + 2765: 8.3553915,12.168188 + 2766: 6.730391,12.855688 + 2767: 5.105391,14.376521 + 2768: 2.9283073,14.741104 + 2770: 4.719974,13.105688 + 2771: 4.355391,14.585857 + 2772: 3.473161,14.394393 + 2773: 4.3585773,13.821476 + 2799: 2.299132,6.662748 + 2804: 4.7337813,6.6002483 + 2805: 4.5150313,6.0064983 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 2751: 14.633654,18.154427 + 2760: 7.6991415,11.939021 + 2761: 7.0533075,11.282771 + 2762: 8.1783085,11.241104 + 2800: 3.0178826,5.8710814 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 2752: 13.227404,18.091927 + 2754: 11.914904,18.11276 + 2755: 11.914904,18.11276 + 2763: 6.938724,12.168188 + 2764: 7.6158075,12.918188 + 2774: 3.4939945,13.592309 + 2801: 3.1637156,6.5481644 + 2802: 3.7887158,5.704415 + 2803: 3.9108648,7.0273314 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 2741: 3.8501334,-9.470912 + 2742: 4.3709664,-9.908412 + 2743: 3.6209664,-9.960495 + 2753: 13.966987,18.133595 + 2756: 15.123237,18.071095 + 2769: 5.136641,13.511938 + 2798: 2.2574656,5.8294144 + 2810: 9.849766,11.338729 + 2811: 9.047683,10.619978 + 2812: 4.7809443,7.692894 + 2813: 5.676778,7.797061 + 2814: 5.4059443,8.505394 + 2815: 5.8902392,6.890369 + 2816: 6.223573,8.400785 - node: color: '#00BEBE7F' id: FullTileOverlayGreyscale @@ -3293,9 +3794,27 @@ entities: 2930: -16,-38 - node: color: '#FFFFFFFF' - id: Grassd2 + id: GrayConcreteTrimLineE + decals: + 3391: 11,2 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineN decals: - 4302: 18.164886,13.40062 + 3398: 2,10 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineS + decals: + 3393: 12.501469,3.9993005 + 3396: 2,13 + 3397: 2,13 + - node: + color: '#FFFFFFFF' + id: GrayConcreteTrimLineW + decals: + 3392: 14,2 + 3399: 4.001555,11.500919 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -3985,7 +4504,7 @@ entities: color: '#FFFFFFFF' id: OldConcreteTrimInnerNe decals: - 4234: 5,-9 + 132: 5,-9 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerNw @@ -3995,14 +4514,14 @@ entities: color: '#FFFFFFFF' id: OldConcreteTrimInnerSe decals: + 135: 5,-5 144: 11,-17 145: 17,-11 - 3977: 5,-5 - node: color: '#FFFFFFFF' id: OldConcreteTrimInnerSw decals: - 4257: 9,-5 + 134: 9,-5 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineE @@ -4026,13 +4545,13 @@ entities: color: '#FFFFFFFF' id: OldConcreteTrimLineS decals: + 129: 6,-5 130: 7,-5 131: 8,-5 140: 15,-17 141: 14,-17 142: 13,-17 143: 12,-17 - 4199: 6,-5 - node: color: '#FFFFFFFF' id: OldConcreteTrimLineW @@ -5318,6 +5837,7 @@ entities: 930: 20,-30 2829: 41,23 3614: 10,-19 + 3641: -16,13 3642: -30,-35 3782: 15,37 - node: @@ -5365,6 +5885,7 @@ entities: 933: 17,-32 934: 20,-32 3617: 10,-21 + 3640: -16,15 3643: -30,-37 3728: -30,-41 - node: @@ -5604,528 +6125,11 @@ entities: 940: 13,-31 2832: 39,22 3620: 7,-20 + 3630: -11,13 + 3631: -11,14 + 3632: -11,15 3779: 12,35 3780: 12,36 - - node: - color: '#FFFFFFFF' - id: bushsnowa1 - decals: - 4115: 16.125668,16.991741 - 4116: 18.052752,14.127158 - 4124: 17.069096,10.619755 - 4168: 13.270397,8.139334 - 4228: 3.276736,-17.114244 - 4245: 4.289882,-9.276635 - 4256: 9.557607,-4.565646 - 4259: -5.264032,-17.3291 - 4283: -18.01834,-11.770912 - 4287: -17.038794,-6.121299 - 4342: -5.815101,-13.861698 - 4346: -8.35677,-13.163782 - 4382: -8.707112,2.8523257 - - node: - color: '#FFFFFFFF' - id: bushsnowa2 - decals: - 4099: 5.0110426,5.1092877 - 4105: 5.5569983,14.3049 - 4123: 18.177753,11.981325 - 4169: 13.551646,9.222668 - 4174: 17.118547,-3.742942 - 4246: 4.508632,-9.339135 - 4325: -13.935678,-7.3003798 - 4373: -10.974404,13.77604 - 4375: -15.901489,12.432293 - 4445: 64.19336,-1.2234604 - 4462: 58.19748,-2.1817927 - 4464: 58.197483,-0.60887605 - - node: - color: '#FFFFFFFF' - id: bushsnowa3 - decals: - 4100: 9.843875,2.3306134 - 4101: 4.7175946,-4.8598647 - 4110: 5.5049148,16.791855 - 4188: 17.024801,-10.045026 - 4189: 14.56624,7.024145 - 4204: -4.663756,-5.05921 - 4288: -9.019418,-10.153705 - 4340: -5.1171856,-12.351281 - 4347: -7.710936,-13.903366 - 4461: 57.832897,-2.9213758 - 4463: 57.812065,-1.4213759 - - node: - color: '#FFFFFFFF' - id: bushsnowb1 - decals: - 4102: 6.161678,-3.0848308 - 4125: 17.204514,10.296838 - 4170: 14.905814,8.420585 - 4229: 8.630903,-16.916325 - 4260: -6.4411154,-17.370768 - 4261: -4.0869503,-13.8916 - 4269: -9.7574625,-14.1103525 - 4326: -10.998178,-8.133711 - 4381: -9.165446,2.9669094 - 4465: 57.843315,0.089040816 - - node: - color: '#FFFFFFFF' - id: bushsnowb2 - decals: - 4103: -5.3710065,-3.6963663 - 4104: 7.3174167,5.9675007 - 4411: -6.1758614,9.860818 - - node: - color: '#FFFFFFFF' - id: bushsnowb3 - decals: - 4106: 5.119498,17.23977 - 4187: 16.556051,-8.81586 - 4466: 58.218315,0.81820726 - - node: - color: '#FFFFFFFF' - id: grasssnow01 - decals: - 4004: 6.3206177,6.17792 - 4214: 6.6968894,3.2163887 - 4396: -2.9050255,9.80024 - 4423: -16.92712,-4.19144 - 4424: -7.978523,-2.2832406 - 4460: 57.957897,-0.42137593 - - node: - color: '#FFFFFFFF' - id: grasssnow02 - decals: - 4003: 6.32185,7.8435574 - 4010: 9.892037,5.9373074 - 4049: 5.498573,14.149065 - 4050: 3.22774,15.742815 - 4119: 18.15692,14.960492 - 4252: 9.880523,-3.2427292 - 4267: -9.9032955,-14.8082695 - 4303: -14.824641,-9.753517 - 4399: -1.6550276,9.631649 - 4400: -3.155028,9.3504 - 4417: -12.994281,4.178271 - 4418: -13.944558,-2.3432083 - - node: - color: '#FFFFFFFF' - id: grasssnow03 - decals: - 4027: 8.55726,6.918346 - 4029: 8.1116495,7.690426 - 4210: -6.0375133,3.7360954 - 4235: 3.8419647,-8.609969 - 4285: -17.090878,-6.121299 - 4334: -8.304686,-12.64295 - 4378: -9.207112,3.414826 - - node: - color: '#FFFFFFFF' - id: grasssnow04 - decals: - 4014: 8.579537,6.572724 - 4018: 9.089954,6.197724 - 4028: 9.40101,6.9704294 - 4085: 14.41538,18.561693 - 4208: -2.6520975,6.1006813 - 4215: 10.299344,17.56002 - 4249: 9.974273,-3.6802292 - 4250: 10.01594,-3.680229 - 4291: -8.904836,-9.309954 - 4299: -10.074914,-7.5391197 - 4359: -15.047249,11.935756 - 4360: -15.047249,11.935756 - 4362: -12.880582,11.706589 - 4404: -5.4258604,11.694151 - - node: - color: '#FFFFFFFF' - id: grasssnow05 - decals: - 4005: 6.8010163,6.2498074 - 4015: 8.329537,6.3435574 - 4046: 4.0819063,14.961565 - 4065: 9.022697,11.665794 - 4066: 7.5435305,11.790793 - 4072: 8.991446,15.249128 - 4128: 16.631596,10.546838 - 4129: 17.537848,13.068812 - 4156: 15.191997,3.5566516 - 4163: 14.32248,9.462252 - 4167: 13.176647,7.9830837 - 4182: 16.43105,-6.7637763 - 4224: 3.026736,-17.166328 - 4236: 3.216965,-8.682886 - 4239: 4.748215,-8.891218 - 4248: 9.505524,-4.784396 - 4274: -17.05599,-17.112085 - 4278: -15.962237,-17.716251 - 4314: -12.950145,-7.9670453 - 4336: -6.9609346,-13.830449 - 4377: -9.519612,2.6023262 - 4413: -13.10068,2.4491029 - 4422: -17.084421,-2.2426124 - - node: - color: '#FFFFFFFF' - id: grasssnow06 - decals: - 4154: 14.712828,6.150401 - 4185: 16.576883,-8.420026 - 4211: -6.2562623,3.059012 - 4212: -6.214597,2.5183818 - 4213: 5.9573054,3.8934717 - 4232: 5.987795,-16.636099 - 4233: 5.987795,-16.636099 - 4270: -8.8407955,-15.016602 - 4279: -18.05599,-15.018336 - 4286: -17.48671,-6.819216 - 4379: -8.425863,3.091909 - 4394: -2.70711,7.7689896 - 4432: 6.501312,2.2052712 - 4433: 5.6509647,4.574325 - 4434: 6.7183785,12.712051 - 4435: 17.069124,13.352869 - 4441: -2.139756,15.403288 - - node: - color: '#FFFFFFFF' - id: grasssnow07 - decals: - 3992: 3.621694,6.516138 - 4016: 8.00662,5.541474 - 4019: 8.621204,4.4060574 - 4047: 5.2069063,14.732399 - 4063: 8.397697,11.832461 - 4083: 12.863297,17.926275 - 4147: 14.660747,4.0149846 - 4158: 15.525326,7.389985 - 4160: 16.421162,5.0879025 - 4184: 17.056051,-9.420026 - 4226: 5.172569,-16.978827 - 4237: 3.362799,-9.620386 - 4307: -14.50933,-3.9135923 - 4388: -9.884193,6.5502434 - 4405: -6.8841944,11.048319 - - node: - color: '#FFFFFFFF' - id: grasssnow08 - decals: - 3990: 4.340444,5.8703046 - 3998: 4.484271,6.1123667 - 4023: 9.360787,3.7185574 - 4067: 8.272698,11.092877 - 4071: 7.8768625,14.76996 - 4121: 18.03192,12.387575 - 4186: 17.087301,-9.972109 - 4203: -4.3304224,-5.37171 - 4238: 4.310715,-9.828719 - 4240: 4.2794642,-7.912052 - 4280: -17.628908,-15.393336 - 4293: -9.821502,-9.278705 - 4455: 57.874565,-2.2026258 - 4456: 58.030815,-1.2755427 - 4457: 57.989147,-0.23387593 - - node: - color: '#FFFFFFFF' - id: grasssnow09 - decals: - 3991: 4.048777,6.693221 - 3999: 5.176017,5.6143904 - 4000: 5.269767,6.624807 - 4017: 8.423287,5.3123074 - 4020: 7.6524534,4.853974 - 4044: 2.9881566,14.159482 - 4045: 3.9673233,14.794899 - 4061: 8.208676,12.829125 - 4114: 16.188168,16.502157 - 4126: 16.985762,11.328088 - 4145: 13.046159,9.796234 - 4152: 15.358661,7.139985 - 4177: 16.556047,-4.805443 - 4180: 16.920631,-5.357526 - 4217: 17.24056,2.6436405 - 4247: 10.224274,-4.5656457 - 4282: -17.966255,-11.781328 - 4294: -10.227752,-9.778706 - 4315: -13.262645,-6.967046 - 4401: -6.7487783,9.589985 - 4458: 58.030815,0.9432074 - - node: - color: '#FFFFFFFF' - id: grasssnow10 - decals: - 3993: 4.434194,7.078638 - 4001: 5.4364333,7.1664734 - 4011: 10.058704,5.4998074 - 4024: 8.66287,3.9789739 - 4039: 3.1235735,15.013649 - 4040: 4.4569063,14.055315 - 4056: 8.094092,13.672875 - 4069: 8.751863,14.426211 - 4081: 12.0299635,18.092941 - 4082: 13.5507965,18.082525 - 4146: 14.60866,8.202484 - 4150: 15.514912,5.0983186 - 4175: 17.024797,-4.388776 - 4176: 15.545631,-4.9616933 - 4313: -12.481396,-5.883712 - - node: - color: '#FFFFFFFF' - id: grasssnow11 - decals: - 4002: 5.3426833,7.8018904 - 4012: 9.673287,4.6768904 - 4013: 9.683704,4.6768904 - 4025: 8.027454,3.8539739 - 4026: 9.213529,5.2163944 - 4048: 3.8006563,14.065732 - 4059: 7.8753414,14.235374 - 4064: 9.053947,12.540794 - 4068: 9.710197,11.842878 - 4070: 9.2726965,13.790794 - 4084: 15.2070465,18.155443 - 4113: 16.2715,16.887573 - 4122: 17.969421,11.897991 - 4127: 17.15243,9.786421 - 4130: 17.52743,12.277146 - 4133: 15.828672,17.440762 - 4136: 8.668205,16.993145 - 4137: 8.036813,15.606806 - 4148: 15.671162,4.337902 - 4151: 14.379496,5.2962346 - 4157: 16.07741,5.973319 - 4161: 14.421162,5.8795676 - 4164: 14.937063,9.056002 - 4166: 12.864147,8.899751 - 4183: 17.264383,-7.878359 - 4196: 2.871424,-6.100875 - 4197: 6.5693383,-2.5071225 - 4198: 6.0693393,-3.6008728 - 4200: -3.424172,-5.569626 - 4207: -5.3291783,2.3506794 - 4209: -3.4645975,5.8298473 - 4227: 7.5579863,-16.728825 - 4230: 4.571129,-17.41735 - 4231: 6.8523784,-16.37568 - 4241: 3.164881,-7.776636 - 4251: 9.286775,-5.3052297 - 4266: -4.821611,-15.006185 - 4271: -9.2782955,-15.1728525 - 4276: -15.233071,-17.247501 - 4290: -8.321503,-10.237038 - 4308: -13.686414,-3.7573419 - 4311: -14.752231,-4.6962137 - 4335: -7.6692686,-13.403366 - 4357: -14.29725,10.342006 - 4361: -13.911832,11.487839 - 4372: -10.547321,13.515623 - 4376: -8.217529,2.3523254 - 4380: -8.196697,2.8835754 - 4384: -10.196694,4.71691 - 4390: -9.269611,5.268993 - 4397: -2.6133585,10.133573 - 4402: -5.738362,9.319151 - 4412: -13.94443,2.11577 - 4414: -13.277762,3.3657696 - 4420: -17.074003,-2.944813 - 4425: -8.134773,-2.8249073 - 4426: -5.7816033,-2.0352085 - 4427: 2.0530784,-5.957742 - 4428: 5.8549805,-1.8670075 - 4429: 5.954472,1.9127293 - 4430: 2.313814,5.84069 - 4440: -2.1085064,14.226205 - - node: - color: '#FFFFFFFF' - id: grasssnow12 - decals: - 4051: 5.6131563,15.607399 - 4060: 8.396175,13.433292 - 4079: 15.186214,16.66586 - 4131: 17.037846,14.245895 - 4132: 17.162846,14.985479 - 4135: 8.064039,16.201477 - 4149: 16.316994,6.0774856 - 4159: 15.816994,6.973319 - 4165: 15.124564,8.524752 - 4178: 15.253966,-5.9721103 - 4193: 16.0377,-9.516746 - 4201: -6.1116743,-2.7571275 - 4202: -5.8512564,-4.455044 - 4206: -6.2145953,2.5173454 - 4289: -10.040252,-10.476622 - 4300: -9.89783,-8.393287 - 4312: -13.845981,-4.3941293 - 4349: -9.367185,-13.038781 - 4358: -12.974333,10.977422 - 4389: -9.540444,6.4356594 - 4393: -3.4883592,8.821074 - 4403: -5.405028,10.100401 - 4409: -7.905028,10.110819 - 4459: 57.25998,-2.3692923 - - node: - color: '#FFFFFFFF' - id: grasssnow13 - decals: - 4062: 7.125342,12.954124 - 4118: 17.87567,13.502158 - 4134: 9.147372,17.076477 - 4153: 15.181578,6.1504016 - 4155: 14.400329,5.1295676 - 4162: 14.619077,7.712901 - 4179: 16.358131,-5.7012763 - 4181: 16.764383,-6.1491923 - 4195: 5.1735063,-3.9967067 - 4205: -4.9854302,5.027763 - 4225: 8.662153,-17.02049 - 4264: -4.0973663,-14.8916 - 4275: -15.055987,-17.955835 - 4301: -17.32455,-6.892979 - 4421: -17.063587,-3.101063 - 4431: 2.584648,6.6115236 - 4454: 57.937065,-2.9109592 - - node: - color: '#FFFFFFFF' - id: grasssnowa1 - decals: - 3969: -3.9630425,5.141088 - 3982: 4.30632,4.3983216 - 3988: 2.9862773,5.6515546 - 3989: 3.871694,5.8703046 - 4006: 6.530184,5.6143904 - 4030: 4.081639,17.175037 - 4190: 15.443799,-5.6657076 - 4281: -18.066408,-15.38292 - - node: - color: '#FFFFFFFF' - id: grasssnowa2 - decals: - 3968: -4.0047092,4.5473375 - 3987: 5.746694,2.5265546 - 4007: 6.3739333,6.916474 - 4268: -9.6012125,-14.7353525 - 4319: -11.560679,-6.123295 - 4343: -5.877603,-11.101281 - - node: - color: '#FFFFFFFF' - id: grasssnowa3 - decals: - 4265: -4.2744503,-14.724933 - 4277: -15.389321,-17.851667 - 4320: -12.498179,-5.1753783 - 4324: -13.8627615,-6.727463 - 4352: -13.85975,10.029505 - 4387: -9.92586,6.1335764 - 4442: 63.94336,-0.02554363 - - node: - color: '#FFFFFFFF' - id: grasssnowb1 - decals: - 4008: 7.3531003,6.5623074 - 4022: 8.53787,3.0831404 - 4052: 7.018767,14.6493435 - 4075: 9.88522,16.328419 - 4191: 15.756298,-4.894874 - 4192: 17.07873,-9.338499 - 4220: 5.318403,-17.416327 - 4242: 4.196131,-8.193302 - 4297: -10.168664,-8.455787 - 4318: -11.716929,-5.2587113 - 4329: -12.552689,-13.287527 - 4344: -6.596353,-11.142949 - 4353: -12.98475,9.102422 - 4355: -14.870166,10.956589 - 4369: -10.786904,14.109373 - 4407: -5.592528,10.662901 - 4410: -5.550862,9.808734 - - node: - color: '#FFFFFFFF' - id: grasssnowb2 - decals: - 3959: -2.890755,-5.4486322 - 4109: 4.931998,16.760605 - 4244: 3.071132,-9.26622 - 4296: -9.644419,-9.507872 - 4332: -13.250606,-13.287527 - 4345: -5.783852,-13.070031 - 4356: -13.297249,10.987839 - 4408: -6.8946114,10.037902 - - node: - color: '#FFFFFFFF' - id: grasssnowb3 - decals: - 3958: -3.432422,-4.9798822 - 3970: 2.5946317,-5.4980636 - 3986: 5.7959037,3.6379051 - 4038: 7.0145354,17.216703 - 4316: -13.7273445,-8.092046 - 4443: 64.03711,-1.9109604 - - node: - color: '#FFFFFFFF' - id: grasssnowc1 - decals: - 3956: -4.0261717,-4.4173822 - 3957: -4.0261717,-4.4173822 - 3960: -4.901172,-4.4694657 - 3963: -3.2130425,5.141088 - 3971: 3.2821317,-5.393897 - 3974: 4.855048,-3.6751468 - 3983: 4.9417367,3.8462381 - 4055: 6.1437664,14.795176 - 4218: 6.651736,-17.041327 - 4258: -5.9723654,-17.308268 - 4317: -13.435678,-8.862879 - 4350: -13.005584,8.175338 - 4351: -12.995166,10.050339 - 4363: -16.036903,12.890626 - 4364: -10.901487,14.911457 - 4391: -2.6237757,9.498156 - 4406: -6.550861,10.652485 - - node: - color: '#FFFFFFFF' - id: grasssnowc2 - decals: - 3955: -4.6928387,-3.959049 - 3964: -5.4422097,2.911921 - 3966: -4.921376,3.9848375 - 3973: 4.0842147,-4.300147 - 3979: 4.015719,-4.898158 - 3980: 3.389654,5.064988 - 3981: 4.27507,5.012905 - 3984: 5.2542367,3.1587381 - 4021: 9.339954,2.9789739 - 4054: 6.5500174,13.7639265 - 4074: 9.062303,16.068003 - 4108: 6.0153313,16.968939 - 4219: 7.4329863,-17.416327 - 4243: 2.7482145,-8.380803 - 4327: -12.95894,-12.214611 - 4330: -12.188105,-14.12086 - 4339: -5.138018,-13.007531 - 4371: -10.828572,12.911457 - - node: - color: '#FFFFFFFF' - id: grasssnowc3 - decals: - 3954: -5.172005,-3.146549 - 3965: -5.0984597,3.568171 - 3967: -4.265126,4.1515045 - 3972: 3.5633817,-4.66473 - 3975: 5.417548,-2.8626468 - 3985: 5.0979867,4.3983216 - 4053: 7.2062674,13.8264265 - 4073: 9.843554,15.620087 - 4253: 8.42219,-3.628147 - 4254: 8.14094,-4.27398 - 4255: 8.672191,-4.763563 - 4295: -10.467336,-9.153706 - 4304: -14.512141,-9.534767 - 4309: -14.092664,-4.2781754 - 4328: -13.11519,-12.672944 - 4331: -12.052689,-12.99586 - 4338: -5.179686,-11.747114 - 4354: -14.016,10.883672 - 4383: -9.977944,5.34191 - 4392: -2.5508592,8.654406 - 4415: -14.090262,2.8553534 - type: GridAtmosphere version: 2 data: @@ -6225,7 +6229,7 @@ entities: -3,-1: 0: 63487 -3,4: - 0: 55805 + 0: 55807 -2,0: 0: 63487 -2,1: @@ -6323,7 +6327,7 @@ entities: -1,-5: 0: 63675 -5,4: - 0: 62392 + 0: 62456 -4,5: 1: 65532 -5,5: @@ -7324,7 +7328,7 @@ entities: -9,-14: 0: 4089 -8,-13: - 0: 1919 + 0: 1911 -9,-13: 0: 4095 -7,-15: @@ -8362,215 +8366,215 @@ entities: chunks: 0,0: ind: 0,0 - tiles: LAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABPgAAAAACLAAAAAACLAAAAAABPgAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABCwAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAGEAAAAAAMEAAAAAAAEAAAAAAAGwAAAAABGwAAAAAAEAAAAAAACwAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAACCwAAAAAAEAAAAAAEEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAGwAAAAABGwAAAAABEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAGwAAAAADGwAAAAACEAAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAACwAAAAAACwAAAAAAIwAAAAADCwAAAAAACwAAAAAACwAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAIwAAAAADIwAAAAACIwAAAAACCwAAAAAACwAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAACwAAAAAACwAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAIwAAAAABIwAAAAABIwAAAAACCwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAGEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXwAAAAAJXwAAAAALXwAAAAADXwAAAAAIXwAAAAANXwAAAAAHVQAAAAAAVQAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAEXwAAAAACVQAAAAAAVQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAHXwAAAAADXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAEXwAAAAAKXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAE + tiles: EAAAAAABEAAAAAABEAAAAAABEAAAAAAAEAAAAAABGwAAAAADEAAAAAABEAAAAAAAGwAAAAABCgAAAAACCgAAAAACCgAAAAADCgAAAAACCgAAAAADCgAAAAAACgAAAAACAgAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAACCgAAAAAAAwAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAABgAAAAADBgAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAABCgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAABCgAAAAACCgAAAAAABgAAAAAAAgAAAAAABgAAAAACBgAAAAADBgAAAAAABgAAAAABBgAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAADAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABgAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABAgAAAAAADAAAAAABDAAAAAAADAAAAAAAAgAAAAAAAgAAAAAABgAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAADAgAAAAAADAAAAAACDAAAAAADDAAAAAABAgAAAAAAAgAAAAAABgAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAADAAAAAABDAAAAAADDAAAAAAAAgAAAAAAAgAAAAAABgAAAAACBgAAAAAABgAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAACBgAAAAABBgAAAAACBgAAAAADBgAAAAADBgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANAAAAAABNAAAAAAKNAAAAAAJNAAAAAAFNAAAAAAHNAAAAAAJKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAGNAAAAAAMNAAAAAAMKgAAAAAKKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAALNAAAAAAHNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAFNAAAAAALNAAAAAAONAAAAAAODgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAACNAAAAAAO version: 6 0,-1: ind: 0,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAKEAAAAAABEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAFEAAAAAADEAAAAAAAEAAAAAACEAAAAAAACwAAAAAAXAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAALCwAAAAAAIwAAAAACIwAAAAAAIwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAACwAAAAAAIwAAAAADIwAAAAADIwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACwAAAAAAIwAAAAABIwAAAAACIwAAAAAACwAAAAAACwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAACwAAAAAACwAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAACwAAAAAACwAAAAAAIwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAALAAAAAABCwAAAAAAGwAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAGwAAAAADGwAAAAACGwAAAAABEAAAAAAACwAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADCwAAAAAAGwAAAAADEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAMEAAAAAAAGwAAAAADGwAAAAADEAAAAAAGEAAAAAAACwAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAAAEAAAAAAGEAAAAAAAEAAAAAAJGwAAAAACGwAAAAAAEAAAAAAAEAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAADPgAAAAABLAAAAAAALAAAAAABPgAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAADCwAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAAC + tiles: DgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAADBgAAAAAABgAAAAADBgAAAAAAAgAAAAAAMQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAADAgAAAAAADAAAAAABDAAAAAADDAAAAAABAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAAAgAAAAAADAAAAAACDAAAAAACDAAAAAACAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABgAAAAADBgAAAAABBgAAAAAAAgAAAAAADAAAAAACDAAAAAACDAAAAAABAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAADAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABAgAAAAAACgAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAABCgAAAAAACgAAAAACAwAAAAAAAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAAgAAAAAACgAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAAACgAAAAADAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAACCgAAAAABAwAAAAAAAwAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAAAGwAAAAAAEAAAAAABEAAAAAAAGwAAAAADCgAAAAADCgAAAAABCgAAAAADCgAAAAABCgAAAAADCgAAAAABCgAAAAABAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAABCgAAAAADCgAAAAABCgAAAAADCgAAAAABCgAAAAADCgAAAAAB version: 6 1,0: ind: 1,0 - tiles: GwAAAAADGwAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAACEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAMVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAFGwAAAAAAEAAAAAAAGwAAAAACEAAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABVQAAAAAEFAAAAAAAFAAAAAADVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAHEAAAAAACEAAAAAAAGwAAAAACEAAAAAADEAAAAAAAGwAAAAACGwAAAAAAGwAAAAACFAAAAAABFAAAAAABFAAAAAACFAAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAKEAAAAAAJEAAAAAAAGwAAAAADGwAAAAACEAAAAAAAEAAAAAAJGwAAAAABGwAAAAADVQAAAAAAFAAAAAAAFAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAHIwAAAAADIwAAAAABIwAAAAADEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAHVQAAAAAAVQAAAAAHVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALEAAAAAAAIwAAAAAAIwAAAAAAIwAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAEAAAAAAAIwAAAAAAIwAAAAABIwAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAEAAAAAAAIwAAAAABIwAAAAADIwAAAAADEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAGEAAAAAAAEAAAAAAAEAAAAAAEEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAEAAAAAAGCwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAEVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAFVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAMVQAAAAAMVQAAAAAMVQAAAAACVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAKVQAAAAABVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJ + tiles: CgAAAAAACgAAAAAACgAAAAAACgAAAAADCgAAAAABCgAAAAABCgAAAAACAwAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAADKgAAAAAACgAAAAACAwAAAAAACgAAAAAAAwAAAAAACgAAAAABCgAAAAADCgAAAAABCgAAAAABKgAAAAAABQAAAAABBQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAwAAAAAAAwAAAAAACgAAAAACAwAAAAAAAwAAAAAACgAAAAACCgAAAAAACgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAABgAAAAAAAwAAAAAACgAAAAADCgAAAAABAwAAAAAAAwAAAAAACgAAAAABCgAAAAADKgAAAAAABQAAAAAABQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAABgAAAAACDAAAAAABDAAAAAACDAAAAAAABgAAAAACAwAAAAAAAwAAAAAAAwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGBgAAAAAADAAAAAACDAAAAAABDAAAAAABBgAAAAABAwAAAAAAAwAAAAAAAwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABgAAAAACDAAAAAADDAAAAAAADAAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAADBgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABgAAAAAADAAAAAACDAAAAAAADAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABBgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABgAAAAACBgAAAAABBgAAAAABBgAAAAACAwAAAAAAAwAAAAAABgAAAAADBgAAAAACBgAAAAACBgAAAAACBgAAAAADKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAABgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAGAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAABKgAAAAAHKgAAAAAAKgAAAAAIKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAACKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAALNAAAAAAMKgAAAAAAKgAAAAAGKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: XAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAGVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAMXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXwAAAAADXwAAAAANXwAAAAAHXwAAAAACXwAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIEAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXwAAAAAKXwAAAAAAXwAAAAACXwAAAAABVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAHVQAAAAAAVQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAJVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAHEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAIwAAAAABIwAAAAABIwAAAAAAEwAAAAAAEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKEAAAAAAFEAAAAAAAEwAAAAAAIwAAAAABIwAAAAADIwAAAAABEwAAAAAAEAAAAAAIEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAEAAAAAAAEAAAAAAAEwAAAAAAIwAAAAADIwAAAAADIwAAAAACEwAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAIEAAAAAAAEAAAAAAACwAAAAAACwAAAAAAIwAAAAABEwAAAAAAEwAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAJEAAAAAAAVQAAAAADVQAAAAAAVQAAAAAFVQAAAAABEAAAAAAAEAAAAAAAEAAAAAALGwAAAAAAGwAAAAADGwAAAAADEAAAAAALEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAJEAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAVQAAAAACVQAAAAADVQAAAAAAVQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADEAAAAAAAEAAAAAAIVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAF + tiles: MQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAONAAAAAAOKgAAAAAAKgAAAAAIKgAAAAAIKgAAAAAAKgAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAGNAAAAAAHKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAABNAAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMNAAAAAAANAAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANAAAAAAENAAAAAAMNAAAAAAINAAAAAAJNAAAAAAOKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAABgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANAAAAAAGNAAAAAAFNAAAAAALNAAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAABgAAAAAABgAAAAAABgAAAAABBgAAAAACAwAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAABgAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABBgAAAAAABgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAABKgAAAAAABgAAAAABBgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAABgAAAAADBgAAAAACKgAAAAAKKgAAAAABKgAAAAAAKgAAAAAMKgAAAAAAAwAAAAAABgAAAAADBAAAAAAADAAAAAADDAAAAAAADAAAAAADBAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAwAAAAAABgAAAAABBAAAAAAADAAAAAABDAAAAAABDAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAwAAAAAABgAAAAAABAAAAAAADAAAAAADDAAAAAADDAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAADKgAAAAAJKgAAAAAAKgAAAAAGKgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAADAAAAAADBAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAACgAAAAADCgAAAAADCgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAAABgAAAAACKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAACgAAAAADCgAAAAABCgAAAAADCgAAAAABCgAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAABgAAAAADBgAAAAABBgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACgAAAAAACgAAAAACCgAAAAAACgAAAAABCgAAAAACCgAAAAABAwAAAAAAAwAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAFKgAAAAAHKgAAAAAIKgAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAALAAAAAAB + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAEAAAAAADEAAAAAADEAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAABEAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAALAAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAEAAAAAADEAAAAAAAEAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADEAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAABAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: XAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAA + tiles: MQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: KgAAAAAAXwAAAAAOXwAAAAABXwAAAAACXwAAAAAOXwAAAAADXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAABXwAAAAADXwAAAAADXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAGXwAAAAAMXwAAAAAMVQAAAAAIVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAECwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAADXwAAAAABXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAYQAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXwAAAAADXwAAAAAGXwAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAYQAAAAACVQAAAAAACwAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXwAAAAAOXwAAAAABVQAAAAADVQAAAAAFCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAAACwAAAAAACwAAAAAAYQAAAAACLAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAACYQAAAAAALAAAAAACLAAAAAABCwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADVQAAAAAAVQAAAAAACwAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXwAAAAAKXwAAAAALXwAAAAADXwAAAAAMXwAAAAAMXwAAAAAOXwAAAAADXwAAAAAMVQAAAAABVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXwAAAAALXwAAAAAEXwAAAAACKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAACKgAAAAAAXwAAAAAEXwAAAAAFXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAANXwAAAAAEVQAAAAAAVQAAAAAAVQAAAAAIXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAAEXwAAAAALVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAMXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAANXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAA + tiles: DgAAAAAANAAAAAAJNAAAAAAJNAAAAAALNAAAAAAINAAAAAAKNAAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAADgAAAAAANAAAAAAFNAAAAAAKNAAAAAAHNAAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAJDgAAAAAADgAAAAAANAAAAAAINAAAAAAINAAAAAABNAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAMQAAAAAADgAAAAAADgAAAAAANAAAAAAFNAAAAAACNAAAAAAONAAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAANAAAAAAMNAAAAAAKNAAAAAAIKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAANQAAAAAAKgAAAAAAAgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAANAAAAAAJNAAAAAADKgAAAAAAKgAAAAAIAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANQAAAAABAgAAAAAAAgAAAAAANQAAAAACEAAAAAADMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANQAAAAABNQAAAAABEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADKgAAAAAAKgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAANAAAAAANNAAAAAALNAAAAAAANAAAAAAHNAAAAAABNAAAAAAONAAAAAAANAAAAAALKgAAAAAAKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAANAAAAAAONAAAAAAKNAAAAAABDgAAAAAADgAAAAAANAAAAAAINAAAAAABKgAAAAAIKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAANAAAAAAEDgAAAAAANAAAAAADNAAAAAAANAAAAAAHKgAAAAAGKgAAAAABKgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAAANAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAONAAAAAABNAAAAAAJKgAAAAAFKgAAAAAJKgAAAAAAKgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAANNAAAAAAGNAAAAAAMKgAAAAAKKgAAAAAFKgAAAAAAKgAAAAAK version: 6 -1,-2: ind: -1,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 2,0: ind: 2,0 - tiles: VQAAAAACVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAACVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAEVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAHKgAAAAAFKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAABKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAJKgAAAAABKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAHKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAADKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAGKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAIKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAGKgAAAAAMKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAIKgAAAAAGKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAABKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAADKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAI version: 6 0,1: ind: 0,1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAIXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAALXwAAAAAHXwAAAAAGXwAAAAAGXwAAAAADXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAACKgAAAAAAXwAAAAAKXwAAAAABXwAAAAAFXwAAAAAFXwAAAAAEXwAAAAAJXwAAAAAFXwAAAAABXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAJXwAAAAAJCwAAAAAAXwAAAAAOXwAAAAAIXwAAAAADVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAOXwAAAAAOXwAAAAAIXwAAAAAIXwAAAAAJXwAAAAAIXwAAAAALXwAAAAAKXwAAAAAAVQAAAAAAXwAAAAAMXwAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAIXwAAAAAJXwAAAAAHXwAAAAANXwAAAAAAXwAAAAALXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAACXwAAAAAAXwAAAAAMXwAAAAAMXwAAAAADXwAAAAAAXwAAAAALXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAIXwAAAAADXwAAAAAJKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAABXwAAAAADXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAIVQAAAAAAXwAAAAAKXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKXwAAAAAAXwAAAAAKXwAAAAAGXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAJXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAFNAAAAAAODgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAANNAAAAAAJNAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMDgAAAAAADgAAAAAANAAAAAALNAAAAAALNAAAAAADNAAAAAAFNAAAAAALNAAAAAAFNAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAKNAAAAAACDgAAAAAANAAAAAAKNAAAAAAFNAAAAAANNAAAAAAANAAAAAANNAAAAAAONAAAAAAKNAAAAAABNAAAAAAFDgAAAAAADgAAAAAADgAAAAAANAAAAAABNAAAAAABNAAAAAAKAgAAAAAANAAAAAAFNAAAAAAENAAAAAAHKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAHNAAAAAALNAAAAAAFNAAAAAAENAAAAAAONAAAAAAONAAAAAACNAAAAAABNAAAAAAMKgAAAAAANAAAAAABNAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAANAAAAAAANAAAAAAKNAAAAAAKNAAAAAAENAAAAAAGNAAAAAAGNAAAAAAKNAAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAANAAAAAAANAAAAAAJNAAAAAAHNAAAAAADNAAAAAAHNAAAAAAKNAAAAAAKNAAAAAAENAAAAAAMKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAANAAAAAAONAAAAAAENAAAAAANNAAAAAAHDgAAAAAADgAAAAAANAAAAAAGDgAAAAAADgAAAAAADgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAGNAAAAAAONAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAANAAAAAAJNAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAOKgAAAAAMKgAAAAAJKgAAAAAJKgAAAAAANAAAAAAINAAAAAAFNAAAAAAONAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAOKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAANAAAAAACNAAAAAAGNAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 1,1: ind: 1,1 - tiles: XwAAAAAFXwAAAAAAXwAAAAAHXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAABVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACXwAAAAAAXwAAAAANXwAAAAAFXwAAAAALVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAABVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAIVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAIVQAAAAAAXwAAAAAFXwAAAAACXwAAAAAKXwAAAAABVQAAAAAJVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAAXwAAAAAMXwAAAAALXwAAAAAIVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAADXwAAAAADXwAAAAAAXwAAAAAAXwAAAAAJXwAAAAAKXwAAAAACVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAXwAAAAAJXwAAAAANXwAAAAACXwAAAAADXwAAAAAEXwAAAAAHXwAAAAALXwAAAAANXwAAAAAHXwAAAAAFXwAAAAAAXwAAAAAEXwAAAAAFXwAAAAAKXwAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAANXwAAAAADXwAAAAABXwAAAAANXwAAAAABXwAAAAAIXwAAAAAGXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAACXwAAAAAHKgAAAAAAKgAAAAAAXwAAAAANXwAAAAABXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAGXwAAAAAAXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAALXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAKXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAADXwAAAAAJXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: NAAAAAADNAAAAAAHNAAAAAAJNAAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAANAAAAAAANAAAAAAGNAAAAAAANAAAAAALKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEDgAAAAAADgAAAAAANAAAAAAENAAAAAAHKgAAAAACKgAAAAAAKgAAAAADKgAAAAADKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAANAAAAAALNAAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHDgAAAAAADgAAAAAANAAAAAAGNAAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAABNAAAAAALNAAAAAAMNAAAAAAGNAAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAGNAAAAAAANAAAAAAINAAAAAADNAAAAAALKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAKNAAAAAAANAAAAAANNAAAAAACNAAAAAALNAAAAAABNAAAAAABNAAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAENAAAAAAGNAAAAAAINAAAAAAINAAAAAAFNAAAAAANNAAAAAADNAAAAAAKNAAAAAAHNAAAAAAENAAAAAAJNAAAAAAHNAAAAAALNAAAAAAJKgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAODgAAAAAADgAAAAAANAAAAAAGNAAAAAANNAAAAAABNAAAAAAONAAAAAAFNAAAAAANNAAAAAABNAAAAAAENAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAAHNAAAAAAODgAAAAAADgAAAAAANAAAAAAGNAAAAAABNAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAFNAAAAAAANAAAAAAONAAAAAAODgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADNAAAAAANNAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAAENAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAENAAAAAAGNAAAAAALNAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 2,1: ind: 2,1 - tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAEVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAADVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAFVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAHVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAFXwAAAAACVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAXwAAAAAIXwAAAAADXwAAAAAGXwAAAAAOXwAAAAAHXwAAAAAHXwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAXwAAAAAMXwAAAAAIXwAAAAAGXwAAAAAGXwAAAAAMXwAAAAAFXwAAAAAMXwAAAAAKXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAADXwAAAAAOXwAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAALVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAMKgAAAAAFKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMNAAAAAABNAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAANAAAAAANNAAAAAAHNAAAAAAINAAAAAAHNAAAAAAENAAAAAAGNAAAAAAFKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAKNAAAAAAKNAAAAAABNAAAAAAONAAAAAAANAAAAAAANAAAAAAJNAAAAAAFNAAAAAAGKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAACNAAAAAAGNAAAAAALNAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAANNAAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAONAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 0,2: ind: 0,2 - tiles: XwAAAAAFVQAAAAAAVQAAAAADVQAAAAAAXwAAAAADXwAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAJXwAAAAABXwAAAAAMXwAAAAAOXwAAAAANXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAEXwAAAAAHXwAAAAAHXwAAAAAAXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: NAAAAAADKgAAAAAFKgAAAAAAKgAAAAAANAAAAAAFNAAAAAAENAAAAAAODgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAONAAAAAAFNAAAAAAMNAAAAAAJNAAAAAAENAAAAAAINAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMNAAAAAANNAAAAAALNAAAAAANNAAAAAAHNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAABNAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -1,1: ind: -1,1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAABLAAAAAAALAAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAABCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAALNAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAANNAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAINAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 1,2: ind: 1,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAGXwAAAAAGXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAACXwAAAAAGXwAAAAACXwAAAAALXwAAAAAHXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAADXwAAAAABXwAAAAAGXwAAAAAJXwAAAAAHXwAAAAAIXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAALXwAAAAABVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAADXwAAAAAKXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAMXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAAIXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAKXwAAAAAMVQAAAAADVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAAKXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAJXwAAAAAJXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAFXwAAAAANXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAFXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAXwAAAAABXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAJXwAAAAACXwAAAAANXwAAAAALVQAAAAAAXwAAAAAAXwAAAAAFXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAFXwAAAAANXwAAAAACXwAAAAANVQAAAAAAXwAAAAACXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAMXwAAAAAFXwAAAAAHXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAMXwAAAAANXwAAAAALXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAODgAAAAAADgAAAAAANAAAAAAHNAAAAAAINAAAAAAENAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAONAAAAAACNAAAAAAENAAAAAAANAAAAAAFNAAAAAANNAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAAINAAAAAABNAAAAAAMNAAAAAALNAAAAAAMNAAAAAAONAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMNAAAAAAMNAAAAAAHKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAANAAAAAACNAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAAKNAAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAFNAAAAAANNAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAABNAAAAAADNAAAAAAHKgAAAAAAKgAAAAAAKgAAAAAANAAAAAANNAAAAAABNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAABNAAAAAANNAAAAAAANAAAAAANKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAINAAAAAAONAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAADNAAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAGNAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAENAAAAAANNAAAAAAINAAAAAAHNAAAAAABKgAAAAAANAAAAAADNAAAAAAINAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAKNAAAAAABNAAAAAAANAAAAAAONAAAAAAHKgAAAAAANAAAAAAINAAAAAAKNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAACNAAAAAAJNAAAAAAANAAAAAAONAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAAFNAAAAAAONAAAAAAMNAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: VQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAABKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAADKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAACKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAG version: 6 3,0: ind: 3,0 - tiles: VQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAJVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + tiles: KgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAMKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAADKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAADKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAA version: 6 3,1: ind: 3,1 - tiles: VQAAAAAKVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAHYgAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAGYgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAADIwAAAAADYgAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAIIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAACYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAKIwAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAAAYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAACYgAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAAYgAAAAAAIwAAAAADIwAAAAACIwAAAAACYgAAAAAHYgAAAAAAVQAAAAAJVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAMYgAAAAAAYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAYgAAAAAFYgAAAAAIYgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAHKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAGKgAAAAAMKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAACKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAGKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAJKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: VQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAANXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEXwAAAAACXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAADVQAAAAALXwAAAAAIXwAAAAAIXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAABXwAAAAAJXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAEVQAAAAAAXwAAAAALXwAAAAAIXwAAAAADXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAHXwAAAAABXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAJVQAAAAAAXwAAAAAFXwAAAAAIXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAAIXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAIXwAAAAAGXwAAAAAOXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAEVQAAAAAAVQAAAAAFXwAAAAAAXwAAAAALXwAAAAADXwAAAAAGXwAAAAAGXwAAAAAOKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAABVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAADXwAAAAAMXwAAAAAGKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAXwAAAAAFXwAAAAACXwAAAAAAXwAAAAAJKgAAAAAAXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAKXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAADXwAAAAAAXwAAAAADXwAAAAADXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAMXwAAAAAOXwAAAAAKXwAAAAACXwAAAAAJXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + tiles: KgAAAAABKgAAAAAAKgAAAAAANAAAAAANNAAAAAAKNAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAACNAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAALKgAAAAAAKgAAAAAANAAAAAADNAAAAAAANAAAAAACNAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAABKgAAAAAANAAAAAAENAAAAAANNAAAAAALNAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAGNAAAAAABNAAAAAAFNAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAIKgAAAAAFNAAAAAAHNAAAAAAINAAAAAAHNAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAALNAAAAAANNAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHNAAAAAAJNAAAAAADNAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAGNAAAAAAHNAAAAAADNAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAADKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAADNAAAAAAONAAAAAAENAAAAAANNAAAAAAKNAAAAAAONAAAAAAJDgAAAAAADgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAANAAAAAAENAAAAAALNAAAAAAANAAAAAAJDgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAADNAAAAAADNAAAAAALNAAAAAACDgAAAAAANAAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKNAAAAAAINAAAAAABDgAAAAAADgAAAAAADgAAAAAANAAAAAAGKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAKKgAAAAAGNAAAAAALNAAAAAAJNAAAAAABNAAAAAAFNAAAAAAHNAAAAAAEKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAABNAAAAAAANAAAAAACNAAAAAAJNAAAAAAHNAAAAAALKgAAAAAHKgAAAAAJKgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: VQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAAVQAAAAAIVQAAAAAAXwAAAAAAXwAAAAAEXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAIXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACVQAAAAAAVQAAAAAIVQAAAAAAXwAAAAAAXwAAAAAMXwAAAAADXwAAAAACXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADLAAAAAABVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAABXwAAAAAFXwAAAAALXwAAAAALXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAALAAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAGXwAAAAAHXwAAAAAJXwAAAAAKXwAAAAALXwAAAAADXwAAAAADKgAAAAAACwAAAAAACwAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAEXwAAAAAFXwAAAAACXwAAAAAMXwAAAAAECwAAAAAACwAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAAYQAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAALAAAAAAACwAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAACYQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADCwAAAAAAYQAAAAAAYQAAAAACVQAAAAAACwAAAAAACwAAAAAAYQAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAAACwAAAAAACwAAAAAAYQAAAAABCwAAAAAACwAAAAAACwAAAAAAYQAAAAABCwAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAADYQAAAAABYQAAAAACCwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAACwAAAAAACwAAAAAALAAAAAABYQAAAAACCwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAACwAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAA + tiles: KgAAAAAAKgAAAAAANAAAAAAFNAAAAAAKNAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACKgAAAAAAKgAAAAACNAAAAAAKNAAAAAABNAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACKgAAAAAHKgAAAAALKgAAAAAANAAAAAADNAAAAAAONAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAANNAAAAAAGNAAAAAAKNAAAAAAFNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAABEAAAAAACKgAAAAAAKgAAAAAAKgAAAAAANAAAAAALNAAAAAAKNAAAAAAENAAAAAAANAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAALNAAAAAAINAAAAAALNAAAAAAJNAAAAAAFNAAAAAAGNAAAAAAGDgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAACEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAANAAAAAAFNAAAAAADNAAAAAALNAAAAAAIAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAAANQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANQAAAAABNQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAANQAAAAABNQAAAAACKgAAAAAAAgAAAAAAAgAAAAAANQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAANQAAAAACAgAAAAAAAgAAAAAANQAAAAACAgAAAAAAAgAAAAAAAgAAAAAANQAAAAABAgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAJAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAANQAAAAABNQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAANQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAGKgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAACKgAAAAABKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: KgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAABCwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAACLAAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAANXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAEXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAKXwAAAAAMXwAAAAAGXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAGXwAAAAABXwAAAAAOXwAAAAALXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAIXwAAAAANXwAAAAAJVQAAAAAAXwAAAAABXwAAAAACKgAAAAAAKgAAAAAAXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAANXwAAAAAKXwAAAAAMVQAAAAALVQAAAAAAXwAAAAAHXwAAAAAEKgAAAAAAXwAAAAAFXwAAAAACXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAAXwAAAAABXwAAAAABVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAXwAAAAAOXwAAAAACXwAAAAAOXwAAAAADXwAAAAAJXwAAAAAJXwAAAAAGXwAAAAAMXwAAAAACXwAAAAAOVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAAKXwAAAAACXwAAAAAFXwAAAAABXwAAAAALXwAAAAAGXwAAAAAJXwAAAAALVQAAAAAEVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAA + tiles: DgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAAANAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMNAAAAAACNAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADNAAAAAAENAAAAAALNAAAAAAONAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADNAAAAAAGNAAAAAACNAAAAAALNAAAAAACNAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAJNAAAAAAFNAAAAAADNAAAAAABKgAAAAAANAAAAAABNAAAAAAGDgAAAAAADgAAAAAANAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAAGNAAAAAAFNAAAAAAKKgAAAAAAKgAAAAAANAAAAAAONAAAAAACDgAAAAAANAAAAAADNAAAAAAINAAAAAADDgAAAAAADgAAAAAADgAAAAAANAAAAAAKNAAAAAABNAAAAAAKNAAAAAAHKgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAFNAAAAAAJNAAAAAABNAAAAAANNAAAAAAGNAAAAAAGNAAAAAACNAAAAAAANAAAAAANNAAAAAAINAAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAANAAAAAAJNAAAAAAMNAAAAAAGNAAAAAALNAAAAAAFNAAAAAAANAAAAAALNAAAAAAOKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAAXwAAAAABXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADXwAAAAABXwAAAAAIXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAAXwAAAAABXwAAAAADXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADVQAAAAAAXwAAAAACXwAAAAALXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACVQAAAAAAXwAAAAAKXwAAAAAKXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAC + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAANAAAAAADNAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACNAAAAAADNAAAAAAFNAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAABNAAAAAAGNAAAAAAHNAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAKgAAAAAANAAAAAAHNAAAAAANNAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADKgAAAAAANAAAAAAENAAAAAAFNAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAC version: 6 3,-2: ind: 3,-2 - tiles: CwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACCwAAAAAAXwAAAAAGXwAAAAAEXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAYQAAAAABCwAAAAAAXwAAAAAKXwAAAAAHXwAAAAAHXwAAAAAOXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAVQAAAAAAXwAAAAAOXwAAAAAOXwAAAAANXwAAAAADXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALXwAAAAAEXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAADXwAAAAAFXwAAAAAEXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAHXwAAAAAJXwAAAAAFXwAAAAADXwAAAAAAXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAAXwAAAAABXwAAAAACXwAAAAAAXwAAAAAIXwAAAAANXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALXwAAAAAHXwAAAAANXwAAAAAHXwAAAAAIXwAAAAAGXwAAAAACXwAAAAAAXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAXwAAAAAHXwAAAAAJXwAAAAAFKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAABXwAAAAAJXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAA + tiles: AgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAEAAAAAADAgAAAAAANAAAAAAMNAAAAAAINAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANQAAAAABAgAAAAAANAAAAAAENAAAAAAANAAAAAALNAAAAAAONAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAANAAAAAAJNAAAAAAGNAAAAAALNAAAAAAENAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAKgAAAAAJKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAGNAAAAAACNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAANAAAAAALNAAAAAAENAAAAAABNAAAAAAHNAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAGNAAAAAAANAAAAAABNAAAAAAJNAAAAAAKNAAAAAAODgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAENAAAAAAGNAAAAAAJNAAAAAABNAAAAAAANAAAAAAKNAAAAAAFNAAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAHNAAAAAALNAAAAAANNAAAAAAFNAAAAAAONAAAAAAJNAAAAAAMNAAAAAAKDgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAANAAAAAAMNAAAAAAJNAAAAAADDgAAAAAADgAAAAAANAAAAAABNAAAAAALNAAAAAAONAAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 2,2: ind: 2,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAOXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAHXwAAAAAIVQAAAAAKVQAAAAAAVQAAAAAAXwAAAAAMXwAAAAAJXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAGXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAIXwAAAAAMXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAACVQAAAAAAVQAAAAAHVQAAAAAAXwAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAHCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAADLAAAAAABLAAAAAABCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAALAAAAAADCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAENAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAINAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAKNAAAAAAONAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAGNAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAONAAAAAALNAAAAAAAKgAAAAAAKgAAAAACKgAAAAAANAAAAAALNAAAAAAKNAAAAAAODgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAALNAAAAAAMKgAAAAAAKgAAAAAAKgAAAAAANAAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAFNAAAAAAHKgAAAAAAKgAAAAAAKgAAAAAANAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAANAAAAAALKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAHAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAACAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 3,2: ind: 3,2 - tiles: XwAAAAAGXwAAAAAOXwAAAAAFVQAAAAACVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAXwAAAAAFXwAAAAADXwAAAAAEVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAAJXwAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAHVQAAAAAEVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAAOXwAAAAANVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAACXwAAAAAKXwAAAAACXwAAAAAEVQAAAAAAVQAAAAAAKgAAAAAAXwAAAAAJXwAAAAAHXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAABVQAAAAAGXwAAAAAMXwAAAAALXwAAAAAAXwAAAAAIXwAAAAALVQAAAAALVQAAAAAAKgAAAAAAXwAAAAAHXwAAAAAEXwAAAAAEXwAAAAAIXwAAAAACVQAAAAADVQAAAAAAXwAAAAAKXwAAAAACKgAAAAAAKgAAAAAAXwAAAAADXwAAAAACVQAAAAAAVQAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAKXwAAAAACXwAAAAAMVQAAAAAAXwAAAAAGXwAAAAACXwAAAAADKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAIXwAAAAAGVQAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAIVQAAAAAAXwAAAAAEXwAAAAAKXwAAAAADKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAMXwAAAAANXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAANVQAAAAAAXwAAAAAOXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAACVQAAAAAAXwAAAAABXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAAEXwAAAAADXwAAAAALXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAMXwAAAAALXwAAAAAMXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAFXwAAAAAOXwAAAAAKXwAAAAAIXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAIXwAAAAAAXwAAAAANXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: NAAAAAAONAAAAAADNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAACNAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAANAAAAAAHNAAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAGKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAADgAAAAAANAAAAAAGNAAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAENAAAAAAJNAAAAAABNAAAAAAJNAAAAAAGNAAAAAAOKgAAAAAKKgAAAAAADgAAAAAANAAAAAAONAAAAAAKNAAAAAACKgAAAAALKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAINAAAAAANNAAAAAAHNAAAAAAKNAAAAAACNAAAAAALKgAAAAAAKgAAAAAEDgAAAAAANAAAAAAMNAAAAAAFNAAAAAAINAAAAAAFNAAAAAAAKgAAAAAAKgAAAAAANAAAAAAMNAAAAAAFDgAAAAAADgAAAAAANAAAAAAFNAAAAAANKgAAAAAAKgAAAAAADgAAAAAADgAAAAAANAAAAAAKNAAAAAAGNAAAAAAHNAAAAAAOKgAAAAAANAAAAAABNAAAAAABNAAAAAAGDgAAAAAADgAAAAAANAAAAAAKNAAAAAAFNAAAAAAOKgAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAAOKgAAAAAANAAAAAAINAAAAAAMNAAAAAAJDgAAAAAADgAAAAAANAAAAAAONAAAAAAHNAAAAAABNAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAJNAAAAAABKgAAAAAANAAAAAAINAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAKNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAABNAAAAAAFKgAAAAAANAAAAAAMNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAAANAAAAAAHNAAAAAABNAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAENAAAAAAMNAAAAAACNAAAAAAHNAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAGNAAAAAACNAAAAAAINAAAAAAGNAAAAAAMNAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADNAAAAAAFNAAAAAABNAAAAAADNAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,1: ind: 4,1 - tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIXwAAAAAJXwAAAAADXwAAAAAAXwAAAAALXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJXwAAAAAIXwAAAAALXwAAAAAJXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAHVQAAAAAKVQAAAAAFXwAAAAAFXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAXwAAAAAMXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAXwAAAAAMXwAAAAAIXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAXwAAAAAAXwAAAAAOXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAXwAAAAAHXwAAAAABXwAAAAAGXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAALXwAAAAADXwAAAAAKXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAJXwAAAAANXwAAAAANCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAFXwAAAAAHCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAKXwAAAAAIXwAAAAAFXwAAAAACCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMXwAAAAAIXwAAAAAGCwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAMNAAAAAALNAAAAAAGNAAAAAAKNAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAONAAAAAAINAAAAAAENAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAGNAAAAAAANAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAANAAAAAAMNAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAENAAAAAAHNAAAAAALNAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAJNAAAAAACNAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAACNAAAAAAHNAAAAAABNAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAACNAAAAAAINAAAAAAENAAAAAAENAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAGNAAAAAAEAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAHNAAAAAAKNAAAAAAMAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAADNAAAAAABNAAAAAAJAgAAAAAAAgAAAAAADgAAAAAADgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAABKgAAAAACNAAAAAAONAAAAAANAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,0: ind: 4,0 - tiles: VQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAHKgAAAAAAVQAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAADXwAAAAAHKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAAKXwAAAAACKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAANXwAAAAAIXwAAAAAHKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAALVQAAAAAAVQAAAAAAXwAAAAALXwAAAAAEXwAAAAAOXwAAAAABXwAAAAAHKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAAEXwAAAAALXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAFVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAABXwAAAAAOXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAIVQAAAAABVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAKXwAAAAAFXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAAAXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAHVQAAAAAAXwAAAAABXwAAAAABXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAABXwAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAHVQAAAAAAXwAAAAAOXwAAAAANKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAADXwAAAAACXwAAAAACXwAAAAALVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAANXwAAAAADXwAAAAAEXwAAAAAMXwAAAAABXwAAAAAAXwAAAAADXwAAAAAMXwAAAAAHVQAAAAAAVQAAAAAAVQAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJXwAAAAAJXwAAAAAOXwAAAAAIXwAAAAAJXwAAAAAFXwAAAAAFXwAAAAACXwAAAAACXwAAAAAKVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAAAXwAAAAAIXwAAAAAKXwAAAAALXwAAAAAAKgAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAABXwAAAAANXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAEVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAXwAAAAABXwAAAAAHXwAAAAAKXwAAAAAKXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAA + tiles: KgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAANAAAAAAONAAAAAAGDgAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAAKgAAAAAANAAAAAAMNAAAAAAKNAAAAAAHDgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAKKgAAAAAGKgAAAAAAKgAAAAAAKgAAAAAANAAAAAADNAAAAAACNAAAAAABDgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAINAAAAAAENAAAAAAHNAAAAAALDgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAENAAAAAAMNAAAAAAINAAAAAAGNAAAAAAHNAAAAAABDgAAAAAADgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAMNAAAAAALNAAAAAAJNAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAAKgAAAAAFNAAAAAAHNAAAAAAANAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAINAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMNAAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAINAAAAAAENAAAAAADNAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAGNAAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAGNAAAAAABNAAAAAACDgAAAAAADgAAAAAADgAAAAAANAAAAAAINAAAAAAMNAAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAAANAAAAAANNAAAAAAGDgAAAAAADgAAAAAANAAAAAACNAAAAAAJNAAAAAACNAAAAAAMNAAAAAACKgAAAAAAKgAAAAAAKgAAAAAFKgAAAAAEKgAAAAAAKgAAAAAHKgAAAAAANAAAAAABNAAAAAAENAAAAAADNAAAAAAINAAAAAAHNAAAAAAJNAAAAAAANAAAAAALNAAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAKNAAAAAAENAAAAAAFNAAAAAAHNAAAAAANNAAAAAAGNAAAAAANNAAAAAAFNAAAAAANNAAAAAABKgAAAAABKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAMKgAAAAAKKgAAAAAANAAAAAAENAAAAAAFNAAAAAAENAAAAAAEDgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAENAAAAAAJNAAAAAAGNAAAAAAMDgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAANAAAAAALNAAAAAAHNAAAAAAANAAAAAAKNAAAAAAKDgAAAAAADgAAAAAADgAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAADXwAAAAADXwAAAAAIXwAAAAAMXwAAAAALKgAAAAAAXwAAAAAIXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAFVQAAAAAAXwAAAAAKXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAHXwAAAAABXwAAAAABXwAAAAAFXwAAAAAHXwAAAAAIXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAALXwAAAAALXwAAAAAOXwAAAAACXwAAAAACXwAAAAAGXwAAAAANXwAAAAALXwAAAAABXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAIXwAAAAAGXwAAAAAFXwAAAAAHXwAAAAACXwAAAAAKXwAAAAAJXwAAAAACKgAAAAAAXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAABXwAAAAADXwAAAAAFXwAAAAACXwAAAAAFXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAJXwAAAAAFXwAAAAAJXwAAAAAAXwAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAACXwAAAAAGXwAAAAADKgAAAAAAXwAAAAAEXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAADXwAAAAANKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAACXwAAAAAHXwAAAAANKgAAAAAAXwAAAAACXwAAAAAIKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAMXwAAAAAJXwAAAAANXwAAAAADKgAAAAAAXwAAAAABXwAAAAAJXwAAAAAHXwAAAAAJXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAMXwAAAAAAXwAAAAAEXwAAAAANXwAAAAAJXwAAAAAAXwAAAAACXwAAAAAJXwAAAAAHXwAAAAABXwAAAAALXwAAAAAHKgAAAAAAXwAAAAAOXwAAAAAAXwAAAAABXwAAAAADVQAAAAAIVQAAAAAAXwAAAAAMXwAAAAALXwAAAAAGXwAAAAABVQAAAAAAVQAAAAAAXwAAAAAKXwAAAAAHXwAAAAAIXwAAAAAGXwAAAAAEXwAAAAAKXwAAAAADXwAAAAABVQAAAAAAVQAAAAAAXwAAAAACXwAAAAAEXwAAAAAJVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAKXwAAAAANXwAAAAAHXwAAAAAOXwAAAAAOVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAAXwAAAAALXwAAAAANXwAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAGXwAAAAAOXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAMXwAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAMVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAHVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAALXwAAAAADXwAAAAAK + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAALNAAAAAANNAAAAAAJNAAAAAAINAAAAAAJNAAAAAAGDgAAAAAANAAAAAAJNAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAGNAAAAAAJKgAAAAAANAAAAAALNAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAINAAAAAAENAAAAAAONAAAAAAGNAAAAAAANAAAAAAJNAAAAAAHNAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAJNAAAAAAONAAAAAADNAAAAAAONAAAAAANNAAAAAAENAAAAAANNAAAAAAHNAAAAAAHNAAAAAAANAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAANNAAAAAAONAAAAAALNAAAAAAGNAAAAAAENAAAAAAKNAAAAAAONAAAAAAFNAAAAAAJDgAAAAAANAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAGNAAAAAAGNAAAAAABNAAAAAAFNAAAAAACNAAAAAACNAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAGDgAAAAAADgAAAAAADgAAAAAANAAAAAABNAAAAAAINAAAAAAFNAAAAAANNAAAAAAFNAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAGDgAAAAAADgAAAAAANAAAAAANNAAAAAAHNAAAAAAGNAAAAAAHDgAAAAAANAAAAAAONAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAALNAAAAAAANAAAAAAMDgAAAAAADgAAAAAANAAAAAALNAAAAAALNAAAAAAFNAAAAAACDgAAAAAANAAAAAALNAAAAAAKDgAAAAAADgAAAAAANAAAAAAGNAAAAAAINAAAAAAINAAAAAAHNAAAAAAHDgAAAAAANAAAAAAINAAAAAAONAAAAAAFNAAAAAAHNAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAJNAAAAAACNAAAAAALNAAAAAACNAAAAAANNAAAAAABNAAAAAACNAAAAAAINAAAAAAHNAAAAAAENAAAAAAENAAAAAAMNAAAAAACDgAAAAAANAAAAAANNAAAAAAINAAAAAAGNAAAAAACKgAAAAAAKgAAAAAENAAAAAAGNAAAAAAFNAAAAAAJNAAAAAABKgAAAAAIKgAAAAAANAAAAAAINAAAAAAFNAAAAAAMNAAAAAAONAAAAAAONAAAAAADNAAAAAAENAAAAAABKgAAAAAAKgAAAAAANAAAAAAJNAAAAAAONAAAAAAAKgAAAAAAKgAAAAAJKgAAAAAAKgAAAAAANAAAAAAGNAAAAAAJNAAAAAAANAAAAAADNAAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAFNAAAAAAGNAAAAAAHKgAAAAAAKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAKgAAAAADKgAAAAABKgAAAAAFKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAGNAAAAAACNAAAAAAIKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAADKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAINAAAAAACNAAAAAAGNAAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAADKgAAAAABKgAAAAAAKgAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAANNAAAAAAINAAAAAAD version: 6 4,-2: ind: 4,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMXwAAAAAOXwAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAOXwAAAAANXwAAAAACXwAAAAAJXwAAAAABXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAEXwAAAAAFXwAAAAAIXwAAAAAJXwAAAAAKXwAAAAACXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAGXwAAAAACXwAAAAACXwAAAAALXwAAAAAHXwAAAAACXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAAMVQAAAAAIVQAAAAAAXwAAAAANXwAAAAALXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAACXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAALXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAANXwAAAAAOXwAAAAADXwAAAAAEXwAAAAAOXwAAAAAIXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAMXwAAAAAFXwAAAAANXwAAAAAOXwAAAAAHXwAAAAANXwAAAAAJXwAAAAAH + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAALNAAAAAAONAAAAAADDgAAAAAANAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADNAAAAAALNAAAAAAMNAAAAAABNAAAAAABNAAAAAAHNAAAAAAODgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAABNAAAAAAKNAAAAAAKNAAAAAADNAAAAAAHNAAAAAANNAAAAAAENAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADNAAAAAAMNAAAAAAKNAAAAAAMNAAAAAALNAAAAAALNAAAAAANNAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMNAAAAAAFKgAAAAAAKgAAAAAANAAAAAADNAAAAAAENAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAALNAAAAAAFKgAAAAAAKgAAAAAAKgAAAAAANAAAAAANNAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAAHKgAAAAAAKgAAAAAAKgAAAAAANAAAAAANNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAACNAAAAAAGNAAAAAAKNAAAAAAHNAAAAAABNAAAAAAFNAAAAAAHNAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAALNAAAAAAANAAAAAAKNAAAAAANNAAAAAAANAAAAAAJNAAAAAADNAAAAAANNAAAAAAG version: 6 5,-2: ind: 5,-2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAODgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAKXwAAAAAKXwAAAAAMXwAAAAAAXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAAIXwAAAAAMXwAAAAAJXwAAAAABXwAAAAANXwAAAAACXwAAAAADXwAAAAACXwAAAAABXwAAAAABXwAAAAAJXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAANXwAAAAAHXwAAAAAJXwAAAAAOXwAAAAAFXwAAAAAMXwAAAAANXwAAAAACXwAAAAALXwAAAAAOXwAAAAAHXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAAIXwAAAAANXwAAAAABXwAAAAAIXwAAAAAGXwAAAAAMXwAAAAANXwAAAAAJXwAAAAAGXwAAAAANXwAAAAANXwAAAAADXwAAAAADKgAAAAAAXAAAAAAACwAAAAAAXwAAAAAHXwAAAAALXwAAAAAJXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAADVQAAAAAAXwAAAAAIXwAAAAAOXwAAAAAGKgAAAAAACwAAAAAACwAAAAAAXwAAAAAOXwAAAAAGXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAIVQAAAAAGVQAAAAAAXwAAAAAEXwAAAAAMCwAAAAAACwAAAAAACwAAAAAAXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAMXwAAAAAJVQAAAAAAXwAAAAAIXwAAAAAKVQAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAAXwAAAAAIVQAAAAAJVQAAAAAGVQAAAAAAVQAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAALVQAAAAACXwAAAAAGXwAAAAAHVQAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAHVQAAAAAKXwAAAAAIXwAAAAAFCwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAANXwAAAAAJXwAAAAAIXwAAAAACXwAAAAAMKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAOXwAAAAAHXwAAAAAAXwAAAAAGXwAAAAAAKgAAAAAAXAAAAAAACwAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAAHNAAAAAAKNAAAAAACNAAAAAANNAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAANAAAAAAINAAAAAADNAAAAAALNAAAAAALNAAAAAAMNAAAAAAFNAAAAAAINAAAAAAMNAAAAAAMNAAAAAADNAAAAAAINAAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAANAAAAAAANAAAAAAKNAAAAAANNAAAAAAHNAAAAAAGNAAAAAAMNAAAAAADNAAAAAAINAAAAAAGNAAAAAABNAAAAAAFNAAAAAALDgAAAAAADgAAAAAADgAAAAAAMQAAAAAANAAAAAAFNAAAAAAKNAAAAAAFNAAAAAADNAAAAAAGNAAAAAANNAAAAAAMNAAAAAAONAAAAAAENAAAAAABNAAAAAAONAAAAAAANAAAAAANDgAAAAAAMQAAAAAAAgAAAAAANAAAAAANNAAAAAAONAAAAAAJNAAAAAACDgAAAAAADgAAAAAADgAAAAAANAAAAAAENAAAAAALKgAAAAAANAAAAAABNAAAAAAFNAAAAAAIDgAAAAAAAgAAAAAAAgAAAAAANAAAAAAFNAAAAAAENAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADNAAAAAAGKgAAAAAAKgAAAAAANAAAAAANNAAAAAADAgAAAAAAAgAAAAAAAgAAAAAANAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAINAAAAAAINAAAAAAKKgAAAAACNAAAAAANNAAAAAAEKgAAAAACAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAANNAAAAAACNAAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAFNAAAAAAMKgAAAAAANAAAAAAINAAAAAACKgAAAAAGAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAALKgAAAAAANAAAAAADNAAAAAACAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAANNAAAAAAMNAAAAAAKNAAAAAABNAAAAAAINAAAAAADDgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAACNAAAAAAFNAAAAAAHNAAAAAAENAAAAAAMNAAAAAADDgAAAAAAMQAAAAAAAgAAAAAA version: 6 5,0: ind: 5,0 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAANXwAAAAAIXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAMXwAAAAAGXwAAAAACXwAAAAAOXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAKXwAAAAANXwAAAAAJXwAAAAAIXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAEXwAAAAAHXwAAAAACVQAAAAAAXwAAAAAKXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAJXwAAAAAMXwAAAAAGXwAAAAAGVQAAAAAAXwAAAAAIXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAKXwAAAAAOVQAAAAAAVQAAAAAIVQAAAAAEXwAAAAAAXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAXwAAAAAKXwAAAAAOXwAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAHXwAAAAANXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAADXwAAAAAIXwAAAAAFXwAAAAAOXwAAAAACXwAAAAABXwAAAAAIXwAAAAAOXwAAAAALXwAAAAANXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAAAXwAAAAABXwAAAAAAXwAAAAAHXwAAAAAHXwAAAAAAXwAAAAAFXwAAAAAGXwAAAAALXwAAAAALXwAAAAAKXwAAAAABXwAAAAAFKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAADXwAAAAAJXwAAAAANXwAAAAAIXwAAAAAIKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAEXwAAAAAGXwAAAAANXwAAAAAHXwAAAAAHKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAAEXwAAAAAJXwAAAAAAXwAAAAAAXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAMXwAAAAAFXwAAAAALKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAABXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAHXwAAAAAFXwAAAAAFKgAAAAAAKgAAAAAAXAAAAAAAXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAJNAAAAAACNAAAAAAENAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAKNAAAAAADNAAAAAAFNAAAAAAONAAAAAAENAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAADNAAAAAANNAAAAAAJNAAAAAAINAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADNAAAAAABNAAAAAACKgAAAAAANAAAAAAMNAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAANAAAAAAGNAAAAAAGNAAAAAAINAAAAAAMNAAAAAADKgAAAAAANAAAAAAINAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAANAAAAAANNAAAAAAINAAAAAABKgAAAAAAKgAAAAAJKgAAAAAANAAAAAAMNAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAANAAAAAABNAAAAAACNAAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAALNAAAAAACNAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAHNAAAAAAINAAAAAANNAAAAAAGNAAAAAADNAAAAAAENAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAANAAAAAALNAAAAAALNAAAAAAKNAAAAAANNAAAAAAENAAAAAAKNAAAAAALNAAAAAAHNAAAAAACNAAAAAAKNAAAAAANNAAAAAAHNAAAAAAIDgAAAAAADgAAAAAAMQAAAAAANAAAAAABNAAAAAAGNAAAAAAANAAAAAADNAAAAAAMDgAAAAAADgAAAAAANAAAAAAONAAAAAAENAAAAAAANAAAAAADNAAAAAAJNAAAAAAJDgAAAAAADgAAAAAAMQAAAAAANAAAAAAHNAAAAAAHNAAAAAACNAAAAAAINAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAENAAAAAAHNAAAAAADNAAAAAAGDgAAAAAADgAAAAAAMQAAAAAANAAAAAAANAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMNAAAAAAONAAAAAAANAAAAAAMDgAAAAAADgAAAAAAMQAAAAAANAAAAAAGDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAA version: 6 4,2: ind: 4,2 - tiles: VQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAGVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAJXwAAAAALXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAALVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAXwAAAAABXwAAAAABXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAALXwAAAAAGXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAACVQAAAAACVQAAAAAAXwAAAAAIXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAVQAAAAAAVQAAAAAFVQAAAAAAVQAAAAAGXwAAAAAMXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAAJVQAAAAAAVQAAAAAAXwAAAAANXwAAAAAKXwAAAAAGKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAGVQAAAAAAXwAAAAADXwAAAAAHXwAAAAAFXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAIVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAADXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAFXwAAAAAEXwAAAAABVQAAAAAAVQAAAAAEXwAAAAAHXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAANXwAAAAAKXwAAAAAMVQAAAAAAVQAAAAAAXwAAAAANXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAACXwAAAAAOVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAGXwAAAAAGXwAAAAAGXwAAAAAMXwAAAAAMXwAAAAANKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAJXwAAAAADXwAAAAANXwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAFXwAAAAAMKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADXwAAAAALXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: KgAAAAAAKgAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAANAAAAAANNAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAIKgAAAAAIKgAAAAAANAAAAAADNAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAAJKgAAAAAANAAAAAANNAAAAAAANAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAKNAAAAAAKNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAANAAAAAANNAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAAHKgAAAAAIKgAAAAAANAAAAAAGNAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAONAAAAAAJNAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAALNAAAAAALNAAAAAAHNAAAAAAJDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAALKgAAAAAGKgAAAAAAKgAAAAAANAAAAAAGNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAACNAAAAAAHNAAAAAANKgAAAAAAKgAAAAAANAAAAAAHNAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAKNAAAAAAINAAAAAAGKgAAAAAAKgAAAAAANAAAAAAHNAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAALNAAAAAAIKgAAAAAAKgAAAAAANAAAAAAJNAAAAAAEDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAJNAAAAAAENAAAAAABNAAAAAAINAAAAAAFNAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAGNAAAAAAONAAAAAAKNAAAAAANNAAAAAAIDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAENAAAAAAHNAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMNAAAAAADNAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,3: ind: 4,3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAXwAAAAABXwAAAAAEXwAAAAADXwAAAAAAXwAAAAAJKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAAHXwAAAAAFXwAAAAAKXwAAAAAIXwAAAAAEXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIXwAAAAAJXwAAAAAOXwAAAAAMVQAAAAACXwAAAAALXwAAAAACXwAAAAACXwAAAAALKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAAXwAAAAAGXwAAAAADXwAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAEXwAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAKXwAAAAAGVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAAFXwAAAAAIXwAAAAAAXwAAAAAOKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHXwAAAAAFVQAAAAAAVQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAXwAAAAAEXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAOXwAAAAAEXwAAAAAJVQAAAAAAVQAAAAAAVQAAAAAAXwAAAAAJXwAAAAAJXwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAKXwAAAAAEXwAAAAAAXwAAAAAMXwAAAAACXwAAAAACXwAAAAANXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAALXwAAAAACXwAAAAAHXwAAAAAKXwAAAAABXwAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAJXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAANAAAAAAFNAAAAAANNAAAAAAGNAAAAAAINAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAONAAAAAACNAAAAAAGNAAAAAAONAAAAAAINAAAAAAONAAAAAAHDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAAINAAAAAAFNAAAAAAJKgAAAAAGNAAAAAALNAAAAAALNAAAAAADNAAAAAAFDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAADNAAAAAANNAAAAAAFNAAAAAACKgAAAAAAKgAAAAAKKgAAAAAAKgAAAAADNAAAAAAJNAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAAFNAAAAAAEKgAAAAAEKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAINAAAAAAFNAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMNAAAAAAKKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAALNAAAAAANDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAINAAAAAAONAAAAAANKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAFNAAAAAABNAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAANAAAAAABNAAAAAAENAAAAAACNAAAAAAKNAAAAAAMNAAAAAANNAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAENAAAAAAKNAAAAAAENAAAAAAINAAAAAAHNAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAHNAAAAAAODgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAA version: 6 3,3: ind: 3,3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAHKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXwAAAAAIKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAAMDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAANAAAAAALDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 2,3: ind: 2,3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAABCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAACCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAALAAAAAADCwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAABAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAACAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAEAAAAAADAgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 5,1: ind: 5,1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAA version: 6 6,1: ind: 6,1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 6,-1: ind: 6,-1 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 5,2: ind: 5,2 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 5,3: ind: 5,3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 4,4: ind: 4,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 3,4: ind: 3,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 1,4: ind: 1,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 2,4: ind: 2,4 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 1,3: ind: 1,3 - tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 0,3: ind: 0,3 - tiles: KgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAACwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAXAAAAAAAXAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA + tiles: DgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAAgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 - type: Broadphase - type: Physics @@ -8656,240 +8660,180 @@ entities: 80: 6,-2 - node: color: '#FFFFFFFF' - id: Bushm1 + id: BushAThree decals: - 130: 10.225708,-11.406067 - 157: 25.799988,-9.023838 - 165: 26.779587,-2.7991428 - 195: 26.676865,5.8544445 + 27: 13.6098175,-11.353516 - node: color: '#FFFFFFFF' - id: Bushm2 + id: BushCOne decals: - 140: 19.070175,-10.054958 + 68: 24.991669,-1.6784534 - node: color: '#FFFFFFFF' - id: Bushm3 + id: BushCThree decals: - 214: 16.310516,8.9794445 - - node: - color: '#DE3A3A96' - id: DiagonalOverlay - decals: - 73: 5,-2 - 74: 5,0 - 75: 8,0 - 76: 8,-2 + 22: 9.980225,5.1106415 + 59: 16.814621,-5.779171 - node: color: '#FFFFFFFF' - id: bushsnowa1 + id: BushCTwo decals: - 105: 10.157684,7.222006 - 143: 18.065018,-10.107044 - 215: 16.33136,8.302362 + 40: 25.327164,8.185654 + 45: 26.061539,-9.112068 + 60: 17.14795,-6.737503 - node: color: '#FFFFFFFF' - id: bushsnowa2 + id: BushDTwo decals: - 117: 5.887741,2.0872555 - 166: 27.175415,-4.184559 - 168: 24.071243,-1.8199768 - 196: 27.114365,6.2398624 - 203: 25.197693,8.052362 + 47: 24.347397,8.038254 - node: color: '#FFFFFFFF' - id: bushsnowa3 + id: Busha1 decals: - 145: 15.896469,-7.3870087 - 197: 27.249771,5.7815285 + 20: 9.917725,6.0325165 + 38: 26.061539,8.029404 + 42: 27.077164,-2.0276108 - node: color: '#FFFFFFFF' - id: bushsnowb1 + id: Busha2 decals: - 100: 0.91708374,8.05534 - 119: 10.977142,-2.7098675 - 120: 8.663208,-7.103985 - 144: 15.833969,-7.1057587 - 167: 25.696243,-1.8303928 + 4: 15.447281,8.447321 - node: color: '#FFFFFFFF' - id: bushsnowb2 + id: Bushb2 decals: - 146: 15.886047,-7.5536766 + 21: 9.948975,5.4075165 + 39: 26.233414,7.1856537 - node: color: '#FFFFFFFF' - id: bushsnowb3 + id: Bushb3 decals: - 218: 15.80011,8.083612 + 5: 15.634781,7.650446 + 58: 17.14795,-4.945837 - node: color: '#FFFFFFFF' - id: grasssnow02 + id: Bushc1 decals: - 132: 11.018097,-11.898708 - 151: 17.08397,-4.8661747 - 208: 18.91713,8.1044445 + 6: 14.619156,8.556696 - node: color: '#FFFFFFFF' - id: grasssnow04 + id: Bushc3 decals: - 159: 24.195831,-8.888424 - 200: 24.583115,7.9586124 + 7: 19.998627,4.431698 + 62: 17.0542,-7.727089 - node: color: '#FFFFFFFF' - id: grasssnow05 + id: Bushe1 decals: - 172: 27.112915,-4.257477 - 173: 27.112915,-4.257477 - 174: 22.696243,-1.7158089 - 199: 25.478943,7.2711124 + 41: 25.530289,7.7950287 + 52: 22.191147,8.335129 - node: color: '#FFFFFFFF' - id: grasssnow06 + id: Bushe2 decals: - 110: 9.555878,6.639818 - 116: 6.8460846,1.6080875 - 171: 26.112915,-2.7470589 - 209: 18.115051,8.0419445 + 8: 20.014252,4.837948 + 17: 9.71759,-8.292427 - node: color: '#FFFFFFFF' - id: grasssnow07 + id: Bushe4 decals: - 125: 9.5903015,-6.562317 - 192: 23.093521,5.7606945 - 211: 14.727188,9.021112 + 29: 6.345627,2.0966072 + 43: 26.545914,-1.8401108 + 44: 26.780289,-2.4807358 + 61: 17.345871,-5.706253 + 67: 26.866669,-4.9909534 - node: color: '#FFFFFFFF' - id: grasssnow08 + id: Bushg1 decals: - 153: 16.95897,-8.001591 - 185: 20.04248,4.9576435 + 28: 8.570679,-7.0878906 + 63: 17.033371,-7.404171 - node: color: '#FFFFFFFF' - id: grasssnow09 + id: Bushi1 decals: - 94: 0.97958374,6.826172 - 95: 1.8545837,7.638672 - 118: 10.997986,-2.8661175 - 169: 24.904587,-1.5387268 - 198: 26.103943,6.7711124 - - node: - color: '#FFFFFFFF' - id: grasssnow11 - decals: - 96: 2.312912,8.253256 - 108: 9.555878,6.504402 - 109: 9.618378,5.962734 - 111: 10.170456,9.046068 - 114: 5.825241,2.9935055 - 134: 9.893097,-10.836208 - 142: 18.51294,-10.336208 - 152: 17.229797,-4.1578426 - 154: 16.761047,-6.7307587 - 170: 26.779587,-3.7053928 - 176: 23.446243,-2.4137268 - 188: 19.653091,5.7388935 - 191: 22.822693,4.5315285 - 194: 24.301865,5.7398624 - 212: 15.966766,7.5315285 + 0: 5.8017883,1.9809036 + 3: 10.286163,8.025446 + 13: 9.170715,-7.229927 + 23: 12.30835,-11.416016 + 30: 23.733414,5.727852 + 34: 23.202164,-0.97527313 + 50: 22.800522,7.944504 + 66: 27.210419,-4.8347034 + 69: 25.950012,-1.8138714 + 70: 16.229706,-11.13625 + 71: 15.844284,-11.2404175 + 72: 11.097305,-2.8601494 + 90: 9.705856,-11.501087 + 91: 10.351685,-12.282337 + 92: 9.851685,-11.938587 - node: color: '#FFFFFFFF' - id: grasssnow12 + id: Bushi2 decals: - 97: 0.44833374,5.83659 - 106: 9.503784,5.389818 - 112: 9.363556,8.598152 - 124: 9.4965515,-7.051903 - 193: 22.124771,5.1669445 - - node: - color: '#FFFFFFFF' - id: grasssnow13 - decals: - 107: 9.420456,7.691902 - 115: 7.106491,3.2851715 - 126: 8.475708,-6.416485 - 127: 7.850708,-7.093567 - 137: 11.591003,-11.804958 - 158: 25.893738,-8.065506 - 160: 24.93541,-8.617588 - 175: 24.248337,-1.9970589 - 183: 19.97998,4.1555614 - 210: 20.16713,7.9273624 - 213: 16.42511,8.094028 + 1: 10.504913,8.775446 + 14: 9.608215,-7.354927 + 24: 12.730225,-11.275391 + 31: 23.420914,5.493477 + 35: 23.358414,-1.3502731 + 51: 22.300522,7.960129 + 93: 9.810013,-12.292755 - node: color: '#FFFFFFFF' - id: grasssnowa1 + id: Bushi3 decals: - 139: 17.320175,-10.429958 + 2: 10.442413,8.478571 + 15: 9.639465,-7.729927 + 25: 12.261475,-11.744141 + 26: 12.261475,-12.150391 + 32: 23.389664,5.087227 + 36: 23.530289,-1.5690231 + 65: 27.054169,-4.4701214 - node: color: '#FFFFFFFF' - id: grasssnowa2 + id: Bushi4 decals: - 98: 1.5212555,8.11784 - 177: 23.164993,-1.7158089 - 186: 19.66748,4.2909775 + 16: 9.576965,-8.104927 + 33: 23.264664,-0.74089813 + 49: 22.566147,8.210129 - node: color: '#FFFFFFFF' - id: grasssnowa3 + id: Bushj1 decals: - 99: 1.1045837,7.43034 - 102: 10.366028,8.52409 - 129: 9.6528015,-11.624817 - 156: 25.27916,-9.357174 - 190: 23.145615,5.0523624 - 202: 26.228943,7.1981945 + 11: 0.7978058,7.5165386 + 19: 19.076965,8.161362 - node: color: '#FFFFFFFF' - id: grasssnowb1 - decals: - 113: 6.0335846,2.3685055 - 122: 9.3715515,-7.312317 - 136: 12.247253,-12.388294 - 138: 16.216003,-11.357044 - 149: 17.344376,-5.6786747 - 163: 26.425415,-1.9970589 - 178: 23.477493,-1.2991428 - 187: 19.625809,4.9888935 - 189: 23.572693,5.6148624 - - node: - color: '#FFFFFFFF' - id: grasssnowb2 + id: Bushj2 decals: - 150: 17.406876,-4.9286747 - 205: 24.406021,8.208612 - 207: 19.021301,8.4169445 + 10: 1.5478058,8.266541 + 37: 26.967789,-2.8672504 - node: color: '#FFFFFFFF' - id: grasssnowb3 + id: Bushj3 decals: - 101: 10.449356,7.847006 - 204: 25.020615,8.5106945 + 9: 0.8915558,8.204041 + 48: 27.034897,6.100754 + 64: 27.168762,-3.6263714 - node: color: '#FFFFFFFF' - id: grasssnowc1 + id: Bushk1 decals: - 103: 10.303528,6.378256 - 135: 12.591003,-11.565376 - 201: 25.978943,7.9898624 - 206: 19.85463,8.208612 + 12: 16.116241,-7.6390114 - node: color: '#FFFFFFFF' - id: grasssnowc2 + id: Bushn1 decals: - 123: 9.5278015,-8.083153 - 147: 17.313126,-7.2411766 - 148: 17.11522,-6.3765907 - 155: 26.049988,-9.055088 - 161: 27.154587,-1.8616428 - 164: 27.446243,-3.5595589 - 217: 15.758438,8.989862 + 18: 19.09259,-9.995552 + 46: 25.186539,-9.033943 - node: - color: '#FFFFFFFF' - id: grasssnowc3 + color: '#DE3A3A96' + id: DiagonalOverlay decals: - 104: 10.491028,5.503256 - 128: 10.006958,-12.051903 - 162: 27.373337,-2.6324768 - 216: 15.185516,8.656528 + 73: 5,-2 + 74: 5,0 + 75: 8,0 + 76: 8,-2 - type: GridAtmosphere version: 2 data: @@ -9161,6 +9105,8 @@ entities: 0: 144 1,7: 0: 2 + 3,6: + 0: 64 5,5: 0: 64 6,4: @@ -9242,24 +9188,10 @@ entities: 0: 32768 16,1: 0: 273 - 12,5: - 0: 19656 - 12,6: - 0: 50244 - 12,7: - 0: 8 - 13,5: - 0: 4095 - 13,6: - 0: 33399 - 13,7: - 0: 127 13,8: 0: 4 14,5: - 0: 37136 - 14,6: - 0: 4369 + 0: 32768 15,7: 0: 16 12,-3: @@ -9759,26 +9691,16 @@ entities: - 5218 - 16531 - 16532 - - uid: 10285 - components: - - type: Transform - pos: 35.5,41.5 - parent: 2 - - type: DeviceList - devices: - - 16346 - - 16345 - - 10466 - - uid: 10655 + - uid: 12885 components: - type: Transform - pos: 24.5,24.5 + pos: -32.5,-9.5 parent: 2 - type: DeviceList devices: - - 16263 - - 16262 - - 10656 + - 10841 + - 15899 + - 15903 - uid: 14996 components: - type: Transform @@ -10105,6 +10027,8 @@ entities: - 13657 - 18280 - 13656 + - 29732 + - 29737 - uid: 18286 components: - type: Transform @@ -10138,6 +10062,10 @@ entities: - 18279 - 13934 - 13933 + - 29741 + - 29739 + - 29742 + - 29743 - uid: 18287 components: - type: Transform @@ -10170,6 +10098,8 @@ entities: - 13767 - 13768 - 18278 + - 29740 + - 29738 - uid: 18288 components: - type: Transform @@ -10245,7 +10175,7 @@ entities: - 18327 - 18326 - 15148 - - 18304 + - 29776 - 15150 - uid: 18328 components: @@ -10396,6 +10326,16 @@ entities: - 18438 - 18409 - 18410 + - uid: 18460 + components: + - type: Transform + pos: -26.5,-46.5 + parent: 2 + - type: DeviceList + devices: + - 15418 + - 29818 + - 15417 - uid: 18463 components: - type: Transform @@ -10439,10 +10379,6 @@ entities: - 18479 - 14749 - 14748 - - 14766 - - 14765 - - 14763 - - 14764 - uid: 18482 components: - type: Transform @@ -10659,17 +10595,14 @@ entities: parent: 2 - type: DeviceList devices: + - 18594 - 18260 - 18261 - - 18592 - 18593 - - 18594 - - 15653 - - 15651 - - 15652 - - 15654 + - 18592 - 18605 - - 18608 + - 15651 + - 15653 - uid: 18606 components: - type: Transform @@ -10828,17 +10761,20 @@ entities: parent: 2 - type: DeviceList devices: - - 18660 - - 18661 - - 18251 - - 18252 - - 18248 - 18249 + - 18248 - 18659 - - 18664 + - 18661 + - 18660 + - 1186 + - 12937 - 14868 - - 14869 - - 18666 + - 18664 + - 18304 + - 29879 + - 14927 + - 29877 + - 14924 - uid: 18667 components: - type: Transform @@ -10928,14 +10864,6 @@ entities: - 15898 - 18695 - 15902 - - 15912 - - 15913 - - 15905 - - 15901 - - 15900 - - 15904 - - 15899 - - 15903 - uid: 20717 components: - type: Transform @@ -11271,6 +11199,17 @@ entities: devices: - 25359 - 28277 + - uid: 28414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 14005 + - 14006 + - 29930 - uid: 28611 components: - type: Transform @@ -11291,7 +11230,6 @@ entities: devices: - 18459 - 14721 - - 18461 - 14720 - 18474 - 18473 @@ -11301,6 +11239,17 @@ entities: - 18468 - 18471 - 18472 + - uid: 28882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-47.5 + parent: 2 + - type: DeviceList + devices: + - 29848 + - 15325 + - 15326 - uid: 29040 components: - type: Transform @@ -11348,6 +11297,648 @@ entities: - 15168 - 18602 - 18601 + - uid: 29773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -45.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 14954 + - 14953 + - 29772 + - uid: 29789 + components: + - type: Transform + pos: 35.5,41.5 + parent: 2 + - type: DeviceList + devices: + - 16345 + - 16346 + - 29791 + - uid: 29792 + components: + - type: Transform + pos: 36.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 29793 + - 16357 + - 16358 + - uid: 29794 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 29797 + - 16474 + - 16477 + - uid: 29795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,22.5 + parent: 2 + - uid: 29796 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 16476 + - 16475 + - 29798 + - uid: 29799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-22.5 + parent: 2 + - uid: 29800 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -33.5,-22.5 + parent: 2 + - type: DeviceList + devices: + - 18698 + - 15851 + - 15852 + - 29801 + - uid: 29802 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,17.5 + parent: 2 + - type: DeviceList + devices: + - 14764 + - 14763 + - 29804 + - uid: 29803 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 28968 + - 14766 + - 14765 + - uid: 29805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,23.5 + parent: 2 + - type: DeviceList + devices: + - 29808 + - 16262 + - 16263 + - uid: 29806 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,27.5 + parent: 2 + - type: DeviceList + devices: + - 29807 + - 16251 + - 16252 + - uid: 29811 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-44.5 + parent: 2 + - type: DeviceList + devices: + - 15712 + - 29812 + - 15713 + - uid: 29814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 29815 + - 29820 + - 15415 + - uid: 29819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-47.5 + parent: 2 + - type: DeviceList + devices: + - 15386 + - 29817 + - 29813 + - uid: 29842 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 29927 + - 14052 + - 14057 + - uid: 29849 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -37.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 14989 + - 14990 + - 29850 + - uid: 29851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 14960 + - 14961 + - uid: 29852 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 14955 + - 14952 + - uid: 29853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 14974 + - 14975 + - uid: 29854 + components: + - type: Transform + pos: -45.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 15157 + - 15156 + - 29855 + - uid: 29856 + components: + - type: Transform + pos: -46.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 879 + - 29857 + - 56 + - uid: 29858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 15117 + - 15118 + - uid: 29859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,33.5 + parent: 2 + - type: DeviceList + devices: + - 16188 + - 16189 + - uid: 29860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 16136 + - 16137 + - 29862 + - uid: 29861 + components: + - type: Transform + pos: 49.5,7.5 + parent: 2 + - type: DeviceList + devices: + - 16125 + - 16126 + - 29863 + - uid: 29864 + components: + - type: Transform + pos: 52.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 18412 + - 18411 + - 29866 + - 29865 + - uid: 29867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-41.5 + parent: 2 + - uid: 29868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 14528 + - 14527 + - uid: 29869 + components: + - type: Transform + pos: 30.5,-35.5 + parent: 2 + - type: DeviceList + devices: + - 19072 + - 19074 + - 29871 + - uid: 29870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 14383 + - 18649 + - 14384 + - uid: 29872 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 2 + - uid: 29873 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 14927 + - 29877 + - 14924 + - uid: 29874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 29876 + - 14939 + - 14938 + - uid: 29880 + components: + - type: Transform + pos: 9.5,-51.5 + parent: 2 + - type: DeviceList + devices: + - 29706 + - 29707 + - 29881 + - uid: 29883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 13735 + - 29885 + - 13736 + - uid: 29884 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,-50.5 + parent: 2 + - type: DeviceList + devices: + - 14675 + - 14674 + - 29882 + - uid: 29886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 29887 + - 14088 + - 14089 + - uid: 29888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 14165 + - 29889 + - 14167 + - 18359 + - 18360 + - uid: 29890 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 29892 + - 14166 + - 14168 + - 29891 + - uid: 29893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-37.5 + parent: 2 + - uid: 29894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 44.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 29897 + - 14511 + - 14512 + - uid: 29895 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 2 + - uid: 29896 + components: + - type: Transform + pos: 55.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 29898 + - 14513 + - 14514 + - uid: 29899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - type: DeviceList + devices: + - 29901 + - 16449 + - 16448 + - uid: 29900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,46.5 + parent: 2 + - type: DeviceList + devices: + - 16447 + - 16450 + - uid: 29902 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,49.5 + parent: 2 + - type: DeviceList + devices: + - 16337 + - 16335 + - 29903 + - uid: 29904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,36.5 + parent: 2 + - type: DeviceList + devices: + - 9112 + - 28612 + - 3136 + - uid: 29905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,14.5 + parent: 2 + - type: DeviceList + devices: + - 29908 + - 13725 + - 13724 + - uid: 29906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -18.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 29907 + - 13722 + - 13723 + - uid: 29911 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,-41.5 + parent: 2 + - type: DeviceList + devices: + - 29914 + - 15242 + - 15243 + - uid: 29912 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-37.5 + parent: 2 + - type: DeviceList + devices: + - 13980 + - 13962 + - 29913 + - uid: 29916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - uid: 29917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - type: DeviceList + devices: + - 15809 + - 15811 + - 29919 + - uid: 29918 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-30.5 + parent: 2 + - type: DeviceList + devices: + - 29915 + - 15797 + - 15796 + - uid: 29920 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 2 + - uid: 29921 + components: + - type: Transform + pos: -4.5,-31.5 + parent: 2 + - type: DeviceList + devices: + - 29922 + - 15652 + - 15654 + - uid: 29924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 2 + - type: DeviceList + devices: + - 14055 + - 14020 + - 29931 + - uid: 29925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 29929 + - 14059 + - 14060 + - uid: 29928 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 29926 + - 14130 + - 14131 + - uid: 29932 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 15900 + - 29935 + - 15904 + - uid: 29933 + components: + - type: Transform + pos: -25.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 15905 + - 15901 + - 29936 + - uid: 29934 + components: + - type: Transform + pos: -24.5,-17.5 + parent: 2 + - uid: 29938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 29939 + - 15149 + - 15151 + - 29940 - proto: AirCanister entities: - uid: 4223 @@ -13331,15 +13922,6 @@ entities: - DoorStatus: DoorBolt 24613: - DoorStatus: DoorBolt -- proto: AirlockFreezer - entities: - - uid: 25240 - components: - - type: Transform - pos: -28.5,-51.5 - parent: 2 - - type: DoorBolt - boltsDown: True - proto: AirlockFreezerLocked entities: - uid: 423 @@ -13770,6 +14352,12 @@ entities: rot: 3.141592653589793 rad pos: -22.5,26.5 parent: 2 + - type: Door + secondsUntilStateChange: -11881.353 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True - proto: AirlockMaintBarLocked entities: - uid: 468 @@ -13900,6 +14488,11 @@ entities: - type: Transform pos: -19.5,24.5 parent: 2 + - uid: 17628 + components: + - type: Transform + pos: -17.5,17.5 + parent: 2 - uid: 23273 components: - type: Transform @@ -14611,7 +15204,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -112602.51 + secondsUntilStateChange: -110709.95 state: Opening - uid: 6934 components: @@ -14623,7 +15216,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -112605.14 + secondsUntilStateChange: -110712.586 state: Opening - uid: 6935 components: @@ -14635,7 +15228,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -112603.99 + secondsUntilStateChange: -110711.44 state: Opening - uid: 6936 components: @@ -14646,7 +15239,7 @@ entities: lastSignals: DoorStatus: True - type: Door - secondsUntilStateChange: -112603.21 + secondsUntilStateChange: -110710.66 state: Opening - proto: AirlockTheatreLocked entities: @@ -14736,22 +15329,23 @@ entities: - type: Transform pos: -11.5,19.5 parent: 2 - - uid: 10466 + - uid: 10841 components: - type: Transform - pos: 36.5,37.5 + pos: -31.5,-12.5 parent: 2 - type: DeviceNetwork deviceLists: - - 10285 - - uid: 10656 + - 12885 + - uid: 12937 components: - type: Transform - pos: 22.5,23.5 + rot: 3.141592653589793 rad + pos: 15.5,-37.5 parent: 2 - type: DeviceNetwork deviceLists: - - 10655 + - 18663 - uid: 18245 components: - type: Transform @@ -14918,15 +15512,6 @@ entities: - type: DeviceNetwork deviceLists: - 18333 - - uid: 18304 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,5.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18317 - uid: 18320 components: - type: Transform @@ -15031,21 +15616,6 @@ entities: - type: DeviceNetwork deviceLists: - 28879 - - uid: 18460 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,15.5 - parent: 2 - - uid: 18461 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,15.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 28879 - uid: 18462 components: - type: Transform @@ -15338,6 +15908,7 @@ entities: - type: DeviceNetwork deviceLists: - 18650 + - 29870 - uid: 18656 components: - type: Transform @@ -15365,15 +15936,6 @@ entities: - type: DeviceNetwork deviceLists: - 18667 - - uid: 18666 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-35.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18663 - uid: 18669 components: - type: Transform @@ -15432,8 +15994,6 @@ entities: pos: -26.5,-40.5 parent: 2 - type: DeviceNetwork - configurators: - - 10691 deviceLists: - 18691 - uid: 18693 @@ -15735,6 +16295,16 @@ entities: - type: DeviceNetwork deviceLists: - 28611 + - 29904 + - uid: 28968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29803 - uid: 29041 components: - type: Transform @@ -15744,6 +16314,465 @@ entities: - type: DeviceNetwork deviceLists: - 29040 + - uid: 29772 + components: + - type: Transform + pos: -45.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29773 + - uid: 29776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -30.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18317 + - uid: 29791 + components: + - type: Transform + pos: 31.5,35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29789 + - uid: 29793 + components: + - type: Transform + pos: 34.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29792 + - uid: 29797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29794 + - uid: 29798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29796 + - uid: 29801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29800 + - uid: 29804 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29802 + - uid: 29807 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29806 + - uid: 29808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29805 + - uid: 29812 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29811 + - uid: 29817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29819 + - uid: 29818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18460 + - uid: 29820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-45.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29814 + - uid: 29848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-46.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28882 + - uid: 29850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29849 + - uid: 29855 + components: + - type: Transform + pos: -44.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29854 + - uid: 29857 + components: + - type: Transform + pos: -46.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29856 + - uid: 29862 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29860 + - uid: 29863 + components: + - type: Transform + pos: 47.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29861 + - uid: 29865 + components: + - type: Transform + pos: 49.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29864 + - uid: 29866 + components: + - type: Transform + pos: 49.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29864 + - uid: 29871 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29869 + - uid: 29876 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29874 + - uid: 29877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29873 + - 18663 + - uid: 29881 + components: + - type: Transform + pos: 12.5,-52.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29880 + - uid: 29882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,-50.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29884 + - uid: 29885 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29883 + - uid: 29887 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29886 + - uid: 29889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29888 + - uid: 29891 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29890 + - uid: 29892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29890 + - uid: 29897 + components: + - type: Transform + pos: 47.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29894 + - uid: 29898 + components: + - type: Transform + pos: 59.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29896 + - uid: 29901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,41.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29899 + - uid: 29903 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,49.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29902 + - uid: 29907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29906 + - uid: 29908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29905 + - uid: 29913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29912 + - uid: 29914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -35.5,-40.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29911 + - uid: 29915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29918 + - uid: 29919 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29917 + - uid: 29922 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29921 + - uid: 29926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29928 + - uid: 29927 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29842 + - uid: 29929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29925 + - uid: 29930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 28414 + - uid: 29931 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,-22.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29924 + - uid: 29935 + components: + - type: Transform + pos: -28.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29932 + - uid: 29936 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29933 + - uid: 29937 + components: + - type: Transform + pos: -25.5,-19.5 + parent: 2 + - uid: 29939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -29.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29938 + - uid: 29940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29938 - proto: AirTank entities: - uid: 18893 @@ -16140,6 +17169,14 @@ entities: rot: 1.5707963267948966 rad pos: -9.5,-45.5 parent: 2 +- proto: ArrivalsShuttleTimer + entities: + - uid: 29785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-63.5 + parent: 2 - proto: ArtistCircuitBoard entities: - uid: 29446 @@ -19232,6 +20269,11 @@ entities: - type: Transform pos: 48.5,16.5 parent: 21002 + - uid: 21751 + components: + - type: Transform + pos: 48.5,17.5 + parent: 21002 - uid: 21752 components: - type: Transform @@ -19332,6 +20374,21 @@ entities: - type: Transform pos: 52.5,11.5 parent: 21002 + - uid: 21775 + components: + - type: Transform + pos: 49.5,17.5 + parent: 21002 + - uid: 21776 + components: + - type: Transform + pos: 49.5,18.5 + parent: 21002 + - uid: 21777 + components: + - type: Transform + pos: 49.5,19.5 + parent: 21002 - uid: 21778 components: - type: Transform @@ -21942,6 +22999,11 @@ entities: - type: Transform pos: 47.5,28.5 parent: 21002 + - uid: 25667 + components: + - type: Transform + pos: 47.5,27.5 + parent: 21002 - uid: 25668 components: - type: Transform @@ -21967,16 +23029,31 @@ entities: - type: Transform pos: 48.5,29.5 parent: 21002 + - uid: 25674 + components: + - type: Transform + pos: 48.5,28.5 + parent: 21002 - uid: 25675 components: - type: Transform pos: 48.5,27.5 parent: 21002 + - uid: 25676 + components: + - type: Transform + pos: 48.5,26.5 + parent: 21002 - uid: 25677 components: - type: Transform pos: 49.5,33.5 parent: 21002 + - uid: 25680 + components: + - type: Transform + pos: 49.5,30.5 + parent: 21002 - uid: 25681 components: - type: Transform @@ -21987,6 +23064,11 @@ entities: - type: Transform pos: 49.5,28.5 parent: 21002 + - uid: 25683 + components: + - type: Transform + pos: 49.5,27.5 + parent: 21002 - uid: 25684 components: - type: Transform @@ -22002,6 +23084,21 @@ entities: - type: Transform pos: 50.5,30.5 parent: 21002 + - uid: 25689 + components: + - type: Transform + pos: 50.5,29.5 + parent: 21002 + - uid: 25691 + components: + - type: Transform + pos: 50.5,27.5 + parent: 21002 + - uid: 25692 + components: + - type: Transform + pos: 50.5,26.5 + parent: 21002 - uid: 25693 components: - type: Transform @@ -22012,16 +23109,51 @@ entities: - type: Transform pos: 51.5,32.5 parent: 21002 + - uid: 25696 + components: + - type: Transform + pos: 51.5,30.5 + parent: 21002 + - uid: 25697 + components: + - type: Transform + pos: 51.5,29.5 + parent: 21002 + - uid: 25698 + components: + - type: Transform + pos: 51.5,28.5 + parent: 21002 + - uid: 25700 + components: + - type: Transform + pos: 51.5,26.5 + parent: 21002 - uid: 25701 components: - type: Transform pos: 52.5,33.5 parent: 21002 + - uid: 25702 + components: + - type: Transform + pos: 52.5,32.5 + parent: 21002 - uid: 25703 components: - type: Transform pos: 52.5,31.5 parent: 21002 + - uid: 25707 + components: + - type: Transform + pos: 52.5,27.5 + parent: 21002 + - uid: 25708 + components: + - type: Transform + pos: 52.5,26.5 + parent: 21002 - uid: 25709 components: - type: Transform @@ -22032,6 +23164,21 @@ entities: - type: Transform pos: 53.5,32.5 parent: 21002 + - uid: 25711 + components: + - type: Transform + pos: 53.5,31.5 + parent: 21002 + - uid: 25712 + components: + - type: Transform + pos: 53.5,30.5 + parent: 21002 + - uid: 25715 + components: + - type: Transform + pos: 53.5,27.5 + parent: 21002 - uid: 25717 components: - type: Transform @@ -22042,6 +23189,21 @@ entities: - type: Transform pos: 54.5,31.5 parent: 21002 + - uid: 25720 + components: + - type: Transform + pos: 54.5,30.5 + parent: 21002 + - uid: 25722 + components: + - type: Transform + pos: 54.5,28.5 + parent: 21002 + - uid: 25724 + components: + - type: Transform + pos: 54.5,26.5 + parent: 21002 - uid: 25725 components: - type: Transform @@ -22062,21 +23224,61 @@ entities: - type: Transform pos: 55.5,30.5 parent: 21002 + - uid: 25730 + components: + - type: Transform + pos: 55.5,28.5 + parent: 21002 + - uid: 25731 + components: + - type: Transform + pos: 55.5,27.5 + parent: 21002 + - uid: 25732 + components: + - type: Transform + pos: 55.5,26.5 + parent: 21002 - uid: 25733 components: - type: Transform pos: 56.5,33.5 parent: 21002 + - uid: 25734 + components: + - type: Transform + pos: 56.5,32.5 + parent: 21002 - uid: 25735 components: - type: Transform pos: 56.5,31.5 parent: 21002 + - uid: 25736 + components: + - type: Transform + pos: 56.5,30.5 + parent: 21002 + - uid: 25737 + components: + - type: Transform + pos: 56.5,29.5 + parent: 21002 - uid: 25738 components: - type: Transform pos: 56.5,28.5 parent: 21002 + - uid: 25739 + components: + - type: Transform + pos: 56.5,27.5 + parent: 21002 + - uid: 25740 + components: + - type: Transform + pos: 56.5,26.5 + parent: 21002 - uid: 25741 components: - type: Transform @@ -22087,11 +23289,31 @@ entities: - type: Transform pos: 57.5,32.5 parent: 21002 + - uid: 25743 + components: + - type: Transform + pos: 57.5,31.5 + parent: 21002 + - uid: 25744 + components: + - type: Transform + pos: 57.5,30.5 + parent: 21002 - uid: 25745 components: - type: Transform pos: 57.5,29.5 parent: 21002 + - uid: 25746 + components: + - type: Transform + pos: 57.5,28.5 + parent: 21002 + - uid: 25747 + components: + - type: Transform + pos: 57.5,27.5 + parent: 21002 - uid: 25749 components: - type: Transform @@ -22112,6 +23334,11 @@ entities: - type: Transform pos: 58.5,30.5 parent: 21002 + - uid: 25753 + components: + - type: Transform + pos: 58.5,29.5 + parent: 21002 - uid: 25754 components: - type: Transform @@ -22137,6 +23364,11 @@ entities: - type: Transform pos: 59.5,28.5 parent: 21002 + - uid: 25763 + components: + - type: Transform + pos: 59.5,27.5 + parent: 21002 - uid: 25764 components: - type: Transform @@ -24652,6 +25884,16 @@ entities: - type: Transform pos: 61.5,29.5 parent: 21002 + - uid: 26382 + components: + - type: Transform + pos: 61.5,28.5 + parent: 21002 + - uid: 26383 + components: + - type: Transform + pos: 61.5,27.5 + parent: 21002 - uid: 26384 components: - type: Transform @@ -24677,6 +25919,11 @@ entities: - type: Transform pos: 61.5,21.5 parent: 21002 + - uid: 26390 + components: + - type: Transform + pos: 61.5,20.5 + parent: 21002 - uid: 26392 components: - type: Transform @@ -24697,6 +25944,11 @@ entities: - type: Transform pos: 60.5,28.5 parent: 21002 + - uid: 26397 + components: + - type: Transform + pos: 60.5,27.5 + parent: 21002 - uid: 26398 components: - type: Transform @@ -24717,6 +25969,11 @@ entities: - type: Transform pos: 60.5,22.5 parent: 21002 + - uid: 26403 + components: + - type: Transform + pos: 60.5,21.5 + parent: 21002 - uid: 26404 components: - type: Transform @@ -24732,6 +25989,11 @@ entities: - type: Transform pos: 59.5,22.5 parent: 21002 + - uid: 26409 + components: + - type: Transform + pos: 59.5,21.5 + parent: 21002 - uid: 26410 components: - type: Transform @@ -24752,11 +26014,31 @@ entities: - type: Transform pos: 58.5,22.5 parent: 21002 + - uid: 26415 + components: + - type: Transform + pos: 58.5,21.5 + parent: 21002 - uid: 26416 components: - type: Transform pos: 58.5,20.5 parent: 21002 + - uid: 26418 + components: + - type: Transform + pos: 57.5,24.5 + parent: 21002 + - uid: 26419 + components: + - type: Transform + pos: 57.5,23.5 + parent: 21002 + - uid: 26420 + components: + - type: Transform + pos: 57.5,22.5 + parent: 21002 - uid: 26421 components: - type: Transform @@ -24777,11 +26059,51 @@ entities: - type: Transform pos: 57.5,14.5 parent: 21002 + - uid: 26431 + components: + - type: Transform + pos: 56.5,23.5 + parent: 21002 + - uid: 26433 + components: + - type: Transform + pos: 56.5,21.5 + parent: 21002 + - uid: 26434 + components: + - type: Transform + pos: 56.5,20.5 + parent: 21002 + - uid: 26436 + components: + - type: Transform + pos: 56.5,18.5 + parent: 21002 - uid: 26439 components: - type: Transform pos: 56.5,15.5 parent: 21002 + - uid: 26440 + components: + - type: Transform + pos: 55.5,25.5 + parent: 21002 + - uid: 26441 + components: + - type: Transform + pos: 55.5,24.5 + parent: 21002 + - uid: 26444 + components: + - type: Transform + pos: 55.5,21.5 + parent: 21002 + - uid: 26445 + components: + - type: Transform + pos: 55.5,20.5 + parent: 21002 - uid: 26446 components: - type: Transform @@ -24797,11 +26119,66 @@ entities: - type: Transform pos: 55.5,14.5 parent: 21002 + - uid: 26452 + components: + - type: Transform + pos: 54.5,25.5 + parent: 21002 + - uid: 26453 + components: + - type: Transform + pos: 54.5,24.5 + parent: 21002 + - uid: 26469 + components: + - type: Transform + pos: 53.5,20.5 + parent: 21002 + - uid: 26475 + components: + - type: Transform + pos: 52.5,25.5 + parent: 21002 + - uid: 26476 + components: + - type: Transform + pos: 52.5,24.5 + parent: 21002 + - uid: 26477 + components: + - type: Transform + pos: 52.5,23.5 + parent: 21002 + - uid: 26479 + components: + - type: Transform + pos: 52.5,21.5 + parent: 21002 - uid: 26482 components: - type: Transform pos: 52.5,18.5 parent: 21002 + - uid: 26486 + components: + - type: Transform + pos: 51.5,25.5 + parent: 21002 + - uid: 26487 + components: + - type: Transform + pos: 51.5,24.5 + parent: 21002 + - uid: 26492 + components: + - type: Transform + pos: 51.5,19.5 + parent: 21002 + - uid: 26493 + components: + - type: Transform + pos: 51.5,18.5 + parent: 21002 - uid: 26494 components: - type: Transform @@ -24812,6 +26189,16 @@ entities: - type: Transform pos: 51.5,16.5 parent: 21002 + - uid: 26496 + components: + - type: Transform + pos: 50.5,25.5 + parent: 21002 + - uid: 26501 + components: + - type: Transform + pos: 50.5,20.5 + parent: 21002 - uid: 26502 components: - type: Transform @@ -24832,11 +26219,36 @@ entities: - type: Transform pos: 50.5,16.5 parent: 21002 + - uid: 26506 + components: + - type: Transform + pos: 49.5,25.5 + parent: 21002 + - uid: 26507 + components: + - type: Transform + pos: 49.5,24.5 + parent: 21002 + - uid: 26508 + components: + - type: Transform + pos: 49.5,23.5 + parent: 21002 + - uid: 26511 + components: + - type: Transform + pos: 49.5,20.5 + parent: 21002 - uid: 26512 components: - type: Transform pos: 49.5,16.5 parent: 21002 + - uid: 26513 + components: + - type: Transform + pos: 48.5,25.5 + parent: 21002 - uid: 26514 components: - type: Transform @@ -24867,6 +26279,11 @@ entities: - type: Transform pos: 46.5,24.5 parent: 21002 + - uid: 26525 + components: + - type: Transform + pos: 46.5,23.5 + parent: 21002 - uid: 26528 components: - type: Transform @@ -30143,10 +31560,10 @@ entities: - type: Transform pos: 50.5,28.5 parent: 21002 - - uid: 25702 + - uid: 25699 components: - type: Transform - pos: 48.5,17.5 + pos: 51.5,27.5 parent: 21002 - uid: 25704 components: @@ -30156,108 +31573,43 @@ entities: - uid: 25705 components: - type: Transform - pos: 49.5,17.5 + pos: 52.5,29.5 parent: 21002 - uid: 25706 components: - type: Transform - pos: 49.5,18.5 - parent: 21002 - - uid: 25707 - components: - - type: Transform - pos: 49.5,19.5 - parent: 21002 - - uid: 25708 - components: - - type: Transform - pos: 47.5,27.5 - parent: 21002 - - uid: 25711 - components: - - type: Transform - pos: 48.5,28.5 - parent: 21002 - - uid: 25712 - components: - - type: Transform - pos: 48.5,26.5 + pos: 52.5,28.5 parent: 21002 - uid: 25713 components: - type: Transform - pos: 49.5,30.5 + pos: 53.5,29.5 parent: 21002 - uid: 25714 components: - type: Transform - pos: 49.5,27.5 - parent: 21002 - - uid: 25715 - components: - - type: Transform - pos: 50.5,29.5 + pos: 53.5,28.5 parent: 21002 - uid: 25721 components: - type: Transform - pos: 51.5,30.5 + pos: 54.5,29.5 parent: 21002 - - uid: 25722 + - uid: 25723 components: - type: Transform - pos: 51.5,29.5 + pos: 54.5,27.5 parent: 21002 - uid: 25729 components: - type: Transform pos: 55.5,29.5 parent: 21002 - - uid: 25730 - components: - - type: Transform - pos: 52.5,32.5 - parent: 21002 - - uid: 25731 - components: - - type: Transform - pos: 56.5,20.5 - parent: 21002 - - uid: 25734 - components: - - type: Transform - pos: 53.5,31.5 - parent: 21002 - - uid: 25736 - components: - - type: Transform - pos: 53.5,30.5 - parent: 21002 - - uid: 25737 - components: - - type: Transform - pos: 50.5,20.5 - parent: 21002 - - uid: 25739 - components: - - type: Transform - pos: 54.5,30.5 - parent: 21002 - - uid: 25753 - components: - - type: Transform - pos: 56.5,32.5 - parent: 21002 - uid: 25758 components: - type: Transform pos: 32.5,-7.5 parent: 21002 - - uid: 25763 - components: - - type: Transform - pos: 56.5,30.5 - parent: 21002 - uid: 25786 components: - type: Transform @@ -30413,46 +31765,6 @@ entities: - type: Transform pos: 42.5,-12.5 parent: 21002 - - uid: 26382 - components: - - type: Transform - pos: 56.5,29.5 - parent: 21002 - - uid: 26397 - components: - - type: Transform - pos: 57.5,31.5 - parent: 21002 - - uid: 26403 - components: - - type: Transform - pos: 57.5,30.5 - parent: 21002 - - uid: 26409 - components: - - type: Transform - pos: 57.5,28.5 - parent: 21002 - - uid: 26415 - components: - - type: Transform - pos: 57.5,27.5 - parent: 21002 - - uid: 26418 - components: - - type: Transform - pos: 58.5,29.5 - parent: 21002 - - uid: 26419 - components: - - type: Transform - pos: 59.5,27.5 - parent: 21002 - - uid: 26420 - components: - - type: Transform - pos: 61.5,28.5 - parent: 21002 - uid: 26422 components: - type: Transform @@ -30473,46 +31785,11 @@ entities: - type: Transform pos: 57.5,17.5 parent: 21002 - - uid: 26429 - components: - - type: Transform - pos: 61.5,27.5 - parent: 21002 - - uid: 26430 - components: - - type: Transform - pos: 61.5,20.5 - parent: 21002 - - uid: 26431 - components: - - type: Transform - pos: 60.5,27.5 - parent: 21002 - - uid: 26432 - components: - - type: Transform - pos: 60.5,21.5 - parent: 21002 - - uid: 26433 - components: - - type: Transform - pos: 59.5,21.5 - parent: 21002 - - uid: 26434 - components: - - type: Transform - pos: 58.5,21.5 - parent: 21002 - uid: 26435 components: - type: Transform pos: 56.5,19.5 parent: 21002 - - uid: 26436 - components: - - type: Transform - pos: 57.5,24.5 - parent: 21002 - uid: 26437 components: - type: Transform @@ -30523,106 +31800,6 @@ entities: - type: Transform pos: 56.5,16.5 parent: 21002 - - uid: 26440 - components: - - type: Transform - pos: 57.5,23.5 - parent: 21002 - - uid: 26441 - components: - - type: Transform - pos: 57.5,22.5 - parent: 21002 - - uid: 26442 - components: - - type: Transform - pos: 56.5,18.5 - parent: 21002 - - uid: 26453 - components: - - type: Transform - pos: 51.5,19.5 - parent: 21002 - - uid: 26454 - components: - - type: Transform - pos: 51.5,18.5 - parent: 21002 - - uid: 26456 - components: - - type: Transform - pos: 49.5,25.5 - parent: 21002 - - uid: 26457 - components: - - type: Transform - pos: 49.5,24.5 - parent: 21002 - - uid: 26458 - components: - - type: Transform - pos: 49.5,23.5 - parent: 21002 - - uid: 26464 - components: - - type: Transform - pos: 49.5,20.5 - parent: 21002 - - uid: 26465 - components: - - type: Transform - pos: 48.5,25.5 - parent: 21002 - - uid: 26466 - components: - - type: Transform - pos: 46.5,23.5 - parent: 21002 - - uid: 26479 - components: - - type: Transform - pos: 54.5,19.5 - parent: 21002 - - uid: 26486 - components: - - type: Transform - pos: 49.5,22.5 - parent: 21002 - - uid: 26487 - components: - - type: Transform - pos: 48.5,22.5 - parent: 21002 - - uid: 26488 - components: - - type: Transform - pos: 48.5,21.5 - parent: 21002 - - uid: 26489 - components: - - type: Transform - pos: 47.5,22.5 - parent: 21002 - - uid: 26492 - components: - - type: Transform - pos: 46.5,22.5 - parent: 21002 - - uid: 26493 - components: - - type: Transform - pos: 45.5,22.5 - parent: 21002 - - uid: 26496 - components: - - type: Transform - pos: 53.5,19.5 - parent: 21002 - - uid: 26497 - components: - - type: Transform - pos: 52.5,19.5 - parent: 21002 - uid: 26805 components: - type: Transform @@ -32182,6 +33359,11 @@ entities: - type: Transform pos: 51.5,31.5 parent: 21002 + - uid: 25716 + components: + - type: Transform + pos: 53.5,26.5 + parent: 21002 - uid: 25767 components: - type: Transform @@ -32312,26 +33494,121 @@ entities: - type: Transform pos: 31.5,11.5 parent: 21002 + - uid: 26432 + components: + - type: Transform + pos: 56.5,22.5 + parent: 21002 + - uid: 26443 + components: + - type: Transform + pos: 55.5,22.5 + parent: 21002 + - uid: 26455 + components: + - type: Transform + pos: 54.5,22.5 + parent: 21002 + - uid: 26456 + components: + - type: Transform + pos: 54.5,21.5 + parent: 21002 + - uid: 26457 + components: + - type: Transform + pos: 54.5,20.5 + parent: 21002 + - uid: 26458 + components: + - type: Transform + pos: 54.5,19.5 + parent: 21002 + - uid: 26464 + components: + - type: Transform + pos: 53.5,25.5 + parent: 21002 + - uid: 26465 + components: + - type: Transform + pos: 53.5,24.5 + parent: 21002 + - uid: 26466 + components: + - type: Transform + pos: 53.5,23.5 + parent: 21002 + - uid: 26467 + components: + - type: Transform + pos: 53.5,22.5 + parent: 21002 + - uid: 26468 + components: + - type: Transform + pos: 53.5,21.5 + parent: 21002 + - uid: 26478 + components: + - type: Transform + pos: 52.5,22.5 + parent: 21002 + - uid: 26489 + components: + - type: Transform + pos: 51.5,22.5 + parent: 21002 - uid: 26491 components: - type: Transform pos: 63.5,-2.5 parent: 21002 + - uid: 26509 + components: + - type: Transform + pos: 49.5,22.5 + parent: 21002 - uid: 26510 components: - type: Transform pos: 49.5,21.5 parent: 21002 + - uid: 26516 + components: + - type: Transform + pos: 48.5,22.5 + parent: 21002 + - uid: 26517 + components: + - type: Transform + pos: 48.5,21.5 + parent: 21002 + - uid: 26521 + components: + - type: Transform + pos: 47.5,22.5 + parent: 21002 - uid: 26522 components: - type: Transform pos: 47.5,21.5 parent: 21002 + - uid: 26526 + components: + - type: Transform + pos: 46.5,22.5 + parent: 21002 - uid: 26527 components: - type: Transform pos: 46.5,21.5 parent: 21002 + - uid: 26532 + components: + - type: Transform + pos: 45.5,22.5 + parent: 21002 - uid: 26533 components: - type: Transform @@ -33590,6 +34867,26 @@ entities: - type: Transform pos: 50.5,32.5 parent: 21002 + - uid: 25239 + components: + - type: Transform + pos: 52.5,20.5 + parent: 21002 + - uid: 25240 + components: + - type: Transform + pos: 51.5,21.5 + parent: 21002 + - uid: 25502 + components: + - type: Transform + pos: 51.5,20.5 + parent: 21002 + - uid: 25537 + components: + - type: Transform + pos: 50.5,21.5 + parent: 21002 - uid: 25848 components: - type: Transform @@ -33755,6 +35052,11 @@ entities: - type: Transform pos: 49.5,31.5 parent: 21002 + - uid: 26972 + components: + - type: Transform + pos: 50.5,22.5 + parent: 21002 - uid: 27062 components: - type: Transform @@ -33872,6 +35174,31 @@ entities: - type: Transform pos: 30.5,-10.5 parent: 21002 + - uid: 26470 + components: + - type: Transform + pos: 53.5,19.5 + parent: 21002 + - uid: 26481 + components: + - type: Transform + pos: 52.5,19.5 + parent: 21002 + - uid: 26488 + components: + - type: Transform + pos: 51.5,23.5 + parent: 21002 + - uid: 26497 + components: + - type: Transform + pos: 50.5,24.5 + parent: 21002 + - uid: 26498 + components: + - type: Transform + pos: 50.5,23.5 + parent: 21002 - uid: 26500 components: - type: Transform @@ -34269,6 +35596,26 @@ entities: - type: Transform pos: 57.5,25.5 parent: 21002 + - uid: 26429 + components: + - type: Transform + pos: 56.5,25.5 + parent: 21002 + - uid: 26430 + components: + - type: Transform + pos: 56.5,24.5 + parent: 21002 + - uid: 26442 + components: + - type: Transform + pos: 55.5,23.5 + parent: 21002 + - uid: 26454 + components: + - type: Transform + pos: 54.5,23.5 + parent: 21002 - uid: 26535 components: - type: Transform @@ -35942,6 +37289,12 @@ entities: rot: 1.5707963267948966 rad pos: 26.5,-37.5 parent: 2 + - uid: 29723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-39.5 + parent: 2 - proto: BarricadeDirectional entities: - uid: 19063 @@ -36256,11 +37609,6 @@ entities: - type: Transform pos: -21.5,-29.5 parent: 2 - - uid: 25723 - components: - - type: Transform - pos: 54.5,25.5 - parent: 21002 - proto: BedsheetMime entities: - uid: 2272 @@ -36371,6 +37719,30 @@ entities: parent: 2 - proto: BenchComfy entities: + - uid: 4300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - uid: 4301 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 7436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - uid: 7797 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 - uid: 13143 components: - type: Transform @@ -37402,43 +38774,6 @@ entities: - type: Transform pos: -19.495714,58.473736 parent: 2 -- proto: BoxEnvelope - entities: - - uid: 29781 - components: - - type: Transform - pos: 20.457523,-22.344183 - parent: 2 - - uid: 29782 - components: - - type: Transform - pos: 23.447105,-19.38585 - parent: 2 - - uid: 29783 - components: - - type: Transform - pos: 22.947105,-19.38585 - parent: 2 - - uid: 29784 - components: - - type: Transform - pos: 20.457523,-21.937933 - parent: 2 - - uid: 29789 - components: - - type: Transform - pos: 15.718823,-21.078503 - parent: 2 - - uid: 29790 - components: - - type: Transform - pos: 15.437573,-21.078503 - parent: 2 - - uid: 29791 - components: - - type: Transform - pos: 15.437573,-21.078503 - parent: 2 - proto: BoxFlare entities: - uid: 29643 @@ -37851,33 +39186,17 @@ entities: - uid: 3061 components: - type: Transform - parent: 3055 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: 22.454304,-4.4470134 + parent: 2 - uid: 3062 components: - type: Transform - parent: 3055 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxLighttubeHoliday - entities: - - uid: 9677 - components: - - type: Transform - pos: 22.321835,-4.544016 + pos: 22.735554,-4.3220134 parent: 2 - uid: 28351 components: - type: Transform - pos: 22.571835,-4.450266 - parent: 2 - - uid: 29719 - components: - - type: Transform - pos: 22.83225,-4.2523494 + pos: 22.655878,-4.524885 parent: 2 - proto: BoxMouthSwab entities: @@ -38075,11 +39394,11 @@ entities: parent: 2 - proto: ButtonFrameExit entities: - - uid: 708 + - uid: 29783 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-50.5 + rot: 3.141592653589793 rad + pos: -11.5,-37.5 parent: 2 - proto: ButtonFrameGrey entities: @@ -39008,11 +40327,6 @@ entities: - type: Transform pos: -25.5,-17.5 parent: 2 - - uid: 1843 - components: - - type: Transform - pos: -25.5,-17.5 - parent: 2 - uid: 1844 components: - type: Transform @@ -69668,6 +70982,20 @@ entities: rot: 1.5707963267948966 rad pos: 24.853247,-7.876135 parent: 2 +- proto: CandleBlue + entities: + - uid: 23366 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 13.691639,14.214562 + parent: 2 + - uid: 23367 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 14.254139,14.047895 + parent: 2 - proto: CandleRedInfinite entities: - uid: 983 @@ -69714,13 +71042,6 @@ entities: rot: 3.141592653589793 rad pos: 22.854074,-14.566754 parent: 2 -- proto: Cane - entities: - - uid: 678 - components: - - type: Transform - pos: -34.42884,-51.476437 - parent: 2 - proto: CannabisSeeds entities: - uid: 22742 @@ -70201,21 +71522,6 @@ entities: parent: 2 - proto: CarpetBlue entities: - - uid: 366 - components: - - type: Transform - pos: 15.5,12.5 - parent: 2 - - uid: 372 - components: - - type: Transform - pos: 12.5,12.5 - parent: 2 - - uid: 471 - components: - - type: Transform - pos: 12.5,15.5 - parent: 2 - uid: 2676 components: - type: Transform @@ -70378,11 +71684,6 @@ entities: - type: Transform pos: -19.5,-3.5 parent: 2 - - uid: 23370 - components: - - type: Transform - pos: 15.5,15.5 - parent: 2 - proto: CarpetChapel entities: - uid: 773 @@ -70475,13 +71776,13 @@ entities: - uid: 915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-19.5 + pos: 20.5,-20.5 parent: 2 - uid: 916 components: - type: Transform - pos: 20.5,-20.5 + rot: 3.141592653589793 rad + pos: 21.5,-19.5 parent: 2 - uid: 919 components: @@ -70575,28 +71876,6 @@ entities: - type: Transform pos: 19.5,-22.5 parent: 2 -- proto: CarpetCyan - entities: - - uid: 371 - components: - - type: Transform - pos: 13.5,13.5 - parent: 2 - - uid: 470 - components: - - type: Transform - pos: 14.5,13.5 - parent: 2 - - uid: 709 - components: - - type: Transform - pos: 13.5,14.5 - parent: 2 - - uid: 19183 - components: - - type: Transform - pos: 14.5,14.5 - parent: 2 - proto: CarpetGreen entities: - uid: 714 @@ -71472,20 +72751,53 @@ entities: parent: 2 - proto: CarpetSBlue entities: + - uid: 366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,14.5 + parent: 2 - uid: 367 components: - type: Transform + rot: 3.141592653589793 rad pos: 12.5,13.5 parent: 2 - - uid: 469 + - uid: 368 components: - type: Transform - pos: 13.5,15.5 + rot: 3.141592653589793 rad + pos: 13.5,14.5 parent: 2 - - uid: 710 + - uid: 369 components: - type: Transform - pos: 14.5,15.5 + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 2 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 2 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,13.5 + parent: 2 + - uid: 372 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 2 + - uid: 373 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,13.5 parent: 2 - uid: 1562 components: @@ -71602,31 +72914,6 @@ entities: - type: Transform pos: 25.5,13.5 parent: 2 - - uid: 19182 - components: - - type: Transform - pos: 12.5,14.5 - parent: 2 - - uid: 19184 - components: - - type: Transform - pos: 15.5,13.5 - parent: 2 - - uid: 23371 - components: - - type: Transform - pos: 15.5,14.5 - parent: 2 - - uid: 23413 - components: - - type: Transform - pos: 14.5,12.5 - parent: 2 - - uid: 23414 - components: - - type: Transform - pos: 13.5,12.5 - parent: 2 - proto: CarrotSeeds entities: - uid: 22759 @@ -75449,17 +76736,6 @@ entities: rot: 3.141592653589793 rad pos: -4.5,14.5 parent: 2 - - uid: 1186 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,17.5 - parent: 2 - - uid: 1573 - components: - - type: Transform - pos: -12.5,17.5 - parent: 2 - uid: 2232 components: - type: Transform @@ -75509,11 +76785,6 @@ entities: - type: Transform pos: 41.5,-39.5 parent: 2 - - uid: 6027 - components: - - type: Transform - pos: -13.5,17.5 - parent: 2 - uid: 8879 components: - type: Transform @@ -75710,12 +76981,6 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-31.5 parent: 21002 - - uid: 29049 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,16.5 - parent: 2 - proto: ChairFolding entities: - uid: 4295 @@ -76179,17 +77444,6 @@ entities: parent: 2 - proto: ChairWood entities: - - uid: 370 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.550555,13.863621 - parent: 2 - - uid: 373 - components: - - type: Transform - pos: 15.602639,14.905288 - parent: 2 - uid: 483 components: - type: Transform @@ -76400,11 +77654,10 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,-38.5 parent: 2 - - uid: 23372 + - uid: 19169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.352639,12.728205 + pos: -30.5,-49.5 parent: 2 - uid: 23851 components: @@ -76626,18 +77879,6 @@ entities: rot: 3.141592653589793 rad pos: 10.137915,37.803234 parent: 2 -- proto: CigaretteIpecac - entities: - - uid: 677 - components: - - type: Transform - pos: 15.48577,12.404148 - parent: 2 - - uid: 29754 - components: - - type: Transform - pos: 24.674242,16.916597 - parent: 2 - proto: CigaretteSpent entities: - uid: 11535 @@ -76732,41 +77973,6 @@ entities: - type: Transform pos: -5.5,22.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: - - 608 - - 607 - - 604 - - 476 - - 609 - - 610 - - 611 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: ClosetEmergencyFilledRandom entities: - uid: 3478 @@ -77071,8 +78277,8 @@ entities: immutable: False temperature: 293.14697 moles: - - 1.8968438 - - 7.1357465 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -77089,13 +78295,11 @@ entities: showEnts: False occludes: True ents: - - 3062 - - 3061 - - 3077 - - 3076 - - 3059 - - 3060 - 3075 + - 3060 + - 3059 + - 3076 + - 3077 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -77382,6 +78586,11 @@ entities: - type: Transform pos: 38.5,39.5 parent: 2 + - uid: 19168 + components: + - type: Transform + pos: -36.5,-49.5 + parent: 2 - uid: 23747 components: - type: Transform @@ -77601,6 +78810,13 @@ entities: - type: Transform pos: -11.381896,-50.376205 parent: 2 +- proto: ClothingHeadHatAnimalCat + entities: + - uid: 19173 + components: + - type: Transform + pos: -31.40513,-49.507557 + parent: 2 - proto: ClothingHeadHatBrownFlatcap entities: - uid: 2101 @@ -77664,6 +78880,16 @@ entities: - type: Transform pos: 35.71459,33.323654 parent: 2 + - uid: 29845 + components: + - type: Transform + pos: -21.763893,-39.780773 + parent: 2 + - uid: 29847 + components: + - type: Transform + pos: -21.763893,-39.145355 + parent: 2 - proto: ClothingHeadHatCowboyBountyHunter entities: - uid: 4019 @@ -77685,6 +78911,13 @@ entities: - type: Transform pos: 40.36555,-29.311775 parent: 2 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 19172 + components: + - type: Transform + pos: -31.34263,-50.09089 + parent: 2 - proto: ClothingHeadHatFez entities: - uid: 3133 @@ -77749,15 +78982,6 @@ entities: - type: Transform pos: 19.531092,-8.031752 parent: 2 -- proto: ClothingHeadHatJester - entities: - - uid: 29721 - components: - - type: Transform - parent: 2258 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingHeadHatOrangesoftFlipped entities: - uid: 24232 @@ -77787,144 +79011,6 @@ entities: - type: Transform pos: -23.582691,21.820213 parent: 2 -- proto: ClothingHeadHatSantahat - entities: - - uid: 17704 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17707 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29722 - components: - - type: Transform - parent: 4810 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29724 - components: - - type: Transform - parent: 4284 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29727 - components: - - type: Transform - parent: 4285 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29728 - components: - - type: Transform - parent: 4286 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29730 - components: - - type: Transform - parent: 4287 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29733 - components: - - type: Transform - parent: 4288 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29735 - components: - - type: Transform - parent: 4289 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29737 - components: - - type: Transform - parent: 3733 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29739 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29740 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29741 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29742 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29743 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29744 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29745 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29746 - components: - - type: Transform - parent: 3510 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29750 - components: - - type: Transform - pos: 24.007574,14.62493 - parent: 2 - - uid: 29752 - components: - - type: Transform - pos: 8.4962225,-19.14951 - parent: 2 - proto: ClothingHeadHatSecsoft entities: - uid: 28509 @@ -77932,13 +79018,6 @@ entities: - type: Transform pos: 19.506287,-46.321068 parent: 21002 -- proto: ClothingHeadHatTophat - entities: - - uid: 25698 - components: - - type: Transform - pos: -34.607437,-51.299355 - parent: 2 - proto: ClothingHeadHatWatermelon entities: - uid: 19136 @@ -78097,6 +79176,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingNeckTieRed + entities: + - uid: 19183 + components: + - type: Transform + pos: -34.49993,-49.359425 + parent: 2 - proto: ClothingOuterArmorBulletproof entities: - uid: 4261 @@ -78143,6 +79229,13 @@ entities: - type: Transform pos: 32.51363,-25.606247 parent: 2 +- proto: ClothingOuterCoatDetectiveLoadout + entities: + - uid: 19186 + components: + - type: Transform + pos: -33.359306,-49.4063 + parent: 2 - proto: ClothingOuterCoatExpensive entities: - uid: 24200 @@ -78171,6 +79264,12 @@ entities: - type: Transform pos: -36.5237,-64.52039 parent: 2 + - uid: 29827 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,-40.5 + parent: 2 - proto: ClothingOuterRobesJudge entities: - uid: 3517 @@ -78179,64 +79278,6 @@ entities: parent: 3516 - type: Physics canCollide: False -- proto: ClothingOuterSanta - entities: - - uid: 29723 - components: - - type: Transform - parent: 4810 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29725 - components: - - type: Transform - parent: 4284 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29726 - components: - - type: Transform - parent: 4285 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29729 - components: - - type: Transform - parent: 4286 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29732 - components: - - type: Transform - parent: 4287 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29734 - components: - - type: Transform - parent: 4288 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29736 - components: - - type: Transform - parent: 4289 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29738 - components: - - type: Transform - parent: 3733 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: ClothingOuterSuitChicken entities: - uid: 21003 @@ -78371,6 +79412,13 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 19184 + components: + - type: Transform + pos: -33.828056,-49.2813 + parent: 2 - proto: ClothingUniformJumpskirtPrisoner entities: - uid: 22413 @@ -78409,15 +79457,13 @@ entities: parent: 22424 - type: Physics canCollide: False -- proto: ClothingUniformJumpsuitJester +- proto: ClothingUniformJumpsuitDetective entities: - - uid: 29720 + - uid: 19185 components: - type: Transform - parent: 2258 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -33.828056,-49.31255 + parent: 2 - proto: ClothingUniformJumpsuitMonasticRobeDark entities: - uid: 8698 @@ -78542,16 +79588,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 26470 - components: - - type: Transform - pos: 53.157196,25.971893 - parent: 21002 - - uid: 26476 - components: - - type: Transform - pos: 53.750946,25.961475 - parent: 21002 - proto: Cobweb1 entities: - uid: 2183 @@ -78588,6 +79624,28 @@ entities: rot: -1.5707963267948966 rad pos: 50.5,9.5 parent: 2 + - uid: 29822 + components: + - type: Transform + pos: -27.5,-38.5 + parent: 2 + - uid: 29824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-41.5 + parent: 2 + - uid: 29839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-41.5 + parent: 2 + - uid: 29841 + components: + - type: Transform + pos: -27.5,-39.5 + parent: 2 - proto: Cobweb2 entities: - uid: 2182 @@ -78605,6 +79663,29 @@ entities: - type: Transform pos: 44.5,23.5 parent: 2 + - uid: 29816 + components: + - type: Transform + pos: -23.5,-38.5 + parent: 2 + - uid: 29823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-41.5 + parent: 2 + - uid: 29826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,-38.5 + parent: 2 + - uid: 29840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,-40.5 + parent: 2 - proto: ComfyChair entities: - uid: 1044 @@ -78675,12 +79756,6 @@ entities: - type: Transform pos: 23.5,17.5 parent: 2 - - uid: 2525 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,16.5 - parent: 2 - uid: 2526 components: - type: Transform @@ -78711,24 +79786,12 @@ entities: rot: 3.141592653589793 rad pos: 24.5,13.5 parent: 2 - - uid: 2548 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,13.5 - parent: 2 - uid: 2549 components: - type: Transform rot: 3.141592653589793 rad pos: 23.5,13.5 parent: 2 - - uid: 2550 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,13.5 - parent: 2 - uid: 2665 components: - type: Transform @@ -79187,6 +80250,11 @@ entities: rot: 3.141592653589793 rad pos: -6.5,15.5 parent: 21002 + - uid: 29784 + components: + - type: Transform + pos: -56.5,-16.5 + parent: 2 - proto: ComputerResearchAndDevelopment entities: - uid: 9892 @@ -80093,8 +81161,8 @@ entities: immutable: False temperature: 234.99821 moles: - - 1.8968438 - - 7.1357465 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -80119,9 +81187,6 @@ entities: - 5646 - 1580 - 1595 - - 673 - - 672 - - 674 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -80136,14 +81201,33 @@ entities: - type: Transform pos: -20.5,3.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: EntityStorage air: volume: 200 immutable: False - temperature: 293.14777 + temperature: 75.31249 moles: - - 1.7459903 - - 6.568249 - 0 - 0 - 0 @@ -80154,37 +81238,12 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 29226 - - 29232 - - 29227 - - 29229 - - 29228 - - 9338 - - 9336 - - 9337 - - 9335 - - 29237 - - 9339 - - 29231 - - 29225 - - 29234 - - 29224 - - 29233 - - 29236 - - 29235 - - 29238 - - 29239 - - 29230 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null + - 0 + - 0 + open: True + removedMasks: 20 + - type: PlaceableSurface + isPlaceable: True - uid: 10269 components: - type: Transform @@ -80333,19 +81392,19 @@ entities: - type: Transform pos: 31.5,-41.5 parent: 2 -- proto: CrateNPCHamlet +- proto: CrateNPCGoose entities: - - uid: 29411 + - uid: 3950 components: - type: Transform - pos: 20.5,5.5 + pos: 7.5,-37.5 parent: 2 -- proto: CrateNPCParrot +- proto: CrateNPCHamlet entities: - - uid: 675 + - uid: 29411 components: - type: Transform - pos: 7.5,-37.5 + pos: 20.5,5.5 parent: 2 - proto: CratePermaEscapeSpawner entities: @@ -80359,16 +81418,6 @@ entities: - type: Transform pos: 57.5,-1.5 parent: 21002 - - uid: 26443 - components: - - type: Transform - pos: 52.5,25.5 - parent: 21002 - - uid: 26452 - components: - - type: Transform - pos: 52.5,24.5 - parent: 21002 - uid: 26523 components: - type: Transform @@ -80672,44 +81721,6 @@ entities: - type: Transform pos: 42.5,-9.5 parent: 2 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14673 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 17704 - - 17707 - - 29739 - - 29740 - - 29741 - - 29742 - - 29743 - - 29744 - - 29745 - - 29746 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: CrateStoneGrave entities: - uid: 1266 @@ -81094,18 +82105,6 @@ entities: - type: Transform pos: -47.437134,-23.804716 parent: 2 -- proto: DecoratedFirTree - entities: - - uid: 22999 - components: - - type: Transform - pos: -5.5,11.5 - parent: 2 - - uid: 26511 - components: - - type: Transform - pos: 16.5,-2.5 - parent: 21002 - proto: DefaultStationBeacon entities: - uid: 11587 @@ -82125,12 +83124,6 @@ entities: rot: 1.5707963267948966 rad pos: -36.5,-2.5 parent: 2 - - uid: 29777 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-23.5 - parent: 2 - proto: DisposalJunction entities: - uid: 1202 @@ -82932,6 +83925,12 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,33.5 parent: 2 + - uid: 14911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 2 - uid: 15506 components: - type: Transform @@ -86993,12 +87992,6 @@ entities: rot: 1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 - - uid: 17628 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-0.5 - parent: 2 - uid: 17629 components: - type: Transform @@ -87394,6 +88387,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-22.5 parent: 2 + - uid: 17704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-23.5 + parent: 2 - uid: 17705 components: - type: Transform @@ -87406,6 +88405,12 @@ entities: rot: 3.141592653589793 rad pos: 0.5,-25.5 parent: 2 + - uid: 17707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-26.5 + parent: 2 - uid: 17708 components: - type: Transform @@ -88577,141 +89582,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,31.5 parent: 2 - - uid: 29748 - components: - - type: Transform - pos: 0.5,-26.5 - parent: 2 - - uid: 29757 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-23.5 - parent: 2 - - uid: 29758 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 2 - - uid: 29759 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-23.5 - parent: 2 - - uid: 29760 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-23.5 - parent: 2 - - uid: 29761 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,-23.5 - parent: 2 - - uid: 29762 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-23.5 - parent: 2 - - uid: 29763 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 2 - - uid: 29764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,-23.5 - parent: 2 - - uid: 29765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-23.5 - parent: 2 - - uid: 29766 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-23.5 - parent: 2 - - uid: 29767 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 2 - - uid: 29768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,-23.5 - parent: 2 - - uid: 29769 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-23.5 - parent: 2 - - uid: 29770 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-23.5 - parent: 2 - - uid: 29771 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-23.5 - parent: 2 - - uid: 29772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-23.5 - parent: 2 - - uid: 29773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-23.5 - parent: 2 - - uid: 29774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 - parent: 2 - - uid: 29775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-23.5 - parent: 2 - - uid: 29776 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-23.5 - parent: 2 - - uid: 29779 - components: - - type: Transform - pos: 21.5,-21.5 - parent: 2 - - uid: 29780 - components: - - type: Transform - pos: 21.5,-22.5 - parent: 2 - proto: DisposalRouter entities: - uid: 16559 @@ -88735,7 +89605,6 @@ entities: - Chemistry - Robotics - Science - - Chapel - uid: 16561 components: - type: Transform @@ -88852,15 +89721,6 @@ entities: - type: DisposalRouter tags: - Cargo - - uid: 29747 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-23.5 - parent: 2 - - type: DisposalRouter - tags: - - Chapel - proto: DisposalRouterFlipped entities: - uid: 15510 @@ -89315,11 +90175,6 @@ entities: - type: Transform pos: 11.5,34.5 parent: 2 - - uid: 29778 - components: - - type: Transform - pos: 21.5,-20.5 - parent: 2 - proto: DisposalUnit entities: - uid: 434 @@ -90005,45 +90860,33 @@ entities: - uid: 29228 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.644224,3.4633021 + parent: 2 - uid: 29229 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.373392,3.4320521 + parent: 2 - uid: 29230 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.269224,3.473719 + parent: 2 - uid: 29231 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.508808,3.5258021 + parent: 2 - uid: 29232 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.550474,3.4633021 + parent: 2 - uid: 29233 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.477558,3.3695521 + parent: 2 - proto: DrinkBottleBeer entities: - uid: 23755 @@ -90070,15 +90913,19 @@ entities: - type: Transform pos: 38.62831,16.89455 parent: 2 + - uid: 23370 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 13.983306,14.287479 + parent: 2 - proto: DrinkCoconutWaterCarton entities: - uid: 29234 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.467142,3.5466356 + parent: 2 - proto: DrinkCognacBottleFull entities: - uid: 23228 @@ -90093,22 +90940,13 @@ entities: - type: Transform pos: -37.570995,-44.208107 parent: 2 -- proto: DrinkCreamCarton +- proto: DrinkDetFlask entities: - - uid: 799 - components: - - type: Transform - parent: 794 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 1270 + - uid: 19174 components: - type: Transform - parent: 794 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -31.531183,-50.453175 + parent: 2 - proto: DrinkDrGibbCan entities: - uid: 28307 @@ -90133,17 +90971,13 @@ entities: - uid: 29224 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.540058,3.4008021 + parent: 2 - uid: 29226 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.696308,3.4945521 + parent: 2 - proto: DrinkFlask entities: - uid: 23421 @@ -90179,17 +91013,13 @@ entities: - uid: 29225 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.467142,3.5466356 + parent: 2 - uid: 29227 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.227558,3.3278856 + parent: 2 - proto: DrinkGildlagerBottleFull entities: - uid: 10386 @@ -90324,48 +91154,12 @@ entities: - uid: 29236 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 29237 - components: - - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkHotCoco - entities: - - uid: 676 - components: - - type: Transform - pos: -21.261883,9.235521 - parent: 2 - - uid: 699 - components: - - type: Transform - pos: -21.2098,10.298021 - parent: 2 - - uid: 700 - components: - - type: Transform - pos: -21.220217,9.714688 - parent: 2 - - uid: 21775 - components: - - type: Transform - pos: -17.519993,5.520746 - parent: 2 - - uid: 21776 - components: - - type: Transform - pos: -17.53041,8.541579 + pos: -20.310892,3.7028856 parent: 2 - - uid: 21777 + - uid: 29237 components: - type: Transform - pos: -17.46791,7.5728292 + pos: -20.487974,3.4841356 parent: 2 - proto: DrinkIceBucket entities: @@ -90379,17 +91173,13 @@ entities: - uid: 29238 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.529642,3.6716356 + parent: 2 - uid: 29239 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.633808,3.536219 + parent: 2 - proto: DrinkJar entities: - uid: 2398 @@ -90463,19 +91253,15 @@ entities: - uid: 9339 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.5,3.5 + parent: 2 - proto: DrinkJuiceTomatoCarton entities: - uid: 9337 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.5,3.5 + parent: 2 - proto: DrinkLithiumFlask entities: - uid: 2098 @@ -90494,25 +91280,6 @@ entities: parent: 2 - proto: DrinkMilkCarton entities: - - uid: 704 - components: - - type: Transform - pos: -32.464886,-49.304474 - parent: 2 - - uid: 795 - components: - - type: Transform - parent: 794 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 796 - components: - - type: Transform - parent: 794 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 3398 components: - type: Transform @@ -90551,17 +91318,13 @@ entities: - uid: 9335 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.5,3.5 + parent: 2 - uid: 9336 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.5,3.5 + parent: 2 - proto: DrinkMopwataBottleRandom entities: - uid: 42 @@ -90592,13 +91355,6 @@ entities: parent: 21002 - proto: DrinkOatMilkCarton entities: - - uid: 4301 - components: - - type: Transform - parent: 3950 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 5280 components: - type: Transform @@ -90613,20 +91369,11 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 7436 - components: - - type: Transform - parent: 3950 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 9338 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.5,3.5 + parent: 2 - proto: DrinkPatronBottleFull entities: - uid: 23231 @@ -90752,22 +91499,6 @@ entities: - type: Transform pos: -37.258495,-44.176857 parent: 2 -- proto: DrinkSoyMilkCarton - entities: - - uid: 4300 - components: - - type: Transform - parent: 3950 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7797 - components: - - type: Transform - parent: 3950 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: DrinkTequilaBottleFull entities: - uid: 7684 @@ -90796,6 +91527,16 @@ entities: parent: 2 - proto: DrinkVodkaBottleFull entities: + - uid: 19170 + components: + - type: Transform + pos: -30.46763,-50.21589 + parent: 2 + - uid: 19171 + components: + - type: Transform + pos: -30.884296,-50.14297 + parent: 2 - uid: 23230 components: - type: Transform @@ -90915,10 +91656,8 @@ entities: - uid: 29235 components: - type: Transform - parent: 9334 - - type: Physics - canCollide: False - - type: InsideEntityStorage + pos: -20.644224,3.5466356 + parent: 2 - proto: DrinkWineGlass entities: - uid: 23356 @@ -90931,6 +91670,16 @@ entities: - type: Transform pos: 38.25496,16.711338 parent: 2 + - uid: 23371 + components: + - type: Transform + pos: 13.452056,14.016645 + parent: 2 + - uid: 23372 + components: + - type: Transform + pos: 14.535389,14.214562 + parent: 2 - proto: Eggshells entities: - uid: 19085 @@ -92253,6 +93002,11 @@ entities: - type: Transform pos: -6.5,-54.5 parent: 2 + - uid: 19178 + components: + - type: Transform + pos: -32.328056,-49.5 + parent: 2 - proto: filingCabinetRandom entities: - uid: 2692 @@ -92277,6 +93031,16 @@ entities: occludes: True ents: - 10837 + - uid: 19175 + components: + - type: Transform + pos: -35.203056,-49.5 + parent: 2 + - uid: 19176 + components: + - type: Transform + pos: -35.96868,-49.5 + parent: 2 - uid: 29260 components: - type: Transform @@ -92315,6 +93079,13 @@ entities: ents: - 29262 - 15048 +- proto: filingCabinetTall + entities: + - uid: 19177 + components: + - type: Transform + pos: -35.609306,-49.5 + parent: 2 - proto: filingCabinetTallRandom entities: - uid: 2104 @@ -94726,7 +95497,7 @@ entities: pos: -13.5,-1.5 parent: 2 - type: Door - secondsUntilStateChange: -103926.49 + secondsUntilStateChange: -102033.94 - type: DeviceNetwork deviceLists: - 18275 @@ -95941,7 +96712,6 @@ entities: - 18246 - 18247 - 18662 - - 18663 - uid: 18252 components: - type: Transform @@ -95952,7 +96722,6 @@ entities: - 18246 - 18247 - 18662 - - 18663 - uid: 18260 components: - type: Transform @@ -96155,6 +96924,7 @@ entities: deviceLists: - 18367 - 18366 + - 29888 - uid: 18360 components: - type: Transform @@ -96165,6 +96935,7 @@ entities: deviceLists: - 18367 - 18366 + - 29888 - uid: 18361 components: - type: Transform @@ -96888,7 +97659,6 @@ entities: - 18607 - 18606 - 18604 - - 18603 - uid: 18609 components: - type: Transform @@ -97102,6 +97872,7 @@ entities: deviceLists: - 18699 - 18697 + - 29800 - uid: 20660 components: - type: Transform @@ -97378,16 +98149,6 @@ entities: - type: Transform pos: -4.5,-56.5 parent: 2 - - uid: 23954 - components: - - type: Transform - pos: -33.5,-49.5 - parent: 2 - - uid: 26467 - components: - - type: Transform - pos: 53.5,26.5 - parent: 21002 - proto: Flash entities: - uid: 29418 @@ -97486,131 +98247,213 @@ entities: parent: 2 - type: Fixtures fixtures: {} -- proto: FloraTreeChristmas02 +- proto: FloorWaterEntity entities: - - uid: 368 + - uid: 469 components: - type: Transform - pos: 14.0161085,13.966308 + pos: 8.5,-7.5 parent: 2 - - type: Fixtures - fixtures: - fix1: - shape: !type:PolygonShape - radius: 0.01 - vertices: - - -0.6,0 - - 0.6,0 - - 0.6,0.90000004 - - -0.6,0.90000004 - mask: [] - layer: - - Impassable - - TableLayer - - HighImpassable - - LowImpassable - - BulletImpassable - - InteractImpassable - - Opaque - density: 4500 - hard: True - restitution: 0 - friction: 0.4 - - type: ScaleVisuals - - type: Appearance -- proto: FloraTreeConifer - entities: - - uid: 19176 + - uid: 470 components: - type: Transform - pos: 7.0421615,14.648008 + pos: 7.5,-7.5 parent: 2 - - uid: 19177 + - uid: 471 components: - type: Transform - pos: 9.378188,-4.096496 + pos: 6.5,-7.5 parent: 2 - - uid: 19178 + - uid: 472 components: - type: Transform - pos: 7.4194474,6.70954 + pos: 6.5,-6.5 parent: 2 - - uid: 19179 + - uid: 473 components: - type: Transform - pos: 7.4194474,6.70954 + pos: 6.5,-5.5 parent: 2 - - uid: 19180 + - uid: 474 components: - type: Transform - pos: 4.352238,-8.432419 + pos: 7.5,-5.5 parent: 2 - - uid: 19181 + - uid: 475 components: - type: Transform - pos: 14.398615,8.594956 + pos: 8.5,-5.5 parent: 2 - - uid: 26508 + - uid: 476 components: - type: Transform - pos: 8.48288,-5.3548317 - parent: 21002 - - uid: 26509 + pos: 8.5,-6.5 + parent: 2 + - uid: 668 components: - type: Transform - pos: 7.439621,3.8400307 - parent: 21002 - - uid: 26513 + rot: 1.5707963267948966 rad + pos: -12.5,-14.5 + parent: 2 + - uid: 669 components: - type: Transform - pos: 22.109192,5.674118 - parent: 21002 -- proto: FloraTreeSnow - entities: - - uid: 19171 + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 670 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5474405,-12.275735 + pos: -13.5,-14.5 parent: 2 - - uid: 19172 + - uid: 671 components: - type: Transform - pos: -4.1702504,-6.317836 + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 parent: 2 - - uid: 19173 + - uid: 672 components: - type: Transform - pos: 16.247799,-4.783996 + rot: 1.5707963267948966 rad + pos: -14.5,-13.5 parent: 2 - - uid: 19174 + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 + - uid: 674 components: - type: Transform - pos: -6.2223334,-4.161586 + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 parent: 2 - - uid: 19175 + - uid: 675 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.004216,-6.7445054 + pos: -13.5,-11.5 parent: 2 - - uid: 26506 + - uid: 792 components: - type: Transform - pos: 26.667542,-6.5239983 - parent: 21002 - - uid: 26507 + rot: 3.141592653589793 rad + pos: 15.5,-17.5 + parent: 2 + - uid: 793 components: - type: Transform - pos: 24.552963,-6.4198303 - parent: 21002 -- proto: FloraTreeStumpConifer + rot: 3.141592653589793 rad + pos: 14.5,-17.5 + parent: 2 + - uid: 794 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-17.5 + parent: 2 + - uid: 795 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 796 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-14.5 + parent: 2 + - uid: 797 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-13.5 + parent: 2 + - uid: 798 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 799 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 2 +- proto: FloraTree entities: - - uid: 369 + - uid: 699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.990485,-6.654935 + parent: 2 + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5666814,-12.321836 + parent: 2 + - uid: 701 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.082345,-4.3614655 + parent: 2 + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.0979695,-6.455215 + parent: 2 + - uid: 1270 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.7677953,-12.490192 + pos: 16.184713,-4.775162 + parent: 2 +- proto: FloraTreeLarge + entities: + - uid: 703 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.506318,-8.567612 + parent: 2 + - uid: 704 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.346696,-4.0470867 + parent: 2 + - uid: 707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.4804606,6.6058865 + parent: 2 + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.4804606,6.6058865 + parent: 2 + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.2074294,14.294214 + parent: 2 + - uid: 710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.426181,8.49734 parent: 2 - proto: FlyAmanitaSeeds entities: @@ -97671,30 +98514,8 @@ entities: - type: Transform pos: 9.572723,6.6391907 parent: 21002 -- proto: FoodBakedCookie - entities: - - uid: 25689 - components: - - type: Transform - pos: -35.839886,-49.325306 - parent: 2 - - uid: 25691 - components: - - type: Transform - pos: -36.01697,-49.471138 - parent: 2 - - uid: 25692 - components: - - type: Transform - pos: -35.64197,-49.533638 - parent: 2 - proto: FoodBakedCookieOatmeal entities: - - uid: 19170 - components: - - type: Transform - pos: -36.51697,-49.366974 - parent: 2 - uid: 23380 components: - type: Transform @@ -97725,52 +98546,6 @@ entities: - type: Transform pos: -37.435577,-43.624775 parent: 2 - - uid: 25680 - components: - - type: Transform - pos: -36.621136,-49.575306 - parent: 2 -- proto: FoodBakedCookieRaisin - entities: - - uid: 475 - components: - - type: Transform - pos: -32.365147,-51.49787 - parent: 2 - - uid: 707 - components: - - type: Transform - pos: -32.82348,-51.41454 - parent: 2 - - uid: 23415 - components: - - type: Transform - pos: -32.51098,-51.393703 - parent: 2 -- proto: FoodBakedCookieSugar - entities: - - uid: 669 - components: - - type: Transform - pos: -33.59431,-51.206203 - parent: 2 - - uid: 792 - components: - - type: Transform - pos: -33.396397,-51.37287 - parent: 2 - - uid: 25683 - components: - - type: Transform - pos: -33.60473,-51.49787 - parent: 2 -- proto: FoodBerries - entities: - - uid: 1187 - components: - - type: Transform - pos: -16.478548,17.50465 - parent: 2 - proto: FoodBowlBig entities: - uid: 23405 @@ -97790,6 +98565,14 @@ entities: - type: Transform pos: 30.532213,-11.218129 parent: 2 +- proto: FoodBreadBaguette + entities: + - uid: 23368 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 13.504139,14.672895 + parent: 2 - proto: FoodBungo entities: - uid: 29191 @@ -97804,62 +98587,6 @@ entities: - type: Transform pos: 51.50141,22.597155 parent: 2 -- proto: FoodButter - entities: - - uid: 672 - components: - - type: Transform - parent: 488 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 673 - components: - - type: Transform - parent: 488 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 797 - components: - - type: Transform - parent: 794 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 798 - components: - - type: Transform - parent: 794 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodCakeChristmas - entities: - - uid: 674 - components: - - type: Transform - parent: 488 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodCakeChristmasSlice - entities: - - uid: 19169 - components: - - type: Transform - pos: 12.787853,13.347418 - parent: 2 - - uid: 19185 - components: - - type: Transform - pos: 15.92327,14.462002 - parent: 2 - - uid: 25667 - components: - - type: Transform - pos: 12.787853,13.347418 - parent: 2 - proto: FoodCartCold entities: - uid: 343 @@ -97876,6 +98603,14 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,20.5 parent: 2 +- proto: FoodCheeseSlice + entities: + - uid: 23369 + components: + - type: Transform + rot: 18.84955592153876 rad + pos: 14.493722,13.735395 + parent: 2 - proto: FoodCondimentBottleEnzyme entities: - uid: 3399 @@ -97906,18 +98641,6 @@ entities: - type: Transform pos: 13.403409,29.562233 parent: 2 -- proto: FoodDoughPastryBase - entities: - - uid: 25696 - components: - - type: Transform - pos: -34.61072,-49.273224 - parent: 2 - - uid: 25697 - components: - - type: Transform - pos: -34.444054,-49.481556 - parent: 2 - proto: FoodFrozenPopsicleJumbo entities: - uid: 1579 @@ -98044,18 +98767,18 @@ entities: - type: Transform pos: 4.5200243,-54.48497 parent: 2 -- proto: FoodPlateSmallPlastic - entities: - - uid: 472 + - uid: 23364 components: - type: Transform - pos: 15.92327,14.477064 + pos: 13.597889,13.735395 parent: 2 - - uid: 473 + - uid: 23365 components: - type: Transform - pos: 12.787853,13.352064 + pos: 14.399972,14.568729 parent: 2 +- proto: FoodPlateSmallPlastic + entities: - uid: 2249 components: - type: Transform @@ -98105,29 +98828,6 @@ entities: - type: Transform pos: 23.980179,16.619486 parent: 2 -- proto: FoodSnackChocolate - entities: - - uid: 701 - components: - - type: Transform - parent: 487 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 702 - components: - - type: Transform - parent: 487 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 703 - components: - - type: Transform - parent: 487 - - type: Physics - canCollide: False - - type: InsideEntityStorage - proto: FoodSnackPistachios entities: - uid: 3596 @@ -98137,27 +98837,6 @@ entities: parent: 2 - proto: FoodSnackRaisins entities: - - uid: 476 - components: - - type: Transform - parent: 7795 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 607 - components: - - type: Transform - parent: 7795 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 608 - components: - - type: Transform - parent: 7795 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 23377 components: - type: Transform @@ -98180,6 +98859,13 @@ entities: - type: Transform pos: -31.419064,-45.393246 parent: 2 +- proto: FoodSoupVegetable + entities: + - uid: 19180 + components: + - type: Transform + pos: -34.484306,-51.296925 + parent: 2 - proto: FoodWatermelon entities: - uid: 19149 @@ -99140,6 +99826,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13154 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13240 components: - type: Transform @@ -99219,14 +99912,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 13706 components: - type: Transform @@ -99447,14 +100132,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13897 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 13898 components: - type: Transform @@ -99599,14 +100276,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-3.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 13942 components: - type: Transform @@ -99965,14 +100634,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14849 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14874 components: - type: Transform @@ -100152,14 +100813,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15397 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15446 components: - type: Transform @@ -100702,6 +101355,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 18461 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 18736 components: - type: Transform @@ -100758,16 +101419,6 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,23.5 parent: 2 - - uid: 22036 - components: - - type: Transform - anchored: False - rot: -1.5707963267948966 rad - pos: -32.5,23.5 - parent: 2 - - type: Physics - canCollide: True - bodyType: Dynamic - uid: 22199 components: - type: Transform @@ -100845,14 +101496,6 @@ entities: - type: Transform pos: -32.5,27.5 parent: 2 - - uid: 23528 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-15.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 23532 components: - type: Transform @@ -100962,14 +101605,6 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 25516 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-10.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 25559 components: - type: Transform @@ -101120,13 +101755,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#947507FF' - - uid: 28975 - components: - - type: Transform - pos: -8.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 29690 components: - type: Transform @@ -101157,6 +101785,37 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 29729 + components: + - type: Transform + pos: -9.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29736 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29875 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 29878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeFourway entities: - uid: 666 @@ -101502,6 +102161,36 @@ entities: parent: 21002 - type: AtmosPipeColor color: '#FF1212FF' +- proto: GasPipeSensorDistribution + entities: + - uid: 15414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' +- proto: GasPipeSensorMixedAir + entities: + - uid: 13668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' +- proto: GasPipeSensorWaste + entities: + - uid: 15402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -23.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - proto: GasPipeStraight entities: - uid: 46 @@ -101550,13 +102239,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 231 - components: - - type: Transform - pos: -19.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 253 components: - type: Transform @@ -101903,14 +102585,6 @@ entities: rot: -1.5707963267948966 rad pos: -17.5,51.5 parent: 2 - - uid: 8162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,33.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 8167 components: - type: Transform @@ -101919,14 +102593,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 8179 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 8181 components: - type: Transform @@ -107737,14 +108403,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-13.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13894 components: - type: Transform @@ -107796,13 +108454,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 13925 - components: - - type: Transform - pos: 14.5,-2.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 13926 components: - type: Transform @@ -112597,6 +113248,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-49.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 14851 components: - type: Transform @@ -112621,14 +113280,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14854 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14855 components: - type: Transform @@ -112665,7 +113316,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-43.5 + pos: -9.5,17.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -112717,6 +113368,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 14869 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 14870 components: - type: Transform @@ -112994,13 +113653,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 14911 - components: - - type: Transform - pos: 14.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 14912 components: - type: Transform @@ -115311,7 +115963,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-49.5 + pos: 6.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' @@ -115459,6 +116111,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 15397 + components: + - type: Transform + pos: -19.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 15398 components: - type: Transform @@ -120846,6 +121505,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 20980 + components: + - type: Transform + pos: -9.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 21142 components: - type: Transform @@ -122774,14 +123440,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 28438 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 28451 components: - type: Transform @@ -123131,14 +123789,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 28974 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,17.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 29684 components: - type: Transform @@ -123264,6 +123914,53 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 29728 + components: + - type: Transform + pos: -9.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29730 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29731 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29733 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29735 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPipeTJunction entities: - uid: 17 @@ -123857,18 +124554,57 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13151 + - uid: 12889 components: - type: Transform - pos: -31.5,1.5 + rot: 1.5707963267948966 rad + pos: -9.5,13.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 13154 + - uid: 12934 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-0.5 + pos: 3.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 12935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 12938 + components: + - type: Transform + pos: -19.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13030 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 13151 + components: + - type: Transform + pos: -31.5,1.5 parent: 2 - type: AtmosPipeColor color: '#0335FCFF' @@ -124521,6 +125257,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 13897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 13905 components: - type: Transform @@ -124544,6 +125288,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 13925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 13932 + components: + - type: Transform + pos: 10.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 13939 components: - type: Transform @@ -125114,17 +125873,18 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-43.5 + pos: 15.5,-43.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14848 components: - type: Transform - pos: 6.5,-43.5 + rot: 1.5707963267948966 rad + pos: 14.5,-35.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' - uid: 14850 components: - type: Transform @@ -125339,10 +126099,10 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-44.5 + pos: -2.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' + color: '#FF1212FF' - uid: 15331 components: - type: Transform @@ -125384,10 +126144,10 @@ entities: components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-49.5 + pos: -4.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' - uid: 15385 components: - type: Transform @@ -125395,22 +126155,21 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 15391 + - uid: 15387 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-47.5 + pos: -15.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15402 + color: '#FF1212FF' + - uid: 15391 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-45.5 + pos: -20.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#FF1212FF' + color: '#0335FCFF' - uid: 15403 components: - type: Transform @@ -126312,6 +127071,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 29720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - proto: GasPort entities: - uid: 1675 @@ -126902,14 +127669,22 @@ entities: parent: 2 - type: GasValve open: False - - uid: 10182 + - uid: 13893 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,23.5 + pos: -24.5,23.5 parent: 2 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 14854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#0335FCFF' - uid: 23828 components: - type: Transform @@ -126920,14 +127695,6 @@ entities: open: False - type: AtmosPipeColor color: '#3AB334FF' - - uid: 28431 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,24.5 - parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - uid: 28605 components: - type: Transform @@ -127011,6 +127778,20 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29856 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 1186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-35.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18663 - type: AtmosPipeColor color: '#0335FCFF' - uid: 1597 @@ -127053,6 +127834,7 @@ entities: - type: DeviceNetwork deviceLists: - 28611 + - 29904 - type: AtmosPipeColor color: '#0335FCFF' - uid: 7348 @@ -127218,6 +128000,9 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,8.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29906 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13724 @@ -127226,6 +128011,9 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,13.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29905 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13736 @@ -127234,6 +128022,9 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29883 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13764 @@ -127331,6 +128122,9 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-35.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29912 - type: AtmosPipeColor color: '#0335FCFF' - uid: 13982 @@ -127346,6 +128140,9 @@ entities: - type: Transform pos: 3.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 28414 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14052 @@ -127354,6 +128151,9 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29842 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14055 @@ -127362,6 +128162,9 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29924 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14059 @@ -127370,6 +128173,9 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29925 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14075 @@ -127386,6 +128192,9 @@ entities: rot: 3.141592653589793 rad pos: 19.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29886 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14130 @@ -127394,6 +128203,9 @@ entities: rot: 1.5707963267948966 rad pos: 8.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29928 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14165 @@ -127402,6 +128214,9 @@ entities: rot: 3.141592653589793 rad pos: 32.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29888 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14166 @@ -127410,6 +128225,9 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29890 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14236 @@ -127483,6 +128301,7 @@ entities: - type: DeviceNetwork deviceLists: - 18650 + - 29870 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14391 @@ -127525,6 +128344,9 @@ entities: rot: 3.141592653589793 rad pos: 45.5,-38.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29894 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14513 @@ -127533,6 +128355,9 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29896 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14516 @@ -127552,6 +128377,7 @@ entities: - type: DeviceNetwork deviceLists: - 18658 + - 29868 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14530 @@ -127614,6 +128440,9 @@ entities: rot: 3.141592653589793 rad pos: 24.5,-49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29884 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14689 @@ -127666,7 +128495,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18480 + - 29802 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14765 @@ -127677,7 +128506,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18480 + - 29803 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14768 @@ -127728,6 +128557,10 @@ entities: rot: 1.5707963267948966 rad pos: 13.5,-30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29873 + - 18663 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14938 @@ -127736,6 +128569,9 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29874 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14952 @@ -127744,6 +128580,9 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29852 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14953 @@ -127752,6 +128591,9 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29773 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14961 @@ -127760,6 +128602,9 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-15.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29851 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14968 @@ -127779,6 +128624,9 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29853 - type: AtmosPipeColor color: '#0335FCFF' - uid: 14990 @@ -127787,6 +128635,9 @@ entities: rot: 3.141592653589793 rad pos: -37.5,-4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29849 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15028 @@ -127828,6 +128679,9 @@ entities: - type: Transform pos: -49.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29858 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15128 @@ -127857,6 +128711,9 @@ entities: rot: 3.141592653589793 rad pos: -31.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29938 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15157 @@ -127865,6 +128722,9 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,-25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29854 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15166 @@ -127889,6 +128749,9 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-39.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29911 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15246 @@ -127945,6 +128808,9 @@ entities: - type: Transform pos: -4.5,-41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 28882 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15337 @@ -127974,13 +128840,9 @@ entities: rot: 3.141592653589793 rad pos: -17.5,-48.5 parent: 2 - - type: AtmosPipeColor - color: '#0335FCFF' - - uid: 15415 - components: - - type: Transform - pos: -20.5,-46.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 29819 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15417 @@ -127989,6 +128851,9 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-47.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18460 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15419 @@ -128085,7 +128950,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18603 + - 29921 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15710 @@ -128095,8 +128960,6 @@ entities: pos: -27.5,-39.5 parent: 2 - type: DeviceNetwork - configurators: - - 10691 deviceLists: - 18691 - type: AtmosPipeColor @@ -128107,6 +128970,9 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29811 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15716 @@ -128167,6 +129033,9 @@ entities: rot: 1.5707963267948966 rad pos: -12.5,-25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29918 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15811 @@ -128175,6 +129044,9 @@ entities: rot: -1.5707963267948966 rad pos: -6.5,-29.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29917 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15813 @@ -128215,6 +129087,9 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-22.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29800 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15898 @@ -128235,7 +129110,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18697 + - 12885 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15900 @@ -128245,7 +129120,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18697 + - 29932 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15901 @@ -128256,7 +129131,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18697 + - 29933 - type: AtmosPipeColor color: '#0335FCFF' - uid: 15912 @@ -128265,9 +129140,6 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 18697 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16030 @@ -128342,6 +129214,9 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29861 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16136 @@ -128350,6 +129225,9 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29860 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16149 @@ -128380,6 +129258,9 @@ entities: rot: 3.141592653589793 rad pos: -11.5,33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29859 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16237 @@ -128399,6 +129280,9 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,26.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29806 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16262 @@ -128409,7 +129293,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10655 + - 29805 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16285 @@ -128450,6 +129334,9 @@ entities: - type: Transform pos: 34.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29902 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16346 @@ -128460,7 +129347,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10285 + - 29789 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16357 @@ -128469,6 +129356,9 @@ entities: rot: 3.141592653589793 rad pos: 31.5,32.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29792 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16401 @@ -128509,6 +129399,9 @@ entities: - type: Transform pos: 4.5,47.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29900 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16448 @@ -128516,6 +129409,9 @@ entities: - type: Transform pos: 3.5,43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29899 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16476 @@ -128524,6 +129420,9 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29796 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16477 @@ -128532,6 +129431,9 @@ entities: rot: 3.141592653589793 rad pos: 4.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29794 - type: AtmosPipeColor color: '#0335FCFF' - uid: 16484 @@ -128710,6 +129612,9 @@ entities: - type: Transform pos: 53.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29864 - type: AtmosPipeColor color: '#0335FCFF' - uid: 18654 @@ -128729,6 +129634,9 @@ entities: rot: 3.141592653589793 rad pos: 30.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29869 - type: AtmosPipeColor color: '#0335FCFF' - uid: 21181 @@ -128925,6 +129833,63 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-53.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29880 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29737 + components: + - type: Transform + pos: -15.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18285 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18287 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29739 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18286 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18286 + - type: AtmosPipeColor + color: '#0335FCFF' + - uid: 29815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29814 - type: AtmosPipeColor color: '#0335FCFF' - proto: GasVentScrubber @@ -128964,14 +129929,9 @@ entities: rot: 1.5707963267948966 rad pos: -47.5,-10.5 parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 1540 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 2 + - type: DeviceNetwork + deviceLists: + - 29856 - type: AtmosPipeColor color: '#FF1212FF' - uid: 2175 @@ -129023,6 +129983,7 @@ entities: - type: DeviceNetwork deviceLists: - 28611 + - 29904 - type: AtmosPipeColor color: '#FF1212FF' - uid: 10876 @@ -129126,6 +130087,9 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29906 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13725 @@ -129134,6 +130098,9 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29905 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13735 @@ -129142,6 +130109,9 @@ entities: rot: 1.5707963267948966 rad pos: -21.5,-2.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29883 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13763 @@ -129236,6 +130206,9 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29912 - type: AtmosPipeColor color: '#FF1212FF' - uid: 13981 @@ -129251,6 +130224,9 @@ entities: - type: Transform pos: 5.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 28414 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14020 @@ -129258,6 +130234,9 @@ entities: - type: Transform pos: 19.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29924 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14057 @@ -129266,6 +130245,9 @@ entities: rot: -1.5707963267948966 rad pos: 15.5,-20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29842 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14060 @@ -129274,6 +130256,9 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29925 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14074 @@ -129289,6 +130274,9 @@ entities: rot: 3.141592653589793 rad pos: 21.5,-3.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29886 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14131 @@ -129296,6 +130284,9 @@ entities: - type: Transform pos: 8.5,-18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29928 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14167 @@ -129304,6 +130295,9 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29888 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14168 @@ -129312,6 +130306,9 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29890 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14238 @@ -129405,6 +130402,7 @@ entities: - type: DeviceNetwork deviceLists: - 18650 + - 29870 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14392 @@ -129446,6 +130444,9 @@ entities: rot: -1.5707963267948966 rad pos: 47.5,-38.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29894 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14514 @@ -129454,6 +130455,9 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-37.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29896 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14515 @@ -129473,6 +130477,7 @@ entities: - type: DeviceNetwork deviceLists: - 18658 + - 29868 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14532 @@ -129533,6 +130538,9 @@ entities: rot: 3.141592653589793 rad pos: 23.5,-49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29884 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14690 @@ -129585,7 +130593,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18480 + - 29802 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14766 @@ -129595,7 +130603,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18480 + - 29803 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14767 @@ -129608,17 +130616,6 @@ entities: - 18482 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 14869 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-44.5 - parent: 2 - - type: DeviceNetwork - deviceLists: - - 18663 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 14925 components: - type: Transform @@ -129645,6 +130642,10 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,-30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29873 + - 18663 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14939 @@ -129653,6 +130654,9 @@ entities: rot: -1.5707963267948966 rad pos: 19.5,-30.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29874 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14954 @@ -129661,6 +130665,9 @@ entities: rot: 1.5707963267948966 rad pos: -46.5,-21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29773 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14955 @@ -129669,6 +130676,9 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29852 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14960 @@ -129677,6 +130687,9 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29851 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14974 @@ -129685,6 +130698,9 @@ entities: rot: -1.5707963267948966 rad pos: -38.5,-23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29853 - type: AtmosPipeColor color: '#FF1212FF' - uid: 14989 @@ -129692,6 +130708,9 @@ entities: - type: Transform pos: -37.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29849 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15029 @@ -129733,6 +130752,9 @@ entities: - type: Transform pos: -48.5,7.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29858 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15129 @@ -129762,6 +130784,9 @@ entities: rot: 3.141592653589793 rad pos: -29.5,-6.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29938 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15156 @@ -129770,6 +130795,9 @@ entities: rot: 1.5707963267948966 rad pos: -44.5,-27.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29854 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15167 @@ -129815,6 +130843,9 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29911 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15247 @@ -129868,6 +130899,9 @@ entities: - type: Transform pos: -2.5,-41.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 28882 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15357 @@ -129883,13 +130917,6 @@ entities: - 18332 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15387 - components: - - type: Transform - pos: -16.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#FF1212FF' - uid: 15401 components: - type: Transform @@ -129898,12 +130925,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 15414 + - uid: 15415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-45.5 + pos: -20.5,-43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29814 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15418 @@ -129912,6 +130941,9 @@ entities: rot: 1.5707963267948966 rad pos: -25.5,-49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18460 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15420 @@ -130015,7 +131047,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18603 + - 29921 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15711 @@ -130025,8 +131057,6 @@ entities: pos: -27.5,-40.5 parent: 2 - type: DeviceNetwork - configurators: - - 10691 deviceLists: - 18691 - type: AtmosPipeColor @@ -130037,6 +131067,9 @@ entities: rot: 3.141592653589793 rad pos: -24.5,-45.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29811 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15717 @@ -130096,6 +131129,9 @@ entities: - type: Transform pos: -12.5,-26.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29918 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15809 @@ -130104,6 +131140,9 @@ entities: rot: 3.141592653589793 rad pos: -6.5,-28.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29917 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15814 @@ -130144,6 +131183,9 @@ entities: rot: 1.5707963267948966 rad pos: -30.5,-23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29800 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15902 @@ -130164,7 +131206,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18697 + - 12885 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15904 @@ -130174,7 +131216,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18697 + - 29932 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15905 @@ -130184,7 +131226,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 18697 + - 29933 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15913 @@ -130193,9 +131235,6 @@ entities: rot: 3.141592653589793 rad pos: -26.5,-19.5 parent: 2 - - type: DeviceNetwork - deviceLists: - - 18697 - type: AtmosPipeColor color: '#FF1212FF' - uid: 15934 @@ -130265,6 +131304,9 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,4.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29861 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16137 @@ -130272,6 +131314,9 @@ entities: - type: Transform pos: 40.5,5.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29860 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16148 @@ -130302,6 +131347,9 @@ entities: rot: 3.141592653589793 rad pos: -12.5,33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29859 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16238 @@ -130320,6 +131368,9 @@ entities: rot: -1.5707963267948966 rad pos: 24.5,27.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29806 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16263 @@ -130330,7 +131381,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10655 + - 29805 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16267 @@ -130370,6 +131421,9 @@ entities: - type: Transform pos: 35.5,49.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29902 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16345 @@ -130380,7 +131434,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 10285 + - 29789 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16358 @@ -130389,6 +131443,9 @@ entities: rot: -1.5707963267948966 rad pos: 31.5,31.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29792 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16402 @@ -130428,6 +131485,9 @@ entities: rot: 1.5707963267948966 rad pos: 4.5,43.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29899 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16450 @@ -130435,6 +131495,9 @@ entities: - type: Transform pos: 3.5,47.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29900 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16474 @@ -130443,6 +131506,9 @@ entities: rot: 3.141592653589793 rad pos: 9.5,20.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29794 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16475 @@ -130451,6 +131517,9 @@ entities: rot: 3.141592653589793 rad pos: 14.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29796 - type: AtmosPipeColor color: '#FF1212FF' - uid: 16482 @@ -130612,6 +131681,16 @@ entities: - 18567 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 18304 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18663 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 18330 components: - type: Transform @@ -130650,6 +131729,9 @@ entities: rot: 3.141592653589793 rad pos: 53.5,14.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29864 - type: AtmosPipeColor color: '#FF1212FF' - uid: 18655 @@ -130663,12 +131745,31 @@ entities: - 18658 - type: AtmosPipeColor color: '#FF1212FF' + - uid: 18936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF1212FF' - uid: 19074 components: - type: Transform rot: 3.141592653589793 rad pos: 31.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29869 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 19116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,19.5 + parent: 2 - type: AtmosPipeColor color: '#FF1212FF' - uid: 20617 @@ -130890,24 +131991,72 @@ entities: rot: -1.5707963267948966 rad pos: 13.5,-53.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 29880 - type: AtmosPipeColor color: '#FF1212FF' -- proto: GasVentScrubberVox - entities: - - uid: 10840 + - uid: 29732 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,19.5 + rot: 1.5707963267948966 rad + pos: -10.5,17.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18285 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 10841 + - uid: 29740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,19.5 + rot: 1.5707963267948966 rad + pos: -11.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18287 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 29741 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18286 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 29743 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 18286 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 29813 + components: + - type: Transform + pos: -15.5,-48.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 29819 + - type: AtmosPipeColor + color: '#FF1212FF' + - uid: 29879 + components: + - type: Transform + pos: 15.5,-42.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 18663 - type: AtmosPipeColor color: '#FF1212FF' - proto: GasVolumePump @@ -136915,11 +138064,6 @@ entities: - type: Transform pos: -4.5,27.5 parent: 2 - - uid: 23555 - components: - - type: Transform - pos: -10.5,16.5 - parent: 2 - uid: 23611 components: - type: Transform @@ -137992,12 +139136,6 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-8.5 parent: 2 - - uid: 29043 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,17.5 - parent: 2 - uid: 29337 components: - type: Transform @@ -139422,6 +140560,726 @@ entities: rot: 1.5707963267948966 rad pos: 26.553406,0.6529236 parent: 21002 +- proto: Holopad + entities: + - uid: 29746 + components: + - type: MetaData + name: holopad (Munitions Testing) + - type: Transform + pos: 24.5,-50.5 + parent: 2 + - type: Label + currentLabel: Munitions Testing + - type: NameModifier + baseName: holopad + - uid: 29747 + components: + - type: MetaData + name: holopad (Observatory) + - type: Transform + pos: 35.5,-57.5 + parent: 2 + - type: Label + currentLabel: Observatory + - type: NameModifier + baseName: holopad + - uid: 29748 + components: + - type: MetaData + name: holopad (Engi Dock) + - type: Transform + pos: -5.5,49.5 + parent: 2 + - type: Label + currentLabel: Engi Dock + - type: NameModifier + baseName: holopad + - uid: 29763 + components: + - type: MetaData + name: holopad (Science) + - type: Transform + pos: 15.5,-36.5 + parent: 2 + - type: Label + currentLabel: Science + - type: NameModifier + baseName: holopad + - uid: 29764 + components: + - type: MetaData + name: holopad (Armory Desk) + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - type: Label + currentLabel: Armory Desk + - type: NameModifier + baseName: holopad + - uid: 29770 + components: + - type: MetaData + name: holopad (Surgery II) + - type: Transform + pos: -10.5,-46.5 + parent: 2 + - type: Label + currentLabel: Surgery II + - type: NameModifier + baseName: holopad + - uid: 29786 + components: + - type: MetaData + name: holopad (Crossroads) + - type: Transform + pos: 0.5,-0.5 + parent: 2 + - type: Label + currentLabel: Crossroads + - type: NameModifier + baseName: holopad + - uid: 29787 + components: + - type: MetaData + name: holopad (Zoo) + - type: Transform + pos: -10.5,-10.5 + parent: 2 + - type: Label + currentLabel: Zoo + - type: NameModifier + baseName: holopad + - uid: 29788 + components: + - type: MetaData + name: holopad (Courtyard) + - type: Transform + pos: 11.5,-10.5 + parent: 2 + - type: Label + currentLabel: Courtyard + - type: NameModifier + baseName: holopad + - uid: 29790 + components: + - type: MetaData + name: holopad (Food Court) + - type: Transform + pos: -8.5,10.5 + parent: 2 + - type: Label + currentLabel: Food Court + - type: NameModifier + baseName: holopad + - uid: 29809 + components: + - type: MetaData + name: holopad (Engi Commons) + - type: Transform + pos: 23.5,27.5 + parent: 2 + - type: Label + currentLabel: Engi Commons + - type: NameModifier + baseName: holopad + - uid: 29810 + components: + - type: MetaData + name: holopad (The Engine Change) + - type: Transform + pos: 14.5,32.5 + parent: 2 + - type: Label + currentLabel: The Engine Change + - type: NameModifier + baseName: holopad + - uid: 29821 + components: + - type: MetaData + name: holopad (Medbay Halls) + - type: Transform + pos: -20.5,-46.5 + parent: 2 + - type: Label + currentLabel: Medbay Halls + - type: NameModifier + baseName: holopad +- proto: HolopadAiBackupPower + entities: + - uid: 12567 + components: + - type: Transform + pos: 51.5,20.5 + parent: 2 +- proto: HolopadAiChute + entities: + - uid: 12883 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 29002 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 +- proto: HolopadAiCore + entities: + - uid: 12886 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 + - uid: 23528 + components: + - type: Transform + pos: 49.5,16.5 + parent: 2 +- proto: HolopadAiEntrance + entities: + - uid: 10840 + components: + - type: Transform + pos: 54.5,16.5 + parent: 2 +- proto: HolopadAiUpload + entities: + - uid: 28975 + components: + - type: Transform + pos: 60.5,18.5 + parent: 2 +- proto: HolopadCargoBay + entities: + - uid: 29045 + components: + - type: Transform + pos: -53.5,-6.5 + parent: 2 +- proto: HolopadCargoBayLongRange + entities: + - uid: 29780 + components: + - type: Transform + pos: -53.5,-3.5 + parent: 2 +- proto: HolopadCargoFront + entities: + - uid: 29615 + components: + - type: Transform + pos: -49.5,-2.5 + parent: 2 +- proto: HolopadCargoSalvageBay + entities: + - uid: 29762 + components: + - type: Transform + pos: -54.5,-18.5 + parent: 2 +- proto: HolopadCommandBridge + entities: + - uid: 12888 + components: + - type: Transform + pos: 23.5,7.5 + parent: 2 +- proto: HolopadCommandBridgeHallway + entities: + - uid: 363 + components: + - type: Transform + pos: 29.5,15.5 + parent: 2 +- proto: HolopadCommandBridgeLongRange + entities: + - uid: 12882 + components: + - type: Transform + pos: 23.5,6.5 + parent: 2 +- proto: HolopadCommandCaptain + entities: + - uid: 29043 + components: + - type: Transform + pos: 33.5,21.5 + parent: 2 + - uid: 29058 + components: + - type: MetaData + name: holopad (Captain's Bedroom) + - type: Transform + pos: 36.5,15.5 + parent: 2 + - type: Label + currentLabel: Captain's Bedroom + - type: NameModifier + baseName: holopad +- proto: HolopadCommandCe + entities: + - uid: 29050 + components: + - type: Transform + pos: 4.5,41.5 + parent: 2 +- proto: HolopadCommandCmo + entities: + - uid: 29057 + components: + - type: Transform + pos: -25.5,-34.5 + parent: 2 +- proto: HolopadCommandHop + entities: + - uid: 231 + components: + - type: Transform + pos: 43.5,-5.5 + parent: 2 +- proto: HolopadCommandHos + entities: + - uid: 6027 + components: + - type: Transform + pos: 43.5,-40.5 + parent: 2 +- proto: HolopadCommandMeetingRoom + entities: + - uid: 2176 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 + - uid: 10656 + components: + - type: Transform + pos: 23.5,12.5 + parent: 2 +- proto: HolopadCommandQm + entities: + - uid: 29758 + components: + - type: Transform + pos: -53.5,6.5 + parent: 2 +- proto: HolopadCommandVault + entities: + - uid: 362 + components: + - type: Transform + pos: -48.5,-9.5 + parent: 2 +- proto: HolopadEngineeringAME + entities: + - uid: 19987 + components: + - type: Transform + pos: 26.5,21.5 + parent: 2 +- proto: HolopadEngineeringAtmosFront + entities: + - uid: 28981 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 + - uid: 28982 + components: + - type: Transform + pos: -39.5,4.5 + parent: 2 +- proto: HolopadEngineeringAtmosMain + entities: + - uid: 29171 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 + - uid: 29719 + components: + - type: Transform + pos: -29.5,22.5 + parent: 2 +- proto: HolopadEngineeringAtmosTeg + entities: + - uid: 29769 + components: + - type: Transform + pos: -19.5,45.5 + parent: 2 +- proto: HolopadEngineeringBreakroom + entities: + - uid: 2171 + components: + - type: Transform + pos: 25.5,38.5 + parent: 2 +- proto: HolopadEngineeringFront + entities: + - uid: 2550 + components: + - type: Transform + pos: 6.5,36.5 + parent: 2 +- proto: HolopadEngineeringMain + entities: + - uid: 10182 + components: + - type: Transform + pos: 13.5,45.5 + parent: 2 +- proto: HolopadEngineeringPower + entities: + - uid: 29757 + components: + - type: Transform + pos: 33.5,35.5 + parent: 2 +- proto: HolopadEngineeringStorage + entities: + - uid: 10466 + components: + - type: Transform + pos: 21.5,48.5 + parent: 2 +- proto: HolopadEngineeringTechVault + entities: + - uid: 29771 + components: + - type: Transform + pos: -45.5,-21.5 + parent: 2 +- proto: HolopadEngineeringTelecoms + entities: + - uid: 29774 + components: + - type: Transform + pos: -30.5,-6.5 + parent: 2 +- proto: HolopadGeneralArcade + entities: + - uid: 28967 + components: + - type: Transform + pos: -45.5,-40.5 + parent: 2 +- proto: HolopadGeneralArrivals + entities: + - uid: 12884 + components: + - type: Transform + pos: -2.5,-59.5 + parent: 2 +- proto: HolopadGeneralCryosleep + entities: + - uid: 2220 + components: + - type: Transform + pos: -46.5,-31.5 + parent: 2 +- proto: HolopadGeneralDisposals + entities: + - uid: 8179 + components: + - type: Transform + pos: -55.5,-27.5 + parent: 2 +- proto: HolopadGeneralEvac + entities: + - uid: 10655 + components: + - type: Transform + pos: 60.5,-0.5 + parent: 2 +- proto: HolopadGeneralEVAStorage + entities: + - uid: 2219 + components: + - type: Transform + pos: 47.5,5.5 + parent: 2 +- proto: HolopadGeneralTools + entities: + - uid: 29775 + components: + - type: Transform + pos: -31.5,4.5 + parent: 2 +- proto: HolopadMedicalBreakroom + entities: + - uid: 29749 + components: + - type: Transform + pos: -31.5,-27.5 + parent: 2 +- proto: HolopadMedicalChemistry + entities: + - uid: 29059 + components: + - type: Transform + pos: -14.5,-39.5 + parent: 2 +- proto: HolopadMedicalClinic + entities: + - uid: 29753 + components: + - type: Transform + pos: -36.5,-30.5 + parent: 2 +- proto: HolopadMedicalCryopods + entities: + - uid: 2525 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 + - uid: 2548 + components: + - type: Transform + pos: -17.5,-34.5 + parent: 2 +- proto: HolopadMedicalFront + entities: + - uid: 29751 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 +- proto: HolopadMedicalMedbay + entities: + - uid: 29750 + components: + - type: Transform + pos: -17.5,-26.5 + parent: 2 +- proto: HolopadMedicalMorgue + entities: + - uid: 29752 + components: + - type: Transform + pos: -3.5,-28.5 + parent: 2 +- proto: HolopadMedicalParamed + entities: + - uid: 29756 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 +- proto: HolopadMedicalSurgery + entities: + - uid: 29768 + components: + - type: Transform + pos: -23.5,-40.5 + parent: 2 +- proto: HolopadMedicalVirology + entities: + - uid: 29777 + components: + - type: Transform + pos: -28.5,-15.5 + parent: 2 +- proto: HolopadScienceAnomaly + entities: + - uid: 28431 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 +- proto: HolopadScienceArtifact + entities: + - uid: 28976 + components: + - type: Transform + pos: 7.5,-38.5 + parent: 2 +- proto: HolopadScienceRnd + entities: + - uid: 29760 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 +- proto: HolopadScienceRobotics + entities: + - uid: 29759 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 + - uid: 29761 + components: + - type: Transform + pos: -5.5,-51.5 + parent: 2 +- proto: HolopadSecurityArmory + entities: + - uid: 24249 + components: + - type: Transform + pos: 33.5,-22.5 + parent: 2 +- proto: HolopadSecurityBrig + entities: + - uid: 364 + components: + - type: Transform + pos: 49.5,-17.5 + parent: 2 +- proto: HolopadSecurityCourtroom + entities: + - uid: 10285 + components: + - type: Transform + pos: 35.5,-5.5 + parent: 2 +- proto: HolopadSecurityDetective + entities: + - uid: 8162 + components: + - type: Transform + pos: 41.5,21.5 + parent: 2 +- proto: HolopadSecurityEvacCheckpoint + entities: + - uid: 29765 + components: + - type: Transform + pos: 57.5,-10.5 + parent: 2 +- proto: HolopadSecurityFront + entities: + - uid: 29766 + components: + - type: Transform + pos: 50.5,-0.5 + parent: 2 + - uid: 29941 + components: + - type: MetaData + name: holopad (Drunk Tank) + - type: Transform + pos: 43.5,-12.5 + parent: 2 + - type: Label + currentLabel: Drunk Tank + - type: NameModifier + baseName: holopad +- proto: HolopadSecurityInterrogation + entities: + - uid: 1540 + components: + - type: Transform + pos: 31.5,-14.5 + parent: 2 +- proto: HolopadSecurityLawyer + entities: + - uid: 29744 + components: + - type: Transform + pos: 41.5,5.5 + parent: 2 +- proto: HolopadSecurityLockerRoom + entities: + - uid: 29767 + components: + - type: Transform + pos: 34.5,-33.5 + parent: 2 +- proto: HolopadSecurityWarden + entities: + - uid: 29778 + components: + - type: Transform + pos: 50.5,-11.5 + parent: 2 +- proto: HolopadServiceBar + entities: + - uid: 29020 + components: + - type: Transform + pos: -19.5,7.5 + parent: 2 +- proto: HolopadServiceBotany + entities: + - uid: 29049 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 +- proto: HolopadServiceBoxer + entities: + - uid: 29718 + components: + - type: Transform + pos: 11.5,-53.5 + parent: 2 +- proto: HolopadServiceChapel + entities: + - uid: 29042 + components: + - type: Transform + pos: 19.5,-18.5 + parent: 2 +- proto: HolopadServiceClownMime + entities: + - uid: 18666 + components: + - type: Transform + pos: -30.5,-45.5 + parent: 2 +- proto: HolopadServiceGameRoom + entities: + - uid: 1843 + components: + - type: Transform + pos: -18.5,28.5 + parent: 2 +- proto: HolopadServiceJanitor + entities: + - uid: 10691 + components: + - type: Transform + pos: 22.5,-3.5 + parent: 2 +- proto: HolopadServiceKitchen + entities: + - uid: 10839 + components: + - type: Transform + pos: -5.5,21.5 + parent: 2 +- proto: HolopadServiceLibrary + entities: + - uid: 29745 + components: + - type: Transform + pos: -5.5,37.5 + parent: 2 +- proto: HolopadServiceMusician + entities: + - uid: 29755 + components: + - type: Transform + pos: -16.5,14.5 + parent: 2 +- proto: HolopadServiceNewsroom + entities: + - uid: 29754 + components: + - type: Transform + pos: -47.5,-25.5 + parent: 2 +- proto: HolopadServiceZookeeper + entities: + - uid: 29779 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 2 - proto: HoloprojectorSecurity entities: - uid: 23392 @@ -139462,7 +141320,7 @@ entities: pos: 36.5,-35.5 parent: 2 - type: Door - secondsUntilStateChange: -140758.34 + secondsUntilStateChange: -138865.78 state: Opening - uid: 5211 components: @@ -139479,6 +141337,54 @@ entities: - type: Transform pos: 31.5,-35.5 parent: 2 + - uid: 29832 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-42.5 + parent: 2 + - uid: 29833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -27.5,-42.5 + parent: 2 + - uid: 29834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,-42.5 + parent: 2 + - uid: 29835 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-42.5 + parent: 2 + - uid: 29836 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,-42.5 + parent: 2 + - uid: 29837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-42.5 + parent: 2 + - uid: 29843 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-40.5 + parent: 2 + - uid: 29844 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -22.5,-38.5 + parent: 2 - proto: HospitalCurtainsOpen entities: - uid: 1054 @@ -139812,126 +141718,6 @@ entities: rot: 3.141592653589793 rad pos: -3.5,-19.5 parent: 2 - - uid: 8003 - components: - - type: Transform - pos: 6.5,-6.5 - parent: 2 - - uid: 8999 - components: - - type: Transform - pos: 6.5,-7.5 - parent: 2 - - uid: 9662 - components: - - type: Transform - pos: 7.5,-7.5 - parent: 2 - - uid: 9663 - components: - - type: Transform - pos: 8.5,-7.5 - parent: 2 - - uid: 9664 - components: - - type: Transform - pos: 8.5,-6.5 - parent: 2 - - uid: 12080 - components: - - type: Transform - pos: 8.5,-5.5 - parent: 2 - - uid: 12301 - components: - - type: Transform - pos: 7.5,-5.5 - parent: 2 - - uid: 13545 - components: - - type: Transform - pos: 6.5,-5.5 - parent: 2 - - uid: 13969 - components: - - type: Transform - pos: -12.5,-13.5 - parent: 2 - - uid: 15070 - components: - - type: Transform - pos: -14.5,-13.5 - parent: 2 - - uid: 17428 - components: - - type: Transform - pos: -14.5,-12.5 - parent: 2 - - uid: 17429 - components: - - type: Transform - pos: -12.5,-14.5 - parent: 2 - - uid: 17436 - components: - - type: Transform - pos: -13.5,-11.5 - parent: 2 - - uid: 17439 - components: - - type: Transform - pos: -13.5,-12.5 - parent: 2 - - uid: 18696 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 2 - - uid: 18700 - components: - - type: Transform - pos: -13.5,-13.5 - parent: 2 - - uid: 18701 - components: - - type: Transform - pos: 12.5,-17.5 - parent: 2 - - uid: 18905 - components: - - type: Transform - pos: 13.5,-17.5 - parent: 2 - - uid: 19165 - components: - - type: Transform - pos: 14.5,-17.5 - parent: 2 - - uid: 19166 - components: - - type: Transform - pos: 15.5,-17.5 - parent: 2 - - uid: 19167 - components: - - type: Transform - pos: 18.5,-14.5 - parent: 2 - - uid: 19168 - components: - - type: Transform - pos: 18.5,-12.5 - parent: 2 - - uid: 25537 - components: - - type: Transform - pos: 18.5,-11.5 - parent: 2 - - uid: 25676 - components: - - type: Transform - pos: 18.5,-13.5 - parent: 2 - proto: IDComputerCircuitboard entities: - uid: 11487 @@ -140296,11 +142082,6 @@ entities: - type: Transform pos: 9.5,1.5 parent: 21002 - - uid: 23566 - components: - - type: Transform - pos: -29.5,-49.5 - parent: 2 - proto: KitchenReagentGrinder entities: - uid: 510 @@ -140505,6 +142286,16 @@ entities: - type: Transform pos: 27.345627,0.6012745 parent: 21002 +- proto: LedLightBulb + entities: + - uid: 23102 + components: + - type: Transform + parent: 22036 + - type: LightBulb + color: '#FF0000FF' + - type: Physics + canCollide: False - proto: Lighter entities: - uid: 28870 @@ -140513,13 +142304,21 @@ entities: rot: 1.5707963267948966 rad pos: 34.559784,-14.813752 parent: 2 -- proto: LightReplacerEmpty +- proto: LightReplacer entities: - - uid: 29731 + - uid: 9677 components: - type: Transform - pos: 22.221575,-4.065501 + pos: 22.268173,-4.050702 parent: 2 +- proto: LightTubeBroken + entities: + - uid: 23438 + components: + - type: Transform + parent: 23416 + - type: Physics + canCollide: False - proto: LightTubeCrystalRed entities: - uid: 970 @@ -140727,8 +142526,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8968438 - - 7.1357465 + - 1.8856695 + - 7.0937095 - 0 - 0 - 0 @@ -140745,12 +142544,10 @@ entities: showEnts: False occludes: True ents: - - 3432 - - 4184 - - 24195 - - 29720 - 24196 - - 29721 + - 24195 + - 4184 + - 3432 paper_label: !type:ContainerSlot showEnts: False occludes: True @@ -140895,14 +142692,16 @@ entities: - type: Transform pos: -15.5,23.5 parent: 2 + - type: Lock + locked: False - type: EntityStorage air: volume: 200 immutable: False temperature: 234.99739 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -140919,98 +142718,19 @@ entities: showEnts: False occludes: True ents: - - 702 - - 701 + - 5279 + - 5340 + - 5185 + - 5454 + - 5278 - 5455 - 5280 - - 5278 - - 5454 - - 5185 - - 5340 - - 5279 - - 703 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: LockerFreezerBase entities: - - uid: 794 - components: - - type: Transform - pos: -31.5,-49.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: - - 798 - - 797 - - 796 - - 795 - - 799 - - 1270 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 3950 - components: - - type: Transform - pos: -30.5,-49.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: - - 4300 - - 4301 - - 7436 - - 7797 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 10787 components: - type: Transform @@ -141101,36 +142821,6 @@ entities: - type: Transform pos: 36.5,-41.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: - - 29722 - - 29723 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerMedical entities: - uid: 2095 @@ -141358,224 +143048,44 @@ entities: showEnts: False occludes: True ents: - - 28507 - - 28508 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerSecurityFilled - entities: - - uid: 4284 - components: - - type: Transform - pos: 32.5,-30.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: - - 29724 - - 29725 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 4285 - components: - - type: Transform - pos: 33.5,-30.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: - - 29726 - - 29727 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 4286 - components: - - type: Transform - pos: 34.5,-30.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: - - 29728 - - 29729 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 4287 - components: - - type: Transform - pos: 35.5,-30.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: - - 29730 - - 29732 + - 28507 + - 28508 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null +- proto: LockerSecurityFilled + entities: + - uid: 4284 + components: + - type: Transform + pos: 32.5,-30.5 + parent: 2 + - uid: 4285 + components: + - type: Transform + pos: 33.5,-30.5 + parent: 2 + - uid: 4286 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 4287 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 - uid: 4288 components: - type: Transform pos: 36.5,-30.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: - - 29733 - - 29734 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - uid: 4289 components: - type: Transform pos: 31.5,-30.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: - - 29735 - - 29736 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerWardenFilled entities: - uid: 3733 @@ -141589,8 +143099,8 @@ entities: immutable: False temperature: 293.14673 moles: - - 1.8856695 - - 7.0937095 + - 1.7459903 + - 6.568249 - 0 - 0 - 0 @@ -141601,18 +143111,6 @@ entities: - 0 - 0 - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 29737 - - 29738 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - proto: LockerWeldingSuppliesFilled entities: - uid: 6720 @@ -142480,11 +143978,6 @@ entities: - type: Transform pos: -55.5,-30.5 parent: 2 - - type: MailingUnit - tag: Santa - - type: Configuration - config: - tag: Santa - uid: 17649 components: - type: Transform @@ -142502,13 +143995,6 @@ entities: parent: 2 - type: MailingUnit tag: Engineering - - uid: 29751 - components: - - type: MetaData - name: letters to santa - - type: Transform - pos: 21.5,-20.5 - parent: 2 - proto: MaintenancePlantSpawner entities: - uid: 1585 @@ -142777,11 +144263,6 @@ entities: - type: Transform pos: -31.5,-36.5 parent: 2 - - uid: 25743 - components: - - type: Transform - pos: 54.5,25.5 - parent: 21002 - proto: MedicalTechFab entities: - uid: 1523 @@ -143194,17 +144675,6 @@ entities: rot: -1.5707963267948966 rad pos: 26.492922,39.609303 parent: 2 - - uid: 10691 - components: - - type: Transform - pos: -22.090538,-14.804086 - parent: 2 - - type: NetworkConfigurator - devices: - 'UID: 22442': 15710 - 'UID: 22649': 15711 - 'UID: 3687': 18692 - linkModeActive: False - uid: 23692 components: - type: Transform @@ -143617,6 +145087,11 @@ entities: rot: 1.5707963267948966 rad pos: -28.5,-44.5 parent: 2 + - uid: 29727 + components: + - type: Transform + pos: -17.5,16.5 + parent: 2 - proto: PaintingPersistenceOfMemory entities: - uid: 24192 @@ -145296,26 +146771,6 @@ entities: parent: 29655 - type: Physics canCollide: False - - uid: 29785 - components: - - type: Transform - pos: 20.395023,-21.375433 - parent: 2 - - uid: 29786 - components: - - type: Transform - pos: 20.65544,-21.375433 - parent: 2 - - uid: 29787 - components: - - type: Transform - pos: 22.31169,-19.44835 - parent: 2 - - uid: 29788 - components: - - type: Transform - pos: 22.520023,-19.406683 - parent: 2 - proto: PenCap entities: - uid: 2672 @@ -145401,11 +146856,6 @@ entities: - type: Transform pos: -52.472195,-22.458754 parent: 2 - - uid: 25716 - components: - - type: Transform - pos: 54.58464,24.440567 - parent: 21002 - proto: PillCanister entities: - uid: 2085 @@ -145798,13 +147248,6 @@ entities: - type: Transform pos: 31.467096,-38.62024 parent: 2 -- proto: PlushiePenguin - entities: - - uid: 23366 - components: - - type: Transform - pos: 7.0534773,15.491414 - parent: 2 - proto: PlushieSharkBlue entities: - uid: 18539 @@ -146073,6 +147516,20 @@ entities: - type: Transform pos: 34.5,-19.5 parent: 2 +- proto: PosterLegitJustAWeekAway + entities: + - uid: 28438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-40.5 + parent: 2 + - uid: 29722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,-38.5 + parent: 2 - proto: PosterLegitMime entities: - uid: 23628 @@ -147046,17 +148503,6 @@ entities: rot: -1.5707963267948966 rad pos: -11.5,-33.5 parent: 2 - - uid: 2219 - components: - - type: Transform - pos: -24.5,-38.5 - parent: 2 - - uid: 2220 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-45.5 - parent: 2 - uid: 2221 components: - type: Transform @@ -148007,6 +149453,12 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,2.5 parent: 2 + - uid: 12080 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,2.5 + parent: 2 - uid: 12081 components: - type: Transform @@ -148559,6 +150011,12 @@ entities: rot: 1.5707963267948966 rad pos: -42.5,-27.5 parent: 2 + - uid: 23447 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,-45.5 + parent: 2 - uid: 23516 components: - type: Transform @@ -148682,6 +150140,21 @@ entities: ent: 16067 - type: ApcPowerReceiver powerLoad: 10 + - uid: 23416 + components: + - type: Transform + pos: -24.5,-38.5 + parent: 2 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23438 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False - proto: PoweredLightPostSmall entities: - uid: 1042 @@ -148878,12 +150351,6 @@ entities: parent: 21002 - proto: PoweredSmallLight entities: - - uid: 668 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-49.5 - parent: 2 - uid: 2535 components: - type: Transform @@ -149169,6 +150636,11 @@ entities: rot: -1.5707963267948966 rad pos: -46.5,-46.5 parent: 2 + - uid: 12301 + components: + - type: Transform + pos: -24.5,-53.5 + parent: 2 - uid: 12303 components: - type: Transform @@ -149193,6 +150665,18 @@ entities: rot: 3.141592653589793 rad pos: -25.5,-49.5 parent: 2 + - uid: 13545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -29.5,-50.5 + parent: 2 + - uid: 13969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -36.5,-50.5 + parent: 2 - uid: 16229 components: - type: Transform @@ -149471,12 +150955,6 @@ entities: - type: Transform pos: 64.5,-5.5 parent: 2 - - uid: 21350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,-49.5 - parent: 2 - uid: 21421 components: - type: Transform @@ -149570,12 +151048,6 @@ entities: rot: 1.5707963267948966 rad pos: 57.5,-17.5 parent: 2 - - uid: 25699 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-52.5 - parent: 2 - uid: 25878 components: - type: Transform @@ -149699,27 +151171,48 @@ entities: - type: Transform pos: -31.5,-56.5 parent: 2 -- proto: PresentRandom +- proto: PoweredStrobeLightSiren entities: - - uid: 25674 + - uid: 22036 components: + - type: MetaData + name: engine containment alarm - type: Transform - pos: -3.4752243,-18.994682 + pos: 4.5,44.5 parent: 2 -- proto: PresentRandomCash + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 23102 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DeviceLinkSink + invokeCounter: 2 + - type: DamageOnInteract + isDamageActive: False +- proto: PowerSensor entities: - - uid: 9641 + - uid: 13577 components: - type: Transform - pos: -26.517355,4.481133 + pos: 13.5,68.5 parent: 2 -- proto: PresentRandomCoal + - type: PowerSwitchable + activeIndex: 1 + - type: DeviceLinkSource + linkedPorts: + 22036: + - PowerDischarging: On + - PowerCharging: Off +- proto: PresentRandomCash entities: - - uid: 26468 + - uid: 9641 components: - type: Transform - pos: 53.454712,25.263622 - parent: 21002 + pos: -26.517355,4.481133 + parent: 2 - proto: PressureControlledValve entities: - uid: 8695 @@ -150175,6 +151668,11 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-37.5 parent: 2 + - uid: 1573 + components: + - type: Transform + pos: -13.5,16.5 + parent: 2 - uid: 2321 components: - type: Transform @@ -150947,6 +152445,11 @@ entities: - type: Transform pos: -60.5,-26.5 parent: 2 + - uid: 13010 + components: + - type: Transform + pos: -14.5,16.5 + parent: 2 - uid: 15041 components: - type: Transform @@ -151293,6 +152796,16 @@ entities: rot: -1.5707963267948966 rad pos: -61.5,-15.5 parent: 2 + - uid: 29725 + components: + - type: Transform + pos: -12.5,16.5 + parent: 2 + - uid: 29726 + components: + - type: Transform + pos: -11.5,16.5 + parent: 2 - proto: RailingCorner entities: - uid: 64 @@ -151604,6 +153117,12 @@ entities: - type: Transform pos: -3.5,14.5 parent: 2 + - uid: 1187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,16.5 + parent: 2 - uid: 2327 components: - type: Transform @@ -152082,6 +153601,12 @@ entities: rot: 1.5707963267948966 rad pos: -61.5,-14.5 parent: 2 + - uid: 29724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,16.5 + parent: 2 - proto: RailingRound entities: - uid: 3408 @@ -152174,6 +153699,21 @@ entities: parent: 21002 - proto: RandomDrinkGlass entities: + - uid: 9662 + components: + - type: Transform + pos: -17.5,5.5 + parent: 2 + - uid: 9663 + components: + - type: Transform + pos: -17.5,7.5 + parent: 2 + - uid: 9664 + components: + - type: Transform + pos: -17.5,8.5 + parent: 2 - uid: 19988 components: - type: Transform @@ -152194,21 +153734,48 @@ entities: - type: Transform pos: 32.5,-58.5 parent: 2 - - uid: 29058 + - uid: 29220 components: - type: Transform - pos: -16.5,16.5 + pos: 13.5,34.5 parent: 2 - - uid: 29059 +- proto: RandomFloraTree + entities: + - uid: 8003 components: - type: Transform - pos: -13.5,16.5 + pos: -5.5,10.5 parent: 2 - - uid: 29220 + - uid: 21349 components: - type: Transform - pos: 13.5,34.5 - parent: 2 + pos: 24.5,-5.5 + parent: 21002 + - uid: 21350 + components: + - type: Transform + pos: 26.5,-5.5 + parent: 21002 + - uid: 22999 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 21002 + - uid: 23001 + components: + - type: Transform + pos: 7.5,4.5 + parent: 21002 + - uid: 23769 + components: + - type: Transform + pos: 16.5,-2.5 + parent: 21002 + - uid: 23954 + components: + - type: Transform + pos: 22.5,6.5 + parent: 21002 - proto: RandomFoodBakedSingle entities: - uid: 20713 @@ -152290,11 +153857,6 @@ entities: - type: Transform pos: -4.5,18.5 parent: 2 - - uid: 29057 - components: - - type: Transform - pos: -12.5,16.5 - parent: 2 - uid: 29219 components: - type: Transform @@ -153066,20 +154628,6 @@ entities: parent: 2 - proto: ReagentContainerFlour entities: - - uid: 604 - components: - - type: Transform - parent: 7795 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 609 - components: - - type: Transform - parent: 7795 - - type: Physics - canCollide: False - - type: InsideEntityStorage - uid: 1586 components: - type: Transform @@ -153090,11 +154638,6 @@ entities: - type: Transform pos: 4.374191,-54.23497 parent: 2 - - uid: 25700 - components: - - type: Transform - pos: -35.068703,-49.346226 - parent: 2 - proto: ReagentContainerMayo entities: - uid: 4054 @@ -153111,27 +154654,6 @@ entities: - type: Physics canCollide: False - type: InsideEntityStorage -- proto: ReagentContainerSugar - entities: - - uid: 610 - components: - - type: Transform - parent: 7795 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 611 - components: - - type: Transform - parent: 7795 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 671 - components: - - type: Transform - pos: -35.23572,-49.231556 - parent: 2 - proto: ReagentGrinderMachineCircuitboard entities: - uid: 5811 @@ -153142,11 +154664,15 @@ entities: parent: 2 - proto: Recycler entities: - - uid: 19987 + - uid: 23797 components: - type: Transform + anchored: False + rot: -3.141592653589793 rad pos: -57.5,-30.5 parent: 2 + - type: Physics + bodyType: Dynamic - uid: 29514 components: - type: Transform @@ -156633,11 +158159,6 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-13.5 parent: 2 - - uid: 23416 - components: - - type: Transform - pos: -10.5,16.5 - parent: 2 - uid: 23639 components: - type: Transform @@ -157125,11 +158646,6 @@ entities: - type: Transform pos: -46.5,-28.5 parent: 2 - - uid: 23447 - components: - - type: Transform - pos: 43.5,-10.5 - parent: 2 - uid: 23448 components: - type: Transform @@ -157242,6 +158758,11 @@ entities: rot: 3.141592653589793 rad pos: 12.5,-34.5 parent: 2 + - uid: 29942 + components: + - type: Transform + pos: 41.5,-10.5 + parent: 2 - proto: SecurityTechFab entities: - uid: 24201 @@ -157600,26 +159121,26 @@ entities: - type: Transform pos: 19.5,-1.5 parent: 2 -- proto: ShuttersNormalOpen - entities: - - uid: 362 + - uid: 28326 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-40.5 parent: 2 - - uid: 363 + - uid: 28407 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-39.5 parent: 2 - - uid: 364 + - uid: 29923 components: - type: Transform rot: -1.5707963267948966 rad pos: -28.5,-38.5 parent: 2 +- proto: ShuttersNormalOpen + entities: - uid: 920 components: - type: Transform @@ -158892,21 +160413,6 @@ entities: - Pressed: Toggle 9766: - Pressed: Toggle - - uid: 23438 - components: - - type: MetaData - name: shutters - - type: Transform - pos: -29.5,-37.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 364: - - Pressed: Toggle - 363: - - Pressed: Toggle - 362: - - Pressed: Toggle - uid: 23768 components: - type: MetaData @@ -158919,18 +160425,6 @@ entities: linkedPorts: 23766: - Pressed: Toggle - - uid: 23769 - components: - - type: MetaData - name: door bolts - - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-50.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 25240: - - Pressed: DoorBolt - uid: 23771 components: - type: MetaData @@ -159149,6 +160643,21 @@ entities: - Pressed: Toggle 2370: - Pressed: Toggle + - uid: 28321 + components: + - type: MetaData + name: shutters + - type: Transform + pos: -29.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 28326: + - Pressed: Toggle + 28407: + - Pressed: Toggle + 29923: + - Pressed: Toggle - uid: 28356 components: - type: MetaData @@ -159235,6 +160744,20 @@ entities: - Pressed: Toggle 9295: - Pressed: Toggle + - uid: 29782 + components: + - type: MetaData + name: exit + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-37.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1384: + - Pressed: Open + 1378: + - Pressed: Open - proto: SignAnomaly entities: - uid: 16793 @@ -159279,6 +160802,26 @@ entities: rot: 3.141592653589793 rad pos: -17.5,2.5 parent: 2 +- proto: SignBath + entities: + - uid: 28974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 2 + - uid: 29046 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 2 + - uid: 29781 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,-3.5 + parent: 2 - proto: SignBio entities: - uid: 23187 @@ -159492,12 +161035,6 @@ entities: - type: Transform pos: -0.5,39.5 parent: 2 - - uid: 20980 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.4936252,5.2819476 - parent: 2 - uid: 20987 components: - type: Transform @@ -159522,6 +161059,12 @@ entities: rot: -1.5707963267948966 rad pos: 38.525524,2.4793384 parent: 2 + - uid: 29721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.4826567,5.7890882 + parent: 2 - proto: SignDirectionalGravity entities: - uid: 5192 @@ -160484,12 +162027,6 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,-52.5 parent: 2 - - uid: 23368 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-50.5 - parent: 2 - uid: 29201 components: - type: Transform @@ -162677,6 +164214,105 @@ entities: - type: Transform pos: -55.5,-10.5 parent: 2 +- proto: SpawnMobBee + entities: + - uid: 610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - uid: 611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,5.5 + parent: 2 + - uid: 612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 2 + - uid: 613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 2 + - uid: 8999 + components: + - type: Transform + pos: -12.5,11.5 + parent: 2 + - uid: 23415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 +- proto: SpawnMobButterfly + entities: + - uid: 604 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - uid: 608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,4.5 + parent: 2 + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 2 + - uid: 614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 18696 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 18700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 18701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 2 + - uid: 23413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - uid: 23414 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,8.5 + parent: 2 - proto: SpawnMobCatException entities: - uid: 20651 @@ -162719,13 +164355,6 @@ entities: - type: Transform pos: 36.5,14.5 parent: 2 -- proto: SpawnMobGingerbreadAI - entities: - - uid: 29718 - components: - - type: Transform - pos: -33.5,-50.5 - parent: 2 - proto: SpawnMobGorilla entities: - uid: 615 @@ -162834,23 +164463,38 @@ entities: - type: Transform pos: 12.5,-27.5 parent: 2 + - uid: 23566 + components: + - type: Transform + pos: -17.5,-52.5 + parent: 2 - uid: 23567 components: - type: Transform pos: -52.5,-26.5 parent: 2 -- proto: SpawnMobPenguin +- proto: SpawnMobParrot entities: - - uid: 20825 + - uid: 676 components: - type: Transform - pos: 8.5,-5.5 + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 parent: 2 - - uid: 23001 + - uid: 677 components: - type: Transform - pos: 6.5,-7.5 + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 parent: 2 + - uid: 678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-5.5 + parent: 2 +- proto: SpawnMobPenguin + entities: - uid: 23552 components: - type: Transform @@ -162889,58 +164533,6 @@ entities: - type: Transform pos: -57.5,2.5 parent: 2 -- proto: SpawnMobReindeerBuck - entities: - - uid: 26525 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,15.5 - parent: 2 - - uid: 26526 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-14.5 - parent: 2 -- proto: SpawnMobReindeerDoe - entities: - - uid: 26516 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,10.5 - parent: 2 - - uid: 26517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,5.5 - parent: 2 - - uid: 26521 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,16.5 - parent: 2 - - uid: 26532 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-15.5 - parent: 2 - - uid: 26972 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 2 - - uid: 28405 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,4.5 - parent: 2 - proto: SpawnMobShiva entities: - uid: 20674 @@ -163039,11 +164631,6 @@ entities: - type: Transform pos: -3.5,-43.5 parent: 2 - - uid: 2176 - components: - - type: Transform - pos: -7.5,-52.5 - parent: 2 - uid: 23594 components: - type: Transform @@ -163065,6 +164652,11 @@ entities: - type: Transform pos: -57.5,-29.5 parent: 2 + - uid: 28413 + components: + - type: Transform + pos: 13.5,61.5 + parent: 2 - uid: 29074 components: - type: Transform @@ -163189,11 +164781,6 @@ entities: - type: Transform pos: 24.5,17.5 parent: 2 - - uid: 28326 - components: - - type: Transform - pos: -57.5,-30.5 - parent: 2 - uid: 28327 components: - type: Transform @@ -163204,6 +164791,11 @@ entities: - type: Transform pos: 60.5,-35.5 parent: 2 + - uid: 28860 + components: + - type: Transform + pos: -57.5,-30.5 + parent: 2 - proto: SpawnPointDetective entities: - uid: 20795 @@ -163346,11 +164938,6 @@ entities: - type: Transform pos: 14.5,29.5 parent: 2 - - uid: 23369 - components: - - type: Transform - pos: 58.5,-0.5 - parent: 2 - uid: 28403 components: - type: Transform @@ -163361,15 +164948,20 @@ entities: - type: Transform pos: 22.5,14.5 parent: 2 + - uid: 28405 + components: + - type: Transform + pos: 58.5,-0.5 + parent: 2 - uid: 28406 components: - type: Transform pos: 14.5,29.5 parent: 2 - - uid: 28407 + - uid: 29846 components: - type: Transform - pos: -25.5,-43.5 + pos: -15.5,-47.5 parent: 2 - proto: SpawnPointMusician entities: @@ -163444,6 +165036,11 @@ entities: - type: Transform pos: -5.5,14.5 parent: 2 + - uid: 20825 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 - uid: 20826 components: - type: Transform @@ -163529,21 +165126,6 @@ entities: - type: Transform pos: -52.5,-39.5 parent: 2 - - uid: 23364 - components: - - type: Transform - pos: 33.5,-58.5 - parent: 2 - - uid: 23365 - components: - - type: Transform - pos: 33.5,-58.5 - parent: 2 - - uid: 23367 - components: - - type: Transform - pos: 14.5,-56.5 - parent: 2 - uid: 28501 components: - type: Transform @@ -163767,6 +165349,44 @@ entities: - type: Transform pos: -19.5,-3.5 parent: 2 +- proto: SpiderWeb + entities: + - uid: 29825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -25.5,-38.5 + parent: 2 + - uid: 29828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-38.5 + parent: 2 + - uid: 29829 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,-38.5 + parent: 2 + - uid: 29830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-41.5 + parent: 2 + - uid: 29831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -27.5,-38.5 + parent: 2 + - uid: 29838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,-41.5 + parent: 2 - proto: SprayBottleSpaceCleaner entities: - uid: 3068 @@ -164180,11 +165800,6 @@ entities: - type: Transform pos: -44.5,-40.5 parent: 2 - - uid: 19116 - components: - - type: Transform - pos: -45.5,-40.5 - parent: 2 - uid: 19117 components: - type: Transform @@ -164246,6 +165861,18 @@ entities: rot: 1.5707963267948966 rad pos: 1.5,-54.5 parent: 2 + - uid: 10949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 2 + - uid: 12356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 2 - uid: 12422 components: - type: Transform @@ -164264,6 +165891,12 @@ entities: rot: -1.5707963267948966 rad pos: -52.5,-33.5 parent: 2 + - uid: 12566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 2 - uid: 17604 components: - type: Transform @@ -164282,6 +165915,18 @@ entities: rot: 3.141592653589793 rad pos: 14.5,33.5 parent: 2 + - uid: 23555 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 2 + - uid: 28977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,17.5 + parent: 2 - proto: StorageCanister entities: - uid: 2289 @@ -164608,16 +166253,6 @@ entities: parent: 2 - proto: SurveillanceCameraCommand entities: - - uid: 13031 - components: - - type: Transform - pos: 35.5,20.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Captain's lavatory - uid: 19542 components: - type: Transform @@ -165801,16 +167436,6 @@ entities: - SurveillanceCameraGeneral nameSet: True id: East Hall C - - uid: 29171 - components: - - type: Transform - pos: -38.5,-8.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Washroom - uid: 29172 components: - type: Transform @@ -166717,17 +168342,6 @@ entities: parent: 2 - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - - uid: 474 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,13.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEntertainment - nameSet: True - id: Yule Tide - uid: 523 components: - type: Transform @@ -166883,22 +168497,6 @@ entities: rot: 1.5707963267948966 rad pos: -18.5,3.5 parent: 2 - - uid: 613 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-51.5 - parent: 2 - - uid: 614 - components: - - type: Transform - pos: -33.5,-51.5 - parent: 2 - - uid: 793 - components: - - type: Transform - pos: -29.5,-49.5 - parent: 2 - uid: 1346 components: - type: Transform @@ -167444,12 +169042,6 @@ entities: - type: Transform pos: 51.5,22.5 parent: 2 - - uid: 21349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-51.5 - parent: 2 - uid: 22351 components: - type: Transform @@ -167597,11 +169189,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,15.5 parent: 21002 - - uid: 25502 - components: - - type: Transform - pos: -32.5,-49.5 - parent: 2 - uid: 28365 components: - type: Transform @@ -167838,16 +169425,6 @@ entities: - type: Transform pos: -13.5,20.5 parent: 2 - - uid: 612 - components: - - type: Transform - pos: -36.5,-49.5 - parent: 2 - - uid: 670 - components: - - type: Transform - pos: -35.5,-49.5 - parent: 2 - uid: 2119 components: - type: Transform @@ -167943,11 +169520,6 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-14.5 parent: 2 - - uid: 19186 - components: - - type: Transform - pos: -34.5,-49.5 - parent: 2 - uid: 28613 components: - type: Transform @@ -167966,6 +169538,18 @@ entities: rot: -1.5707963267948966 rad pos: 61.5,14.5 parent: 2 + - uid: 29909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,20.5 + parent: 2 + - uid: 29910 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,20.5 + parent: 2 - proto: TableCounterWood entities: - uid: 294 @@ -168152,6 +169736,54 @@ entities: rot: 3.141592653589793 rad pos: 23.5,15.5 parent: 2 +- proto: TableFancyPurple + entities: + - uid: 11130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,18.5 + parent: 2 + - uid: 23621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 2 + - uid: 28978 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 2 + - uid: 28979 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,18.5 + parent: 2 +- proto: TableFancyWhite + entities: + - uid: 17428 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 17429 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 17436 + components: + - type: Transform + pos: 13.5,13.5 + parent: 2 + - uid: 17439 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 - proto: TableGlass entities: - uid: 1223 @@ -169427,6 +171059,39 @@ entities: - type: Transform pos: -55.5,0.5 parent: 2 + - uid: 19165 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-49.5 + parent: 2 + - uid: 19166 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -31.5,-50.5 + parent: 2 + - uid: 19167 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,-50.5 + parent: 2 + - uid: 19179 + components: + - type: Transform + pos: -34.5,-51.5 + parent: 2 + - uid: 19181 + components: + - type: Transform + pos: -33.5,-49.5 + parent: 2 + - uid: 19182 + components: + - type: Transform + pos: -34.5,-49.5 + parent: 2 - uid: 20682 components: - type: Transform @@ -169467,11 +171132,6 @@ entities: - type: Transform pos: 16.5,1.5 parent: 21002 - - uid: 23102 - components: - - type: Transform - pos: -16.5,16.5 - parent: 2 - uid: 23184 components: - type: Transform @@ -169492,16 +171152,6 @@ entities: - type: Transform pos: -37.5,-44.5 parent: 2 - - uid: 23621 - components: - - type: Transform - pos: -16.5,17.5 - parent: 2 - - uid: 23797 - components: - - type: Transform - pos: -13.5,16.5 - parent: 2 - uid: 23859 components: - type: Transform @@ -169514,16 +171164,6 @@ entities: rot: 1.5707963267948966 rad pos: -17.5,15.5 parent: 2 - - uid: 28967 - components: - - type: Transform - pos: -12.5,16.5 - parent: 2 - - uid: 28968 - components: - - type: Transform - pos: -11.5,16.5 - parent: 2 - uid: 28993 components: - type: Transform @@ -169554,26 +171194,6 @@ entities: rot: 1.5707963267948966 rad pos: -56.5,9.5 parent: 2 - - uid: 29749 - components: - - type: Transform - pos: 23.5,-19.5 - parent: 2 - - uid: 29753 - components: - - type: Transform - pos: 20.5,-22.5 - parent: 2 - - uid: 29755 - components: - - type: Transform - pos: 20.5,-21.5 - parent: 2 - - uid: 29756 - components: - - type: Transform - pos: 22.5,-19.5 - parent: 2 - proto: TaikoInstrument entities: - uid: 28998 @@ -170059,21 +171679,6 @@ entities: - type: Transform pos: 16.02112,29.37049 parent: 2 - - uid: 26445 - components: - - type: Transform - pos: 54.454773,21.3736 - parent: 21002 - - uid: 26481 - components: - - type: Transform - pos: 54.21518,24.654852 - parent: 21002 - - uid: 26498 - components: - - type: Transform - pos: 54.55893,21.081934 - parent: 21002 - proto: ToyFigurineThief entities: - uid: 5577 @@ -170424,7 +172029,7 @@ entities: parent: 2 - type: DeviceLinkSource linkedPorts: - 19987: + 23797: - Left: Forward - Right: Reverse - Middle: Off @@ -170733,11 +172338,6 @@ entities: - type: Transform pos: -2.5,22.5 parent: 2 - - uid: 21751 - components: - - type: Transform - pos: -36.5,-51.5 - parent: 2 - proto: VendingMachineDonut entities: - uid: 4291 @@ -171099,6 +172699,11 @@ entities: rot: 3.141592653589793 rad pos: 17.5,30.5 parent: 2 + - uid: 25516 + components: + - type: Transform + pos: 43.5,-10.5 + parent: 2 - proto: WallReinforced entities: - uid: 3 @@ -188216,6 +189821,11 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,-52.5 parent: 2 + - uid: 15070 + components: + - type: Transform + pos: -28.5,-51.5 + parent: 2 - uid: 15071 components: - type: Transform @@ -189207,81 +190817,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,5.5 parent: 21002 - - uid: 25720 - components: - - type: Transform - pos: 55.5,26.5 - parent: 21002 - - uid: 25724 - components: - - type: Transform - pos: 51.5,25.5 - parent: 21002 - - uid: 25732 - components: - - type: Transform - pos: 51.5,24.5 - parent: 21002 - - uid: 25740 - components: - - type: Transform - pos: 52.5,26.5 - parent: 21002 - - uid: 25744 - components: - - type: Transform - pos: 54.5,27.5 - parent: 21002 - - uid: 25746 - components: - - type: Transform - pos: 52.5,27.5 - parent: 21002 - - uid: 25747 - components: - - type: Transform - pos: 55.5,24.5 - parent: 21002 - - uid: 26390 - components: - - type: Transform - pos: 55.5,23.5 - parent: 21002 - - uid: 26444 - components: - - type: Transform - pos: 54.5,23.5 - parent: 21002 - - uid: 26455 - components: - - type: Transform - pos: 52.5,23.5 - parent: 21002 - - uid: 26469 - components: - - type: Transform - pos: 53.5,27.5 - parent: 21002 - - uid: 26475 - components: - - type: Transform - pos: 54.5,26.5 - parent: 21002 - - uid: 26477 - components: - - type: Transform - pos: 51.5,26.5 - parent: 21002 - - uid: 26478 - components: - - type: Transform - pos: 51.5,23.5 - parent: 21002 - - uid: 26501 - components: - - type: Transform - pos: 55.5,25.5 - parent: 21002 - uid: 26577 components: - type: Transform @@ -189686,15 +191221,15 @@ entities: - type: Transform pos: 29.5,-45.5 parent: 2 - - uid: 18925 + - uid: 18905 components: - type: Transform - pos: 38.5,37.5 + pos: -27.5,-51.5 parent: 2 - - uid: 25239 + - uid: 18925 components: - type: Transform - pos: -18.5,-56.5 + pos: 38.5,37.5 parent: 2 - proto: WaterTankHighCapacity entities: @@ -190852,12 +192387,6 @@ entities: rot: 1.5707963267948966 rad pos: -58.5,-9.5 parent: 2 - - uid: 18936 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,17.5 - parent: 2 - uid: 18937 components: - type: Transform @@ -191292,11 +192821,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 - - uid: 2171 - components: - - type: Transform - pos: -11.5,16.5 - parent: 2 - uid: 2329 components: - type: Transform @@ -191604,79 +193128,6 @@ entities: rot: 1.5707963267948966 rad pos: 23.5,5.5 parent: 21002 - - uid: 28321 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,15.5 - parent: 2 - - uid: 28414 - components: - - type: Transform - pos: -13.5,16.5 - parent: 2 - - uid: 28860 - components: - - type: Transform - pos: -14.5,16.5 - parent: 2 - - uid: 28882 - components: - - type: Transform - pos: -15.5,16.5 - parent: 2 - - uid: 28976 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,15.5 - parent: 2 - - uid: 28977 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,15.5 - parent: 2 - - uid: 28978 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,15.5 - parent: 2 - - uid: 28979 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 2 - - uid: 28981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,15.5 - parent: 2 - - uid: 28982 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,15.5 - parent: 2 - - uid: 29002 - components: - - type: Transform - pos: -16.5,16.5 - parent: 2 - - uid: 29020 - components: - - type: Transform - pos: -12.5,16.5 - parent: 2 - - uid: 29042 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,16.5 - parent: 2 - proto: Wirecutter entities: - uid: 23787 @@ -191746,18 +193197,13 @@ entities: - type: Transform pos: 18.5,4.5 parent: 21002 - - uid: 26383 - components: - - type: Transform - pos: 53.5,23.5 - parent: 21002 - uid: 26797 components: - type: Transform pos: 24.5,2.5 parent: 21002 - type: Door - secondsUntilStateChange: -485963.03 + secondsUntilStateChange: -484070.44 state: Opening - uid: 28863 components: diff --git a/Resources/Maps/omega.yml b/Resources/Maps/omega.yml index 598ae42e234a..890cc5bebb8f 100644 --- a/Resources/Maps/omega.yml +++ b/Resources/Maps/omega.yml @@ -28,6 +28,7 @@ tilemap: 89: FloorSteel 104: FloorTechMaint 105: FloorTechMaint2 + 5: FloorTechMaint3 108: FloorWhite 118: FloorWood 120: Lattice @@ -58,163 +59,163 @@ entities: chunks: -1,0: ind: -1,0 - tiles: PgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAABHQAAAAAAeQAAAAAADgAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAADHQAAAAABeQAAAAAADgAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAADgAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAABHQAAAAADDgAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABdgAAAAABHQAAAAADDgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAADdgAAAAACdgAAAAABHQAAAAADDgAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAADdgAAAAADHQAAAAAADgAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAAAdgAAAAABdgAAAAACHQAAAAAADgAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAADdgAAAAACHQAAAAAADgAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAAAdgAAAAACdgAAAAABHQAAAAACDgAAAAADDgAAAAAAWQAAAAABWQAAAAACWQAAAAADDgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACDgAAAAABWQAAAAABWQAAAAABWQAAAAABDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAADgAAAAADDgAAAAABDgAAAAABDgAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAA + tiles: PgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAAAdgAAAAAAHQAAAAADeQAAAAAADgAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABdgAAAAACdgAAAAACHQAAAAACeQAAAAAADgAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAADgAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAAAdgAAAAABHQAAAAADDgAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABdgAAAAACHQAAAAADDgAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAAAdgAAAAABdgAAAAABHQAAAAAADgAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAABdgAAAAABdgAAAAACHQAAAAACDgAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAACdgAAAAABdgAAAAABHQAAAAACDgAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADHQAAAAABDgAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAAAdgAAAAABHQAAAAACDgAAAAACDgAAAAADWQAAAAAAWQAAAAADWQAAAAACDgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACDgAAAAACWQAAAAADWQAAAAAAWQAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABDgAAAAADDgAAAAADDgAAAAAADgAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAA version: 6 0,0: ind: 0,0 - tiles: DgAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAADDgAAAAABDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAADgAAAAABHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAALAAAAAAALAAAAAAADgAAAAAAHQAAAAADHQAAAAACHQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAACHQAAAAADHQAAAAACHQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAALAAAAAAALAAAAAAADgAAAAACHQAAAAACHQAAAAACHQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAD + tiles: DgAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAADgAAAAABDgAAAAADDgAAAAAADgAAAAACaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAABaAAAAAAAeQAAAAAADgAAAAACeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAADgAAAAABHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAALAAAAAAALAAAAAAADgAAAAACHQAAAAACHQAAAAAAHQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADLAAAAAAALAAAAAAALAAAAAAADgAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAALAAAAAAALAAAAAAADgAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAADHQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABHQAAAAACWQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABAgAAAAACAgAAAAADAgAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAAANgAAAAAANgAAAAAAHQAAAAACNgAAAAAANgAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAADNgAAAAAAHQAAAAABHQAAAAABHQAAAAAANgAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAADeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAABHQAAAAAANgAAAAAAHQAAAAADHQAAAAAAUAAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAA + tiles: eQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADAgAAAAAAAgAAAAACAgAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACNgAAAAAAHQAAAAACHQAAAAABHQAAAAAANgAAAAAAHQAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACHQAAAAADHQAAAAADeQAAAAAAHQAAAAADNgAAAAAAHQAAAAADHQAAAAADHQAAAAADNgAAAAAAHQAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAABNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACNgAAAAAAHQAAAAABHQAAAAADUAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAAB version: 6 0,1: ind: 0,1 - tiles: WQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAABLwAAAAAALwAAAAAALwAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAACdgAAAAAAdgAAAAACdgAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAA + tiles: WQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAWQAAAAABHQAAAAADWQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAADLwAAAAAALwAAAAAALwAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAACeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAABdgAAAAABdgAAAAADdgAAAAADUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAHQAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAHQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAaQAAAAAAeQAAAAAADgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAADgAAAAADeQAAAAAAJAAAAAACJAAAAAADJAAAAAACJAAAAAABJAAAAAADJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACDgAAAAACeQAAAAAAJAAAAAAAJAAAAAAAJAAAAAADJAAAAAAAJAAAAAACJAAAAAABaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAADgAAAAADeQAAAAAAJAAAAAADJAAAAAABJAAAAAACJAAAAAADJAAAAAABJAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAA + tiles: WQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACHQAAAAACeQAAAAAAeAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAADgAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAADgAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACDgAAAAAAeQAAAAAAJAAAAAABJAAAAAABJAAAAAABJAAAAAACJAAAAAABJAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACDgAAAAAAeQAAAAAAJAAAAAADJAAAAAABJAAAAAAAJAAAAAADJAAAAAACJAAAAAADaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAADgAAAAABeQAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAACJAAAAAABJAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: bAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAOgAAAAAAHQAAAAACLwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAADDgAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAAADgAAAAAADgAAAAABWQAAAAAAWQAAAAABWQAAAAABDgAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAABDgAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAADWQAAAAACDgAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAADgAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADeQAAAAAADgAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAACHQAAAAADHQAAAAAADgAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAC + tiles: bAAAAAACbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACOgAAAAAAHQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAADDgAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAADDgAAAAAADgAAAAAAWQAAAAAAWQAAAAAAWQAAAAACDgAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWQAAAAADDgAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABHQAAAAABHQAAAAABWQAAAAADDgAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAADgAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAADgAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAADdgAAAAADHQAAAAAAHQAAAAACDgAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAD version: 6 -2,1: ind: -2,1 - tiles: WQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAACdgAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAABeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAABUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAdgAAAAABdgAAAAABeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAHQAAAAADeQAAAAAABwAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAHQAAAAABeQAAAAAABwAAAAAMAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAHQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACdgAAAAACdgAAAAABUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAABeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAABwAAAAAEAAAAAAAABwAAAAAABwAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACPQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADPQAAAAAAaQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABHQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACPQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADPQAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACHQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADHQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: HQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAbAAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADOgAAAAAAHQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAHQAAAAADeQAAAAAAHQAAAAADOgAAAAAAOgAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADHQAAAAADeQAAAAAAHQAAAAACOgAAAAAAHQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABOgAAAAAAOgAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAADeQAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAbAAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAABOgAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAHQAAAAABeQAAAAAAHQAAAAACOgAAAAAAOgAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAOgAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAACOgAAAAAAOgAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAACdgAAAAACeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAA version: 6 -1,2: ind: -1,2 - tiles: eQAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAACBwAAAAAHeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAABwAAAAAABwAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACBwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,2: ind: 0,2 - tiles: HQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAADaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAJBwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAEBwAAAAALBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: HQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAABwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABwAAAAALBwAAAAAGeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAEeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAKeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAKeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 1,2: ind: 1,2 - tiles: HQAAAAADHQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAALAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAABHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAALBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADLAAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,1: ind: 1,1 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,0: ind: 1,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAEeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAHBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAABBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAIBwAAAAAJeAAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAegAAAAAAegAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 0,3: ind: 0,3 - tiles: BwAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAHBwAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAANgAAAAAAHQAAAAABNgAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAABNgAAAAAAHQAAAAADNgAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAGeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAANgAAAAAAeQAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAHQAAAAADNgAAAAAAHQAAAAADHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAIBwAAAAAMeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAeQAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACEQAAAAAAHQAAAAACEQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHeQAAAAAAeQAAAAAANgAAAAAAHQAAAAADeQAAAAAANgAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAHQAAAAADNgAAAAAAHQAAAAABHQAAAAABNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAIeQAAAAAAeQAAAAAANgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,3: ind: 1,3 - tiles: eQAAAAAABwAAAAACBwAAAAABBwAAAAAGBwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: WQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAHQAAAAABeQAAAAAABwAAAAAAAAAAAAAABwAAAAADBwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAJAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAALAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGBwAAAAAABwAAAAAHBwAAAAAMBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABHQAAAAACeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: eQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: BwAAAAAABwAAAAAHBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: eQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAgAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAA + tiles: eQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACAgAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAB version: 6 0,-2: ind: 0,-2 - tiles: WQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADNgAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAbAAAAAABbAAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACNgAAAAAANgAAAAAANgAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABbAAAAAAAbAAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADEQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABHQAAAAABeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABWQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: WQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABNgAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAACbAAAAAACbAAAAAADWQAAAAACWQAAAAAAHQAAAAAAWQAAAAACNgAAAAAANgAAAAAANgAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABbAAAAAABbAAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADHQAAAAAAWQAAAAAAEQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACWQAAAAADHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAbAAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAbAAAAAABWQAAAAACbAAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAADeQAAAAAAWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAACbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAADWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAABeQAAAAAAWQAAAAABWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACbAAAAAAAbAAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAACWQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAWQAAAAABWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAWQAAAAACWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAB + tiles: AAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAALwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACPgAAAAAAPgAAAAAAHQAAAAADHQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAMBwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAHBwAAAAAEeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAANgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADNgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABNgAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAALwAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABLwAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACbAAAAAACbAAAAAADbAAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADbAAAAAABbAAAAAADbAAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAAAWQAAAAAAWQAAAAADWQAAAAADdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAACeQAAAAAABwAAAAAABwAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAABdgAAAAADeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAACeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAaQAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAABwAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAABeQAAAAAAeQAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAABwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJBwAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACHQAAAAABeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAACbAAAAAACbAAAAAAAbAAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADHQAAAAACHQAAAAADaAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACWQAAAAAAWQAAAAABWQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAABwAAAAAABwAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAACeQAAAAAABwAAAAAABwAAAAAMeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAACeQAAAAAABwAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAAAeQAAAAAABwAAAAAABwAAAAADeQAAAAAAaQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAABwAAAAAIeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAADeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACeQAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAIeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAegAAAAAAegAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADeQAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAAAeQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAABwAAAAAGBwAAAAAMBwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEegAAAAAAegAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAALBwAAAAAGBwAAAAAJBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADeQAAAAAABwAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAJBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAC + tiles: eQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAB version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAIeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACBAAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADBAAAAAACdgAAAAADdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAAFdgAAAAADdgAAAAACdgAAAAADdgAAAAADBAAAAAAEBAAAAAAGeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACIgAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADBAAAAAAFdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAABAAAAAAAdgAAAAADdgAAAAADdgAAAAABAAAAAAAAAAAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABAAAAAABdgAAAAABdgAAAAABdgAAAAACdgAAAAABBAAAAAAFBAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACIgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABIgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAACPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABPgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACHQAAAAABHQAAAAABHQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADbAAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAbAAAAAAD + tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAADPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAACPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAADPgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAABHQAAAAACHQAAAAACHQAAAAACdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACeQAAAAAAbAAAAAABHQAAAAADHQAAAAABHQAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAbAAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAbAAAAAAC version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAABeQAAAAAADgAAAAAADgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAIQAAAAABIQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAADDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAIQAAAAABIQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAdgAAAAACdgAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAABHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAADDgAAAAABDgAAAAAAeQAAAAAADgAAAAAADgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAABDgAAAAACDgAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADIQAAAAABIQAAAAABeQAAAAAAAAAAAAAAAAAAAAAADgAAAAABDgAAAAACDgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAIQAAAAACIQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAADdgAAAAADdgAAAAADdgAAAAADeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAIgAAAAABHQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAIgAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAAB version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADTQAAAAAAHQAAAAACTQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAALBwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAABHQAAAAADHQAAAAACTQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAIeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJeQAAAAAAaAAAAAAA + tiles: eQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAADTQAAAAAAHQAAAAABTQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAAHQAAAAACHQAAAAAAHQAAAAADTQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAB + tiles: aAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACaAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAWQAAAAABWQAAAAAAaQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAAeQAAAAAATQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAD version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACWQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACWQAAAAACWQAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAegAAAAAAeQAAAAAALAAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACWQAAAAACWQAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,0: ind: -4,0 - tiles: eAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAwAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAwAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: eAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAAwAAAAAAaQAAAAAAaQAAAAAABQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAwAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaQAAAAAAaQAAAAAABQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABWQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAHBwAAAAAABwAAAAAKeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAADBwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAAegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAEBwAAAAAIBwAAAAAABwAAAAAABwAAAAAEegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAALeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAACAAAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAABwAAAAAEBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAFBwAAAAAABwAAAAAIBwAAAAAABwAAAAAIegAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADegAAAAAAegAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAGBwAAAAALBwAAAAAABwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAeQAAAAAAaAAAAAAAaQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAA version: 6 -5,-2: ind: -5,-2 @@ -234,19 +235,19 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACaAAAAAAAAgAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABAgAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABaAAAAAAAAgAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAAgAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 - tiles: eQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: eQAAAAAAeQAAAAAAeQAAAAAALwAAAAAALwAAAAAALwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 @@ -262,7 +263,7 @@ entities: version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAJ + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAABwAAAAAA version: 6 -5,0: ind: -5,0 @@ -284,6 +285,12 @@ entities: chunkCollection: version: 2 nodes: + - node: + angle: -4.71238898038469 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 2845: -42.031,-11.968021 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -291,6 +298,7 @@ entities: decals: 1084: 27,-31 2100: -54,11 + 2844: -40,-12 - node: color: '#FFFFFFFF' id: Arrows @@ -335,10 +343,6 @@ entities: 59: 8,22 141: 20,14 147: 18,21 - 246: 13,55 - 247: 13,49 - 248: 7,49 - 249: 7,55 250: 11,43 251: 9,43 419: 11,-28 @@ -354,7 +358,6 @@ entities: 654: -37,-9 655: -36,-9 699: -35,1 - 713: -31,-6 714: -31,-10 863: -54,-11 864: -55,-10 @@ -374,8 +377,6 @@ entities: 1013: 35,-29 1082: 29,-31 1083: 29,-29 - 1233: -14,-26 - 1234: -16,-26 1531: 2,-36 1532: -15,-14 1725: -37,4 @@ -390,19 +391,35 @@ entities: 1910: 25,17 1911: 25,15 1912: 24,14 - 2086: -49,6 2108: -40,-13 2109: -42,-13 - 2119: -42,-16 - 2120: -40,-16 - 2122: -51,0 - 2128: -58,0 2152: -37,22 2153: -36,22 2182: -34,20 2183: -38,15 - 2309: -57,3 2310: -51,8 + 2411: -60,1 + 2414: -59,11 + 2439: -58,1 + 2440: -55,9 + 2447: -51,0 + 2497: -51,-17 + 2498: -50,-16 + 2499: -50,-18 + 2500: -49,-17 + 2521: -48,1 + 2522: -41,-8 + 2523: -32,-7 + 2524: -32,2 + 2787: 5,16 + 2788: 5,15 + 2789: 9,15 + 2790: 9,16 + 2836: -41,2 + 2837: -41,1 + 2841: -48,6 + 2861: -42,-16 + 2862: -40,-16 - node: angle: 4.71238898038469 rad color: '#DE3A3AFF' @@ -424,15 +441,22 @@ entities: 1743: -34,5 1913: 24,15 1914: 25,14 - 2123: -52,0 - 2124: -53,0 2126: -51,6 + 2449: -52,0 - node: color: '#FFFFFFFF' id: BotLeftGreyscale decals: 869: -53,-9 870: -55,-11 + 2508: -51,-18 + 2509: -49,-16 + - node: + color: '#FFFFFFFF' + id: BotRight + decals: + 2842: -52,6 + 2843: -53,0 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -446,6 +470,8 @@ entities: 867: -55,-9 868: -53,-11 1369: -19,-19 + 2506: -51,-16 + 2507: -49,-18 - node: color: '#FFFFFFFF' id: Box @@ -480,47 +506,11 @@ entities: id: BrickTileSteelCornerNe decals: 2023: -39,-18 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNe - decals: - 1553: -39,-11 - 1554: -39,-11 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerNw - decals: - 1559: -43,-11 - 1560: -43,-11 - node: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: 2024: -39,-19 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerSe - decals: - 2006: -39,-16 - 2007: -39,-16 - - node: - color: '#EFB34196' - id: BrickTileSteelCornerSw - decals: - 2117: -43,-16 - 2118: -43,-16 - - node: - color: '#EFB34196' - id: BrickTileSteelLineE - decals: - 1587: -39,-15 - 1588: -39,-15 - 1593: -39,-13 - 1594: -39,-13 - 1595: -39,-12 - 1596: -39,-12 - 2115: -39,-14 - 2116: -39,-14 - node: color: '#D381C996' id: BrickTileSteelLineN @@ -530,14 +520,6 @@ entities: 1007: 33,-29 1008: 34,-29 1009: 35,-29 - - node: - color: '#EFB34196' - id: BrickTileSteelLineN - decals: - 1555: -40,-11 - 1556: -40,-11 - 1557: -42,-11 - 1558: -42,-11 - node: color: '#D381C996' id: BrickTileSteelLineS @@ -547,24 +529,6 @@ entities: 1002: 33,-25 1003: 34,-25 1004: 35,-25 - - node: - color: '#EFB34196' - id: BrickTileSteelLineS - decals: - 2111: -40,-16 - 2112: -40,-16 - 2113: -42,-16 - 2114: -42,-16 - - node: - color: '#EFB34196' - id: BrickTileSteelLineW - decals: - 1561: -43,-12 - 1562: -43,-12 - 1563: -43,-14 - 1564: -43,-14 - 1565: -43,-15 - 1566: -43,-15 - node: color: '#334E6DC8' id: BrickTileWhiteBox @@ -591,29 +555,55 @@ entities: id: BrickTileWhiteCornerNe decals: 1061: 26,-25 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 2851: -39,-11 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 1172: -13,-21 1247: -21,-21 1248: -23,-23 + 2648: -13,-21 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: 1062: 27,-25 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 2848: -43,-11 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: 1170: -9,-24 1256: -15,-24 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 2850: -39,-16 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: 1249: -23,-24 + 2649: -13,-24 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 2849: -43,-16 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerNe + decals: + 2625: -17,-19 - node: color: '#D381C996' id: BrickTileWhiteInnerNe @@ -631,6 +621,7 @@ entities: id: BrickTileWhiteInnerNw decals: 1260: -21,-23 + 2624: -15,-19 - node: color: '#D381C996' id: BrickTileWhiteInnerNw @@ -642,6 +633,11 @@ entities: id: BrickTileWhiteInnerNw decals: 1496: 0,-32 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSe + decals: + 2623: -17,-16 - node: color: '#D381C996' id: BrickTileWhiteInnerSe @@ -653,6 +649,11 @@ entities: id: BrickTileWhiteInnerSe decals: 1494: -6,-23 + - node: + color: '#52B4E996' + id: BrickTileWhiteInnerSw + decals: + 2626: -15,-16 - node: color: '#D381C996' id: BrickTileWhiteInnerSw @@ -664,6 +665,12 @@ entities: id: BrickTileWhiteInnerSw decals: 1493: 0,-23 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 2617: -17,-18 + 2618: -17,-17 - node: color: '#D381C996' id: BrickTileWhiteLineE @@ -674,8 +681,6 @@ entities: 1071: 22,-21 1072: 22,-22 1073: 22,-23 - 1306: -17,-18 - 1307: -17,-17 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE @@ -686,6 +691,14 @@ entities: 1473: -6,-27 1474: -6,-25 1475: -6,-24 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 2852: -39,-12 + 2853: -39,-13 + 2854: -39,-14 + 2855: -39,-15 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -696,6 +709,8 @@ entities: 1246: -19,-21 1259: -22,-23 2079: -10,-21 + 2621: -16,-19 + 2647: -12,-21 - node: color: '#D381C996' id: BrickTileWhiteLineN @@ -710,7 +725,6 @@ entities: 1078: 27,-24 1079: 28,-24 1080: 29,-24 - 1305: -16,-19 - node: color: '#DE3A3A96' id: BrickTileWhiteLineN @@ -719,11 +733,16 @@ entities: 1477: -4,-32 1478: -2,-32 1479: -1,-32 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineN + decals: + 2846: -42,-11 + 2847: -40,-11 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 1173: -12,-24 1181: -11,-24 1250: -16,-24 1251: -18,-24 @@ -732,6 +751,8 @@ entities: 1254: -21,-24 1255: -22,-24 1718: -10,-24 + 2622: -16,-16 + 2646: -12,-24 - node: color: '#D381C996' id: BrickTileWhiteLineS @@ -741,7 +762,6 @@ entities: 1056: 22,-25 1063: 27,-24 1064: 26,-24 - 1308: -16,-16 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS @@ -751,11 +771,19 @@ entities: 1490: -3,-23 1491: -4,-23 1492: -5,-23 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 2856: -40,-16 + 2857: -42,-16 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: 1261: -21,-22 + 2619: -15,-18 + 2620: -15,-17 - node: color: '#D381C996' id: BrickTileWhiteLineW @@ -763,8 +791,6 @@ entities: 1050: 25,-27 1051: 25,-26 1060: 27,-26 - 1309: -15,-18 - 1310: -15,-17 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW @@ -777,6 +803,13 @@ entities: 1485: 0,-26 1486: 0,-25 1487: 0,-24 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 2858: -43,-15 + 2859: -43,-14 + 2860: -43,-12 - node: cleanable: True color: '#FFFFFFFF' @@ -838,68 +871,6 @@ entities: id: Bushn1 decals: 53: 7.034272,20.954395 - - node: - color: '#2B7F0993' - id: CheckerNESW - decals: - 2189: -6,9 - 2190: -5,9 - 2191: -5,10 - 2192: -5,11 - 2193: -4,11 - 2194: -3,11 - 2195: -2,11 - 2196: -1,11 - 2197: -1,10 - 2198: -1,9 - 2199: 0,9 - 2200: 0,8 - 2201: 0,7 - 2202: 0,6 - 2203: 0,5 - 2204: 0,4 - 2205: 0,3 - 2206: 0,2 - 2207: 1,2 - 2208: 2,2 - 2209: 3,2 - 2210: 3,3 - 2211: 2,3 - 2212: 1,3 - 2213: 0,1 - 2214: 0,0 - 2215: 0,-1 - 2216: 0,-2 - 2217: 0,-3 - 2218: 0,-4 - 2219: 0,-5 - 2220: 0,-6 - 2221: 0,-7 - 2222: 0,-8 - 2223: -1,-8 - 2224: -1,-9 - 2225: -2,-9 - 2226: -3,-9 - 2227: -4,-9 - 2228: -5,-9 - 2229: -5,-8 - 2230: -6,-8 - 2231: -6,-7 - 2232: -6,-6 - 2233: -6,-5 - 2234: -6,-4 - 2235: -6,-3 - 2236: -6,-2 - 2237: -6,-1 - 2238: -6,0 - 2239: -6,1 - 2240: -6,2 - 2241: -6,3 - 2242: -6,4 - 2243: -6,5 - 2244: -6,6 - 2245: -6,7 - 2246: -6,8 - node: color: '#52B4E996' id: CheckerNESW @@ -1104,9 +1075,6 @@ entities: 1920: 58,-2 1995: 58,-4 2048: -41,-12 - 2121: -50,0 - 2125: -48,6 - 2127: -57,0 2265: 23,-3 2266: 23,-4 2267: 14,-3 @@ -1130,6 +1098,8 @@ entities: 2327: -4,15 2328: -3,15 2329: -2,15 + 2445: -49,6 + 2446: -50,0 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -1181,6 +1151,28 @@ entities: 1537: -47,-8 1538: -47,-7 1539: -47,-10 + 2510: -51,-16 + 2511: -49,-18 + 2512: -49,-16 + 2513: -51,-18 + 2514: -51,-17 + 2515: -49,-17 + 2516: -49,-16 + 2520: -49,-5 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 2478: -48,0 + 2479: -50,1 + 2480: -57,3 + 2481: -50,4 + 2482: -55,1 + 2483: -54,0 + 2494: -54,6 + 2495: -55,8 - node: cleanable: True color: '#DE3A3AFF' @@ -1188,6 +1180,23 @@ entities: decals: 2029: -39,-18 2030: -39,-19 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 2484: -56,1 + 2485: -52,1 + 2486: -49,2 + 2487: -52,4 + 2488: -56,4 + 2489: -54,4 + 2490: -49,2 + 2491: -48,2 + 2492: -50,4 + 2493: -51,4 + 2496: -55,6 - node: cleanable: True color: '#DE3A3AFF' @@ -1231,7 +1240,6 @@ entities: 825: 18,14 826: 24,14 829: 24,13 - 830: 22,14 831: 23,15 832: 17,14 833: 16,21 @@ -1257,6 +1265,9 @@ entities: 1550: -46,-7 1551: -45,-6 1552: -40,-6 + 2517: -50,-16 + 2518: -50,-18 + 2519: -51,-16 - node: cleanable: True color: '#DE3A3AFF' @@ -1324,13 +1335,8 @@ entities: 1182: -11,-23 1183: -11,-22 1206: -13,-26 - 1207: -15,-26 - 1208: -17,-26 - 1209: -18,-26 - 1210: -16,-29 - 1211: -17,-29 - 1212: -18,-29 1300: -24,-24 + 2658: -13,-25 - node: color: '#A4610696' id: FullTileOverlayGreyscale @@ -1501,7 +1507,6 @@ entities: 1184: -10,-23 1185: -12,-23 1189: -11,-24 - 1213: -17,-27 1214: -16,-27 1215: -15,-27 1216: -14,-27 @@ -1601,10 +1606,9 @@ entities: 1188: -11,-21 1219: -14,-28 1220: -15,-28 - 1221: -16,-28 - 1222: -17,-28 1223: -21,-28 1224: -22,-28 + 2653: -17,-29 - node: color: '#A4610696' id: HalfTileOverlayGreyscale180 @@ -1703,6 +1707,8 @@ entities: decals: 1292: -27,-24 1293: -27,-23 + 2652: -18,-28 + 2655: -18,-27 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 @@ -1737,9 +1743,11 @@ entities: 183: 13,45 186: 9,45 200: 5,45 - 206: 8,51 - 207: 8,52 - 208: 8,53 + 2555: 8,50 + 2556: 8,51 + 2557: 8,52 + 2558: 8,53 + 2559: 8,54 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -1830,9 +1838,11 @@ entities: 184: 15,45 185: 11,45 196: 7,45 - 209: 12,51 - 210: 12,52 - 211: 12,53 + 2550: 12,50 + 2551: 12,51 + 2552: 12,52 + 2553: 12,53 + 2554: 12,54 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 @@ -1876,12 +1886,6 @@ entities: id: LoadingArea decals: 55: 5,21 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1899: 22,15 - node: color: '#FFFFFFFF' id: LoadingArea @@ -1891,14 +1895,12 @@ entities: 1747: -34,3 1898: 26,13 - node: - color: '#2E820993' - id: QuarterTileOverlayGreyscale + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea decals: - 2285: 0,-20 - 2286: 0,-19 - 2287: 0,-18 - 2288: 0,-17 - 2289: 0,-16 + 2764: 6,22 + 2765: 8,22 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -1952,13 +1954,24 @@ entities: 495: -9,-12 496: -7,-12 1270: -7,-21 - 1301: -17,-16 1341: -12,-56 1342: -12,-55 1343: -12,-54 1344: -12,-53 1345: -12,-52 1346: -12,-51 + 2628: -17,-16 + 2633: -16,-22 + 2634: -16,-23 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale + decals: + 2584: 22,12 + 2585: 22,13 + 2586: 22,14 + 2587: 22,15 + 2588: 22,16 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale @@ -2029,9 +2042,6 @@ entities: 1449: 9,-12 1450: 10,-12 1451: 11,-12 - 1458: 0,-22 - 1459: -1,-22 - 1460: -2,-22 1508: -12,-35 1509: -11,-35 1510: -10,-35 @@ -2040,13 +2050,27 @@ entities: 1516: -4,-35 1517: -5,-35 2271: 24,-8 - 2272: 24,-7 2273: 24,-6 2274: 24,-5 2275: 24,-2 2276: 24,-1 2277: 24,0 - 2303: 0,-21 + 2361: 0,-21 + 2362: 0,-20 + 2363: 0,-19 + 2364: 0,-18 + 2365: 0,-17 + 2366: 0,-16 + 2367: 0,-22 + 2368: -1,-22 + 2369: -2,-22 + 2370: -3,-22 + 2371: -4,-22 + 2372: -5,-22 + 2378: -6,-12 + 2379: -5,-12 + 2380: -5,-11 + 2696: 24,-7 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale @@ -2059,13 +2083,14 @@ entities: 1316: -12,-40 1317: -12,-39 1318: -12,-38 - 2258: 21,-3 - 2259: 20,-3 - 2260: 19,-3 - 2261: 18,-3 - 2262: 17,-3 - 2263: 16,-3 - 2270: 22,-3 + 2688: 15,-3 + 2689: 16,-3 + 2690: 17,-3 + 2691: 18,-3 + 2692: 19,-3 + 2693: 20,-3 + 2694: 21,-3 + 2695: 22,-3 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale @@ -2091,6 +2116,14 @@ entities: 2160: -35,16 2161: -36,16 2162: -37,16 + 2720: 51,-1 + 2721: 52,-1 + 2722: 53,-1 + 2723: 27,0 + 2724: 28,0 + 2725: 29,0 + 2726: 30,0 + 2727: 31,0 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -2098,15 +2131,6 @@ entities: 628: -21,10 680: -29,5 682: -31,3 - - node: - color: '#2E820993' - id: QuarterTileOverlayGreyscale180 - decals: - 2279: -6,-20 - 2280: -6,-19 - 2281: -6,-18 - 2282: -6,-17 - 2283: -6,-16 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -2124,7 +2148,6 @@ entities: 485: -21,-13 1298: -27,-24 1299: -27,-23 - 1303: -15,-19 1353: -11,-38 1354: -11,-39 1355: -11,-40 @@ -2132,6 +2155,20 @@ entities: 1357: -11,-42 1358: -11,-43 1359: -11,-44 + 2630: -15,-19 + 2631: -16,-22 + 2632: -17,-22 + 2640: -20,-22 + 2654: -16,-28 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 + decals: + 2589: 22,12 + 2590: 23,12 + 2591: 24,12 + 2592: 25,12 + 2593: 26,12 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale180 @@ -2169,9 +2206,14 @@ entities: 383: 7,-13 384: 1,-23 385: 1,-24 - 386: 1,-25 400: 29,-25 497: 1,-13 + 2745: 1,-25 + 2746: 1,-26 + 2747: 1,-27 + 2748: 1,-28 + 2749: 1,-29 + 2750: 1,-30 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 @@ -2201,6 +2243,11 @@ entities: 1528: -9,-36 1529: -10,-36 1530: -11,-36 + 2373: -1,-14 + 2374: -2,-14 + 2375: -3,-14 + 2376: -4,-14 + 2377: -5,-14 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -2212,13 +2259,30 @@ entities: 1331: -11,-52 1332: -11,-51 1333: -11,-50 - 2248: 16,-4 - 2249: 17,-4 - 2250: 18,-4 - 2251: 19,-4 - 2252: 20,-4 - 2253: 21,-4 - 2269: 15,-4 + 2698: 61,-4 + 2699: 60,-4 + 2700: 59,-4 + 2701: 53,-5 + 2702: 52,-5 + 2703: 51,-5 + 2704: 33,-4 + 2705: 34,-4 + 2706: 35,-4 + 2707: 36,-4 + 2708: 37,-4 + 2709: 38,-4 + 2710: 39,-4 + 2711: 40,-4 + 2712: 41,-4 + 2713: 42,-4 + 2714: 43,-4 + 2715: 44,-4 + 2716: 45,-4 + 2733: 27,-8 + 2734: 28,-8 + 2735: 30,-8 + 2736: 29,-8 + 2737: 31,-8 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 @@ -2269,7 +2333,6 @@ entities: 483: -13,-13 484: -19,-13 1271: -7,-24 - 1304: -17,-19 1360: -12,-44 1361: -12,-43 1362: -12,-42 @@ -2277,6 +2340,10 @@ entities: 1364: -12,-40 1365: -12,-39 1366: -12,-38 + 2627: -17,-19 + 2635: -16,-22 + 2636: -20,-22 + 2637: -19,-22 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 @@ -2284,6 +2351,15 @@ entities: 177: 16,13 178: 15,13 179: 14,13 + 2579: 22,12 + 2580: 22,13 + 2581: 22,14 + 2582: 22,15 + 2583: 22,16 + 2594: 23,12 + 2595: 24,12 + 2596: 25,12 + 2597: 26,12 - node: color: '#BAFF79B4' id: QuarterTileOverlayGreyscale270 @@ -2344,32 +2420,14 @@ entities: 1338: -12,-52 1339: -12,-51 1340: -12,-50 - 1941: 34,-4 - 1942: 35,-4 - 1943: 36,-4 - 1944: 37,-4 - 1945: 38,-4 - 1946: 39,-4 - 1947: 41,-4 - 1948: 40,-4 - 1949: 42,-4 - 1950: 43,-4 - 1951: 44,-4 - 1952: 45,-4 - 1953: 51,-5 - 1954: 52,-5 - 1955: 53,-5 - 1956: 59,-4 - 1957: 60,-4 - 1958: 61,-4 - 1959: 27,-5 - 1960: 27,-6 - 1961: 27,-7 - 1962: 27,-8 - 1963: 28,-8 - 1964: 29,-8 - 1965: 30,-8 - 1966: 31,-8 + 2680: 15,-4 + 2681: 16,-4 + 2682: 17,-4 + 2683: 18,-4 + 2684: 19,-4 + 2685: 20,-4 + 2686: 21,-4 + 2687: 22,-4 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 @@ -2387,6 +2445,14 @@ entities: 2177: -36,18 2180: -30,11 2184: -33,18 + 2717: 51,-5 + 2718: 52,-5 + 2719: 53,-5 + 2728: 27,-8 + 2729: 28,-8 + 2730: 29,-8 + 2731: 30,-8 + 2732: 31,-8 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -2395,15 +2461,6 @@ entities: 758: -38,-9 2001: -47,-3 2002: -47,-4 - - node: - color: '#F53A3A93' - id: QuarterTileOverlayGreyscale270 - decals: - 2297: 0,-20 - 2298: 0,-19 - 2299: 0,-18 - 2300: 0,-17 - 2301: 0,-16 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -2443,13 +2500,16 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 1302: -15,-16 1347: -11,-56 1348: -11,-55 1349: -11,-54 1350: -11,-53 1351: -11,-52 1352: -11,-51 + 2629: -15,-16 + 2638: -20,-23 + 2639: -20,-22 + 2659: -17,-27 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 @@ -2462,6 +2522,7 @@ entities: 138: 19,15 167: 17,19 908: 20,24 + 2578: 12,19 - node: color: '#BAFF79B4' id: QuarterTileOverlayGreyscale90 @@ -2479,8 +2540,6 @@ entities: 375: 1,-18 376: 1,-17 377: 1,-16 - 387: 1,-30 - 388: 1,-29 399: 29,-27 - node: color: '#D4D4D428' @@ -2499,19 +2558,23 @@ entities: 1417: -22,2 1418: -23,2 1419: -24,2 - 1441: 0,-12 1442: 1,-12 1443: 2,-12 1444: 3,-12 1445: 4,-12 1446: 5,-12 - 1461: -4,-22 - 1462: -5,-22 - 1463: -6,-22 1513: 2,-35 1514: -1,-35 1515: -2,-35 - 2302: -6,-21 + 2355: -6,-21 + 2356: -6,-20 + 2357: -6,-19 + 2358: -6,-18 + 2359: -6,-17 + 2360: -6,-16 + 2381: 0,-12 + 2382: -1,-12 + 2383: -1,-11 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale90 @@ -2542,20 +2605,16 @@ entities: 1938: 36,-2 1939: 35,-2 1940: 34,-2 - 1967: 31,-8 - 1968: 31,-7 - 1969: 31,-6 - 1970: 31,-5 - 1971: 31,0 - 1972: 31,-1 + 2697: 33,-2 + 2738: 27,0 + 2739: 28,0 + 2740: 29,0 + 2741: 30,0 + 2742: 31,0 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 decals: - 298: 27,0 - 299: 28,0 - 300: 29,0 - 301: 30,0 529: -26,20 530: -26,17 538: -29,12 @@ -2580,15 +2639,6 @@ entities: 787: -32,-1 788: -31,-1 789: -30,-1 - - node: - color: '#F53A3A93' - id: QuarterTileOverlayGreyscale90 - decals: - 2290: -6,-16 - 2291: -6,-17 - 2292: -6,-18 - 2293: -6,-19 - 2294: -6,-20 - node: cleanable: True color: '#FFFFFFFF' @@ -2662,7 +2712,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 1231: -23,-27 - 1232: -18,-27 + 2656: -18,-26 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale @@ -2686,7 +2736,6 @@ entities: decals: 189: 9,46 199: 5,46 - 213: 8,54 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale @@ -2711,6 +2760,7 @@ entities: decals: 1229: -13,-28 1230: -20,-28 + 2650: -16,-29 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 @@ -2730,7 +2780,6 @@ entities: 191: 11,44 195: 7,44 203: 11,48 - 204: 12,50 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 @@ -2755,7 +2804,7 @@ entities: id: ThreeQuarterTileOverlayGreyscale270 decals: 1227: -23,-28 - 1228: -18,-28 + 2651: -18,-29 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 @@ -2775,7 +2824,6 @@ entities: 192: 9,44 193: 5,44 202: 9,48 - 205: 8,50 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 @@ -2798,8 +2846,9 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1225: -13,-27 1226: -20,-27 + 2657: -17,-26 + 2673: -13,-27 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 @@ -2820,7 +2869,6 @@ entities: decals: 190: 11,46 197: 7,46 - 212: 12,54 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 @@ -2900,11 +2948,21 @@ entities: id: WarnCornerFlipped decals: 722: -39,-2 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleNW + decals: + 2660: -15,-29 + - node: + color: '#52B4E996' + id: WarnCornerGreyscaleSE + decals: + 2664: -14,-26 - node: color: '#52B4E996' id: WarnCornerGreyscaleSW decals: - 1174: -13,-24 + 2663: -16,-26 - node: color: '#FFFFFFFF' id: WarnCornerNE @@ -2914,8 +2972,22 @@ entities: color: '#FFFFFFFF' id: WarnCornerNW decals: - 1235: -15,-29 2143: -37,21 + - node: + color: '#52B4E996' + id: WarnCornerSmallGreyscaleNE + decals: + 2672: -17,-27 + - node: + color: '#52B4E996' + id: WarnCornerSmallGreyscaleNW + decals: + 2674: -13,-27 + - node: + color: '#52B4E996' + id: WarnCornerSmallGreyscaleSE + decals: + 2679: -16,-28 - node: color: '#FFFFFFFF' id: WarnCornerSmallNE @@ -2924,6 +2996,10 @@ entities: 1902: 26,14 2139: -57,5 2340: -47,-4 + 2395: -55,1 + 2577: 5,31 + 2755: 1,-29 + 2800: 6,14 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW @@ -2931,6 +3007,9 @@ entities: 929: 25,1 931: 23,5 2341: -43,-4 + 2394: -53,1 + 2760: 3,-29 + 2799: 8,14 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -2938,24 +3017,20 @@ entities: 935: 23,3 1901: 26,16 2149: -37,21 + 2396: -55,5 + 2754: 1,-25 + 2797: 6,17 + 2820: -53,9 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 934: 25,3 - 2132: -56,1 2150: -35,21 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnEnd - decals: - 43: 7,16 - - node: - color: '#FFFFFFFF' - id: WarnEnd - decals: - 42: 7,15 + 2397: -53,5 + 2759: 3,-25 + 2803: 8,17 + 2819: -46,9 - node: color: '#FFFFFFFF' id: WarnEndS @@ -2967,7 +3042,6 @@ entities: decals: 1168: -8,-23 1169: -8,-22 - 1190: -13,-25 1191: -14,-23 1192: -14,-22 1238: -17,-25 @@ -2980,11 +3054,34 @@ entities: 922: 23,8 1900: 26,15 2097: -60,0 - 2098: -60,1 2099: -60,2 2146: -35,20 2338: -47,-3 2339: -47,-2 + 2390: -55,4 + 2391: -55,3 + 2392: -55,2 + 2407: -59,10 + 2408: -59,9 + 2533: 12,55 + 2549: 9,53 + 2566: 12,49 + 2567: 12,50 + 2568: 12,51 + 2569: 12,52 + 2570: 12,53 + 2571: 12,54 + 2575: 5,32 + 2751: 1,-26 + 2752: 1,-27 + 2753: 1,-28 + 2778: 8,14 + 2779: 8,15 + 2780: 8,16 + 2791: 6,16 + 2792: 6,15 + 2802: 8,17 + 2835: -53,8 - node: color: '#52B4E996' id: WarnLineGreyscaleE @@ -2993,6 +3090,8 @@ entities: 1167: -9,-22 1241: -15,-23 1242: -15,-22 + 2670: -17,-26 + 2678: -16,-29 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE @@ -3009,9 +3108,13 @@ entities: color: '#52B4E996' id: WarnLineGreyscaleN decals: - 1179: -12,-21 1257: -16,-21 1258: -20,-21 + 2661: -14,-29 + 2662: -13,-29 + 2666: -16,-27 + 2667: -15,-27 + 2669: -14,-27 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN @@ -3027,12 +3130,17 @@ entities: id: WarnLineGreyscaleS decals: 1240: -17,-24 + 2665: -15,-26 + 2675: -15,-28 + 2676: -14,-28 + 2677: -13,-28 - node: color: '#52B4E996' id: WarnLineGreyscaleW decals: 1175: -13,-23 1176: -13,-22 + 2671: -13,-26 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW @@ -3051,16 +3159,31 @@ entities: 2003: -47,-4 2077: -46,-4 2078: -45,-4 - 2129: -58,1 - 2130: -57,1 2148: -36,21 + 2386: -54,5 + 2434: -58,0 + 2435: -57,0 + 2436: -56,0 + 2437: -55,0 + 2438: -54,0 + 2543: 7,50 + 2544: 13,50 + 2545: 9,56 + 2546: 10,56 + 2547: 11,56 + 2801: 7,17 + 2808: -47,9 + 2809: -48,9 + 2810: -49,9 + 2811: -50,9 + 2812: -51,9 + 2813: -52,9 - node: color: '#FFFFFFFF' id: WarnLineS decals: 923: 21,7 924: 21,8 - 2131: -56,0 2133: -59,4 2140: -59,5 2147: -35,20 @@ -3070,6 +3193,36 @@ entities: 2179: -36,18 2342: -43,-3 2343: -43,-2 + 2387: -53,4 + 2388: -53,3 + 2389: -53,2 + 2400: -62,2 + 2401: -62,1 + 2402: -62,0 + 2403: -61,11 + 2404: -61,10 + 2405: -61,9 + 2540: 8,55 + 2548: 11,53 + 2560: 8,50 + 2561: 8,49 + 2562: 8,51 + 2563: 8,52 + 2564: 8,53 + 2565: 8,54 + 2756: 3,-26 + 2757: 3,-27 + 2758: 3,-28 + 2774: 6,14 + 2775: 6,15 + 2776: 6,16 + 2777: 6,17 + 2793: 8,16 + 2794: 8,15 + 2830: -46,6 + 2831: -46,7 + 2834: -46,8 + 2838: -46,5 - node: color: '#FFFFFFFF' id: WarnLineW @@ -3079,8 +3232,6 @@ entities: 920: 23,8 928: 24,1 930: 22,5 - 1236: -14,-29 - 1237: -13,-29 2088: -55,5 2089: -54,5 2090: -53,5 @@ -3094,6 +3245,14 @@ entities: 2344: -44,-4 2345: -45,-4 2346: -46,-4 + 2393: -54,1 + 2541: 7,54 + 2542: 13,54 + 2572: 9,50 + 2573: 10,50 + 2574: 11,50 + 2576: 6,31 + 2795: 7,14 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' @@ -3105,7 +3264,6 @@ entities: 217: 15,44 218: 14,44 219: 13,44 - 257: 10,50 871: -53,-12 872: -54,-12 873: -55,-12 @@ -3114,28 +3272,13 @@ entities: color: '#FFFFFFFF' id: WarningLine decals: - 38: 9,14 - 39: 9,15 - 40: 9,16 - 41: 9,17 64: -2,26 66: 0,22 67: 0,23 68: 0,24 69: 0,25 - 235: 8,49 - 236: 8,50 - 237: 8,51 - 238: 8,52 - 239: 8,53 - 240: 8,54 - 241: 8,55 - 252: 11,53 401: 19,-25 404: 27,-30 - 414: 3,-28 - 415: 3,-27 - 416: 3,-26 645: -38,-36 646: -38,-35 647: -38,-34 @@ -3151,10 +3294,6 @@ entities: 214: 15,46 215: 14,46 216: 13,46 - 242: 13,50 - 243: 7,50 - 258: 9,56 - 259: 11,56 407: 27,-27 408: 28,-27 409: 29,-27 @@ -3179,36 +3318,14 @@ entities: color: '#FFFFFFFF' id: WarningLine decals: - 34: 5,14 - 35: 5,15 - 36: 5,16 - 37: 5,17 65: -4,26 70: -6,22 71: -6,23 72: -6,24 73: -6,25 - 228: 12,49 - 229: 12,50 - 230: 12,51 - 231: 12,52 - 232: 12,53 - 233: 12,54 - 234: 12,55 - 253: 9,53 - 411: 1,-28 - 412: 1,-27 - 413: 1,-26 417: 3,-22 418: 3,-21 721: -39,-3 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 244: 13,54 - 245: 7,54 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -3231,6 +3348,7 @@ entities: id: WoodTrimThinCornerSe decals: 972: -27,-17 + 2599: -8,4 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerNe @@ -3246,6 +3364,7 @@ entities: id: WoodTrimThinInnerSe decals: 969: -30,-17 + 2606: -9,4 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -3261,6 +3380,15 @@ entities: 982: -11,-1 983: -11,0 984: -11,1 + 2600: -8,5 + 2601: -8,6 + 2602: -8,7 + 2603: -8,8 + 2604: -8,9 + 2605: -9,3 + 2863: -24,25 + 2864: -24,27 + 2865: -24,28 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -3291,6 +3419,10 @@ entities: 965: 9,26 970: -29,-17 971: -28,-17 + 2804: -14,28 + 2805: -13,28 + 2806: -12,28 + 2807: -11,28 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -3298,6 +3430,44 @@ entities: 979: -8,-1 980: -8,0 981: -8,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 2415: -61,11 + 2419: -60,10 + 2423: -59,9 + 2424: -60,0 + 2430: -62,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 2416: -60,11 + 2420: -59,10 + 2425: -61,0 + 2429: -62,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 2417: -59,11 + 2421: -61,9 + 2426: -62,0 + 2428: -61,1 + 2433: -60,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 2418: -61,10 + 2422: -60,9 + 2427: -60,1 + 2432: -61,2 - node: cleanable: True color: '#761C0C44' @@ -3639,7 +3809,7 @@ entities: -6,8: 0: 50245 -5,8: - 0: 4372 + 0: 65508 -8,0: 0: 65522 -8,-1: @@ -3647,13 +3817,13 @@ entities: -9,0: 0: 61412 -8,1: - 0: 28927 + 0: 61695 -9,1: 0: 61695 -8,2: - 0: 65311 + 0: 65303 -9,2: - 0: 63246 + 0: 63243 -9,3: 0: 63271 -7,1: @@ -3710,9 +3880,12 @@ entities: 0: 49073 -4,8: 0: 256 - 1: 4288 + 1: 192 -4,9: - 1: 4593 + 1: 241 + -5,9: + 1: 225 + 0: 16 -3,9: 1: 241 -2,9: @@ -3735,7 +3908,8 @@ entities: 1,11: 0: 61182 2,9: - 1: 17652 + 1: 176 + 0: 17476 2,10: 1: 3 0: 57344 @@ -3858,11 +4032,7 @@ entities: 0: 7 1: 192 -6,9: - 1: 240 - 0: 8 - -5,9: - 1: 4353 - 0: 16 + 1: 248 8,0: 1: 14 9,0: @@ -4211,13 +4381,13 @@ entities: -12,-5: 0: 64973 -13,-4: - 0: 61196 + 0: 61198 -12,-3: 0: 61133 -13,-3: 0: 61007 -12,-2: - 0: 3310 + 0: 36078 -13,-2: 0: 61678 -12,-1: @@ -4252,7 +4422,7 @@ entities: -9,-5: 0: 48059 -12,-7: - 0: 53656 + 0: 37784 -13,-7: 0: 15104 1: 4 @@ -4261,7 +4431,7 @@ entities: -13,-6: 0: 33017 -13,-5: - 0: 52232 + 0: 60936 -12,-8: 0: 32836 -12,-9: @@ -4331,7 +4501,7 @@ entities: 4: 2184 -13,4: 3: 2184 - 5: 546 + 6: 546 -12,5: 0: 1 1: 3856 @@ -4340,7 +4510,7 @@ entities: -11,5: 1: 784 -11,4: - 6: 546 + 5: 546 -11,6: 0: 49152 -11,3: @@ -4385,7 +4555,7 @@ entities: -10,1: 0: 61883 -10,2: - 0: 65295 + 0: 65287 -11,-9: 0: 2184 -11,-10: @@ -4670,9 +4840,9 @@ entities: temperature: 293.15 moles: - 0 + - 6666.982 - 0 - 0 - - 6666.982 - 0 - 0 - 0 @@ -4685,9 +4855,9 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -4729,6 +4899,13 @@ entities: - type: InstantAction originalIconColor: '#FFFFFFFF' container: 12120 + - uid: 8328 + components: + - type: Transform + parent: 6409 + - type: InstantAction + originalIconColor: '#FFFFFFFF' + container: 6409 - uid: 8638 components: - type: Transform @@ -4827,7 +5004,7 @@ entities: parent: 4812 - type: DeviceList devices: - - 12321 + - 13725 - 5071 - 5072 - 5224 @@ -5802,7 +5979,6 @@ entities: - uid: 3444 components: - type: Transform - rot: -1.5707963267948966 rad pos: -35.5,2.5 parent: 4812 - uid: 8862 @@ -6003,12 +6179,16 @@ entities: parent: 4812 - proto: AirlockEngineeringGlassLocked entities: - - uid: 8733 + - uid: 890 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,-3.5 parent: 4812 + - uid: 891 + components: + - type: Transform + pos: -48.5,-0.5 + parent: 4812 - uid: 9518 components: - type: Transform @@ -6034,12 +6214,6 @@ entities: - type: Transform pos: -40.5,-9.5 parent: 4812 - - uid: 12129 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-0.5 - parent: 4812 - proto: AirlockEngineeringLocked entities: - uid: 901 @@ -6050,7 +6224,6 @@ entities: - uid: 1098 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,18.5 parent: 4812 - uid: 3726 @@ -6078,11 +6251,6 @@ entities: - type: Transform pos: -9.5,-32.5 parent: 4812 - - uid: 7956 - components: - - type: Transform - pos: -35.5,7.5 - parent: 4812 - uid: 9564 components: - type: Transform @@ -6116,9 +6284,13 @@ entities: - uid: 10436 components: - type: Transform - rot: 3.141592653589793 rad pos: -46.5,-16.5 parent: 4812 + - uid: 10873 + components: + - type: Transform + pos: -36.5,7.5 + parent: 4812 - uid: 11386 components: - type: Transform @@ -6127,9 +6299,26 @@ entities: - uid: 11688 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,4.5 parent: 4812 + - uid: 13893 + components: + - type: Transform + pos: -33.5,7.5 + parent: 4812 +- proto: AirlockExternalCommandLocked + entities: + - uid: 729 + components: + - type: Transform + pos: -17.5,32.5 + parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 4014: + - DoorStatus: DoorBolt - proto: AirlockExternalEngineeringLocked entities: - uid: 9212 @@ -6146,7 +6335,6 @@ entities: - uid: 13456 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-4.5 parent: 4812 - type: DeviceLinkSink @@ -6157,6 +6345,11 @@ entities: - DoorStatus: DoorBolt - proto: AirlockExternalGlass entities: + - uid: 892 + components: + - type: Transform + pos: 57.5,-0.5 + parent: 4812 - uid: 3761 components: - type: Transform @@ -6226,11 +6419,6 @@ entities: - type: Transform pos: -41.5,-27.5 parent: 4812 - - uid: 9637 - components: - - type: Transform - pos: -17.5,30.5 - parent: 4812 - uid: 9651 components: - type: Transform @@ -6244,12 +6432,6 @@ entities: - DoorStatus: Close 9656: - DoorStatus: Close - - uid: 13036 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,-0.5 - parent: 4812 - uid: 13037 components: - type: Transform @@ -6310,6 +6492,20 @@ entities: linkedPorts: 2894: - DoorStatus: DoorBolt +- proto: AirlockExternalGlassCommandLocked + entities: + - uid: 4014 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -17.5,30.5 + parent: 4812 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 729: + - DoorStatus: DoorBolt - proto: AirlockExternalGlassEngineeringLocked entities: - uid: 9190 @@ -6386,6 +6582,11 @@ entities: parent: 4812 - proto: AirlockExternalGlassShuttleEmergencyLocked entities: + - uid: 1748 + components: + - type: Transform + pos: 49.5,-6.5 + parent: 4812 - uid: 13030 components: - type: Transform @@ -6401,11 +6602,6 @@ entities: - type: Transform pos: 55.5,-6.5 parent: 4812 - - uid: 13044 - components: - - type: Transform - pos: 49.5,-6.5 - parent: 4812 - proto: AirlockExternalGlassShuttleEscape entities: - uid: 3225 @@ -6414,12 +6610,6 @@ entities: rot: -1.5707963267948966 rad pos: -13.5,-39.5 parent: 4812 - - uid: 8492 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,32.5 - parent: 4812 - uid: 10917 components: - type: Transform @@ -6654,6 +6844,16 @@ entities: - type: Transform pos: -21.5,10.5 parent: 4812 + - uid: 2924 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 4812 + - uid: 2926 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 4812 - uid: 4378 components: - type: Transform @@ -6854,7 +7054,6 @@ entities: - uid: 4058 components: - type: Transform - rot: -1.5707963267948966 rad pos: -36.5,0.5 parent: 4812 - uid: 7949 @@ -6897,7 +7096,7 @@ entities: parent: 4812 - proto: AirlockMaintCommandLocked entities: - - uid: 7932 + - uid: 2726 components: - type: Transform pos: -17.5,21.5 @@ -7069,11 +7268,6 @@ entities: - type: Transform pos: -28.5,-21.5 parent: 4812 - - uid: 7954 - components: - - type: Transform - pos: -28.5,8.5 - parent: 4812 - uid: 8681 components: - type: Transform @@ -7151,6 +7345,11 @@ entities: - type: Transform pos: -15.5,-2.5 parent: 4812 + - uid: 11871 + components: + - type: Transform + pos: -28.5,7.5 + parent: 4812 - proto: AirlockMaintMedLocked entities: - uid: 6788 @@ -7199,20 +7398,6 @@ entities: - type: Transform pos: -8.5,10.5 parent: 4812 -- proto: AirlockMedicalGlass - entities: - - uid: 3402 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-22.5 - parent: 4812 - - uid: 4615 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 4812 - proto: AirlockMedicalGlassLocked entities: - uid: 2903 @@ -7777,14 +7962,6 @@ entities: - type: Transform pos: -2.5,-35.5 parent: 4812 - - uid: 12321 - components: - - type: Transform - pos: -10.5,-40.5 - parent: 4812 - - type: DeviceNetwork - deviceLists: - - 9593 - uid: 12326 components: - type: Transform @@ -7877,6 +8054,14 @@ entities: - type: DeviceNetwork deviceLists: - 13677 + - uid: 13725 + components: + - type: Transform + pos: -11.5,-43.5 + parent: 4812 + - type: DeviceNetwork + deviceLists: + - 9593 - uid: 13814 components: - type: Transform @@ -8057,6 +8242,14 @@ entities: - type: Transform pos: -14.5,25.5 parent: 4812 + - uid: 2677 + components: + - type: MetaData + name: Atmos Back APC + - type: Transform + rot: -1.5707963267948966 rad + pos: -40.5,8.5 + parent: 4812 - uid: 2832 components: - type: MetaData @@ -8103,6 +8296,8 @@ entities: parent: 4812 - uid: 4970 components: + - type: MetaData + name: Cryogenics APC - type: Transform rot: 1.5707963267948966 rad pos: -18.5,-28.5 @@ -8226,7 +8421,7 @@ entities: - uid: 9290 components: - type: MetaData - name: Atmospherics APC + name: Atmos Front APC - type: Transform pos: -38.5,6.5 parent: 4812 @@ -8283,12 +8478,16 @@ entities: parent: 4812 - uid: 12695 components: + - type: MetaData + name: Evac APC - type: Transform rot: 3.141592653589793 rad pos: 38.5,-4.5 parent: 4812 - uid: 13669 components: + - type: MetaData + name: TEG APC - type: Transform rot: 1.5707963267948966 rad pos: -55.5,6.5 @@ -8350,11 +8549,6 @@ entities: parent: 4812 - proto: AsteroidRock entities: - - uid: 1804 - components: - - type: Transform - pos: -51.5,-16.5 - parent: 4812 - uid: 2808 components: - type: Transform @@ -8400,6 +8594,11 @@ entities: - type: Transform pos: 19.5,38.5 parent: 4812 + - uid: 3260 + components: + - type: Transform + pos: -36.5,32.5 + parent: 4812 - uid: 3262 components: - type: Transform @@ -8485,6 +8684,11 @@ entities: - type: Transform pos: 22.5,34.5 parent: 4812 + - uid: 3402 + components: + - type: Transform + pos: -35.5,32.5 + parent: 4812 - uid: 3427 components: - type: Transform @@ -8660,6 +8864,11 @@ entities: - type: Transform pos: 18.5,49.5 parent: 4812 + - uid: 3611 + components: + - type: Transform + pos: -38.5,28.5 + parent: 4812 - uid: 3612 components: - type: Transform @@ -9010,11 +9219,31 @@ entities: - type: Transform pos: 6.5,57.5 parent: 4812 + - uid: 3768 + components: + - type: Transform + pos: -38.5,29.5 + parent: 4812 - uid: 3976 components: - type: Transform pos: -36.5,27.5 parent: 4812 + - uid: 3980 + components: + - type: Transform + pos: -39.5,27.5 + parent: 4812 + - uid: 3981 + components: + - type: Transform + pos: -39.5,28.5 + parent: 4812 + - uid: 4013 + components: + - type: Transform + pos: -39.5,29.5 + parent: 4812 - uid: 4055 components: - type: Transform @@ -9030,11 +9259,6 @@ entities: - type: Transform pos: 26.5,8.5 parent: 4812 - - uid: 5032 - components: - - type: Transform - pos: -36.5,32.5 - parent: 4812 - uid: 5625 components: - type: Transform @@ -9190,6 +9414,11 @@ entities: - type: Transform pos: 26.5,6.5 parent: 4812 + - uid: 7622 + components: + - type: Transform + pos: -19.5,33.5 + parent: 4812 - uid: 7739 components: - type: Transform @@ -9620,11 +9849,6 @@ entities: - type: Transform pos: -52.5,-15.5 parent: 4812 - - uid: 10434 - components: - - type: Transform - pos: -51.5,-15.5 - parent: 4812 - uid: 10444 components: - type: Transform @@ -9645,16 +9869,6 @@ entities: - type: Transform pos: -54.5,-17.5 parent: 4812 - - uid: 10452 - components: - - type: Transform - pos: -51.5,-17.5 - parent: 4812 - - uid: 10458 - components: - - type: Transform - pos: -51.5,-18.5 - parent: 4812 - uid: 10460 components: - type: Transform @@ -9835,11 +10049,6 @@ entities: - type: Transform pos: -34.5,33.5 parent: 4812 - - uid: 10955 - components: - - type: Transform - pos: -35.5,32.5 - parent: 4812 - uid: 10956 components: - type: Transform @@ -9928,12 +10137,7 @@ entities: - uid: 11001 components: - type: Transform - pos: -38.5,28.5 - parent: 4812 - - uid: 11002 - components: - - type: Transform - pos: -38.5,29.5 + pos: -14.5,33.5 parent: 4812 - uid: 11003 components: @@ -10025,21 +10229,6 @@ entities: - type: Transform pos: -39.5,26.5 parent: 4812 - - uid: 11027 - components: - - type: Transform - pos: -39.5,27.5 - parent: 4812 - - uid: 11028 - components: - - type: Transform - pos: -39.5,28.5 - parent: 4812 - - uid: 11029 - components: - - type: Transform - pos: -39.5,29.5 - parent: 4812 - uid: 11616 components: - type: Transform @@ -10667,6 +10856,11 @@ entities: parent: 4812 - proto: AsteroidRockMining entities: + - uid: 1484 + components: + - type: Transform + pos: -52.5,-3.5 + parent: 4812 - uid: 1805 components: - type: Transform @@ -10737,11 +10931,6 @@ entities: - type: Transform pos: -58.5,-3.5 parent: 4812 - - uid: 12592 - components: - - type: Transform - pos: -52.5,-3.5 - parent: 4812 - uid: 12698 components: - type: Transform @@ -10919,12 +11108,6 @@ entities: rot: -1.5707963267948966 rad pos: -14.5,-43.5 parent: 4812 - - uid: 8494 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,32.5 - parent: 4812 - uid: 9630 components: - type: Transform @@ -11538,11 +11721,6 @@ entities: parent: 4812 - proto: BlastDoor entities: - - uid: 729 - components: - - type: Transform - pos: 8.5,18.5 - parent: 4812 - uid: 771 components: - type: Transform @@ -11558,6 +11736,16 @@ entities: - type: Transform pos: 23.5,28.5 parent: 4812 + - uid: 4413 + components: + - type: Transform + pos: 8.5,18.5 + parent: 4812 + - uid: 4615 + components: + - type: Transform + pos: 2.5,-25.5 + parent: 4812 - uid: 5573 components: - type: Transform @@ -11583,33 +11771,24 @@ entities: - type: Transform pos: 2.5,-26.5 parent: 4812 - - uid: 5796 - components: - - type: Transform - pos: 2.5,-25.5 - parent: 4812 - uid: 9455 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,10.5 parent: 4812 - uid: 9828 components: - type: Transform - rot: -1.5707963267948966 rad pos: -62.5,1.5 parent: 4812 - uid: 12970 components: - type: Transform - rot: -1.5707963267948966 rad pos: 27.5,12.5 parent: 4812 - uid: 13287 components: - type: Transform - rot: -1.5707963267948966 rad pos: 29.5,12.5 parent: 4812 - proto: BlockGameArcade @@ -11874,6 +12053,11 @@ entities: - type: Transform pos: 22.50444,17.647528 parent: 4812 + - uid: 13721 + components: + - type: Transform + pos: -58.49076,5.689682 + parent: 4812 - proto: BoxFlashbang entities: - uid: 8369 @@ -12138,6 +12322,24 @@ entities: rot: 3.141592653589793 rad pos: -54.5,7.5 parent: 4812 + - uid: 9595 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 4812 + - uid: 10878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,26.5 + parent: 4812 + - uid: 13412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 4812 - uid: 13615 components: - type: Transform @@ -12167,6 +12369,44 @@ entities: - type: Transform pos: -20.5,26.5 parent: 4812 + - uid: 13855 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 4812 + - uid: 13856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 4812 + - uid: 13884 + components: + - type: Transform + pos: -27.780294,20.467564 + parent: 4812 + - uid: 13885 + components: + - type: Transform + pos: -27.780294,17.470497 + parent: 4812 +- proto: ButtonFrameExit + entities: + - uid: 4657 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.534462,-23.217846 + parent: 4812 +- proto: ButtonFrameGrey + entities: + - uid: 13720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,-0.5 + parent: 4812 - proto: CableApcExtension entities: - uid: 258 @@ -14534,6 +14774,11 @@ entities: - type: Transform pos: -11.5,-57.5 parent: 4812 + - uid: 2678 + components: + - type: Transform + pos: -43.5,0.5 + parent: 4812 - uid: 2815 components: - type: Transform @@ -17319,6 +17564,11 @@ entities: - type: Transform pos: -8.5,-21.5 parent: 4812 + - uid: 7463 + components: + - type: Transform + pos: -49.5,-16.5 + parent: 4812 - uid: 7489 components: - type: Transform @@ -17774,6 +18024,11 @@ entities: - type: Transform pos: -36.5,21.5 parent: 4812 + - uid: 7954 + components: + - type: Transform + pos: -41.5,4.5 + parent: 4812 - uid: 8057 components: - type: Transform @@ -18634,6 +18889,11 @@ entities: - type: Transform pos: -38.5,6.5 parent: 4812 + - uid: 9302 + components: + - type: Transform + pos: -41.5,5.5 + parent: 4812 - uid: 9304 components: - type: Transform @@ -18764,16 +19024,6 @@ entities: - type: Transform pos: -29.5,4.5 parent: 4812 - - uid: 9406 - components: - - type: Transform - pos: -39.5,5.5 - parent: 4812 - - uid: 9451 - components: - - type: Transform - pos: -42.5,0.5 - parent: 4812 - uid: 9456 components: - type: Transform @@ -18919,11 +19169,6 @@ entities: - type: Transform pos: 47.5,-5.5 parent: 4812 - - uid: 9842 - components: - - type: Transform - pos: -43.5,0.5 - parent: 4812 - uid: 9844 components: - type: Transform @@ -19749,11 +19994,6 @@ entities: - type: Transform pos: -37.5,7.5 parent: 4812 - - uid: 10884 - components: - - type: Transform - pos: -36.5,7.5 - parent: 4812 - uid: 10885 components: - type: Transform @@ -19774,11 +20014,6 @@ entities: - type: Transform pos: -32.5,7.5 parent: 4812 - - uid: 10889 - components: - - type: Transform - pos: -31.5,7.5 - parent: 4812 - uid: 10890 components: - type: Transform @@ -21169,6 +21404,36 @@ entities: - type: Transform pos: -61.5,0.5 parent: 4812 + - uid: 13870 + components: + - type: Transform + pos: -31.5,10.5 + parent: 4812 + - uid: 13871 + components: + - type: Transform + pos: -31.5,9.5 + parent: 4812 + - uid: 13872 + components: + - type: Transform + pos: -31.5,8.5 + parent: 4812 + - uid: 13873 + components: + - type: Transform + pos: -31.5,7.5 + parent: 4812 + - uid: 13877 + components: + - type: Transform + pos: -40.5,8.5 + parent: 4812 + - uid: 13894 + components: + - type: Transform + pos: -17.5,32.5 + parent: 4812 - proto: CableApcStack entities: - uid: 6196 @@ -21198,11 +21463,6 @@ entities: parent: 4812 - proto: CableHV entities: - - uid: 741 - components: - - type: Transform - pos: -39.5,3.5 - parent: 4812 - uid: 902 components: - type: Transform @@ -21668,6 +21928,11 @@ entities: - type: Transform pos: -9.5,32.5 parent: 4812 + - uid: 2663 + components: + - type: Transform + pos: -28.5,7.5 + parent: 4812 - uid: 2839 components: - type: Transform @@ -21963,6 +22228,16 @@ entities: - type: Transform pos: -37.5,2.5 parent: 4812 + - uid: 3359 + components: + - type: Transform + pos: -38.5,4.5 + parent: 4812 + - uid: 3476 + components: + - type: Transform + pos: -34.5,8.5 + parent: 4812 - uid: 3789 components: - type: Transform @@ -22183,6 +22458,11 @@ entities: - type: Transform pos: 17.5,2.5 parent: 4812 + - uid: 4450 + components: + - type: Transform + pos: -33.5,7.5 + parent: 4812 - uid: 5014 components: - type: Transform @@ -22868,11 +23148,6 @@ entities: - type: Transform pos: -34.5,7.5 parent: 4812 - - uid: 7963 - components: - - type: Transform - pos: -33.5,7.5 - parent: 4812 - uid: 7964 components: - type: Transform @@ -22893,21 +23168,6 @@ entities: - type: Transform pos: -29.5,7.5 parent: 4812 - - uid: 7968 - components: - - type: Transform - pos: -29.5,8.5 - parent: 4812 - - uid: 7969 - components: - - type: Transform - pos: -28.5,8.5 - parent: 4812 - - uid: 7970 - components: - - type: Transform - pos: -27.5,8.5 - parent: 4812 - uid: 7971 components: - type: Transform @@ -22978,6 +23238,11 @@ entities: - type: Transform pos: -15.5,10.5 parent: 4812 + - uid: 8002 + components: + - type: Transform + pos: -26.5,7.5 + parent: 4812 - uid: 8382 components: - type: Transform @@ -24273,6 +24538,11 @@ entities: - type: Transform pos: -48.5,-6.5 parent: 4812 + - uid: 10722 + components: + - type: Transform + pos: -27.5,7.5 + parent: 4812 - uid: 11394 components: - type: Transform @@ -25597,6 +25867,16 @@ entities: - type: Transform pos: 13.5,32.5 parent: 4812 + - uid: 2844 + components: + - type: Transform + pos: -44.5,8.5 + parent: 4812 + - uid: 2938 + components: + - type: Transform + pos: -43.5,8.5 + parent: 4812 - uid: 3120 components: - type: Transform @@ -26612,16 +26892,6 @@ entities: - type: Transform pos: -34.5,7.5 parent: 4812 - - uid: 8001 - components: - - type: Transform - pos: -35.5,7.5 - parent: 4812 - - uid: 8002 - components: - - type: Transform - pos: -36.5,7.5 - parent: 4812 - uid: 8003 components: - type: Transform @@ -27167,6 +27437,11 @@ entities: - type: Transform pos: -38.5,4.5 parent: 4812 + - uid: 9406 + components: + - type: Transform + pos: -34.5,8.5 + parent: 4812 - uid: 9524 components: - type: Transform @@ -27837,6 +28112,21 @@ entities: - type: Transform pos: -32.5,15.5 parent: 4812 + - uid: 13874 + components: + - type: Transform + pos: -42.5,8.5 + parent: 4812 + - uid: 13875 + components: + - type: Transform + pos: -41.5,8.5 + parent: 4812 + - uid: 13876 + components: + - type: Transform + pos: -40.5,8.5 + parent: 4812 - proto: CableMVStack entities: - uid: 8586 @@ -27946,11 +28236,6 @@ entities: - type: Transform pos: -46.5,18.5 parent: 4812 - - uid: 13612 - components: - - type: Transform - pos: -51.5,0.5 - parent: 4812 - proto: Carpet entities: - uid: 1739 @@ -27998,21 +28283,12 @@ entities: - type: Transform pos: -8.5,5.5 parent: 4812 - - uid: 1748 + - uid: 4656 components: - type: Transform + rot: 1.5707963267948966 rad pos: -8.5,4.5 parent: 4812 - - uid: 2924 - components: - - type: Transform - pos: -2.5,-15.5 - parent: 4812 - - uid: 2926 - components: - - type: Transform - pos: -3.5,-15.5 - parent: 4812 - uid: 5377 components: - type: Transform @@ -28053,11 +28329,6 @@ entities: - type: Transform pos: -3.5,-17.5 parent: 4812 - - uid: 6402 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 4812 - uid: 6403 components: - type: Transform @@ -28128,40 +28399,10 @@ entities: - type: Transform pos: -29.5,-39.5 parent: 4812 - - uid: 13710 - components: - - type: Transform - pos: -1.5,-15.5 - parent: 4812 - - uid: 13718 - components: - - type: Transform - pos: -2.5,-0.5 - parent: 4812 - - uid: 13719 - components: - - type: Transform - pos: -3.5,0.5 - parent: 4812 - - uid: 13720 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 4812 - - uid: 13721 + - uid: 13846 components: - type: Transform - pos: -2.5,0.5 - parent: 4812 - - uid: 13722 - components: - - type: Transform - pos: -1.5,0.5 - parent: 4812 - - uid: 13723 - components: - - type: Transform - pos: -1.5,-0.5 + pos: -3.5,-16.5 parent: 4812 - proto: CarpetBlack entities: @@ -28566,6 +28807,18 @@ entities: parent: 4812 - proto: Catwalk entities: + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-17.5 + parent: 4812 + - uid: 896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-16.5 + parent: 4812 - uid: 1542 components: - type: Transform @@ -28598,6 +28851,12 @@ entities: - type: Transform pos: 1.5,14.5 parent: 4812 + - uid: 2696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,8.5 + parent: 4812 - uid: 2905 components: - type: Transform @@ -28765,11 +29024,6 @@ entities: - type: Transform pos: 6.5,34.5 parent: 4812 - - uid: 4078 - components: - - type: Transform - pos: -41.5,6.5 - parent: 4812 - uid: 4143 components: - type: Transform @@ -28800,6 +29054,17 @@ entities: rot: -1.5707963267948966 rad pos: 64.5,-1.5 parent: 4812 + - uid: 4449 + components: + - type: Transform + pos: -35.5,7.5 + parent: 4812 + - uid: 4453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 4812 - uid: 4487 components: - type: Transform @@ -28843,6 +29108,12 @@ entities: - type: Transform pos: 17.5,-7.5 parent: 4812 + - uid: 4757 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -17.5,31.5 + parent: 4812 - uid: 4860 components: - type: Transform @@ -28961,6 +29232,11 @@ entities: rot: -1.5707963267948966 rad pos: -59.5,7.5 parent: 4812 + - uid: 7968 + components: + - type: Transform + pos: 8.5,35.5 + parent: 4812 - uid: 8552 components: - type: Transform @@ -29028,12 +29304,6 @@ entities: rot: -1.5707963267948966 rad pos: 55.5,-5.5 parent: 4812 - - uid: 8730 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,7.5 - parent: 4812 - uid: 8742 components: - type: Transform @@ -29054,8 +29324,7 @@ entities: - uid: 8810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,7.5 + pos: -56.5,7.5 parent: 4812 - uid: 8832 components: @@ -29086,11 +29355,6 @@ entities: rot: -1.5707963267948966 rad pos: -48.5,-3.5 parent: 4812 - - uid: 9302 - components: - - type: Transform - pos: -41.5,9.5 - parent: 4812 - uid: 9303 components: - type: Transform @@ -29156,17 +29420,6 @@ entities: - type: Transform pos: -48.5,1.5 parent: 4812 - - uid: 9346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,7.5 - parent: 4812 - - uid: 9348 - components: - - type: Transform - pos: -41.5,10.5 - parent: 4812 - uid: 9373 components: - type: Transform @@ -29182,11 +29435,6 @@ entities: - type: Transform pos: -53.5,14.5 parent: 4812 - - uid: 9376 - components: - - type: Transform - pos: -39.5,3.5 - parent: 4812 - uid: 9417 components: - type: Transform @@ -29244,6 +29492,11 @@ entities: - type: Transform pos: -36.5,-0.5 parent: 4812 + - uid: 9842 + components: + - type: Transform + pos: -37.5,7.5 + parent: 4812 - uid: 9935 components: - type: Transform @@ -29259,11 +29512,6 @@ entities: - type: Transform pos: -40.5,-12.5 parent: 4812 - - uid: 9938 - components: - - type: Transform - pos: -40.5,-11.5 - parent: 4812 - uid: 10277 components: - type: Transform @@ -29685,15 +29933,15 @@ entities: - type: Transform pos: -32.5,7.5 parent: 4812 - - uid: 10874 + - uid: 10875 components: - type: Transform - pos: -33.5,7.5 + pos: -34.5,7.5 parent: 4812 - - uid: 10875 + - uid: 10946 components: - type: Transform - pos: -34.5,7.5 + pos: -57.5,7.5 parent: 4812 - uid: 11252 components: @@ -29980,6 +30228,11 @@ entities: - type: Transform pos: 36.5,-36.5 parent: 4812 + - uid: 11736 + components: + - type: Transform + pos: -51.5,3.5 + parent: 4812 - uid: 11814 components: - type: Transform @@ -30169,12 +30422,6 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,40.5 parent: 4812 - - uid: 13142 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,35.5 - parent: 4812 - uid: 13143 components: - type: Transform @@ -30239,6 +30486,11 @@ entities: - type: Transform pos: -50.5,3.5 parent: 4812 + - uid: 13519 + components: + - type: Transform + pos: -52.5,3.5 + parent: 4812 - uid: 13541 components: - type: Transform @@ -30249,11 +30501,6 @@ entities: - type: Transform pos: -48.5,2.5 parent: 4812 - - uid: 13554 - components: - - type: Transform - pos: -51.5,3.5 - parent: 4812 - uid: 13645 components: - type: Transform @@ -30305,6 +30552,183 @@ entities: rot: -1.5707963267948966 rad pos: 32.5,-39.5 parent: 4812 + - uid: 13836 + components: + - type: Transform + pos: -17.5,23.5 + parent: 4812 + - uid: 13837 + components: + - type: Transform + pos: -17.5,24.5 + parent: 4812 + - uid: 13838 + components: + - type: Transform + pos: -17.5,25.5 + parent: 4812 + - uid: 13839 + components: + - type: Transform + pos: -17.5,26.5 + parent: 4812 + - uid: 13841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-15.5 + parent: 4812 + - uid: 13865 + components: + - type: Transform + pos: -50.5,-4.5 + parent: 4812 + - uid: 13866 + components: + - type: Transform + pos: -47.5,-20.5 + parent: 4812 + - uid: 13869 + components: + - type: Transform + pos: -29.5,7.5 + parent: 4812 + - uid: 13878 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,8.5 + parent: 4812 + - uid: 13879 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,8.5 + parent: 4812 + - uid: 13880 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -45.5,8.5 + parent: 4812 + - uid: 13881 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -44.5,8.5 + parent: 4812 + - uid: 13882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -43.5,8.5 + parent: 4812 + - uid: 13883 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,8.5 + parent: 4812 + - uid: 13895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,1.5 + parent: 4812 + - uid: 13896 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-0.5 + parent: 4812 + - uid: 13897 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-0.5 + parent: 4812 + - uid: 13898 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-0.5 + parent: 4812 + - uid: 13899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-0.5 + parent: 4812 + - uid: 13900 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,3.5 + parent: 4812 + - uid: 13901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 4812 + - uid: 13902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 4812 + - uid: 13903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-0.5 + parent: 4812 + - uid: 13904 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-0.5 + parent: 4812 + - uid: 13905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,10.5 + parent: 4812 + - uid: 13906 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,10.5 + parent: 4812 + - uid: 13907 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,10.5 + parent: 4812 + - uid: 13908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 4812 + - uid: 13909 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,10.5 + parent: 4812 + - uid: 13912 + components: + - type: Transform + pos: -38.5,7.5 + parent: 4812 + - uid: 13913 + components: + - type: Transform + pos: -39.5,7.5 + parent: 4812 - proto: Chair entities: - uid: 3239 @@ -30582,12 +31006,6 @@ entities: rot: -1.5707963267948966 rad pos: -43.5,-23.5 parent: 4812 - - uid: 10911 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-24.5 - parent: 4812 - uid: 11773 components: - type: Transform @@ -30870,12 +31288,6 @@ entities: rot: 3.141592653589793 rad pos: -10.5,11.5 parent: 4812 - - uid: 11871 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,11.5 - parent: 4812 - uid: 13423 components: - type: Transform @@ -31451,29 +31863,6 @@ entities: - 0 - 0 - 0 - - uid: 2677 - components: - - type: Transform - pos: -8.5,33.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 2845 components: - type: Transform @@ -31668,6 +32057,11 @@ entities: - 0 - 0 - 0 + - uid: 9451 + components: + - type: Transform + pos: -5.5,31.5 + parent: 4812 - uid: 9632 components: - type: Transform @@ -31754,11 +32148,26 @@ entities: parent: 4812 - proto: ClosetEmergencyN2FilledRandom entities: + - uid: 7969 + components: + - type: Transform + pos: -11.5,11.5 + parent: 4812 - uid: 9631 components: - type: Transform pos: -12.5,-38.5 parent: 4812 + - uid: 10724 + components: + - type: Transform + pos: 24.5,-32.5 + parent: 4812 + - uid: 13861 + components: + - type: Transform + pos: -45.5,-23.5 + parent: 4812 - proto: ClosetFireFilled entities: - uid: 1514 @@ -32585,11 +32994,6 @@ entities: - type: Transform pos: 25.533524,-9.424093 parent: 4812 - - uid: 12144 - components: - - type: Transform - pos: -14.245123,35.0185 - parent: 473 - proto: ClothingEyesGlasses entities: - uid: 6205 @@ -32877,10 +33281,10 @@ entities: parent: 4812 - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 10725 + - uid: 13868 components: - type: Transform - pos: -36.26352,8.306009 + pos: -38.27839,8.4637165 parent: 4812 - proto: ClothingHeadHatWeldingMaskPainted entities: @@ -33198,33 +33602,6 @@ entities: - type: Transform pos: 37.580452,-32.58558 parent: 4812 -- proto: ClothingOuterSanta - entities: - - uid: 13729 - components: - - type: Transform - pos: -31.658846,17.553913 - parent: 4812 - - uid: 13730 - components: - - type: Transform - pos: -31.568567,17.58866 - parent: 4812 - - uid: 13731 - components: - - type: Transform - pos: -31.47829,17.616457 - parent: 4812 - - uid: 13732 - components: - - type: Transform - pos: -31.35329,17.658152 - parent: 4812 - - uid: 13733 - components: - - type: Transform - pos: -31.269957,17.706797 - parent: 4812 - proto: ClothingOuterSuitEmergency entities: - uid: 11671 @@ -33631,6 +34008,16 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-20.5 parent: 4812 + - uid: 13847 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 4812 + - uid: 13848 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 4812 - proto: CommandmentCircuitBoard entities: - uid: 12653 @@ -33907,6 +34294,11 @@ entities: parent: 4812 - proto: ComputerRadar entities: + - uid: 10879 + components: + - type: Transform + pos: -8.5,34.5 + parent: 4812 - uid: 12672 components: - type: Transform @@ -34559,15 +34951,15 @@ entities: - type: Transform pos: -34.5,-12.5 parent: 4812 - - uid: 6173 + - uid: 6174 components: - type: Transform - pos: -29.413927,7.5544257 + pos: 19.5,4.5 parent: 4812 - - uid: 6174 + - uid: 10884 components: - type: Transform - pos: 19.5,4.5 + pos: -29.5,8.5 parent: 4812 - uid: 11472 components: @@ -34739,14 +35131,7 @@ entities: - uid: 1723 components: - type: Transform - pos: -9.581426,-1.3989067 - parent: 4812 -- proto: DecoratedFirTree - entities: - - uid: 13717 - components: - - type: Transform - pos: -2.5,0.5 + pos: 25.529842,4.5918045 parent: 4812 - proto: DefaultStationBeaconAICore entities: @@ -34799,15 +35184,15 @@ entities: parent: 4812 - proto: DefaultStationBeaconAtmospherics entities: - - uid: 12335 + - uid: 7955 components: - type: Transform - pos: -31.5,2.5 + pos: -39.5,3.5 parent: 4812 - - uid: 13412 + - uid: 12335 components: - type: Transform - pos: -40.5,4.5 + pos: -31.5,2.5 parent: 4812 - proto: DefaultStationBeaconBar entities: @@ -34937,11 +35322,6 @@ entities: parent: 4812 - proto: DefaultStationBeaconEscapePod entities: - - uid: 3980 - components: - - type: Transform - pos: -17.5,31.5 - parent: 4812 - uid: 8475 components: - type: Transform @@ -35138,13 +35518,6 @@ entities: - type: Transform pos: 23.5,4.5 parent: 4812 -- proto: DefaultStationBeaconTEG - entities: - - uid: 6560 - components: - - type: Transform - pos: -51.5,3.5 - parent: 4812 - proto: DefaultStationBeaconTheater entities: - uid: 12481 @@ -38208,7 +38581,14 @@ entities: - uid: 2714 components: - type: Transform - pos: -5.405396,24.535454 + pos: -3.6520057,26.650915 + parent: 4812 +- proto: DrinkGlass + entities: + - uid: 10725 + components: + - type: Transform + pos: -3.3290887,26.546677 parent: 4812 - proto: DrinkGlassWhite entities: @@ -38771,13 +39151,6 @@ entities: parent: 4812 - type: FaxMachine name: QM's Office - - uid: 4990 - components: - - type: Transform - pos: -6.5,34.5 - parent: 4812 - - type: FaxMachine - name: Bridge - uid: 7216 components: - type: Transform @@ -38820,6 +39193,13 @@ entities: parent: 4812 - type: FaxMachine name: Engineering + - uid: 13862 + components: + - type: Transform + pos: -3.5,34.5 + parent: 4812 + - type: FaxMachine + name: Bridge - proto: FaxMachineCaptain entities: - uid: 7298 @@ -39388,7 +39768,6 @@ entities: parent: 4812 - type: DeviceList devices: - - 12321 - 5072 - 5071 - uid: 12342 @@ -40548,6 +40927,14 @@ entities: parent: 4812 - type: Fixtures fixtures: {} + - uid: 4658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-27.5 + parent: 4812 + - type: Fixtures + fixtures: {} - uid: 7383 components: - type: Transform @@ -40569,6 +40956,13 @@ entities: parent: 4812 - type: Fixtures fixtures: {} + - uid: 9938 + components: + - type: Transform + pos: 14.5,8.5 + parent: 4812 + - type: Fixtures + fixtures: {} - uid: 13785 components: - type: Transform @@ -40870,13 +41264,6 @@ entities: - type: Transform pos: -35.581154,26.517508 parent: 4812 -- proto: FloraTreeChristmas02 - entities: - - uid: 13709 - components: - - type: Transform - pos: -2.5,-16.5 - parent: 4812 - proto: FlyAmanitaSeeds entities: - uid: 9620 @@ -41127,6 +41514,13 @@ entities: - type: Transform pos: -2.6495848,-3.5494857 parent: 4812 +- proto: FuelDispenser + entities: + - uid: 13842 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 4812 - proto: GameMasterCircuitBoard entities: - uid: 12645 @@ -41154,6 +41548,8 @@ entities: rot: 1.5707963267948966 rad pos: -13.5,-27.5 parent: 4812 + - type: GasFilter + filteredGas: CarbonDioxide - type: AtmosPipeColor color: '#990000FF' - uid: 9230 @@ -41260,14 +41656,6 @@ entities: inletOneConcentration: 0.22 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11908 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - proto: GasOutletInjector entities: - uid: 4002 @@ -41314,7 +41702,7 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#947507FF' - - uid: 13519 + - uid: 12339 components: - type: Transform rot: 1.5707963267948966 rad @@ -41408,33 +41796,18 @@ entities: rot: -1.5707963267948966 rad pos: -42.5,18.5 parent: 4812 - - uid: 9329 + - uid: 9535 components: - type: Transform pos: -57.5,7.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 9901 components: - type: Transform pos: -54.5,15.5 parent: 4812 - - uid: 12339 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 12775 - components: - - type: Transform - pos: -58.5,9.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - proto: GasPipeBend entities: - uid: 560 @@ -41682,6 +42055,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0335FCFF' + - uid: 4082 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -61.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 4188 components: - type: Transform @@ -41775,6 +42156,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 6392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -61.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 6624 components: - type: Transform @@ -41791,12 +42180,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6651 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-26.5 - parent: 4812 - uid: 6783 components: - type: Transform @@ -41950,6 +42333,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' + - uid: 9329 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -54.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 9354 components: - type: Transform @@ -41965,14 +42356,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9535 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 9718 components: - type: Transform @@ -42004,14 +42387,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' - - uid: 11733 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 11972 components: - type: Transform @@ -42057,23 +42432,23 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13234 + components: + - type: Transform + pos: -49.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13365 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,10.5 parent: 4812 - - uid: 13443 + - uid: 13444 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,2.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 13462 - components: - - type: Transform pos: -56.5,1.5 parent: 4812 - type: AtmosPipeColor @@ -42086,13 +42461,22 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#947507FF' + - uid: 13504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 13507 components: - type: Transform - pos: -54.5,1.5 + rot: 3.141592653589793 rad + pos: -49.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#947507FF' - uid: 13508 components: - type: Transform @@ -42101,29 +42485,36 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 13539 + - uid: 13534 components: - type: Transform - pos: -51.5,5.5 + rot: -1.5707963267948966 rad + pos: -54.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 13739 + color: '#9F2B68FF' + - uid: 13554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,3.5 + rot: 1.5707963267948966 rad + pos: -56.5,9.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' - - uid: 13740 + - uid: 13777 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,3.5 + pos: -51.5,1.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' + - uid: 13850 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-27.5 + parent: 4812 - proto: GasPipeFourway entities: - uid: 402 @@ -42203,13 +42594,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#FF1212FF' - - uid: 4081 - components: - - type: Transform - pos: -51.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 5086 components: - type: Transform @@ -42325,14 +42709,14 @@ entities: color: '#03FCD3FF' - proto: GasPipeSensorTEGHot entities: - - uid: 10443 + - uid: 13218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,3.5 + rot: -1.5707963267948966 rad + pos: -55.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - proto: GasPipeSensorWaste entities: - uid: 10970 @@ -45727,7 +46111,7 @@ entities: components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,5.5 + pos: -54.5,5.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' @@ -46360,14 +46744,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 4082 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 4144 components: - type: Transform @@ -46757,6 +47133,12 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 4797 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-26.5 + parent: 4812 - uid: 4842 components: - type: Transform @@ -47012,6 +47394,12 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 5032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -14.5,-27.5 + parent: 4812 - uid: 5077 components: - type: Transform @@ -48809,6 +49197,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 6402 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 6418 components: - type: Transform @@ -49051,6 +49447,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 6560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 6571 components: - type: Transform @@ -51066,14 +51470,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 9219 + - uid: 9211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,5.5 + rot: 3.141592653589793 rad + pos: -51.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 9226 components: - type: Transform @@ -51212,6 +51616,13 @@ entities: rot: -1.5707963267948966 rad pos: -45.5,12.5 parent: 4812 + - uid: 9278 + components: + - type: Transform + pos: -57.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 9282 components: - type: Transform @@ -51251,7 +51662,8 @@ entities: - uid: 9314 components: - type: Transform - pos: -57.5,6.5 + rot: -1.5707963267948966 rad + pos: -50.5,5.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' @@ -51292,6 +51704,13 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 9528 + components: + - type: Transform + pos: -56.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9543 components: - type: Transform @@ -51316,11 +51735,17 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 10416 + - uid: 10090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,1.5 + pos: -56.5,7.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 10443 + components: + - type: Transform + pos: -56.5,6.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' @@ -51351,14 +51776,22 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 11894 + - uid: 11908 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -51.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 11913 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,2.5 + pos: -59.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 11963 components: - type: Transform @@ -51756,6 +52189,22 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 12142 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 12321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -56.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 12682 components: - type: Transform @@ -51820,11 +52269,11 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' - - uid: 12773 + - uid: 12775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,5.5 + rot: -1.5707963267948966 rad + pos: -55.5,9.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' @@ -52105,6 +52554,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' + - uid: 12966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 13066 components: - type: Transform @@ -52306,91 +52763,149 @@ entities: rot: 3.141592653589793 rad pos: -54.5,13.5 parent: 4812 - - uid: 13440 + - uid: 13450 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,4.5 + rot: 3.141592653589793 rad + pos: -50.5,-0.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 13442 + color: '#03FCD3FF' + - uid: 13462 + components: + - type: Transform + pos: -55.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13525 + components: + - type: Transform + pos: -50.5,3.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13527 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 13444 + color: '#03FCD3FF' + - uid: 13530 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,4.5 + pos: -57.5,0.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 13450 + color: '#9F2B68FF' + - uid: 13531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-0.5 + pos: -50.5,1.5 parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 13504 + - uid: 13533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,6.5 + pos: -55.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 13544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 13709 + components: + - type: Transform + pos: -56.5,3.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' - - uid: 13525 + - uid: 13711 components: - type: Transform - pos: -50.5,3.5 + rot: 1.5707963267948966 rad + pos: -59.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 13527 + color: '#9F2B68FF' + - uid: 13722 components: - type: Transform - pos: -50.5,4.5 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 parent: 4812 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 13530 + color: '#947507FF' + - uid: 13723 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,7.5 + rot: -1.5707963267948966 rad + pos: -52.5,5.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' - - uid: 13531 + - uid: 13726 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,8.5 + pos: -56.5,8.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' - - uid: 13533 + - uid: 13729 components: - type: Transform - pos: -55.5,0.5 + pos: -56.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#03FCD3FF' - - uid: 13742 + color: '#947507FF' + - uid: 13730 + components: + - type: Transform + pos: -57.5,6.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 13731 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,3.5 + pos: -58.5,1.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' + - uid: 13732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,2.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 13832 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -53.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 13833 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - proto: GasPipeTJunction entities: - uid: 373 @@ -53093,13 +53608,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' - - uid: 2928 - components: - - type: Transform - pos: -55.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 2972 components: - type: Transform @@ -53315,6 +53823,12 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4768 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,-26.5 + parent: 4812 - uid: 4833 components: - type: Transform @@ -53382,11 +53896,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5051 - components: - - type: Transform - pos: -14.5,-26.5 - parent: 4812 - uid: 5096 components: - type: Transform @@ -53697,12 +54206,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' - - uid: 7273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-27.5 - parent: 4812 - uid: 7308 components: - type: Transform @@ -53968,13 +54471,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' - - uid: 9528 - components: - - type: Transform - pos: -57.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 9869 components: - type: Transform @@ -54013,6 +54509,22 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 11887 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 11894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 11982 components: - type: Transform @@ -54114,6 +54626,14 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 13420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -60.5,0.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 13445 components: - type: Transform @@ -54122,14 +54642,21 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#947507FF' - - uid: 13502 + - uid: 13733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,1.5 + pos: -60.5,2.5 parent: 4812 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#9F2B68FF' + - uid: 13834 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,4.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - proto: GasPort entities: - uid: 3467 @@ -54196,17 +54723,13 @@ entities: rot: 3.141592653589793 rad pos: -33.5,-37.5 parent: 4812 - - uid: 13234 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,0.5 - parent: 4812 - uid: 13432 components: - type: Transform pos: -47.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 13441 components: - type: Transform @@ -54219,22 +54742,30 @@ entities: - type: Transform pos: -50.5,6.5 parent: 4812 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 13560 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,6.5 parent: 4812 - - uid: 13614 + - uid: 13612 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,0.5 + pos: -51.5,6.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - proto: GasPressurePump entities: + - uid: 1804 + components: + - type: Transform + pos: -51.5,5.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 3406 components: - type: Transform @@ -54302,6 +54833,14 @@ entities: - type: Transform pos: -53.5,12.5 parent: 4812 + - uid: 9291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,9.5 + parent: 4812 + - type: AtmosPipeColor + color: '#947507FF' - uid: 9903 components: - type: Transform @@ -54310,10 +54849,11 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#990000FF' - - uid: 10090 + - uid: 13369 components: - type: Transform - pos: -58.5,5.5 + rot: -1.5707963267948966 rad + pos: -48.5,4.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' @@ -54325,19 +54865,11 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#947507FF' - - uid: 13420 + - uid: 13443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 13434 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,3.5 + pos: -57.5,1.5 parent: 4812 - type: AtmosPipeColor color: '#947507FF' @@ -54374,14 +54906,8 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-28.5 parent: 4812 - - uid: 13509 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,0.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FCD3FF' + - type: GasThermoMachine + targetTemperature: 73.15 - uid: 13674 components: - type: Transform @@ -54412,14 +54938,6 @@ entities: parent: 4812 - proto: GasValve entities: - - uid: 2927 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,5.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 5591 components: - type: Transform @@ -54432,6 +54950,15 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-28.5 parent: 4812 + - uid: 8730 + components: + - type: Transform + pos: -57.5,5.5 + parent: 4812 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 9039 components: - type: Transform @@ -56243,14 +56770,6 @@ entities: color: '#990000FF' - proto: GasVolumePump entities: - - uid: 9236 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,1.5 - parent: 4812 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 13225 components: - type: Transform @@ -56259,14 +56778,6 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 13369 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,4.5 - parent: 4812 - - type: AtmosPipeColor - color: '#947507FF' - uid: 13452 components: - type: Transform @@ -56275,22 +56786,22 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 13474 + - uid: 13539 components: - type: Transform rot: 1.5707963267948966 rad pos: -54.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' - - uid: 13743 + color: '#9F2B68FF' + - uid: 13739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,3.5 + rot: 1.5707963267948966 rad + pos: -52.5,4.5 parent: 4812 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - proto: GeneratorBasic15kW entities: - uid: 1729 @@ -56776,7 +57287,6 @@ entities: - uid: 2607 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,17.5 parent: 4812 - uid: 2669 @@ -56862,7 +57372,6 @@ entities: - uid: 2892 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,14.5 parent: 4812 - uid: 2909 @@ -56873,19 +57382,16 @@ entities: - uid: 2910 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-0.5 parent: 4812 - uid: 2919 components: - type: Transform - rot: -1.5707963267948966 rad pos: 65.5,-2.5 parent: 4812 - uid: 2966 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-4.5 parent: 4812 - uid: 2967 @@ -56936,7 +57442,6 @@ entities: - uid: 3218 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,17.5 parent: 4812 - uid: 3284 @@ -56947,15 +57452,8 @@ entities: - uid: 3344 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,-0.5 parent: 4812 - - uid: 3611 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,38.5 - parent: 4812 - uid: 3701 components: - type: Transform @@ -56964,13 +57462,11 @@ entities: - uid: 3740 components: - type: Transform - rot: 1.5707963267948966 rad pos: -46.5,3.5 parent: 4812 - uid: 3746 components: - type: Transform - rot: 1.5707963267948966 rad pos: -46.5,4.5 parent: 4812 - uid: 3767 @@ -56978,22 +57474,14 @@ entities: - type: Transform pos: -19.5,37.5 parent: 4812 - - uid: 3768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,39.5 - parent: 4812 - uid: 3780 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,16.5 parent: 4812 - uid: 4050 components: - type: Transform - rot: 1.5707963267948966 rad pos: -46.5,2.5 parent: 4812 - uid: 4136 @@ -57024,61 +57512,51 @@ entities: - uid: 4181 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,1.5 parent: 4812 - uid: 4182 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,13.5 parent: 4812 - uid: 4183 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,-0.5 parent: 4812 - uid: 4194 components: - type: Transform - rot: -1.5707963267948966 rad pos: 44.5,-0.5 parent: 4812 - uid: 4203 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-5.5 parent: 4812 - uid: 4205 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,16.5 parent: 4812 - uid: 4221 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,14.5 parent: 4812 - uid: 4319 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,-58.5 parent: 4812 - uid: 4321 components: - type: Transform - rot: -1.5707963267948966 rad pos: -5.5,-58.5 parent: 4812 - uid: 4325 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,0.5 parent: 4812 - uid: 4330 @@ -57099,25 +57577,21 @@ entities: - uid: 4336 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-4.5 parent: 4812 - uid: 4373 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-5.5 parent: 4812 - uid: 4382 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-4.5 parent: 4812 - uid: 4383 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,-6.5 parent: 4812 - uid: 4385 @@ -57183,49 +57657,41 @@ entities: - uid: 4401 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-6.5 parent: 4812 - uid: 4402 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,-5.5 parent: 4812 - uid: 4403 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,-6.5 parent: 4812 - uid: 4404 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,0.5 parent: 4812 - uid: 4405 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,0.5 parent: 4812 - uid: 4406 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,1.5 parent: 4812 - uid: 4407 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 4812 - uid: 4408 components: - type: Transform - rot: -1.5707963267948966 rad pos: 60.5,-4.5 parent: 4812 - uid: 4409 @@ -57236,7 +57702,6 @@ entities: - uid: 4410 components: - type: Transform - rot: -1.5707963267948966 rad pos: 64.5,-2.5 parent: 4812 - uid: 4411 @@ -57247,7 +57712,6 @@ entities: - uid: 4414 components: - type: Transform - rot: -1.5707963267948966 rad pos: 65.5,-4.5 parent: 4812 - uid: 4433 @@ -57268,19 +57732,16 @@ entities: - uid: 4445 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,15.5 parent: 4812 - uid: 4478 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,15.5 parent: 4812 - uid: 4497 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,13.5 parent: 4812 - uid: 4551 @@ -57301,13 +57762,11 @@ entities: - uid: 4559 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,-0.5 parent: 4812 - uid: 4560 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,0.5 parent: 4812 - uid: 4611 @@ -57330,17 +57789,6 @@ entities: - type: Transform pos: 22.5,-10.5 parent: 4812 - - uid: 4693 - components: - - type: Transform - pos: -15.5,35.5 - parent: 4812 - - uid: 4695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,38.5 - parent: 4812 - uid: 4722 components: - type: Transform @@ -57521,12 +57969,6 @@ entities: - type: Transform pos: -9.5,-37.5 parent: 4812 - - uid: 4768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,39.5 - parent: 4812 - uid: 4769 components: - type: Transform @@ -57905,19 +58347,16 @@ entities: - uid: 5767 components: - type: Transform - rot: -1.5707963267948966 rad pos: 30.5,-26.5 parent: 4812 - uid: 5768 components: - type: Transform - rot: -1.5707963267948966 rad pos: 30.5,-24.5 parent: 4812 - uid: 5806 components: - type: Transform - rot: 1.5707963267948966 rad pos: 12.5,-19.5 parent: 4812 - uid: 5833 @@ -57935,6 +58374,11 @@ entities: - type: Transform pos: 34.5,-22.5 parent: 4812 + - uid: 6218 + components: + - type: Transform + pos: -16.5,37.5 + parent: 4812 - uid: 6315 components: - type: Transform @@ -58138,7 +58582,6 @@ entities: - uid: 7411 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,-4.5 parent: 4812 - uid: 7432 @@ -58161,126 +58604,106 @@ entities: - type: Transform pos: -7.5,-27.5 parent: 4812 - - uid: 7635 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,32.5 - parent: 4812 - uid: 7830 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,-0.5 parent: 4812 - uid: 7915 components: - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,10.5 parent: 4812 - uid: 7916 components: - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,12.5 parent: 4812 - uid: 7917 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,10.5 parent: 4812 - uid: 7918 components: - type: Transform - rot: 1.5707963267948966 rad pos: -24.5,10.5 parent: 4812 - uid: 7919 components: - type: Transform - rot: 1.5707963267948966 rad pos: -35.5,13.5 parent: 4812 - uid: 7920 components: - type: Transform - rot: 1.5707963267948966 rad pos: -33.5,13.5 parent: 4812 - uid: 7921 components: - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,14.5 parent: 4812 - uid: 7922 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,17.5 parent: 4812 - uid: 7923 components: - type: Transform - rot: 1.5707963267948966 rad pos: -24.5,17.5 parent: 4812 - uid: 7924 components: - type: Transform - rot: 1.5707963267948966 rad pos: -24.5,16.5 parent: 4812 - uid: 7925 components: - type: Transform - rot: 1.5707963267948966 rad pos: -24.5,19.5 parent: 4812 - uid: 7926 components: - type: Transform - rot: 1.5707963267948966 rad pos: -24.5,20.5 parent: 4812 - uid: 7927 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,20.5 parent: 4812 - uid: 7928 components: - type: Transform - rot: 1.5707963267948966 rad pos: -22.5,29.5 parent: 4812 - uid: 7929 components: - type: Transform - rot: 1.5707963267948966 rad pos: -24.5,31.5 parent: 4812 - uid: 7930 components: - type: Transform - rot: 1.5707963267948966 rad pos: -27.5,33.5 parent: 4812 - uid: 7931 components: - type: Transform - rot: 1.5707963267948966 rad pos: -29.5,33.5 parent: 4812 - uid: 7933 components: - type: Transform - rot: 1.5707963267948966 rad pos: -28.5,33.5 parent: 4812 + - uid: 7970 + components: + - type: Transform + pos: 10.5,36.5 + parent: 4812 - uid: 8052 components: - type: Transform @@ -58316,28 +58739,19 @@ entities: - type: Transform pos: -23.5,26.5 parent: 4812 - - uid: 8328 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,32.5 - parent: 4812 - uid: 8373 components: - type: Transform - rot: -1.5707963267948966 rad pos: 45.5,-4.5 parent: 4812 - uid: 8467 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,-29.5 parent: 4812 - uid: 8470 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,-30.5 parent: 4812 - uid: 8480 @@ -58348,13 +58762,11 @@ entities: - uid: 8481 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,-4.5 parent: 4812 - uid: 8496 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-26.5 parent: 4812 - uid: 8526 @@ -58540,25 +58952,21 @@ entities: - uid: 8710 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,-0.5 parent: 4812 - uid: 8729 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,8.5 parent: 4812 - uid: 8731 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,-0.5 parent: 4812 - uid: 8739 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 4812 - uid: 8753 @@ -58614,204 +59022,166 @@ entities: - uid: 9187 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,9.5 parent: 4812 - uid: 9188 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,8.5 parent: 4812 - uid: 9199 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 4812 - uid: 9200 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 4812 - uid: 9201 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,13.5 parent: 4812 - uid: 9202 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,13.5 parent: 4812 - uid: 9203 components: - type: Transform - rot: 3.141592653589793 rad pos: -46.5,13.5 parent: 4812 - uid: 9204 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,13.5 parent: 4812 - uid: 9205 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,13.5 parent: 4812 - uid: 9206 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,13.5 parent: 4812 - uid: 9207 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,13.5 parent: 4812 - uid: 9208 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,13.5 parent: 4812 - uid: 9213 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,10.5 parent: 4812 - uid: 9214 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,11.5 parent: 4812 - - uid: 9216 - components: - - type: Transform - pos: -56.5,6.5 - parent: 4812 - uid: 9243 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,22.5 parent: 4812 - uid: 9245 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,16.5 parent: 4812 - uid: 9280 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,22.5 parent: 4812 - uid: 9283 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,22.5 parent: 4812 - uid: 9298 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,22.5 parent: 4812 - uid: 9299 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,22.5 parent: 4812 - uid: 9301 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,22.5 parent: 4812 - uid: 9336 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,17.5 parent: 4812 - uid: 9337 components: - type: Transform - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 4812 - uid: 9338 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,20.5 parent: 4812 - uid: 9341 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,22.5 parent: 4812 - uid: 9342 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,22.5 parent: 4812 - uid: 9343 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,22.5 parent: 4812 - - uid: 9345 + - uid: 9348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,2.5 + pos: 10.5,38.5 parent: 4812 - uid: 9352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,6.5 + pos: -58.5,0.5 parent: 4812 - uid: 9364 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,19.5 parent: 4812 - uid: 9371 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,21.5 parent: 4812 - uid: 9427 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,15.5 parent: 4812 - uid: 9433 components: - type: Transform - rot: 3.141592653589793 rad pos: -46.5,15.5 parent: 4812 - uid: 9460 @@ -58822,19 +59192,16 @@ entities: - uid: 9466 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,12.5 parent: 4812 - uid: 9471 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,13.5 parent: 4812 - uid: 9475 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,13.5 parent: 4812 - uid: 9480 @@ -58885,13 +59252,11 @@ entities: - uid: 9709 components: - type: Transform - rot: -1.5707963267948966 rad pos: -58.5,12.5 parent: 4812 - uid: 9756 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,3.5 parent: 4812 - uid: 9832 @@ -58922,7 +59287,6 @@ entities: - uid: 9872 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,11.5 parent: 4812 - uid: 9877 @@ -58933,7 +59297,6 @@ entities: - uid: 9906 components: - type: Transform - rot: -1.5707963267948966 rad pos: -57.5,10.5 parent: 4812 - uid: 9909 @@ -58959,7 +59322,6 @@ entities: - uid: 10091 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,-0.5 parent: 4812 - uid: 10315 @@ -59172,6 +59534,11 @@ entities: - type: Transform pos: -54.5,-7.5 parent: 4812 + - uid: 10416 + components: + - type: Transform + pos: -57.5,6.5 + parent: 4812 - uid: 10440 components: - type: Transform @@ -59192,12 +59559,6 @@ entities: - type: Transform pos: -48.5,-10.5 parent: 4812 - - uid: 10946 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,0.5 - parent: 4812 - uid: 11216 components: - type: Transform @@ -59296,7 +59657,6 @@ entities: - uid: 11716 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,9.5 parent: 4812 - uid: 11718 @@ -59374,12 +59734,6 @@ entities: - type: Transform pos: 40.5,-30.5 parent: 4812 - - uid: 11736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,6.5 - parent: 4812 - uid: 11740 components: - type: Transform @@ -59400,11 +59754,6 @@ entities: - type: Transform pos: 20.5,-39.5 parent: 4812 - - uid: 11935 - components: - - type: Transform - pos: -19.5,33.5 - parent: 4812 - uid: 12058 components: - type: Transform @@ -59418,43 +59767,31 @@ entities: - uid: 12112 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,-0.5 parent: 4812 - uid: 12124 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,7.5 parent: 4812 - uid: 12126 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,7.5 parent: 4812 - - uid: 12142 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,1.5 - parent: 4812 - uid: 12146 components: - type: Transform - rot: -1.5707963267948966 rad pos: -58.5,8.5 parent: 4812 - uid: 12181 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,15.5 parent: 4812 - uid: 12182 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,15.5 parent: 4812 - uid: 12416 @@ -59475,43 +59812,36 @@ entities: - uid: 12591 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,22.5 parent: 4812 - uid: 12660 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-52.5 parent: 4812 - uid: 12677 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,17.5 parent: 4812 - uid: 12679 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,-5.5 parent: 4812 - uid: 12680 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,-6.5 parent: 4812 - uid: 12681 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,-4.5 parent: 4812 - uid: 12689 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,-5.5 parent: 4812 - uid: 12745 @@ -59522,37 +59852,31 @@ entities: - uid: 12765 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,-4.5 parent: 4812 - uid: 12768 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-6.5 parent: 4812 - uid: 12769 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,17.5 parent: 4812 - uid: 12780 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-5.5 parent: 4812 - uid: 12781 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,1.5 parent: 4812 - uid: 12786 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-51.5 parent: 4812 - uid: 12790 @@ -59568,19 +59892,16 @@ entities: - uid: 12796 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,1.5 parent: 4812 - uid: 12800 components: - type: Transform - rot: -1.5707963267948966 rad pos: 65.5,-0.5 parent: 4812 - uid: 12801 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,1.5 parent: 4812 - uid: 12802 @@ -59591,7 +59912,6 @@ entities: - uid: 12862 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-6.5 parent: 4812 - uid: 12863 @@ -59622,19 +59942,16 @@ entities: - uid: 12876 components: - type: Transform - rot: -1.5707963267948966 rad pos: 60.5,-0.5 parent: 4812 - uid: 12898 components: - type: Transform - rot: -1.5707963267948966 rad pos: 45.5,-0.5 parent: 4812 - uid: 12929 components: - type: Transform - rot: -1.5707963267948966 rad pos: -3.5,-58.5 parent: 4812 - uid: 12932 @@ -59700,121 +60017,101 @@ entities: - uid: 12945 components: - type: Transform - rot: -1.5707963267948966 rad pos: 0.5,-56.5 parent: 4812 - uid: 12946 components: - type: Transform - rot: -1.5707963267948966 rad pos: 1.5,-56.5 parent: 4812 - uid: 12947 components: - type: Transform - rot: -1.5707963267948966 rad pos: 2.5,-56.5 parent: 4812 - uid: 12948 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-54.5 parent: 4812 - uid: 12949 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-53.5 parent: 4812 - uid: 12951 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-55.5 parent: 4812 - uid: 12952 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-56.5 parent: 4812 - uid: 12953 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-57.5 parent: 4812 - uid: 12954 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-58.5 parent: 4812 - uid: 12955 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-54.5 parent: 4812 - uid: 12956 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-52.5 parent: 4812 - uid: 12957 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-51.5 parent: 4812 - uid: 12958 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-49.5 parent: 4812 - uid: 12959 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-48.5 parent: 4812 - uid: 12960 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-47.5 parent: 4812 - uid: 12961 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-50.5 parent: 4812 - uid: 12962 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-49.5 parent: 4812 - uid: 12963 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-48.5 parent: 4812 - uid: 12964 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-45.5 parent: 4812 - uid: 12965 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,-46.5 parent: 4812 - uid: 12969 @@ -59850,7 +60147,6 @@ entities: - uid: 13052 components: - type: Transform - rot: -1.5707963267948966 rad pos: 59.5,-4.5 parent: 4812 - uid: 13064 @@ -59866,7 +60162,6 @@ entities: - uid: 13067 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-0.5 parent: 4812 - uid: 13068 @@ -59892,7 +60187,6 @@ entities: - uid: 13089 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,0.5 parent: 4812 - uid: 13096 @@ -59908,19 +60202,16 @@ entities: - uid: 13102 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,0.5 parent: 4812 - uid: 13105 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,-0.5 parent: 4812 - uid: 13106 components: - type: Transform - rot: -1.5707963267948966 rad pos: 59.5,-0.5 parent: 4812 - uid: 13107 @@ -59936,7 +60227,6 @@ entities: - uid: 13117 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 4812 - uid: 13122 @@ -59947,43 +60237,36 @@ entities: - uid: 13127 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-0.5 parent: 4812 - uid: 13146 components: - type: Transform - rot: 3.141592653589793 rad pos: 3.5,38.5 parent: 4812 - uid: 13147 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,-0.5 parent: 4812 - uid: 13159 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,5.5 parent: 4812 - uid: 13160 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,4.5 parent: 4812 - uid: 13178 components: - type: Transform - rot: -1.5707963267948966 rad pos: 44.5,-4.5 parent: 4812 - uid: 13183 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-26.5 parent: 4812 - uid: 13191 @@ -60039,49 +60322,41 @@ entities: - uid: 13219 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,-0.5 parent: 4812 - uid: 13236 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-19.5 parent: 4812 - uid: 13257 components: - type: Transform - rot: -1.5707963267948966 rad pos: 49.5,-26.5 parent: 4812 - uid: 13268 components: - type: Transform - rot: -1.5707963267948966 rad pos: 47.5,-26.5 parent: 4812 - uid: 13269 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,-26.5 parent: 4812 - uid: 13270 components: - type: Transform - rot: -1.5707963267948966 rad pos: 45.5,-26.5 parent: 4812 - uid: 13271 components: - type: Transform - rot: -1.5707963267948966 rad pos: 44.5,-26.5 parent: 4812 - uid: 13362 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-18.5 parent: 4812 - uid: 13375 @@ -60122,13 +60397,16 @@ entities: - uid: 13433 components: - type: Transform - rot: 1.5707963267948966 rad pos: -60.5,12.5 parent: 4812 + - uid: 13434 + components: + - type: Transform + pos: -58.5,6.5 + parent: 4812 - uid: 13449 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,-0.5 parent: 4812 - uid: 13458 @@ -60136,6 +60414,11 @@ entities: - type: Transform pos: -66.5,1.5 parent: 4812 + - uid: 13474 + components: + - type: Transform + pos: -58.5,1.5 + parent: 4812 - uid: 13478 components: - type: Transform @@ -60186,6 +60469,11 @@ entities: - type: Transform pos: -66.5,5.5 parent: 4812 + - uid: 13502 + components: + - type: Transform + pos: -58.5,2.5 + parent: 4812 - uid: 13535 components: - type: Transform @@ -60229,9 +60517,13 @@ entities: - uid: 13691 components: - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,16.5 parent: 4812 + - uid: 13717 + components: + - type: Transform + pos: -56.5,6.5 + parent: 4812 - uid: 13745 components: - type: Transform @@ -60242,6 +60534,11 @@ entities: - type: Transform pos: 17.5,-4.5 parent: 4812 + - uid: 13863 + components: + - type: Transform + pos: 10.5,39.5 + parent: 4812 - proto: GrilleBroken entities: - uid: 1544 @@ -60318,6 +60615,16 @@ entities: parent: 4812 - proto: GrilleSpawner entities: + - uid: 5796 + components: + - type: Transform + pos: -18.5,37.5 + parent: 4812 + - uid: 6651 + components: + - type: Transform + pos: -17.5,37.5 + parent: 4812 - uid: 9508 components: - type: Transform @@ -60513,11 +60820,6 @@ entities: - type: Transform pos: -4.5,38.5 parent: 4812 - - uid: 13629 - components: - - type: Transform - pos: 10.5,38.5 - parent: 4812 - uid: 13630 components: - type: Transform @@ -60650,27 +60952,41 @@ entities: parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9291 + - uid: 9568 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-1.5 + pos: -52.5,-1.5 parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9568 + - uid: 9569 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-1.5 + pos: -51.5,-1.5 parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 9569 + - uid: 10779 + components: + - type: Transform + pos: -61.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 13614 + components: + - type: Transform + pos: -60.5,1.5 + parent: 4812 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 13718 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,-1.5 + pos: -53.5,-1.5 parent: 4812 - type: AtmosPipeColor color: '#03FCD3FF' @@ -60834,10 +61150,10 @@ entities: parent: 4812 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 13777 + - uid: 13719 components: - type: Transform - pos: -56.5,3.5 + pos: -47.5,1.5 parent: 4812 - proto: HolopadEngineeringBreakroom entities: @@ -60876,10 +61192,10 @@ entities: parent: 4812 - proto: HolopadGeneralEVAStorage entities: - - uid: 13815 + - uid: 13859 components: - type: Transform - pos: 7.5,17.5 + pos: 7.5,14.5 parent: 4812 - proto: HolopadGeneralLounge entities: @@ -61080,6 +61396,11 @@ entities: - type: Transform pos: 19.5,36.5 parent: 4812 + - uid: 10874 + components: + - type: Transform + pos: 16.5,6.5 + parent: 4812 - proto: hydroponicsSoil entities: - uid: 9610 @@ -61343,6 +61664,18 @@ entities: rot: 1.5707963267948966 rad pos: -16.5,23.5 parent: 4812 + - uid: 13844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,52.5 + parent: 4812 + - uid: 13845 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,52.5 + parent: 4812 - proto: IntercomCommand entities: - uid: 4834 @@ -61372,11 +61705,6 @@ entities: rot: 1.5707963267948966 rad pos: -51.5,-8.5 parent: 4812 - - uid: 12400 - components: - - type: Transform - pos: 11.5,54.5 - parent: 4812 - proto: IntercomCommon entities: - uid: 4935 @@ -61709,8 +62037,10 @@ entities: - uid: 6409 components: - type: Transform - pos: -4.3562155,-15.356113 + pos: -4.4936132,-15.203495 parent: 4812 + - type: HandheldLight + toggleActionEntity: 8328 - type: ContainerContainer containers: cellslot_cell_container: !type:ContainerSlot @@ -61721,6 +62051,14 @@ entities: showEnts: False occludes: True ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 8328 + - type: Physics + canCollide: True + - type: ActionsContainer - uid: 7077 components: - type: Transform @@ -61909,6 +62247,14 @@ entities: - type: Transform pos: 22.50683,-38.57403 parent: 4812 +- proto: LightBulb + entities: + - uid: 13860 + components: + - type: Transform + parent: 7635 + - type: Physics + canCollide: False - proto: Lighter entities: - uid: 1759 @@ -62002,6 +62348,40 @@ entities: - Pressed: Toggle 13532: - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 13857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,13.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 4413: + - Pressed: Toggle + 7635: + - Pressed: Toggle +- proto: LockableButtonHeadOfPersonnel + entities: + - uid: 13858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 13854: + - Pressed: Toggle + 13853: + - Pressed: Toggle + 13852: + - Pressed: Toggle + 4695: + - Pressed: Toggle + 9592: + - Pressed: Toggle - proto: LockableButtonHeadOfSecurity entities: - uid: 13826 @@ -62017,6 +62397,36 @@ entities: - Pressed: Toggle 8161: - Pressed: Toggle +- proto: LockableButtonMedical + entities: + - uid: 4693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.534462,-23.217846 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 13414: + - Pressed: Open + 13415: + - Pressed: Open +- proto: LockableButtonResearch + entities: + - uid: 9591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-24.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 4615: + - Pressed: Toggle + 5795: + - Pressed: Toggle + 5794: + - Pressed: Toggle - proto: LockableButtonSecurity entities: - uid: 13825 @@ -62252,29 +62662,6 @@ entities: - 0 - 0 - 0 - - uid: 10722 - components: - - type: Transform - pos: -38.5,8.5 - parent: 4812 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 1.6033952 - - 6.031821 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - uid: 13808 components: - type: Transform @@ -62882,6 +63269,11 @@ entities: - type: Transform pos: -32.5,-23.5 parent: 4812 + - uid: 7956 + components: + - type: Transform + pos: -35.5,8.5 + parent: 4812 - uid: 9065 components: - type: Transform @@ -62897,11 +63289,6 @@ entities: - type: Transform pos: -32.5,-28.5 parent: 4812 - - uid: 10879 - components: - - type: Transform - pos: -33.5,8.5 - parent: 4812 - uid: 11467 components: - type: Transform @@ -63091,10 +63478,10 @@ entities: parent: 4812 - proto: MedkitFilled entities: - - uid: 2678 + - uid: 9346 components: - type: Transform - pos: -8.488935,34.56198 + pos: -6.4864125,34.594666 parent: 4812 - uid: 12788 components: @@ -63231,7 +63618,7 @@ entities: - uid: 2680 components: - type: Transform - pos: -3.5045605,34.68698 + pos: -3.2529702,35.240948 parent: 4812 - uid: 3370 components: @@ -63255,6 +63642,11 @@ entities: parent: 4812 - proto: NitrogenCanister entities: + - uid: 1731 + components: + - type: Transform + pos: -51.5,0.5 + parent: 4812 - uid: 4604 components: - type: Transform @@ -63285,6 +63677,13 @@ entities: - type: Transform pos: 21.5,-32.5 parent: 4812 +- proto: NitrogenTankFilled + entities: + - uid: 10721 + components: + - type: Transform + pos: 19.614145,-32.5629 + parent: 4812 - proto: NTDefaultCircuitBoard entities: - uid: 12647 @@ -63412,11 +63811,6 @@ entities: - type: Transform pos: -46.5,-9.5 parent: 4812 - - uid: 10878 - components: - - type: Transform - pos: -34.5,8.5 - parent: 4812 - uid: 11787 components: - type: Transform @@ -63427,6 +63821,11 @@ entities: - type: Transform pos: -50.5,0.5 parent: 4812 + - uid: 13835 + components: + - type: Transform + pos: -49.5,6.5 + parent: 4812 - proto: OxygenTankFilled entities: - uid: 11791 @@ -63434,11 +63833,6 @@ entities: - type: Transform pos: 19.452671,-32.41012 parent: 4812 - - uid: 11792 - components: - - type: Transform - pos: 19.577671,-32.613243 - parent: 4812 - proto: PaintingAmogusTriptych entities: - uid: 7003 @@ -64081,10 +64475,10 @@ entities: parent: 4812 - proto: PortableGeneratorJrPacman entities: - - uid: 3359 + - uid: 741 components: - type: Transform - pos: -30.5,7.5 + pos: -30.5,8.5 parent: 4812 - uid: 3360 components: @@ -64594,14 +64988,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 1731 - components: - - type: Transform - pos: -7.5,8.5 - parent: 4812 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 1799 components: - type: Transform @@ -64767,6 +65153,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 10452 + components: + - type: Transform + pos: -7.5,4.5 + parent: 4812 - uid: 10860 components: - type: Transform @@ -64807,6 +65198,11 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} + - uid: 13849 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 4812 - proto: PottedPlantRD entities: - uid: 4315 @@ -64957,6 +65353,11 @@ entities: - type: Transform pos: -39.5,-17.5 parent: 4812 + - uid: 13843 + components: + - type: Transform + pos: -45.5,-16.5 + parent: 4812 - proto: Poweredlight entities: - uid: 742 @@ -65249,13 +65650,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2696 - components: - - type: Transform - pos: -16.5,20.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 2733 components: - type: Transform @@ -65339,13 +65733,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3966 - components: - - type: Transform - pos: 10.5,50.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 3967 components: - type: Transform @@ -65747,14 +66134,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7622 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-19.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7623 components: - type: Transform @@ -65881,6 +66260,12 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 4812 - uid: 8603 components: - type: Transform @@ -66297,6 +66682,11 @@ entities: rot: 1.5707963267948966 rad pos: -31.5,17.5 parent: 4812 + - uid: 13744 + components: + - type: Transform + pos: -15.5,20.5 + parent: 4812 - uid: 13755 components: - type: Transform @@ -66315,6 +66705,12 @@ entities: rot: 3.141592653589793 rad pos: -42.5,-15.5 parent: 4812 + - uid: 13851 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 4812 - proto: PoweredlightEmpty entities: - uid: 11249 @@ -66428,13 +66824,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1803 - components: - - type: Transform - pos: 4.5,12.5 - parent: 4812 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 1806 components: - type: Transform @@ -66488,12 +66877,6 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,31.5 - parent: 4812 - uid: 3280 components: - type: Transform @@ -66530,6 +66913,11 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 4078 + components: + - type: Transform + pos: -35.5,8.5 + parent: 4812 - uid: 4466 components: - type: Transform @@ -66586,6 +66974,12 @@ entities: rot: 3.141592653589793 rad pos: 23.5,10.5 parent: 4812 + - uid: 5051 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,31.5 + parent: 4812 - uid: 5388 components: - type: Transform @@ -66723,6 +67117,12 @@ entities: rot: 3.141592653589793 rad pos: -32.5,-19.5 parent: 4812 + - uid: 7963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,33.5 + parent: 4812 - uid: 8146 components: - type: Transform @@ -66800,6 +67200,11 @@ entities: parent: 4812 - type: ApcPowerReceiver powerLoad: 0 + - uid: 8494 + components: + - type: Transform + pos: 4.5,12.5 + parent: 4812 - uid: 9015 components: - type: Transform @@ -67071,33 +67476,24 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-38.5 parent: 4812 -- proto: PresentRandom +- proto: PoweredStrobeLightEmpty entities: - - uid: 6392 - components: - - type: Transform - pos: -3.5,-16.5 - parent: 4812 - - uid: 13711 - components: - - type: Transform - pos: -1.5,-16.5 - parent: 4812 - - uid: 13724 - components: - - type: Transform - pos: -3.5,-0.5 - parent: 4812 - - uid: 13725 - components: - - type: Transform - pos: -1.5,-0.5 - parent: 4812 - - uid: 13744 + - uid: 7635 components: - type: Transform - pos: -3.5,26.5 + rot: 3.141592653589793 rad + pos: 6.5,14.5 parent: 4812 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 13860 + - type: ApcPowerReceiver + powerLoad: 0 + - type: DamageOnInteract + isDamageActive: False - proto: Protolathe entities: - uid: 6182 @@ -67191,6 +67587,12 @@ entities: - type: Transform pos: 21.5,4.5 parent: 4812 + - uid: 4081 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -58.5,5.5 + parent: 4812 - uid: 4485 components: - type: Transform @@ -67226,6 +67628,12 @@ entities: - type: Transform pos: 13.5,-23.5 parent: 4812 + - uid: 7953 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -35.5,8.5 + parent: 4812 - uid: 8276 components: - type: Transform @@ -67236,6 +67644,11 @@ entities: - type: Transform pos: -37.5,12.5 parent: 4812 + - uid: 9376 + components: + - type: Transform + pos: -38.5,8.5 + parent: 4812 - uid: 10526 components: - type: Transform @@ -67251,16 +67664,6 @@ entities: - type: Transform pos: -48.5,-23.5 parent: 4812 - - uid: 10721 - components: - - type: Transform - pos: -36.5,8.5 - parent: 4812 - - uid: 10877 - components: - - type: Transform - pos: -33.5,8.5 - parent: 4812 - uid: 10898 components: - type: Transform @@ -67338,11 +67741,6 @@ entities: rot: 1.5707963267948966 rad pos: 29.5,16.5 parent: 4812 - - uid: 13726 - components: - - type: Transform - pos: -31.5,17.5 - parent: 4812 - uid: 13806 components: - type: Transform @@ -67397,6 +67795,18 @@ entities: rot: 3.141592653589793 rad pos: -32.5,3.5 parent: 4812 + - uid: 10454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 4812 + - uid: 10458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 4812 - uid: 10983 components: - type: Transform @@ -67409,6 +67819,24 @@ entities: rot: -1.5707963267948966 rad pos: -30.5,4.5 parent: 4812 + - uid: 12129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 4812 + - uid: 12400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 4812 + - uid: 12592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 4812 - uid: 12877 components: - type: Transform @@ -67465,6 +67893,11 @@ entities: - type: Transform pos: 32.5,12.5 parent: 4812 + - uid: 13442 + components: + - type: Transform + pos: -7.5,4.5 + parent: 4812 - proto: RailingCornerSmall entities: - uid: 4616 @@ -67532,11 +67965,6 @@ entities: - type: Transform pos: 21.5,5.5 parent: 4812 - - uid: 2726 - components: - - type: Transform - pos: 25.5,4.5 - parent: 4812 - uid: 3286 components: - type: Transform @@ -67600,6 +68028,11 @@ entities: - type: Transform pos: 14.5,6.5 parent: 4812 + - uid: 4756 + components: + - type: Transform + pos: -9.5,-1.5 + parent: 4812 - proto: RandomPainting entities: - uid: 12164 @@ -67901,11 +68334,6 @@ entities: - type: Transform pos: -6.5,-34.5 parent: 4812 - - uid: 11913 - components: - - type: Transform - pos: -11.5,-40.5 - parent: 4812 - uid: 11915 components: - type: Transform @@ -68036,7 +68464,6 @@ entities: - uid: 8371 components: - type: Transform - rot: 3.141592653589793 rad pos: -33.5,19.5 parent: 4812 - uid: 9119 @@ -68054,40 +68481,29 @@ entities: - type: Transform pos: -60.5,8.5 parent: 4812 - - uid: 9211 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,2.5 - parent: 4812 - uid: 9249 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,15.5 parent: 4812 - uid: 9267 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,15.5 parent: 4812 - uid: 9268 components: - type: Transform - rot: 3.141592653589793 rad pos: -46.5,15.5 parent: 4812 - uid: 9297 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,15.5 parent: 4812 - uid: 9381 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,15.5 parent: 4812 - uid: 9414 @@ -68108,7 +68524,6 @@ entities: - uid: 9426 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,15.5 parent: 4812 - uid: 9428 @@ -68136,24 +68551,26 @@ entities: - type: Transform pos: -46.5,-11.5 parent: 4812 - - uid: 10779 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,1.5 - parent: 4812 - uid: 10973 components: - type: Transform - rot: 3.141592653589793 rad pos: -35.5,19.5 parent: 4812 - - uid: 11887 + - uid: 11733 components: - type: Transform - rot: -1.5707963267948966 rad pos: -58.5,0.5 parent: 4812 + - uid: 12773 + components: + - type: Transform + pos: -58.5,2.5 + parent: 4812 + - uid: 13740 + components: + - type: Transform + pos: -58.5,1.5 + parent: 4812 - proto: ReinforcedWindow entities: - uid: 106 @@ -68334,7 +68751,6 @@ entities: - uid: 739 components: - type: Transform - rot: -1.5707963267948966 rad pos: 64.5,-2.5 parent: 4812 - uid: 1784 @@ -68470,7 +68886,6 @@ entities: - uid: 1933 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,-19.5 parent: 4812 - uid: 1944 @@ -68641,19 +69056,16 @@ entities: - uid: 2893 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,14.5 parent: 4812 - uid: 2895 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,14.5 parent: 4812 - uid: 2907 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,16.5 parent: 4812 - uid: 3117 @@ -68664,25 +69076,21 @@ entities: - uid: 3181 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,17.5 parent: 4812 - uid: 3274 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,-0.5 parent: 4812 - uid: 3278 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,-4.5 parent: 4812 - uid: 3405 components: - type: Transform - rot: -1.5707963267948966 rad pos: 60.5,-0.5 parent: 4812 - uid: 3503 @@ -68778,13 +69186,11 @@ entities: - uid: 4193 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,0.5 parent: 4812 - uid: 4195 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-6.5 parent: 4812 - uid: 4198 @@ -68800,37 +69206,31 @@ entities: - uid: 4200 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,-6.5 parent: 4812 - uid: 4201 components: - type: Transform - rot: -1.5707963267948966 rad pos: 44.5,-0.5 parent: 4812 - uid: 4208 components: - type: Transform - rot: 1.5707963267948966 rad pos: 28.5,-8.5 parent: 4812 - uid: 4209 components: - type: Transform - rot: 1.5707963267948966 rad pos: 30.5,-8.5 parent: 4812 - uid: 4214 components: - type: Transform - rot: -1.5707963267948966 rad pos: 44.5,-4.5 parent: 4812 - uid: 4332 components: - type: Transform - rot: 1.5707963267948966 rad pos: 29.5,-8.5 parent: 4812 - uid: 4412 @@ -68841,7 +69241,6 @@ entities: - uid: 4419 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,-5.5 parent: 4812 - uid: 4431 @@ -68852,67 +69251,56 @@ entities: - uid: 4432 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,-0.5 parent: 4812 - uid: 4446 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,13.5 parent: 4812 - uid: 4474 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,2.5 parent: 4812 - uid: 4479 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,13.5 parent: 4812 - uid: 4502 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,-6.5 parent: 4812 - uid: 4547 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,13.5 parent: 4812 - uid: 4577 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,13.5 parent: 4812 - uid: 4578 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,-0.5 parent: 4812 - uid: 4579 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,0.5 parent: 4812 - uid: 4625 components: - type: Transform - rot: 1.5707963267948966 rad pos: -46.5,2.5 parent: 4812 - uid: 4626 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,16.5 parent: 4812 - uid: 4627 @@ -69158,13 +69546,11 @@ entities: - uid: 4826 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,13.5 parent: 4812 - uid: 4846 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,13.5 parent: 4812 - uid: 4923 @@ -69180,7 +69566,6 @@ entities: - uid: 4984 components: - type: Transform - rot: 1.5707963267948966 rad pos: -46.5,3.5 parent: 4812 - uid: 4988 @@ -69531,13 +69916,11 @@ entities: - uid: 6287 components: - type: Transform - rot: 3.141592653589793 rad pos: 29.5,17.5 parent: 4812 - uid: 6289 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,13.5 parent: 4812 - uid: 6311 @@ -69613,13 +69996,11 @@ entities: - uid: 7045 components: - type: Transform - rot: 3.141592653589793 rad pos: -54.5,13.5 parent: 4812 - uid: 7188 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,13.5 parent: 4812 - uid: 7196 @@ -69700,7 +70081,6 @@ entities: - uid: 7410 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,-0.5 parent: 4812 - uid: 7435 @@ -69806,7 +70186,6 @@ entities: - uid: 7942 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,13.5 parent: 4812 - uid: 8051 @@ -69817,7 +70196,6 @@ entities: - uid: 8142 components: - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,16.5 parent: 4812 - uid: 8169 @@ -69848,19 +70226,16 @@ entities: - uid: 8468 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,-26.5 parent: 4812 - uid: 8549 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,13.5 parent: 4812 - uid: 8550 components: - type: Transform - rot: 3.141592653589793 rad pos: -46.5,13.5 parent: 4812 - uid: 8627 @@ -69931,7 +70306,6 @@ entities: - uid: 8721 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,-0.5 parent: 4812 - uid: 8722 @@ -69952,21 +70326,28 @@ entities: - uid: 9129 components: - type: Transform - rot: -1.5707963267948966 rad pos: 45.5,-0.5 parent: 4812 - uid: 9209 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,13.5 parent: 4812 - uid: 9210 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,13.5 parent: 4812 + - uid: 9219 + components: + - type: Transform + pos: -58.5,6.5 + parent: 4812 + - uid: 9236 + components: + - type: Transform + pos: -56.5,6.5 + parent: 4812 - uid: 9422 components: - type: Transform @@ -69980,7 +70361,6 @@ entities: - uid: 9482 components: - type: Transform - rot: 1.5707963267948966 rad pos: -46.5,4.5 parent: 4812 - uid: 9511 @@ -70126,7 +70506,6 @@ entities: - uid: 10753 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,4.5 parent: 4812 - uid: 10772 @@ -70237,13 +70616,11 @@ entities: - uid: 12114 components: - type: Transform - rot: -1.5707963267948966 rad pos: -43.5,-0.5 parent: 4812 - uid: 12139 components: - type: Transform - rot: -1.5707963267948966 rad pos: -50.5,7.5 parent: 4812 - uid: 12574 @@ -70254,277 +70631,236 @@ entities: - uid: 12657 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,10.5 parent: 4812 - uid: 12658 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,17.5 parent: 4812 - uid: 12670 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,-4.5 parent: 4812 - uid: 12674 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,-4.5 parent: 4812 - uid: 12675 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,-5.5 parent: 4812 - uid: 12676 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-5.5 parent: 4812 - uid: 12762 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,-5.5 parent: 4812 - uid: 12771 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-5.5 parent: 4812 - uid: 12794 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,5.5 parent: 4812 - uid: 12795 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-6.5 parent: 4812 - uid: 12804 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,-4.5 parent: 4812 - uid: 12805 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-6.5 parent: 4812 - uid: 12861 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-4.5 parent: 4812 - uid: 12879 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-0.5 parent: 4812 - uid: 12882 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,0.5 parent: 4812 - uid: 12891 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-4.5 parent: 4812 - uid: 12895 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,-6.5 parent: 4812 - uid: 12896 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,-5.5 parent: 4812 - uid: 12899 components: - type: Transform - rot: -1.5707963267948966 rad pos: 65.5,-0.5 parent: 4812 - uid: 12900 components: - type: Transform - rot: -1.5707963267948966 rad pos: 65.5,-4.5 parent: 4812 - uid: 12931 components: - type: Transform - rot: -1.5707963267948966 rad pos: -54.5,-0.5 parent: 4812 - uid: 13034 components: - type: Transform - rot: -1.5707963267948966 rad pos: 45.5,-4.5 parent: 4812 + - uid: 13036 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 4812 + - uid: 13044 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 4812 - uid: 13058 components: - type: Transform - rot: -1.5707963267948966 rad pos: 59.5,-4.5 parent: 4812 - uid: 13060 components: - type: Transform - rot: -1.5707963267948966 rad pos: 60.5,-4.5 parent: 4812 - uid: 13061 components: - type: Transform - rot: -1.5707963267948966 rad pos: 59.5,-0.5 parent: 4812 - uid: 13062 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,1.5 parent: 4812 - uid: 13077 components: - type: Transform - rot: -1.5707963267948966 rad pos: 46.5,0.5 parent: 4812 - uid: 13090 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,1.5 parent: 4812 - uid: 13103 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,-0.5 parent: 4812 - uid: 13108 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,0.5 parent: 4812 - uid: 13109 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-0.5 parent: 4812 - uid: 13112 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,1.5 parent: 4812 - uid: 13113 components: - type: Transform - rot: -1.5707963267948966 rad pos: 48.5,1.5 parent: 4812 - uid: 13114 components: - type: Transform - rot: -1.5707963267948966 rad pos: 54.5,1.5 parent: 4812 - uid: 13115 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,0.5 parent: 4812 - uid: 13118 components: - type: Transform - rot: -1.5707963267948966 rad pos: -51.5,7.5 parent: 4812 - uid: 13124 components: - type: Transform - rot: -1.5707963267948966 rad pos: 50.5,-4.5 parent: 4812 - uid: 13125 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,-0.5 parent: 4812 - uid: 13128 components: - type: Transform - rot: -1.5707963267948966 rad pos: 65.5,-2.5 parent: 4812 - uid: 13158 components: - type: Transform - rot: -1.5707963267948966 rad pos: -49.5,7.5 parent: 4812 - uid: 13161 components: - type: Transform - rot: 1.5707963267948966 rad pos: -37.5,3.5 parent: 4812 - uid: 13175 components: - type: Transform - rot: -1.5707963267948966 rad pos: 58.5,1.5 parent: 4812 - uid: 13210 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,11.5 parent: 4812 - - uid: 13218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,6.5 - parent: 4812 - uid: 13242 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,9.5 parent: 4812 - uid: 13256 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,17.5 parent: 4812 - uid: 13413 @@ -70537,44 +70873,39 @@ entities: - type: Transform pos: 19.5,-4.5 parent: 4812 - - uid: 13476 + - uid: 13440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-0.5 + pos: -57.5,6.5 parent: 4812 - - uid: 13501 + - uid: 13460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-0.5 + pos: -1.5,-14.5 parent: 4812 - - uid: 13505 + - uid: 13476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-0.5 + pos: -55.5,-0.5 parent: 4812 - - uid: 13534 + - uid: 13501 components: - type: Transform - pos: -57.5,6.5 + pos: -51.5,-0.5 parent: 4812 - - uid: 13544 + - uid: 13505 components: - type: Transform - pos: -58.5,6.5 + pos: -50.5,-0.5 parent: 4812 - uid: 13741 components: - type: Transform - rot: -1.5707963267948966 rad pos: -44.5,-0.5 parent: 4812 - uid: 13827 components: - type: Transform - rot: -1.5707963267948966 rad pos: -45.5,-0.5 parent: 4812 - proto: ResearchAndDevelopmentServer @@ -71132,6 +71463,11 @@ entities: - type: Transform pos: 10.5,54.5 parent: 4812 + - uid: 4695 + components: + - type: Transform + pos: 8.5,21.5 + parent: 4812 - uid: 5507 components: - type: Transform @@ -71197,6 +71533,11 @@ entities: - type: Transform pos: -23.5,21.5 parent: 4812 + - uid: 9592 + components: + - type: Transform + pos: 9.5,21.5 + parent: 4812 - uid: 10673 components: - type: Transform @@ -71276,6 +71617,65 @@ entities: rot: -1.5707963267948966 rad pos: -24.5,31.5 parent: 4812 + - uid: 13852 + components: + - type: Transform + pos: 7.5,21.5 + parent: 4812 + - uid: 13853 + components: + - type: Transform + pos: 6.5,21.5 + parent: 4812 + - uid: 13854 + components: + - type: Transform + pos: 5.5,21.5 + parent: 4812 + - uid: 13888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,20.5 + parent: 4812 + - uid: 13889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,19.5 + parent: 4812 + - uid: 13890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,17.5 + parent: 4812 + - uid: 13891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,16.5 + parent: 4812 +- proto: ShuttersWindowOpen + entities: + - uid: 9345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,0.5 + parent: 4812 + - uid: 13742 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,1.5 + parent: 4812 + - uid: 13743 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -58.5,2.5 + parent: 4812 - proto: ShuttleConsoleCircuitboard entities: - uid: 10959 @@ -71356,32 +71756,6 @@ entities: - Pressed: Toggle 1931: - Pressed: Toggle - - uid: 2844 - components: - - type: Transform - pos: 17.5,33.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 2835: - - Pressed: Toggle - 2870: - - Pressed: Toggle - 2837: - - Pressed: Toggle - 2836: - - Pressed: Toggle - - uid: 2938 - components: - - type: Transform - pos: 21.5,26.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 2864: - - Pressed: Toggle - 2866: - - Pressed: Toggle - uid: 5576 components: - type: Transform @@ -71395,19 +71769,6 @@ entities: - Pressed: Toggle 5508: - Pressed: Toggle - - uid: 6218 - components: - - type: Transform - pos: 7.5,-27.5 - parent: 4812 - - type: DeviceLinkSource - linkedPorts: - 5794: - - Pressed: Toggle - 5795: - - Pressed: Toggle - 5796: - - Pressed: Toggle - uid: 6690 components: - type: Transform @@ -71423,17 +71784,19 @@ entities: - Pressed: Toggle - proto: SignalButtonDirectional entities: - - uid: 4413 + - uid: 2928 components: - - type: MetaData - name: EVA blast door - type: Transform rot: 3.141592653589793 rad - pos: 7.5,23.5 + pos: -56.5,-0.5 parent: 4812 - type: DeviceLinkSource linkedPorts: - 729: + 9345: + - Pressed: Toggle + 13742: + - Pressed: Toggle + 13743: - Pressed: Toggle - uid: 4610 components: @@ -71447,6 +71810,18 @@ entities: - Pressed: Toggle 13287: - Pressed: Toggle + - uid: 10877 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,26.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 2866: + - Pressed: Toggle + 2864: + - Pressed: Toggle - uid: 13373 components: - type: Transform @@ -71463,6 +71838,22 @@ entities: - Pressed: Toggle 13665: - Pressed: Toggle + - uid: 13629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,30.5 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 2835: + - Pressed: Toggle + 2836: + - Pressed: Toggle + 2837: + - Pressed: Toggle + 2870: + - Pressed: Toggle - uid: 13662 components: - type: Transform @@ -71488,6 +71879,28 @@ entities: - Pressed: Toggle 13663: - Pressed: Toggle + - uid: 13886 + components: + - type: Transform + pos: -27.780294,17.470497 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 13890: + - Pressed: Toggle + 13891: + - Pressed: Toggle + - uid: 13887 + components: + - type: Transform + pos: -27.780294,20.46584 + parent: 4812 + - type: DeviceLinkSource + linkedPorts: + 13888: + - Pressed: Toggle + 13889: + - Pressed: Toggle - proto: SignAnomaly2 entities: - uid: 6342 @@ -71911,13 +72324,6 @@ entities: - type: Transform pos: -34.5,-4.5 parent: 4812 -- proto: SignEVA - entities: - - uid: 13460 - components: - - type: Transform - pos: -59.5,5.5 - parent: 4812 - proto: SignExamroom entities: - uid: 6659 @@ -72114,10 +72520,10 @@ entities: - type: Transform pos: 10.5,-22.5 parent: 4812 - - uid: 6217 + - uid: 13815 components: - type: Transform - pos: 2.5,-24.5 + pos: 2.5,-28.5 parent: 4812 - proto: SignSalvage entities: @@ -72197,6 +72603,12 @@ entities: rot: -1.5707963267948966 rad pos: -41.5,22.5 parent: 4812 + - uid: 9590 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -26.5,37.5 + parent: 4812 - uid: 9693 components: - type: Transform @@ -72240,6 +72652,23 @@ entities: rot: -1.5707963267948966 rad pos: -32.5,19.5 parent: 4812 + - uid: 13710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,35.5 + parent: 4812 + - uid: 13840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -62.5,0.5 + parent: 4812 + - uid: 13864 + components: + - type: Transform + pos: 10.5,40.5 + parent: 4812 - proto: SignSecureSmall entities: - uid: 2931 @@ -72356,6 +72785,12 @@ entities: rot: 3.141592653589793 rad pos: 63.5,-2.5 parent: 4812 + - uid: 9594 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -59.5,5.5 + parent: 4812 - uid: 10773 components: - type: Transform @@ -72396,6 +72831,13 @@ entities: - type: Transform pos: 26.5,-27.5 parent: 4812 +- proto: SignVault + entities: + - uid: 7318 + components: + - type: Transform + pos: -3.5,21.5 + parent: 4812 - proto: SignVirology entities: - uid: 8870 @@ -73110,7 +73552,6 @@ entities: - uid: 13337 components: - type: Transform - rot: -1.5707963267948966 rad pos: -41.5,-17.5 parent: 4812 - proto: SpaceHeater @@ -73655,6 +74096,26 @@ entities: - type: Transform pos: -23.435179,-7.6711965 parent: 4812 +- proto: Stairs + entities: + - uid: 2927 + components: + - type: Transform + pos: -11.5,-40.5 + parent: 4812 + - uid: 13724 + components: + - type: Transform + pos: -10.5,-40.5 + parent: 4812 +- proto: StairStageWood + entities: + - uid: 3966 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 4812 - proto: StasisBed entities: - uid: 7574 @@ -73671,10 +74132,10 @@ entities: parent: 4812 - proto: StationAnchor entities: - - uid: 10438 + - uid: 893 components: - type: Transform - pos: -48.5,-16.5 + pos: -49.5,-16.5 parent: 4812 - proto: StationEfficiencyCircuitBoard entities: @@ -73977,6 +74438,13 @@ entities: - type: Transform pos: 30.5,-39.5 parent: 4812 + - uid: 13892 + components: + - type: MetaData + name: Security Substation + - type: Transform + pos: -34.5,8.5 + parent: 4812 - proto: SuitStorageAtmos entities: - uid: 13688 @@ -76121,11 +76589,6 @@ entities: - type: Transform pos: -6.5,34.5 parent: 4812 - - uid: 2663 - components: - - type: Transform - pos: -8.5,34.5 - parent: 4812 - uid: 2698 components: - type: Transform @@ -77031,10 +77494,9 @@ entities: parent: 4812 - proto: TegCenter entities: - - uid: 9278 + - uid: 9216 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,3.5 parent: 4812 - proto: TegCirculator @@ -77218,7 +77680,6 @@ entities: - uid: 10450 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,-18.5 parent: 4812 - proto: ToiletDirtyWater @@ -77740,12 +78201,10 @@ entities: - type: Transform pos: -30.5,-28.5 parent: 4812 - - uid: 10873 + - uid: 10889 components: - - type: MetaData - name: cigarette machine - type: Transform - pos: -27.5,7.5 + pos: -27.5,8.5 parent: 4812 - proto: VendingMachineClothing entities: @@ -78143,6 +78602,11 @@ entities: rot: -1.5707963267948966 rad pos: -18.5,24.5 parent: 4812 + - uid: 3678 + components: + - type: Transform + pos: 10.5,51.5 + parent: 4812 - uid: 3775 components: - type: Transform @@ -78326,6 +78790,16 @@ entities: - type: Transform pos: -14.5,18.5 parent: 4812 + - uid: 894 + components: + - type: Transform + pos: -51.5,-15.5 + parent: 4812 + - uid: 1803 + components: + - type: Transform + pos: -18.5,32.5 + parent: 4812 - uid: 1819 components: - type: Transform @@ -78914,7 +79388,6 @@ entities: - uid: 2873 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,-5.5 parent: 4812 - uid: 2897 @@ -78945,13 +79418,11 @@ entities: - uid: 2913 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,18.5 parent: 4812 - uid: 2923 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,-3.5 parent: 4812 - uid: 2942 @@ -78982,7 +79453,6 @@ entities: - uid: 3178 components: - type: Transform - rot: -1.5707963267948966 rad pos: -41.5,22.5 parent: 4812 - uid: 3179 @@ -79018,13 +79488,11 @@ entities: - uid: 3273 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,-5.5 parent: 4812 - uid: 3275 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,-0.5 parent: 4812 - uid: 3288 @@ -79675,7 +80143,6 @@ entities: - uid: 3777 components: - type: Transform - rot: -1.5707963267948966 rad pos: 62.5,-0.5 parent: 4812 - uid: 3779 @@ -79746,7 +80213,6 @@ entities: - uid: 4052 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,7.5 parent: 4812 - uid: 4065 @@ -79857,25 +80323,21 @@ entities: - uid: 4178 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,-8.5 parent: 4812 - uid: 4190 components: - type: Transform - rot: 1.5707963267948966 rad pos: 34.5,-0.5 parent: 4812 - uid: 4191 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,-0.5 parent: 4812 - uid: 4318 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,20.5 parent: 4812 - uid: 4323 @@ -79886,25 +80348,21 @@ entities: - uid: 4333 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,0.5 parent: 4812 - uid: 4417 components: - type: Transform - rot: 1.5707963267948966 rad pos: 27.5,-8.5 parent: 4812 - uid: 4436 components: - type: Transform - rot: 1.5707963267948966 rad pos: 31.5,1.5 parent: 4812 - uid: 4443 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,-4.5 parent: 4812 - uid: 4554 @@ -79915,25 +80373,21 @@ entities: - uid: 4561 components: - type: Transform - rot: -1.5707963267948966 rad pos: 63.5,-2.5 parent: 4812 - uid: 4614 components: - type: Transform - rot: -1.5707963267948966 rad pos: -52.5,-0.5 parent: 4812 - uid: 4621 components: - type: Transform - rot: -1.5707963267948966 rad pos: -48.5,7.5 parent: 4812 - uid: 4624 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,-4.5 parent: 4812 - uid: 4638 @@ -80699,61 +81153,56 @@ entities: - uid: 5904 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-30.5 parent: 4812 - uid: 5905 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-31.5 parent: 4812 - uid: 5906 components: - type: Transform - rot: 1.5707963267948966 rad pos: 17.5,-30.5 parent: 4812 - uid: 5907 components: - type: Transform - rot: 1.5707963267948966 rad pos: 17.5,-31.5 parent: 4812 - uid: 5908 components: - type: Transform - rot: 1.5707963267948966 rad pos: 17.5,-32.5 parent: 4812 - uid: 5909 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,-32.5 parent: 4812 - uid: 5910 components: - type: Transform - rot: 1.5707963267948966 rad pos: 13.5,-32.5 parent: 4812 - uid: 5911 components: - type: Transform - rot: 1.5707963267948966 rad pos: 14.5,-32.5 parent: 4812 + - uid: 6173 + components: + - type: Transform + pos: -33.5,8.5 + parent: 4812 - uid: 6290 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,18.5 parent: 4812 - uid: 6362 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,16.5 parent: 4812 - uid: 6546 @@ -80819,7 +81268,6 @@ entities: - uid: 6604 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,-3.5 parent: 4812 - uid: 6696 @@ -80912,6 +81360,11 @@ entities: - type: Transform pos: -8.5,-33.5 parent: 4812 + - uid: 7273 + components: + - type: Transform + pos: -16.5,32.5 + parent: 4812 - uid: 7281 components: - type: Transform @@ -80945,20 +81398,13 @@ entities: - uid: 7405 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,-5.5 parent: 4812 - uid: 7406 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,-5.5 parent: 4812 - - uid: 7463 - components: - - type: Transform - pos: -50.5,-15.5 - parent: 4812 - uid: 7636 components: - type: Transform @@ -81489,6 +81935,11 @@ entities: - type: Transform pos: -40.5,12.5 parent: 4812 + - uid: 7932 + components: + - type: Transform + pos: -51.5,-16.5 + parent: 4812 - uid: 7937 components: - type: Transform @@ -81559,15 +82010,9 @@ entities: - type: Transform pos: -40.5,8.5 parent: 4812 - - uid: 7955 - components: - - type: Transform - pos: -35.5,8.5 - parent: 4812 - uid: 8048 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,19.5 parent: 4812 - uid: 8055 @@ -81598,13 +82043,11 @@ entities: - uid: 8469 components: - type: Transform - rot: 3.141592653589793 rad pos: -46.5,-26.5 parent: 4812 - uid: 8483 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,1.5 parent: 4812 - uid: 8497 @@ -81872,22 +82315,24 @@ entities: - type: Transform pos: -42.5,-0.5 parent: 4812 + - uid: 8733 + components: + - type: Transform + pos: -51.5,-17.5 + parent: 4812 - uid: 8736 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,19.5 parent: 4812 - uid: 8737 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,19.5 parent: 4812 - uid: 8740 components: - type: Transform - rot: 3.141592653589793 rad pos: -46.5,19.5 parent: 4812 - uid: 8789 @@ -82068,7 +82513,6 @@ entities: - uid: 8851 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,-4.5 parent: 4812 - uid: 8873 @@ -82099,79 +82543,66 @@ entities: - uid: 9135 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,16.5 parent: 4812 - uid: 9136 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,15.5 parent: 4812 - uid: 9137 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,15.5 parent: 4812 - uid: 9162 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,19.5 parent: 4812 - uid: 9163 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,18.5 parent: 4812 - uid: 9164 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,17.5 parent: 4812 - uid: 9165 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,18.5 parent: 4812 - uid: 9177 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,19.5 parent: 4812 - uid: 9178 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,15.5 parent: 4812 - uid: 9179 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,18.5 parent: 4812 - uid: 9180 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,17.5 parent: 4812 - uid: 9181 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,16.5 parent: 4812 - uid: 9189 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,3.5 parent: 4812 - uid: 9217 @@ -82182,49 +82613,41 @@ entities: - uid: 9248 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,1.5 parent: 4812 - uid: 9258 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,15.5 parent: 4812 - uid: 9259 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,19.5 parent: 4812 - uid: 9260 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,19.5 parent: 4812 - uid: 9270 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,16.5 parent: 4812 - uid: 9272 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,19.5 parent: 4812 - uid: 9273 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,17.5 parent: 4812 - uid: 9274 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,18.5 parent: 4812 - uid: 9284 @@ -82235,157 +82658,131 @@ entities: - uid: 9293 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,15.5 parent: 4812 - uid: 9305 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,5.5 parent: 4812 - uid: 9308 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,6.5 parent: 4812 - uid: 9355 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,20.5 parent: 4812 - uid: 9356 components: - type: Transform - rot: 3.141592653589793 rad pos: -52.5,20.5 parent: 4812 - uid: 9357 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,19.5 parent: 4812 - uid: 9358 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,17.5 parent: 4812 - uid: 9359 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,20.5 parent: 4812 - uid: 9360 components: - type: Transform - rot: 3.141592653589793 rad pos: -50.5,19.5 parent: 4812 - uid: 9362 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,16.5 parent: 4812 - uid: 9365 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,16.5 parent: 4812 - uid: 9366 components: - type: Transform - rot: 3.141592653589793 rad pos: -53.5,19.5 parent: 4812 - uid: 9367 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,18.5 parent: 4812 - uid: 9368 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,20.5 parent: 4812 - uid: 9369 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,20.5 parent: 4812 - uid: 9370 components: - type: Transform - rot: 3.141592653589793 rad pos: -44.5,20.5 parent: 4812 - uid: 9377 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,15.5 parent: 4812 - uid: 9378 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,15.5 parent: 4812 - uid: 9379 components: - type: Transform - rot: 3.141592653589793 rad pos: -46.5,20.5 parent: 4812 - uid: 9380 components: - type: Transform - rot: 3.141592653589793 rad pos: -45.5,20.5 parent: 4812 - uid: 9382 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,17.5 parent: 4812 - uid: 9384 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,6.5 parent: 4812 - uid: 9385 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,-0.5 parent: 4812 - uid: 9386 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,5.5 parent: 4812 - uid: 9388 components: - type: Transform - rot: -1.5707963267948966 rad pos: -58.5,-0.5 parent: 4812 - uid: 9389 components: - type: Transform - rot: -1.5707963267948966 rad pos: -58.5,3.5 parent: 4812 - uid: 9411 @@ -82401,7 +82798,6 @@ entities: - uid: 9478 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,18.5 parent: 4812 - uid: 9484 @@ -82412,19 +82808,16 @@ entities: - uid: 9491 components: - type: Transform - rot: 3.141592653589793 rad pos: -40.5,-16.5 parent: 4812 - uid: 9494 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,-16.5 parent: 4812 - uid: 9497 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,17.5 parent: 4812 - uid: 9506 @@ -82450,61 +82843,51 @@ entities: - uid: 9527 components: - type: Transform - rot: -1.5707963267948966 rad pos: -47.5,7.5 parent: 4812 - uid: 9531 components: - type: Transform - rot: 3.141592653589793 rad pos: -39.5,-16.5 parent: 4812 - uid: 9544 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,16.5 parent: 4812 - uid: 9546 components: - type: Transform - rot: 3.141592653589793 rad pos: -32.5,6.5 parent: 4812 - uid: 9550 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,19.5 parent: 4812 - uid: 9551 components: - type: Transform - rot: 3.141592653589793 rad pos: -49.5,20.5 parent: 4812 - uid: 9552 components: - type: Transform - rot: 3.141592653589793 rad pos: -48.5,20.5 parent: 4812 - uid: 9553 components: - type: Transform - rot: 3.141592653589793 rad pos: -42.5,19.5 parent: 4812 - uid: 9556 components: - type: Transform - rot: 3.141592653589793 rad pos: -43.5,20.5 parent: 4812 - uid: 9558 components: - type: Transform - rot: 3.141592653589793 rad pos: -38.5,-16.5 parent: 4812 - uid: 9579 @@ -82512,31 +82895,6 @@ entities: - type: Transform pos: -42.5,-32.5 parent: 4812 - - uid: 9590 - components: - - type: Transform - pos: -46.5,-25.5 - parent: 4812 - - uid: 9591 - components: - - type: Transform - pos: -46.5,-24.5 - parent: 4812 - - uid: 9592 - components: - - type: Transform - pos: -48.5,-24.5 - parent: 4812 - - uid: 9594 - components: - - type: Transform - pos: -49.5,-24.5 - parent: 4812 - - uid: 9595 - components: - - type: Transform - pos: -49.5,-25.5 - parent: 4812 - uid: 9596 components: - type: Transform @@ -82585,13 +82943,11 @@ entities: - uid: 9681 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,13.5 parent: 4812 - uid: 9707 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,-16.5 parent: 4812 - uid: 9712 @@ -82607,7 +82963,6 @@ entities: - uid: 9827 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,5.5 parent: 4812 - uid: 9829 @@ -82748,7 +83103,6 @@ entities: - uid: 9870 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,4.5 parent: 4812 - uid: 9873 @@ -82794,7 +83148,6 @@ entities: - uid: 9934 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-2.5 parent: 4812 - uid: 9939 @@ -82895,18 +83248,12 @@ entities: - uid: 10414 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,-5.5 parent: 4812 - - uid: 10439 - components: - - type: Transform - pos: -50.5,-16.5 - parent: 4812 - - uid: 10454 + - uid: 10434 components: - type: Transform - pos: -50.5,-17.5 + pos: -51.5,-18.5 parent: 4812 - uid: 10456 components: @@ -82916,7 +83263,6 @@ entities: - uid: 10486 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,3.5 parent: 4812 - uid: 10635 @@ -82927,25 +83273,21 @@ entities: - uid: 10748 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-1.5 parent: 4812 - uid: 10754 components: - type: Transform - rot: 1.5707963267948966 rad pos: -49.5,-0.5 parent: 4812 - uid: 10757 components: - type: Transform - rot: -1.5707963267948966 rad pos: -59.5,3.5 parent: 4812 - uid: 10758 components: - type: Transform - rot: -1.5707963267948966 rad pos: -62.5,3.5 parent: 4812 - uid: 10929 @@ -82968,6 +83310,11 @@ entities: - type: Transform pos: 3.5,-41.5 parent: 4812 + - uid: 11002 + components: + - type: Transform + pos: -44.5,-31.5 + parent: 4812 - uid: 11006 components: - type: Transform @@ -82983,6 +83330,21 @@ entities: - type: Transform pos: 3.5,-38.5 parent: 4812 + - uid: 11027 + components: + - type: Transform + pos: -43.5,-31.5 + parent: 4812 + - uid: 11028 + components: + - type: Transform + pos: -45.5,-26.5 + parent: 4812 + - uid: 11029 + components: + - type: Transform + pos: -44.5,-29.5 + parent: 4812 - uid: 11030 components: - type: Transform @@ -83156,7 +83518,7 @@ entities: - uid: 11135 components: - type: Transform - pos: 27.5,-35.5 + pos: -45.5,-29.5 parent: 4812 - uid: 11136 components: @@ -83196,7 +83558,7 @@ entities: - uid: 11265 components: - type: Transform - pos: 27.5,-36.5 + pos: -45.5,-28.5 parent: 4812 - uid: 11340 components: @@ -83223,6 +83585,11 @@ entities: - type: Transform pos: 35.5,-31.5 parent: 4812 + - uid: 11366 + components: + - type: Transform + pos: -42.5,-31.5 + parent: 4812 - uid: 11371 components: - type: Transform @@ -83286,33 +83653,38 @@ entities: - uid: 11717 components: - type: Transform - rot: -1.5707963267948966 rad pos: -62.5,2.5 parent: 4812 - uid: 11722 components: - type: Transform - rot: -1.5707963267948966 rad pos: -62.5,0.5 parent: 4812 + - uid: 11792 + components: + - type: Transform + pos: 10.5,40.5 + parent: 4812 - uid: 11889 components: - type: Transform - rot: -1.5707963267948966 rad pos: -61.5,-0.5 parent: 4812 - uid: 11890 components: - type: Transform - rot: -1.5707963267948966 rad pos: -60.5,-0.5 parent: 4812 - uid: 11905 components: - type: Transform - rot: -1.5707963267948966 rad pos: -62.5,-0.5 parent: 4812 + - uid: 11935 + components: + - type: Transform + pos: -54.5,-23.5 + parent: 4812 - uid: 12113 components: - type: Transform @@ -83321,9 +83693,13 @@ entities: - uid: 12130 components: - type: Transform - rot: -1.5707963267948966 rad pos: -55.5,12.5 parent: 4812 + - uid: 12144 + components: + - type: Transform + pos: 35.5,-38.5 + parent: 4812 - uid: 12429 components: - type: Transform @@ -83332,7 +83708,6 @@ entities: - uid: 12582 components: - type: Transform - rot: 3.141592653589793 rad pos: -41.5,17.5 parent: 4812 - uid: 12590 @@ -83343,19 +83718,16 @@ entities: - uid: 12628 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,13.5 parent: 4812 - uid: 12641 components: - type: Transform - rot: 3.141592653589793 rad pos: 33.5,-0.5 parent: 4812 - uid: 12649 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,13.5 parent: 4812 - uid: 12659 @@ -83376,55 +83748,41 @@ entities: - uid: 12872 components: - type: Transform - rot: -1.5707963267948966 rad pos: 38.5,-5.5 parent: 4812 - uid: 12901 components: - type: Transform - rot: -1.5707963267948966 rad pos: 61.5,-0.5 parent: 4812 - uid: 12902 components: - type: Transform - rot: -1.5707963267948966 rad pos: 63.5,-0.5 parent: 4812 - uid: 12903 components: - type: Transform - rot: -1.5707963267948966 rad pos: 61.5,-4.5 parent: 4812 - uid: 12927 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,41.5 parent: 4812 - - uid: 12966 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-0.5 - parent: 4812 - uid: 12967 components: - type: Transform - rot: 3.141592653589793 rad pos: -57.5,-0.5 parent: 4812 - uid: 12968 components: - type: Transform - rot: 1.5707963267948966 rad pos: -56.5,-0.5 parent: 4812 - uid: 12993 components: - type: Transform - rot: -1.5707963267948966 rad pos: -46.5,0.5 parent: 4812 - uid: 13020 @@ -83435,13 +83793,11 @@ entities: - uid: 13056 components: - type: Transform - rot: -1.5707963267948966 rad pos: 62.5,-4.5 parent: 4812 - uid: 13057 components: - type: Transform - rot: -1.5707963267948966 rad pos: 64.5,-4.5 parent: 4812 - uid: 13084 @@ -83452,67 +83808,61 @@ entities: - uid: 13088 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,15.5 parent: 4812 - uid: 13110 components: - type: Transform - rot: -1.5707963267948966 rad pos: 64.5,-0.5 parent: 4812 - uid: 13116 components: - type: Transform - rot: -1.5707963267948966 rad pos: 63.5,-4.5 parent: 4812 - uid: 13137 components: - type: Transform - rot: 1.5707963267948966 rad pos: 16.5,38.5 parent: 4812 + - uid: 13142 + components: + - type: Transform + pos: -36.5,8.5 + parent: 4812 - uid: 13167 components: - type: Transform - rot: 3.141592653589793 rad pos: -51.5,-3.5 parent: 4812 - uid: 13217 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,6.5 parent: 4812 - uid: 13280 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,-45.5 parent: 4812 - uid: 13317 components: - type: Transform - rot: 3.141592653589793 rad pos: -47.5,-2.5 parent: 4812 - uid: 13355 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,8.5 parent: 4812 - uid: 13356 components: - type: Transform - rot: 3.141592653589793 rad pos: -55.5,7.5 parent: 4812 - uid: 13435 components: - type: Transform - rot: 1.5707963267948966 rad pos: -52.5,7.5 parent: 4812 - uid: 13437 @@ -83523,7 +83873,6 @@ entities: - uid: 13477 components: - type: Transform - rot: 1.5707963267948966 rad pos: 37.5,-5.5 parent: 4812 - uid: 13484 @@ -83536,6 +83885,11 @@ entities: - type: Transform pos: -61.5,12.5 parent: 4812 + - uid: 13509 + components: + - type: Transform + pos: -53.5,-0.5 + parent: 4812 - uid: 13540 components: - type: Transform @@ -83544,7 +83898,6 @@ entities: - uid: 13545 components: - type: Transform - rot: 3.141592653589793 rad pos: -59.5,6.5 parent: 4812 - uid: 13547 @@ -83560,13 +83913,11 @@ entities: - uid: 13556 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,-7.5 parent: 4812 - uid: 13558 components: - type: Transform - rot: 1.5707963267948966 rad pos: 32.5,-6.5 parent: 4812 - proto: WallSolid @@ -84891,16 +85242,6 @@ entities: - type: Transform pos: 18.5,44.5 parent: 4812 - - uid: 3476 - components: - - type: Transform - pos: 10.5,40.5 - parent: 4812 - - uid: 3981 - components: - - type: Transform - pos: -14.5,33.5 - parent: 4812 - uid: 3983 components: - type: Transform @@ -84941,16 +85282,6 @@ entities: - type: Transform pos: 19.5,5.5 parent: 4812 - - uid: 4013 - components: - - type: Transform - pos: -44.5,-31.5 - parent: 4812 - - uid: 4014 - components: - - type: Transform - pos: -43.5,-31.5 - parent: 4812 - uid: 4015 components: - type: Transform @@ -85224,17 +85555,7 @@ entities: - uid: 4717 components: - type: Transform - pos: -45.5,-26.5 - parent: 4812 - - uid: 4756 - components: - - type: Transform - pos: -45.5,-28.5 - parent: 4812 - - uid: 4757 - components: - - type: Transform - pos: -45.5,-29.5 + pos: -46.5,-24.5 parent: 4812 - uid: 4783 components: @@ -85281,11 +85602,6 @@ entities: - type: Transform pos: -12.5,-36.5 parent: 4812 - - uid: 4797 - components: - - type: Transform - pos: -44.5,-29.5 - parent: 4812 - uid: 4814 components: - type: Transform @@ -85316,6 +85632,11 @@ entities: - type: Transform pos: -11.5,-29.5 parent: 4812 + - uid: 4990 + components: + - type: Transform + pos: -28.5,8.5 + parent: 4812 - uid: 5024 components: - type: Transform @@ -85451,6 +85772,11 @@ entities: - type: Transform pos: 3.5,-31.5 parent: 4812 + - uid: 6217 + components: + - type: Transform + pos: -15.5,35.5 + parent: 4812 - uid: 6498 components: - type: Transform @@ -86031,11 +86357,6 @@ entities: - type: Transform pos: -41.5,-29.5 parent: 4812 - - uid: 7318 - components: - - type: Transform - pos: -42.5,-31.5 - parent: 4812 - uid: 7319 components: - type: Transform @@ -86071,11 +86392,6 @@ entities: - type: Transform pos: -27.5,18.5 parent: 4812 - - uid: 7953 - components: - - type: Transform - pos: -28.5,7.5 - parent: 4812 - uid: 8162 components: - type: Transform @@ -86094,7 +86410,6 @@ entities: - uid: 8359 components: - type: Transform - rot: 3.141592653589793 rad pos: 10.5,-3.5 parent: 4812 - uid: 8457 @@ -86172,6 +86487,11 @@ entities: - type: Transform pos: -39.5,-23.5 parent: 4812 + - uid: 9637 + components: + - type: Transform + pos: -45.5,-24.5 + parent: 4812 - uid: 9968 components: - type: Transform @@ -86225,7 +86545,7 @@ entities: - uid: 10153 components: - type: Transform - pos: -54.5,-23.5 + pos: -49.5,-24.5 parent: 4812 - uid: 10155 components: @@ -86242,6 +86562,16 @@ entities: - type: Transform pos: -42.5,-22.5 parent: 4812 + - uid: 10404 + components: + - type: Transform + pos: -49.5,-25.5 + parent: 4812 + - uid: 10609 + components: + - type: Transform + pos: -48.5,-24.5 + parent: 4812 - uid: 10613 components: - type: Transform @@ -86252,6 +86582,16 @@ entities: - type: Transform pos: -42.5,-23.5 parent: 4812 + - uid: 10911 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 4812 + - uid: 10955 + components: + - type: Transform + pos: 27.5,-36.5 + parent: 4812 - uid: 11049 components: - type: Transform @@ -86380,7 +86720,6 @@ entities: - uid: 11256 components: - type: Transform - rot: -1.5707963267948966 rad pos: 21.5,0.5 parent: 4812 - uid: 11266 @@ -86426,7 +86765,6 @@ entities: - uid: 11301 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,3.5 parent: 4812 - uid: 11302 @@ -86459,11 +86797,6 @@ entities: - type: Transform pos: 34.5,-32.5 parent: 4812 - - uid: 11366 - components: - - type: Transform - pos: 35.5,-38.5 - parent: 4812 - uid: 11367 components: - type: Transform @@ -86507,13 +86840,11 @@ entities: - uid: 11475 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,3.5 parent: 4812 - uid: 11646 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,3.5 parent: 4812 - uid: 11706 @@ -87006,13 +87337,13 @@ entities: - type: Transform pos: -45.5,1.5 parent: 4812 -- proto: WaterTankFull - entities: - - uid: 1484 + - uid: 13911 components: - type: Transform - pos: -23.5,-9.5 + pos: 16.5,-26.5 parent: 4812 +- proto: WaterTankFull + entities: - uid: 3358 components: - type: Transform @@ -87043,6 +87374,11 @@ entities: - type: Transform pos: -38.5,-3.5 parent: 4812 + - uid: 10439 + components: + - type: Transform + pos: 4.5,51.5 + parent: 4812 - uid: 10702 components: - type: Transform @@ -87065,10 +87401,10 @@ entities: - type: Transform pos: -18.5,-6.5 parent: 4812 - - uid: 3678 + - uid: 10438 components: - type: Transform - pos: 4.5,51.5 + pos: -23.5,-9.5 parent: 4812 - proto: WaterVaporCanister entities: @@ -87224,10 +87560,10 @@ entities: - type: Transform pos: 35.616592,-30.437298 parent: 4812 - - uid: 10724 + - uid: 13867 components: - type: Transform - pos: -36.35727,8.431009 + pos: -38.517975,8.505413 parent: 4812 - proto: WelderMini entities: @@ -87311,12 +87647,6 @@ entities: rot: 1.5707963267948966 rad pos: 15.5,8.5 parent: 4812 - - uid: 4453 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 4812 - uid: 7134 components: - type: Transform @@ -87588,14 +87918,6 @@ entities: rot: -1.5707963267948966 rad pos: -35.5,18.5 parent: 4812 -- proto: WindoorTheatreLocked - entities: - - uid: 896 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 4812 - proto: Window entities: - uid: 187 @@ -87628,31 +87950,14 @@ entities: - type: Transform pos: -24.5,4.5 parent: 4812 - - uid: 4656 - components: - - type: Transform - pos: -1.5,-14.5 - parent: 4812 - - uid: 4657 - components: - - type: Transform - pos: -2.5,-14.5 - parent: 4812 - - uid: 4658 - components: - - type: Transform - pos: -3.5,-14.5 - parent: 4812 - uid: 5761 components: - type: Transform - rot: -1.5707963267948966 rad pos: 30.5,-26.5 parent: 4812 - uid: 5762 components: - type: Transform - rot: -1.5707963267948966 rad pos: 30.5,-24.5 parent: 4812 - uid: 6669 @@ -87675,68 +87980,8 @@ entities: - type: Transform pos: -28.5,-26.5 parent: 4812 - - uid: 10404 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,32.5 - parent: 4812 - - uid: 10609 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,32.5 - parent: 4812 - proto: WindowDirectional entities: - - uid: 890 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 4812 - - uid: 891 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 4812 - - uid: 892 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 4812 - - uid: 893 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 4812 - - uid: 894 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,8.5 - parent: 4812 - - uid: 895 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 4812 - - uid: 4449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,6.5 - parent: 4812 - - uid: 4450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,7.5 - parent: 4812 - uid: 7135 components: - type: Transform @@ -87757,12 +88002,22 @@ entities: rot: 1.5707963267948966 rad pos: -20.5,-38.5 parent: 4812 + - uid: 8001 + components: + - type: Transform + pos: 16.5,8.5 + parent: 4812 - uid: 8455 components: - type: Transform rot: 1.5707963267948966 rad pos: 4.5,6.5 parent: 4812 + - uid: 13910 + components: + - type: Transform + pos: 16.5,7.5 + parent: 4812 - proto: WindowReinforcedDirectional entities: - uid: 2477 diff --git a/Resources/Maps/packed.yml b/Resources/Maps/packed.yml index 375c272f0a6c..f5e6912200f1 100644 --- a/Resources/Maps/packed.yml +++ b/Resources/Maps/packed.yml @@ -24,12 +24,14 @@ tilemap: 79: FloorRockVault 80: FloorShowroom 91: FloorSteel + 5: FloorSteelCheckerDark 98: FloorSteelDirty 100: FloorSteelLime 101: FloorSteelMini 2: FloorSteelMono 106: FloorTechMaint 107: FloorTechMaint2 + 6: FloorTechMaint3 110: FloorWhite 114: FloorWhiteMini 120: FloorWood @@ -48,83 +50,83 @@ entities: chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAADWwAAAAABWwAAAAADewAAAAAAeAAAAAADeAAAAAABeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACewAAAAAAeAAAAAADeAAAAAACeAAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAADHQAAAAADeAAAAAAAeAAAAAADeAAAAAABeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAADWwAAAAACewAAAAAAeAAAAAADeAAAAAADeAAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADewAAAAAAeAAAAAADeAAAAAABeAAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAAAHQAAAAAAeAAAAAAAeAAAAAABeAAAAAACeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABewAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABewAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAAB version: 6 -1,0: ind: -1,0 - tiles: WwAAAAAAWwAAAAACWwAAAAADWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAADewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAWwAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAA version: 6 0,0: ind: 0,0 - tiles: WwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAADegAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACewAAAAAAeAAAAAABeAAAAAABeAAAAAACeAAAAAABeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAADewAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAADeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAACewAAAAAAeAAAAAACeAAAAAACeAAAAAADeAAAAAADeAAAAAABeAAAAAABawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAACewAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABewAAAAAAeAAAAAADeAAAAAABeAAAAAADeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAACAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAABeAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAACeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAACeAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAAAeAAAAAAD + tiles: WwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAACeAAAAAACeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAADewAAAAAAeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAABeAAAAAABewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAeAAAAAACeAAAAAACeAAAAAACeAAAAAADeAAAAAACeAAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACewAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAABeAAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACewAAAAAAeAAAAAACeAAAAAAAeAAAAAABeAAAAAADeAAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABewAAAAAALAAAAAAAUAAAAAAALAAAAAAAUAAAAAAALAAAAAAAewAAAAAAeAAAAAADeAAAAAABAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAACewAAAAAALAAAAAAAUAAAAAAALAAAAAAALAAAAAAAUAAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAeAAAAAABeAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAeAAAAAACeAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACewAAAAAAHQAAAAAAHQAAAAAAawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAHQAAAAABHQAAAAADewAAAAAAWwAAAAADWwAAAAADHQAAAAAAHQAAAAABHQAAAAADewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADewAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAHQAAAAAAHQAAAAABawAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAACWwAAAAADWwAAAAABewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAOgAAAAAAWwAAAAADWwAAAAACWwAAAAADewAAAAAAHQAAAAADHQAAAAACewAAAAAAWwAAAAACWwAAAAAAHQAAAAABHQAAAAADHQAAAAADewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAAD version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAABWwAAAAABWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAADWwAAAAADWwAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAADegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA + tiles: ewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAWwAAAAADWwAAAAACWwAAAAABegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAWwAAAAADWwAAAAADWwAAAAACegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAawAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAA version: 6 0,1: ind: 0,1 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAAAeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAADawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAADewAAAAAAIgAAAAAAIgAAAAABIgAAAAACewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACewAAAAAAIgAAAAACIgAAAAADIgAAAAABewAAAAAAewAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAACeAAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAACeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABawAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADewAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABewAAAAAAIgAAAAABIgAAAAAAIgAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADewAAAAAAIgAAAAADIgAAAAABIgAAAAAAewAAAAAAewAAAAAA version: 6 1,0: ind: 1,0 - tiles: WwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAPQAAAAAAbgAAAAADbgAAAAABPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAPQAAAAAAbgAAAAACbgAAAAAAPQAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPQAAAAAAbgAAAAADbgAAAAADPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPQAAAAAAbgAAAAACbgAAAAABPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAACDgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAHQAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABDgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAADeAAAAAACewAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAABeAAAAAADeAAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAA + tiles: WwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAABQAAAAACBQAAAAAABQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAPQAAAAAAbgAAAAAAbgAAAAADPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAPQAAAAAAbgAAAAADbgAAAAACPQAAAAAAawAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPQAAAAAAbgAAAAADbgAAAAABPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPQAAAAAAbgAAAAABbgAAAAAAPQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADDgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAHQAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADDgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAACeAAAAAACewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAADeAAAAAADeAAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAADewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: ewAAAAAAewAAAAAAawAAAAAAbgAAAAACWwAAAAABWwAAAAABWwAAAAABHQAAAAABewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAABHQAAAAAAHQAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAABewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAADHQAAAAABHQAAAAACHQAAAAACWwAAAAABWwAAAAADWwAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABHQAAAAAAHQAAAAADHQAAAAADWwAAAAABWwAAAAACWwAAAAAAHQAAAAABLAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAADHQAAAAAAHQAAAAADewAAAAAAWwAAAAABWwAAAAACWwAAAAABewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABewAAAAAAPgAAAAAAPgAAAAAADgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAPgAAAAAAPgAAAAAADgAAAAADHQAAAAAAHQAAAAADeAAAAAABeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAAADgAAAAADDgAAAAACDgAAAAADHQAAAAABHQAAAAABeAAAAAADeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACewAAAAAADgAAAAADDgAAAAABDgAAAAABHQAAAAABHQAAAAABeAAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAAAewAAAAAADgAAAAABDgAAAAAADgAAAAAAWwAAAAADewAAAAAAeAAAAAABeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAADgAAAAACDgAAAAACDgAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAAD + tiles: ewAAAAAAewAAAAAAawAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACHQAAAAACewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAABHQAAAAAAHQAAAAACewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAACHQAAAAABHQAAAAADHQAAAAACWwAAAAABWwAAAAAAWwAAAAABewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABHQAAAAACHQAAAAADHQAAAAACWwAAAAACWwAAAAADWwAAAAABHQAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAACHQAAAAABHQAAAAABewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAPgAAAAAAPgAAAAAADgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAPgAAAAAAPgAAAAAADgAAAAACHQAAAAADHQAAAAABeAAAAAADeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAABQAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADDgAAAAADDgAAAAADDgAAAAABHQAAAAAAHQAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAABQAAAAACWwAAAAABWwAAAAAAWwAAAAAAewAAAAAADgAAAAABDgAAAAADDgAAAAAAHQAAAAADHQAAAAAAeAAAAAACeAAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAADgAAAAAADgAAAAADDgAAAAABWwAAAAADewAAAAAAeAAAAAAAeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAAAewAAAAAADgAAAAADDgAAAAAADgAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: awAAAAAAWwAAAAADWwAAAAABewAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAZAAAAAACZAAAAAABZAAAAAADewAAAAAAWwAAAAABWwAAAAADewAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAZAAAAAABZAAAAAABZAAAAAACewAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAABWwAAAAAAWwAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACHQAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADHQAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAABHQAAAAABHQAAAAABWwAAAAACWwAAAAADWwAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABEQAAAAAAewAAAAAAHQAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADHQAAAAADewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAD + tiles: agAAAAAAWwAAAAABWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAADewAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAABWwAAAAADWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACHQAAAAACewAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAewAAAAAAHQAAAAABewAAAAAAWwAAAAABWwAAAAAAWwAAAAACHQAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAEQAAAAAAawAAAAAAHQAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAHQAAAAACHQAAAAACWwAAAAACWwAAAAADWwAAAAADewAAAAAAWwAAAAADWwAAAAACWwAAAAADEQAAAAAAewAAAAAAHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAABHQAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAAD version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAABeAAAAAACeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHQAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAagAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAACewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAADeAAAAAAAeAAAAAABHQAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAAAHQAAAAADHQAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAADHQAAAAADewAAAAAAWwAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABewAAAAAAHQAAAAABWwAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAHQAAAAABHQAAAAADewAAAAAAHQAAAAACHQAAAAADewAAAAAAHQAAAAAAWwAAAAABWwAAAAADewAAAAAAWwAAAAABHQAAAAACewAAAAAAHQAAAAACWwAAAAAAewAAAAAAHQAAAAACHQAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAACWwAAAAACWwAAAAABHQAAAAAAewAAAAAAHQAAAAADWwAAAAADewAAAAAAHQAAAAACHQAAAAABewAAAAAAHQAAAAAAHQAAAAACewAAAAAAHQAAAAACWwAAAAAAWwAAAAACHQAAAAACWwAAAAABHQAAAAABewAAAAAAHQAAAAAAWwAAAAAAHQAAAAACHQAAAAACHQAAAAACewAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAAAWwAAAAACWwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABewAAAAAAHQAAAAADHQAAAAACewAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAADewAAAAAAWwAAAAACWwAAAAAAewAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAZAAAAAACZAAAAAADZAAAAAAD + tiles: AAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAHQAAAAACWwAAAAACWwAAAAADewAAAAAAWwAAAAABagAAAAAAagAAAAAAagAAAAAAWwAAAAACewAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAHQAAAAADWwAAAAABWwAAAAADewAAAAAAWwAAAAABHQAAAAACewAAAAAAHQAAAAADWwAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADHQAAAAACewAAAAAAHQAAAAACWwAAAAADWwAAAAAAewAAAAAAWwAAAAABHQAAAAACewAAAAAAHQAAAAAAWwAAAAADewAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAACHQAAAAADewAAAAAAHQAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADHQAAAAABewAAAAAAHQAAAAACWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAAAewAAAAAAHQAAAAACagAAAAAAWwAAAAADewAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACewAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAACewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAAB version: 6 2,-2: ind: 2,-2 - tiles: ZAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAagAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAA + tiles: WwAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAADewAAAAAAagAAAAAABgAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADagAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACagAAAAAAHQAAAAABTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: ewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAABewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAAHQAAAAADewAAAAAATwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAewAAAAAAHQAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAZAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA + tiles: ewAAAAAAagAAAAAAWwAAAAADagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABgAAAAACBgAAAAABHQAAAAADewAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAHQAAAAAAewAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAWwAAAAADagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAABewAAAAAAHQAAAAACawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAABewAAAAAAHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAACewAAAAAAWwAAAAADWwAAAAADawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAewAAAAAAWwAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAWwAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAWwAAAAABewAAAAAAagAAAAAABgAAAAADagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAA version: 6 1,1: ind: 1,1 - tiles: eAAAAAACewAAAAAAZQAAAAADewAAAAAAewAAAAAALAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACewAAAAAAWwAAAAACWwAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAABewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAACewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAABHQAAAAACHQAAAAADHQAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAADewAAAAAAHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAABWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAAAeAAAAAADewAAAAAAeAAAAAADeAAAAAADWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAeAAAAAAAeAAAAAABeAAAAAABeAAAAAADeAAAAAAAewAAAAAAeAAAAAABeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAADeAAAAAABeAAAAAABeAAAAAABeAAAAAADeAAAAAACWwAAAAABWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: eAAAAAACewAAAAAABQAAAAABewAAAAAAewAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAABQAAAAACWwAAAAAAWwAAAAADWwAAAAABewAAAAAAWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAABQAAAAADWwAAAAACWwAAAAAAWwAAAAABewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAABewAAAAAAWwAAAAABWwAAAAADewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABewAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAACWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAACHQAAAAABHQAAAAADHQAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAABewAAAAAAeAAAAAABeAAAAAACeAAAAAAAeAAAAAABeAAAAAADeAAAAAACeAAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABewAAAAAAHQAAAAACHQAAAAACHQAAAAADewAAAAAAeAAAAAADeAAAAAACeAAAAAAAeAAAAAADeAAAAAAAeAAAAAACeAAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAABewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAeAAAAAAAeAAAAAABeAAAAAADeAAAAAAAeAAAAAAAeAAAAAADeAAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,0: ind: 2,0 - tiles: WwAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADewAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABHQAAAAABewAAAAAAHQAAAAABWwAAAAADHQAAAAABewAAAAAAPgAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAACewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADHQAAAAADewAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACewAAAAAAWwAAAAABWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAACWwAAAAADWwAAAAACWwAAAAABawAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAPgAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADewAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAWwAAAAAAWwAAAAACNgAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAADewAAAAAANgAAAAAANgAAAAAANgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAWwAAAAABWwAAAAAANgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAAAewAAAAAAWwAAAAAAWwAAAAABewAAAAAAbgAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAABWwAAAAACWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAAD + tiles: WwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAABQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADewAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAABewAAAAAAewAAAAAAPgAAAAAAewAAAAAAPgAAAAAAewAAAAAAPgAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAABewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADHQAAAAABewAAAAAAHQAAAAAAewAAAAAAHQAAAAADewAAAAAAPgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACHQAAAAABewAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADewAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWwAAAAADWwAAAAAAWwAAAAAAawAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACewAAAAAAWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAABewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAANgAAAAAANgAAAAAAHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAWwAAAAADWwAAAAABWwAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACewAAAAAAawAAAAAAawAAAAAAewAAAAAAHQAAAAACWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAAB version: 6 2,-1: ind: 2,-1 - tiles: WwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAABWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAADWwAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABewAAAAAAeAAAAAABeAAAAAADewAAAAAAWwAAAAABWwAAAAAAWwAAAAACewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAACeAAAAAACeAAAAAAAeAAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAACewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAAAewAAAAAAHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAABDgAAAAACDgAAAAABDgAAAAABDgAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAACDgAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACWwAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAWwAAAAACOgAAAAAAWwAAAAADWwAAAAACWwAAAAADOgAAAAAAWwAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAACHQAAAAABHQAAAAADHQAAAAADewAAAAAAWwAAAAABOgAAAAAAHQAAAAADHQAAAAAAHQAAAAACOgAAAAAAWwAAAAADDgAAAAACDgAAAAADDgAAAAACDgAAAAADDgAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAAADgAAAAACDgAAAAABDgAAAAABDgAAAAACDgAAAAACewAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAACewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAAB + tiles: WwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADTQAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAADWwAAAAACWwAAAAABawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAACewAAAAAAawAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAHQAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAADWwAAAAABewAAAAAAeAAAAAADeAAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABewAAAAAALwAAAAAALwAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAACeAAAAAACewAAAAAAWwAAAAACWwAAAAADWwAAAAACewAAAAAALwAAAAAALwAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAALwAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAAADgAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAACWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACWwAAAAADDgAAAAACDgAAAAADDgAAAAABDgAAAAAADgAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAACWwAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAABDgAAAAADDgAAAAAADgAAAAADDgAAAAABDgAAAAABHQAAAAACHQAAAAACHQAAAAAAewAAAAAAWwAAAAAAOgAAAAAAWwAAAAABWwAAAAABWwAAAAAAOgAAAAAAWwAAAAACDgAAAAACDgAAAAAADgAAAAABDgAAAAACDgAAAAACHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAWwAAAAACOgAAAAAAHQAAAAADHQAAAAABHQAAAAADOgAAAAAAWwAAAAACDgAAAAACDgAAAAACDgAAAAAADgAAAAAADgAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAADWwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAWwAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAAADgAAAAAAewAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAOgAAAAAAewAAAAAAewAAAAAAWwAAAAABewAAAAAAWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAAD version: 6 1,-4: ind: 1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAATQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAewAAAAAAWwAAAAABagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAA version: 6 -1,-3: ind: -1,-3 @@ -136,59 +138,59 @@ entities: version: 6 3,-1: ind: 3,-1 - tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAADeAAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACewAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAADewAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAABbgAAAAADewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAABbgAAAAABewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAABbgAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAADbgAAAAADewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABewAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACbgAAAAACewAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAAAbgAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAACbgAAAAABewAAAAAA + tiles: ewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAeAAAAAABeAAAAAACeAAAAAACeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAADbgAAAAACewAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAADewAAAAAAWwAAAAABWwAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAACbgAAAAABewAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAADewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAADUAAAAAAAewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAACewAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAACewAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAAAbgAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABbgAAAAACewAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAADbgAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAbgAAAAAAewAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: TQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAAAewAAAAAAeAAAAAAC + tiles: TQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAAwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAeAAAAAABewAAAAAAeAAAAAAA version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAACAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAACAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAACAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAABAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAABAAAAAAAAegAAAAAAegAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAABAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAACAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAA version: 6 1,2: ind: 1,2 - tiles: ewAAAAAAeAAAAAAAeAAAAAADeAAAAAABeAAAAAABeAAAAAABewAAAAAAeAAAAAADeAAAAAADWwAAAAACWwAAAAACWwAAAAADawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAeAAAAAABeAAAAAADWwAAAAABWwAAAAACWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAANgAAAAAANgAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAACewAAAAAANgAAAAAANgAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAADHQAAAAACHQAAAAAAHQAAAAACewAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAACewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAALAAAAAAAHQAAAAACHQAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAACewAAAAAAHQAAAAABeAAAAAABewAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAAAewAAAAAAHQAAAAACeAAAAAABewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACewAAAAAAHQAAAAABeAAAAAABewAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAACewAAAAAAHQAAAAABeAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACewAAAAAAewAAAAAAHQAAAAACewAAAAAAHQAAAAADHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAABAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAACHQAAAAAC + tiles: ewAAAAAAeAAAAAACeAAAAAABeAAAAAABeAAAAAADeAAAAAACeAAAAAABeAAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAADeAAAAAABeAAAAAABeAAAAAACeAAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAABWwAAAAACWwAAAAADewAAAAAANgAAAAAANgAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAABWwAAAAADWwAAAAACWwAAAAADWwAAAAACHQAAAAADHQAAAAADHQAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAAAewAAAAAAEQAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABeAAAAAADewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAACewAAAAAAHQAAAAACeAAAAAAAewAAAAAAHQAAAAACNgAAAAAAHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAewAAAAAAHQAAAAABeAAAAAADewAAAAAAHQAAAAADNgAAAAAAHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABewAAAAAAHQAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAegAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAC version: 6 2,1: ind: 2,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAADWwAAAAABewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAADHQAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAACewAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAAAewAAAAAATQAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAADewAAAAAAewAAAAAAHQAAAAACWwAAAAAAWwAAAAABWwAAAAABWwAAAAACewAAAAAAewAAAAAAHQAAAAABHQAAAAACewAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAewAAAAAAHQAAAAADWwAAAAAAWwAAAAABWwAAAAABWwAAAAADewAAAAAATQAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAATQAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAewAAAAAAagAAAAAAewAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAACewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAABWwAAAAABHQAAAAAAHQAAAAACHQAAAAABHQAAAAADewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAewAAAAAAWwAAAAABewAAAAAAawAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAHQAAAAAAHQAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAACWwAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADewAAAAAAHQAAAAACHQAAAAACHQAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAABewAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAADWwAAAAAAWwAAAAACewAAAAAATQAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAAAHQAAAAADewAAAAAAewAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACHQAAAAAAewAAAAAATQAAAAAAHQAAAAACHQAAAAABTQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAADHQAAAAADewAAAAAATQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAABWwAAAAACHQAAAAACewAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAADWwAAAAADWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAagAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAADewAAAAAAagAAAAAAewAAAAAA version: 6 2,2: ind: 2,2 - tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAACewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACHQAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAACeAAAAAADeAAAAAACeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAADeAAAAAABewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAADeAAAAAABeAAAAAACewAAAAAAeAAAAAABeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAACeAAAAAABeAAAAAABewAAAAAAHQAAAAADeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: ewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADeAAAAAACeAAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAAAewAAAAAAeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAAAeAAAAAADeAAAAAADewAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAeAAAAAADeAAAAAAAeAAAAAADewAAAAAAHQAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAACAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: HQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAADewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: ewAAAAAAeAAAAAADeAAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAawAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAACewAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABewAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAADHQAAAAACewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADewAAAAAAbgAAAAADagAAAAAAewAAAAAA + tiles: ewAAAAAAeAAAAAADeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAABeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAUAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAABewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAABHQAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADewAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAABewAAAAAAbgAAAAABagAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACewAAAAAAbgAAAAAAagAAAAAAewAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAACeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAA version: 6 3,0: ind: 3,0 - tiles: bgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABbgAAAAAAbgAAAAACewAAAAAAbgAAAAABbgAAAAABbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAACewAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAABbgAAAAABbgAAAAADbgAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAACewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAAAHQAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAADewAAAAAAbgAAAAADbgAAAAABewAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAbgAAAAABHQAAAAACHQAAAAACHQAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAABewAAAAAAbgAAAAABWwAAAAACewAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAACWwAAAAADewAAAAAAbgAAAAADWwAAAAABewAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAABWwAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAWwAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAADbgAAAAACbgAAAAABbgAAAAABWwAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAACewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAWwAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAD + tiles: bgAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABbgAAAAACbgAAAAADewAAAAAAbgAAAAABbgAAAAAAbgAAAAACewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAADewAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAABbgAAAAABbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAAAbgAAAAADewAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAawAAAAAAawAAAAAAHQAAAAACbgAAAAADbgAAAAACbgAAAAADewAAAAAAHQAAAAABHQAAAAAAewAAAAAAHQAAAAAAeAAAAAADeAAAAAAAeAAAAAACHQAAAAADawAAAAAAawAAAAAAawAAAAAAHQAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAHQAAAAAAawAAAAAAewAAAAAAHQAAAAAAeAAAAAAAeAAAAAACeAAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACewAAAAAAHQAAAAACawAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAHQAAAAABawAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAACHQAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAACbgAAAAABewAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAHQAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAAD version: 6 4,0: ind: 4,0 - tiles: bgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAABbgAAAAACewAAAAAAewAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAABewAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAABewAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAewAAAAAAHQAAAAABHQAAAAADHQAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAADewAAAAAAHQAAAAAAHQAAAAACHQAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAACbgAAAAABWwAAAAAAbgAAAAADbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAABewAAAAAAbgAAAAAAbgAAAAACWwAAAAABewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAACbgAAAAACWwAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAADWwAAAAADewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAADHQAAAAACHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAACbgAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA + tiles: bgAAAAADbgAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAACewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABbgAAAAABbgAAAAABbgAAAAADbgAAAAACbgAAAAACbgAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAABbgAAAAACbgAAAAADbgAAAAABbgAAAAACbgAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAbgAAAAABewAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAADewAAAAAAHQAAAAAAHQAAAAABHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABWwAAAAABbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAewAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADewAAAAAAWwAAAAACWwAAAAACWwAAAAADHQAAAAADHQAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAAAbgAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAA version: 6 5,0: ind: 5,0 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAABAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAACewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAACewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAADewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAAAewAAAAAAbgAAAAAAbgAAAAABewAAAAAAbgAAAAACbgAAAAACEQAAAAAAHQAAAAADEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAAAbgAAAAADewAAAAAAewAAAAAAewAAAAAAWwAAAAAAbgAAAAAAbgAAAAACEQAAAAAAHQAAAAACEQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAABbgAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAAAbgAAAAAAbgAAAAACEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABewAAAAAAbgAAAAADbgAAAAADewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACewAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAAAbgAAAAACewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAbgAAAAACbgAAAAACewAAAAAAbgAAAAADbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAWwAAAAAAbgAAAAACbgAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAAAewAAAAAAewAAAAAAewAAAAAAawAAAAAAbgAAAAACbgAAAAAAbgAAAAAAEQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAABewAAAAAAbgAAAAACbgAAAAAAewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAACbgAAAAACewAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABewAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAABAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAA version: 6 3,3: ind: 3,3 @@ -196,75 +198,75 @@ entities: version: 6 3,2: ind: 3,2 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADHQAAAAABHQAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAHQAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABWwAAAAAAWwAAAAACWwAAAAACAgAAAAACWwAAAAAAewAAAAAAHQAAAAACewAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAAAWwAAAAADWwAAAAAAHQAAAAAAHQAAAAACewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAWwAAAAABWwAAAAAAewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAABHQAAAAAAWwAAAAADWwAAAAADewAAAAAAHQAAAAACewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAABWwAAAAAAWwAAAAADHQAAAAAAHQAAAAADegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAADWwAAAAABHQAAAAACHQAAAAACewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADWwAAAAABWwAAAAABWwAAAAADWwAAAAAAWwAAAAADewAAAAAAHQAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAACWwAAAAABWwAAAAADWwAAAAABAgAAAAABWwAAAAABewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABWwAAAAABWwAAAAADHQAAAAACHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAWwAAAAADWwAAAAACewAAAAAAHQAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAABWwAAAAABWwAAAAAAewAAAAAAHQAAAAABewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAACWwAAAAAAWwAAAAABHQAAAAACHQAAAAACewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAABewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 4,1: ind: 4,1 - tiles: bgAAAAADewAAAAAAWwAAAAAAWwAAAAADWwAAAAAAHQAAAAABHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWwAAAAADWwAAAAADewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABagAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAHQAAAAAAewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAbgAAAAACewAAAAAAWwAAAAABWwAAAAABewAAAAAAHQAAAAACewAAAAAAHQAAAAACHQAAAAADAQAAAAABAQAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAADewAAAAAAewAAAAAAYgAAAAAAHQAAAAADHQAAAAAAewAAAAAAHQAAAAADHQAAAAADAQAAAAADAQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAbgAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAABegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADeAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAD + tiles: bgAAAAACewAAAAAAWwAAAAADWwAAAAADWwAAAAACHQAAAAAAHQAAAAABHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYgAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAWwAAAAACWwAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAagAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAHQAAAAADewAAAAAAHQAAAAACHQAAAAABewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAbgAAAAACewAAAAAAWwAAAAABWwAAAAAAewAAAAAAHQAAAAABewAAAAAAHQAAAAAAHQAAAAADAQAAAAABAQAAAAACewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAbgAAAAACewAAAAAAewAAAAAAYgAAAAAAHQAAAAACHQAAAAADewAAAAAAHQAAAAADHQAAAAAAAQAAAAABAQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAbgAAAAABewAAAAAAYgAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAATQAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAABAAAAAAAewAAAAAAYgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAABegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAACeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAHQAAAAAC version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAADeAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAeAAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAAAewAAAAAAeAAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAACeAAAAAADewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAAD + tiles: AAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAABeAAAAAABeAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADewAAAAAAeAAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAACewAAAAAAeAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAACewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAADeAAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAABewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAagAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAADegAAAAAATAAAAAAD version: 6 4,3: ind: 4,3 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAABewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-1: ind: 5,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAAAbgAAAAACewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAABewAAAAAAegAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAAAbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-2: ind: 5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATAAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATAAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,2: ind: 5,2 - tiles: ewAAAAAAHQAAAAAAewAAAAAAewAAAAAATQAAAAAANgAAAAAATQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAHQAAAAADHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAADHQAAAAACHQAAAAAAewAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAABAAAAAAAATAAAAAACegAAAAAATAAAAAABAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAACegAAAAAATAAAAAABegAAAAAATAAAAAADAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAACegAAAAAATAAAAAADegAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAADegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAHQAAAAACewAAAAAAewAAAAAATQAAAAAANgAAAAAATQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAewAAAAAAHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAAAHQAAAAACHQAAAAACewAAAAAAHQAAAAACHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAACegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAABAAAAAAAATAAAAAADegAAAAAATAAAAAACAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAABegAAAAAATAAAAAABegAAAAAATAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAegAAAAAATAAAAAADAAAAAAAATAAAAAADegAAAAAATAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 - tiles: egAAAAAATAAAAAADegAAAAAATAAAAAADegAAAAAATAAAAAAAegAAAAAATAAAAAACAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATAAAAAADegAAAAAATAAAAAABAAAAAAAATAAAAAACegAAAAAATAAAAAACAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATAAAAAABegAAAAAATAAAAAABegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: egAAAAAATAAAAAACegAAAAAATAAAAAAAegAAAAAATAAAAAAAegAAAAAATAAAAAABAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATAAAAAABegAAAAAATAAAAAADAAAAAAAATAAAAAACegAAAAAATAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAATAAAAAACegAAAAAATAAAAAACegAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: TQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: agAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAABgAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,-2: ind: 6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAATAAAAAABTAAAAAABTAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAABbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAATAAAAAADTAAAAAABTAAAAAADewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAABHQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAABbgAAAAAAbgAAAAABbgAAAAADewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAATAAAAAABTAAAAAABTAAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAADbgAAAAABewAAAAAAewAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAABewAAAAAAewAAAAAAewAAAAAATAAAAAABTAAAAAACTAAAAAACewAAAAAAewAAAAAAewAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACHQAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 6,-1: ind: 6,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAWwAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAACewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAUAAAAAAAUAAAAAAAWwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAewAAAAAAAAAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-2: ind: 7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAABewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAACHQAAAAABewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAACHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAABHQAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAACHQAAAAADHQAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAADHQAAAAABHQAAAAADewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 7,-1: ind: 7,-1 - tiles: ewAAAAAAHQAAAAABHQAAAAABHQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAHQAAAAAAHQAAAAAAHQAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,1: ind: 5,1 - tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAACHQAAAAAAHQAAAAABewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAANgAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADTQAAAAAAewAAAAAAHQAAAAABHQAAAAACHQAAAAACewAAAAAAEQAAAAAAHQAAAAADHQAAAAADHQAAAAABNgAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABNgAAAAAAHQAAAAABIgAAAAAAHQAAAAAAEQAAAAAAewAAAAAAewAAAAAANgAAAAAAHQAAAAABHQAAAAADTQAAAAAAewAAAAAAEQAAAAAAHQAAAAACEQAAAAAAewAAAAAAEQAAAAAAHQAAAAACHQAAAAACHQAAAAACNgAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: egAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAewAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATQAAAAAAHQAAAAADHQAAAAAAHQAAAAABewAAAAAAagAAAAAAewAAAAAAewAAAAAAEQAAAAAANgAAAAAAEQAAAAAAewAAAAAAewAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACTQAAAAAAewAAAAAAHQAAAAAAHQAAAAABHQAAAAACewAAAAAAEQAAAAAAHQAAAAABHQAAAAACHQAAAAAANgAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAADNgAAAAAAHQAAAAABIgAAAAABHQAAAAABEQAAAAAAewAAAAAAewAAAAAANgAAAAAAHQAAAAACHQAAAAABTQAAAAAAewAAAAAAEQAAAAAAHQAAAAADEQAAAAAAewAAAAAAEQAAAAAAHQAAAAAAHQAAAAADHQAAAAABNgAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAagAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAADWwAAAAACWwAAAAADWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACIgAAAAACewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAACWwAAAAADWwAAAAAAWwAAAAAAawAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAAAWwAAAAACewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAACWwAAAAABWwAAAAACWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAACWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAABWwAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAAAWwAAAAADIgAAAAAAewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAADWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAABIgAAAAABewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAACWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAADWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAADWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAABQAAAAADWwAAAAABWwAAAAAAWwAAAAAAWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAABQAAAAACWwAAAAABWwAAAAAAWwAAAAADWwAAAAABewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAABQAAAAAAWwAAAAABWwAAAAAAWwAAAAADWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAABQAAAAAAWwAAAAACWwAAAAADWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAACWwAAAAAAIgAAAAADewAAAAAAagAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAABWwAAAAADWwAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAABWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAACewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAACWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAADWwAAAAABWwAAAAADewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAACWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAACWwAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAAD version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAABWwAAAAABWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAagAAAAAAewAAAAAAIgAAAAACWwAAAAABWwAAAAAAWwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAABWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAA version: 6 -2,1: ind: -2,1 @@ -276,7 +278,7 @@ entities: version: 6 6,1: ind: 6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAewAAAAAAewAAAAAAegAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAABewAAAAAAewAAAAAAewAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 @@ -376,7 +378,7 @@ entities: -2,4: 1: 15 -1,3: - 1: 36352 + 1: 34304 0,0: 0: 34959 1: 768 @@ -435,7 +437,7 @@ entities: 0: 65021 0,-5: 0: 45859 - 1: 200 + 1: 136 1,-4: 0: 65295 1,-3: @@ -453,7 +455,7 @@ entities: 2,-5: 0: 30310 3,-4: - 0: 11008 + 0: 11136 3,-3: 0: 40174 3,-2: @@ -544,10 +546,10 @@ entities: 0: 61166 3,-8: 0: 57599 - 3,-7: - 0: 61183 3,-6: 0: 3886 + 3,-7: + 0: 61166 4,-8: 0: 63078 4,-7: @@ -627,7 +629,7 @@ entities: 7,1: 0: 61166 8,0: - 0: 49663 + 0: 16895 8,1: 0: 57297 8,2: @@ -685,18 +687,18 @@ entities: 6,-6: 0: 61423 6,-9: - 0: 65359 + 0: 65535 7,-8: - 3: 1 - 0: 63726 + 0: 63727 7,-7: 0: 64750 7,-6: 0: 59151 7,-9: - 0: 63951 + 0: 63967 8,-8: - 0: 4317 + 0: 4113 + 3: 204 1: 49152 8,-7: 0: 65521 @@ -712,27 +714,29 @@ entities: 1: 243 0: 49152 1,-10: - 1: 3312 + 1: 3316 0: 4096 1,-12: - 1: 68 + 1: 19524 1,-13: 1: 17604 + 1,-11: + 1: 17476 + 2,-12: + 1: 8021 2,-10: - 1: 4464 + 1: 4400 0: 51336 2,-9: 1: 273 0: 3276 - 2,-12: - 1: 8021 2,-13: 1: 21877 2,-11: 0: 61152 3,-10: - 1: 50 0: 45192 + 1: 34 3,-9: 0: 3067 3,-12: @@ -742,7 +746,7 @@ entities: 0: 3682 3,-13: 0: 9830 - 1: 51200 + 1: 51208 4,-12: 1: 252 0: 16130 @@ -771,7 +775,7 @@ entities: 6,-11: 0: 26208 6,-13: - 1: 61029 + 1: 61037 0: 2 7,-12: 1: 16 @@ -791,11 +795,13 @@ entities: 0: 6623 1: 49152 8,-9: - 0: 53265 + 0: 4113 + 3: 49152 1: 204 9,-8: - 0: 52445 + 3: 17 1: 4096 + 0: 52428 9,-7: 0: 65532 9,-6: @@ -803,7 +809,8 @@ entities: 9,-5: 0: 30479 9,-9: - 0: 56524 + 3: 4096 + 0: 52428 1: 17 9,-4: 0: 61559 @@ -839,12 +846,12 @@ entities: 0: 63692 12,-8: 4: 7 - 5: 1792 + 3: 1792 12,-7: - 5: 7 - 6: 1792 + 3: 7 + 5: 1792 12,-6: - 7: 7 + 6: 7 1: 256 0: 49152 12,-5: @@ -872,17 +879,19 @@ entities: 0: 61440 1: 255 11,-12: - 0: 56797 + 0: 4369 + 3: 52428 11,-11: 0: 28689 1: 192 11,-10: 0: 1911 11,-13: - 0: 53248 + 0: 4096 + 3: 49152 1: 249 12,-12: - 0: 13107 + 3: 13107 1: 34952 12,-11: 1: 62968 @@ -890,7 +899,7 @@ entities: 1: 4369 12,-9: 1: 15 - 5: 1792 + 3: 1792 4,7: 0: 61152 4,8: @@ -900,9 +909,9 @@ entities: 5,6: 0: 61901 5,7: - 0: 64432 + 0: 65520 5,8: - 0: 61627 + 0: 61695 6,5: 0: 65535 6,6: @@ -944,7 +953,7 @@ entities: 10,1: 0: 63351 10,2: - 0: 30583 + 0: 32631 10,3: 0: 65527 10,-1: @@ -958,7 +967,7 @@ entities: 11,2: 0: 65520 11,3: - 0: 65522 + 0: 65528 11,-1: 0: 65375 11,4: @@ -1006,7 +1015,7 @@ entities: 1: 2240 0: 26150 5,-16: - 1: 63472 + 1: 34800 5,-15: 0: 4088 1: 61440 @@ -1047,21 +1056,20 @@ entities: 10,-16: 1: 61696 10,-15: - 1: 13105 + 1: 8753 10,-14: - 1: 65309 - 0: 34 + 1: 65071 11,-16: 1: 61440 11,-14: - 1: 39311 + 1: 63887 11,-15: - 1: 34952 + 1: 39321 12,-14: - 1: 1 + 1: 61441 12,-13: - 1: 35056 - 0: 12288 + 1: 35060 + 3: 12288 1,-16: 1: 50368 1,-15: @@ -1071,9 +1079,9 @@ entities: 2,-16: 1: 57328 2,-15: - 1: 56797 + 1: 24029 2,-14: - 1: 24023 + 1: 21847 -4,-11: 1: 62448 -5,-11: @@ -1177,11 +1185,11 @@ entities: 1,10: 0: 7 1: 63488 - 2,9: - 1: 13298 - 0: 8 2,10: 1: 15906 + 2,9: + 1: 8930 + 0: 8 2,11: 1: 58082 3,11: @@ -1198,7 +1206,7 @@ entities: 3,12: 1: 34952 4,10: - 0: 1262 + 0: 3822 4,12: 1: 61986 5,9: @@ -1300,29 +1308,30 @@ entities: 11,9: 0: 26214 12,8: - 1: 15 0: 65392 12,9: - 1: 17648 + 1: 16624 12,10: - 1: 53188 + 1: 36804 12,11: 0: 13056 1: 2052 5,13: - 1: 3298 + 1: 36066 + 5,14: + 1: 236 6,13: - 1: 65520 + 1: 63728 6,14: - 1: 35022 + 1: 241 7,13: - 1: 32752 + 1: 63728 7,14: - 1: 19 - 6,15: - 1: 8 + 1: 252 8,13: 1: 318 + 8,14: + 1: 49 9,13: 1: 15 10,13: @@ -1516,7 +1525,7 @@ entities: 0: 50431 1: 4096 15,7: - 1: 61201 + 1: 44817 0: 12 15,8: 1: 25668 @@ -1532,7 +1541,7 @@ entities: 1: 768 13,11: 0: 49152 - 1: 303 + 1: 302 14,12: 0: 8751 1: 2048 @@ -1544,7 +1553,7 @@ entities: 1: 256 15,11: 0: 34816 - 1: 769 + 1: 768 13,10: 1: 12544 0: 206 @@ -1556,7 +1565,7 @@ entities: 0: 127 1: 32768 15,10: - 1: 8165 + 1: 8100 15,9: 1: 17510 16,10: @@ -1715,9 +1724,13 @@ entities: 0: 17 1: 18440 13,-11: - 1: 4096 + 1: 12835 13,-10: 1: 4369 + 13,-12: + 1: 8738 + 13,-13: + 1: 8994 25,-6: 0: 61440 25,-5: @@ -1797,15 +1810,17 @@ entities: 24,7: 0: 4369 1: 8 + 13,-14: + 1: 12288 -7,-6: 0: 63728 -7,-5: 1: 8736 0: 34952 -7,-7: - 1: 32768 + 1: 32896 -6,-7: - 1: 45056 + 1: 45552 -6,-6: 0: 13296 1: 32768 @@ -1817,7 +1832,7 @@ entities: -6,-4: 0: 30579 -5,-7: - 1: 28672 + 1: 28976 -5,-5: 0: 4096 -7,-1: @@ -1855,9 +1870,9 @@ entities: -7,3: 1: 3140 -6,1: - 1: 21877 + 1: 4405 -6,2: - 1: 22357 + 1: 21265 -6,3: 1: 17173 -6,4: @@ -1922,28 +1937,13 @@ 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: - 0 - 0 - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -1958,7 +1958,7 @@ entities: - 0 - 0 - 0 - - 0 + - 6666.982 - 0 - 0 - 0 @@ -2038,6 +2038,10 @@ entities: decals: 2645: -13,0 2646: -11,0 + 4810: 24.969461,-36.186703 + 4811: 26.969461,-36.186703 + 4812: 24.969461,-32.249786 + 4813: 26.969461,-32.249786 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -2049,12 +2053,6 @@ entities: 3125: -7.0305576,-10.187422 3854: 57.969326,-2.0004528 3855: 59.969025,-2.0004528 - - node: - color: '#FED83DFF' - id: Bot - decals: - 7: 12,-28 - 8: 12,-27 - node: color: '#FFFFFFFF' id: Bot @@ -2062,8 +2060,6 @@ entities: 198: 3,-4 199: 3,-5 200: 3,-7 - 243: 51,9 - 244: 49,9 405: 42,-39 406: 42,-38 407: 43,-38 @@ -2072,9 +2068,6 @@ entities: 410: 44,-38 411: 45,-39 412: 45,-38 - 453: 22,-35 - 454: 20,-35 - 455: 19,-35 1173: 15,-2 1174: 14,-2 1175: 13,-2 @@ -2093,14 +2086,10 @@ entities: 2575: 43,-43 2576: 42,-43 2577: 41,-43 - 2578: 38,-43 - 2579: 37,-43 2835: 38,24 2836: 41,24 2845: 38,21 3094: 96,30 - 3148: 26,-39 - 3167: 15,-39 3179: 11,31 3180: 12,31 3181: 13,31 @@ -2120,13 +2109,50 @@ entities: 4041: 31,-41 4042: 31,-44 4043: 29,-44 - 4053: 34,-46 - 4054: 34,-45 - 4055: 34,-44 4060: 38,-29 4061: 31,-28 4062: 21,-26 - 4063: 35,-48 + 4347: 35,-47 + 4350: 34,-46 + 4352: 38,-43 + 4356: 34,-45 + 4357: 40,-41 + 4358: 41,-41 + 4506: 35,-31 + 4569: 58,9 + 4570: 58,10 + 4582: 31,26 + 4583: 38,26 + 4584: 38,27 + 4585: 41,27 + 4586: 41,26 + 4600: 17,39 + 4601: 19,39 + 4727: 20,-32 + 4728: 20,-31 + 4729: 32,-32 + 4730: 32,-33 + 4816: 20,-33 + 4836: 15,-31 + 4839: 9,-29 + 4840: 9,-28 + 4841: 9,-27 + 4845: 12,-32 + 4846: 13,-32 + 4847: 11,-26 + 4992: 19,-35 + 4993: 20,-35 + 4994: 20,-24 + 4995: 23,-27 + 4996: 23,-28 + 4997: 13,-29 + 5060: 26,-39 + 5172: 5,-20 + 5173: 6,-21 + 5174: 7,-20 + 5175: 6,-19 + 5192: 30,-35 + 5193: 32,-35 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -2156,28 +2182,29 @@ entities: color: '#FFFFFFFF' id: BotLeft decals: - 399: 10,-36 - 400: 10,-37 - 450: 22,-43 1873: 10,-6 1874: 11,-6 1875: 12,-6 2196: 68,16 2197: 67,16 2198: 66,16 - 3143: 25,-42 - 3144: 26,-42 - 3145: 26,-43 - 3146: 25,-43 3151: 14,-51 3152: 14,-52 3153: 14,-53 3154: 28,-51 3155: 28,-52 3156: 28,-53 - 3168: 16,-39 - 4045: 25,-41 - 4046: 26,-41 + 4588: 41,28 + 4589: 38,28 + 4842: 9,-30 + 4843: 9,-31 + 4844: 9,-32 + 4998: 14,-29 + 5061: 25,-41 + 5062: 26,-42 + 5063: 25,-43 + 5180: 5,-21 + 5181: 7,-19 - node: color: '#FFFFFFFF' id: BotLeftGreyscale @@ -2190,10 +2217,14 @@ entities: color: '#FFFFFFFF' id: BotRight decals: - 449: 20,-43 1876: 10,-9 1877: 11,-9 1878: 12,-9 + 5064: 26,-41 + 5065: 25,-42 + 5066: 26,-43 + 5178: 7,-21 + 5179: 5,-19 - node: color: '#FFFFFFFF' id: BotRightGreyscale @@ -2206,10 +2237,7 @@ entities: color: '#FFFFFFFF' id: Box decals: - 448: 21,-43 4097: 27,-35 - 4098: 27,-33 - 4099: 25,-33 4100: 25,-35 4101: 25,-34 4102: 27,-34 @@ -2251,6 +2279,11 @@ entities: 2969: 56,36 2970: 56,37 2971: 56,38 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 4345: 30,-7 - node: color: '#D381C996' id: BrickTileSteelLineE @@ -2259,6 +2292,13 @@ entities: 2193: 71,14 2194: 71,15 2195: 71,16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 4346: 30,-8 + 5250: 31,-26 + 5251: 30,-26 - node: color: '#FFFFFFFF' id: BrickTileSteelLineN @@ -2268,6 +2308,7 @@ entities: 835: 46,-9 836: 47,-9 4044: 29,-39 + 4344: 29,-7 - node: color: '#D381C996' id: BrickTileSteelLineW @@ -2276,6 +2317,12 @@ entities: 2189: 69,14 2190: 69,15 2191: 69,16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 5249: 30,-26 + 5252: 31,-26 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe @@ -2286,12 +2333,6 @@ entities: id: BrickTileWhiteCornerNe decals: 1447: 20,24 - - node: - color: '#EFCC4193' - id: BrickTileWhiteCornerNe - decals: - 371: 27,-28 - 389: 13,-34 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw @@ -2302,12 +2343,6 @@ entities: id: BrickTileWhiteCornerNw decals: 1446: 17,24 - - node: - color: '#EFCC4193' - id: BrickTileWhiteCornerNw - decals: - 370: 25,-28 - 390: 10,-34 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe @@ -2323,17 +2358,6 @@ entities: id: BrickTileWhiteCornerSe decals: 1451: 20,20 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 3175: 17,-43 - - node: - color: '#EFCC4193' - id: BrickTileWhiteCornerSe - decals: - 372: 27,-30 - 392: 13,-37 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -2349,17 +2373,6 @@ entities: id: BrickTileWhiteCornerSw decals: 1452: 17,20 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw - decals: - 3165: 16,-43 - - node: - color: '#EFCC4193' - id: BrickTileWhiteCornerSw - decals: - 374: 25,-30 - 391: 10,-37 - node: color: '#9FED5847' id: BrickTileWhiteEndE @@ -2385,11 +2398,6 @@ entities: id: BrickTileWhiteInnerNe decals: 2089: 51,20 - - node: - color: '#EFCC4582' - id: BrickTileWhiteInnerNe - decals: - 404: 41,-40 - node: color: '#9FED5847' id: BrickTileWhiteInnerNw @@ -2410,11 +2418,6 @@ entities: id: BrickTileWhiteInnerSw decals: 2083: 54,19 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerSw - decals: - 3163: 16,-40 - node: color: '#334E6DC8' id: BrickTileWhiteLineE @@ -2455,19 +2458,6 @@ entities: 2076: 50,17 2077: 50,18 2090: 51,21 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 3172: 17,-39 - 3173: 17,-41 - 3174: 17,-42 - 3176: 26,-40 - - node: - color: '#EFCC4193' - id: BrickTileWhiteLineE - decals: - 388: 13,-36 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -2526,12 +2516,6 @@ entities: id: BrickTileWhiteLineN decals: 3118: -5,1 - - node: - color: '#EFCC4193' - id: BrickTileWhiteLineN - decals: - 397: 12,-34 - 398: 11,-34 - node: color: '#EFCC4582' id: BrickTileWhiteLineN @@ -2608,14 +2592,6 @@ entities: id: BrickTileWhiteLineS decals: 2738: 30,36 - 3162: 15,-40 - - node: - color: '#EFCC4193' - id: BrickTileWhiteLineS - decals: - 373: 26,-30 - 393: 12,-37 - 394: 11,-37 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineS @@ -2673,17 +2649,6 @@ entities: decals: 2081: 54,17 2082: 54,18 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 3161: 16,-41 - - node: - color: '#EFCC4193' - id: BrickTileWhiteLineW - decals: - 395: 10,-36 - 396: 10,-35 - node: color: '#FFFFFFFF' id: BrickTileWhiteLineW @@ -2694,73 +2659,8 @@ entities: color: '#FFFFFFFF' id: Caution decals: - 4173: 26,-36 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Caution - decals: - 4176: 28,-34 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: Caution - decals: - 4174: 26,-32 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: Caution - decals: - 4175: 24,-34 - - node: - color: '#1F820993' - id: CheckerNESW - decals: - 3958: 29,-3 - 3959: 30,-3 - 3960: 31,-3 - 3961: 32,-3 - 3962: 33,-3 - 3963: 34,-3 - 3964: 35,-3 - 3965: 36,-3 - 3966: 36,-4 - 3967: 36,-5 - 3968: 36,-6 - 3969: 36,-7 - 3970: 36,-8 - 3971: 35,-8 - 3972: 34,-8 - 3973: 33,-8 - 3974: 32,-8 - 3975: 31,-8 - 3976: 31,-7 - 3977: 31,-6 - 3978: 29,-6 - 3979: 30,-6 - 3980: 29,-5 - 3981: 30,-5 - 3982: 31,-5 - 3984: 29,-4 - 3985: 30,-4 - 3986: 31,-4 - 3987: 32,-4 - 3988: 33,-4 - 3989: 34,-4 - 3990: 35,-4 - 3991: 35,-5 - 3992: 34,-5 - 3993: 33,-5 - 3994: 32,-5 - 3995: 32,-6 - 3996: 33,-6 - 3997: 34,-6 - 3998: 35,-6 - 3999: 35,-7 - 4000: 34,-7 - 4001: 33,-7 - 4002: 32,-7 + 4814: 26.000326,-32.342445 + 4815: 26.000326,-36.049404 - node: color: '#52B4E996' id: CheckerNESW @@ -2804,26 +2704,6 @@ entities: 156: 61,-12 157: 62,-12 158: 63,-12 - - node: - color: '#8A8A8A96' - id: CheckerNESW - decals: - 159: 60,11 - 160: 61,11 - 161: 62,11 - 162: 63,11 - 163: 62,10 - 164: 63,10 - 165: 63,9 - 166: 62,9 - 167: 61,9 - 168: 60,9 - 169: 61,10 - 170: 60,10 - 171: 60,8 - 172: 62,8 - 173: 61,8 - 174: 63,8 - node: color: '#9FED5896' id: CheckerNESW @@ -2852,12 +2732,33 @@ entities: 922: 21,14 923: 22,14 924: 22,13 + - node: + color: '#EFB34166' + id: CheckerNESW + decals: + 5157: 11,-38 + 5158: 11,-39 + 5159: 11,-40 + - node: + color: '#EFB34196' + id: CheckerNESW + decals: + 4689: 26,-37 + 4774: 26,-36 + 4775: 26,-32 - node: color: '#F9801D73' id: CheckerNESW decals: 883: 20,9 884: 20,10 + - node: + color: '#3EB38896' + id: CheckerNWSE + decals: + 4686: 26,-37 + 4772: 26,-36 + 4773: 26,-32 - node: color: '#9FED5822' id: CheckerNWSE @@ -2874,13 +2775,6 @@ entities: decals: 2222: 77,-2 2223: 77,-1 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 2036: 58,9 - 2037: 58,10 - 2038: 58,11 - node: color: '#EFB34196' id: CheckerNWSE @@ -2921,17 +2815,13 @@ entities: 203: 5,-4 204: 6,-4 205: 6,-5 - 235: 19,39 241: 51,8 242: 49,8 385: 5,-7 413: 46,-39 414: 46,-38 - 415: 39,-41 - 416: 41,-41 1004: 25,-3 1005: 26,-3 - 1006: 27,-3 1017: 24,13 1018: 24,14 1019: 19,11 @@ -2939,8 +2829,6 @@ entities: 1021: 25,16 1022: 26,16 1023: 27,16 - 1024: 33,-2 - 1025: 35,-2 1120: 2,-2 1121: 2,-1 1122: 2,0 @@ -2971,7 +2859,6 @@ entities: 2099: 58,21 2100: 59,21 2101: 60,21 - 2614: 28,-6 3182: 11,30 3183: 12,30 3184: 13,30 @@ -2985,22 +2872,23 @@ entities: 4057: 48,-50 4058: 35,-34 4059: 35,-30 - - node: - cleanable: True - color: '#FFFFFFFF' - id: Delivery - decals: - 298: 32,-33 - 299: 32,-32 - 300: 20,-33 - 301: 20,-32 - 302: 20,-31 + 4289: 27,-3 + 4290: 28,-6 + 4291: 33,-2 + 4292: 35,-2 + 4353: 34,-44 + 4354: 37,-43 + 4359: 38,-41 + 4360: 39,-41 + 4432: 21,16 + 4505: 35,-33 + 4571: 58,11 + 5176: 6,-20 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 214: 2,-33 215: 3,-29 - node: color: '#FFFFFFFF' @@ -3028,23 +2916,10 @@ entities: 438: 43,-41 439: 42,-38 440: 43,-39 - 691: 30,-31 - 692: 29,-31 - 693: 30,-32 - 694: 30,-33 - 695: 29,-33 - 696: 29,-32 - 698: 31,-32 - 699: 32,-31 - 705: 23,-32 - 706: 22,-31 - 707: 22,-33 851: 43,-11 852: 42,-10 853: 30,-13 854: 29,-11 - 1015: 21,-31 - 1016: 21,-31 1151: -4,-6 1152: -4,-5 1153: -4,-4 @@ -3069,7 +2944,6 @@ entities: 1627: 35,21 1628: 33,23 1629: 34,24 - 1630: 33,27 1633: 30,23 1634: 30,18 1635: 29,17 @@ -3148,12 +3022,42 @@ entities: 3603: 4,39 3604: 5,40 3907: 29,-27 - 4082: 26,-26 4083: 25,-26 4084: 24,-24 4085: 27,-25 - 4091: 25,-28 - 4206: 28,-34 + 4617: 32,25 + 4780: 24,-32 + 4784: 29,-33 + 4790: 22,-31 + 4791: 32,-31 + 5091: 20,-28 + 5092: 15,-25 + 5093: 17,-37 + 5094: 16,-34 + 5096: 23,-33 + 5097: 26,-37 + 5098: 23,-39 + 5099: 17,-39 + 5100: 16,-42 + 5101: 19,-44 + 5102: 23,-42 + 5103: 25,-42 + 5104: 25,-41 + 5105: 32,-37 + 5106: 27,-29 + 5107: 25,-30 + 5108: 21,-26 + 5109: 17,-25 + 5110: 13,-27 + 5114: 17,-28 + 5115: 18,-29 + 5116: 21,-33 + 5117: 31,-33 + 5118: 31,-29 + 5119: 21,-39 + 5160: 22,-28 + 5207: 22,-37 + 5208: 20,-37 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -3167,15 +3071,9 @@ entities: color: '#FFFFFFFF' id: DirtHeavy decals: - 286: 21,-33 - 287: 20,-33 - 290: 31,-33 426: 40,-41 427: 40,-40 - 428: 41,-40 484: 31,-36 - 618: 18,-31 - 619: 19,-29 1485: 18,21 1507: 23,23 2260: 55,-15 @@ -3232,10 +3130,40 @@ entities: 3952: 46,35 4076: 29,-27 4086: 24,-25 - 4184: 28,-32 - 4272: 24,-36 - 4273: 25,-37 4274: 30,-37 + 4364: 34,-49 + 4461: 38,-37 + 4776: 28,-35 + 4989: 15,-37 + 4990: 18,-31 + 4991: 22,-35 + 4999: 25,-28 + 5008: 13,-29 + 5009: 13,-25 + 5014: 15,-24 + 5035: 19,-35 + 5046: 19,-44 + 5047: 20,-40 + 5048: 22,-44 + 5049: 22,-39 + 5050: 22,-41 + 5055: 22,-43 + 5067: 16,-43 + 5068: 15,-40 + 5074: 14,-43 + 5089: 20,-33 + 5111: 11,-30 + 5120: 28,-45 + 5121: 32,-44 + 5122: 29,-42 + 5123: 32,-39 + 5124: 29,-40 + 5125: 31,-42 + 5166: 11,-39 + 5167: 12,-37 + 5182: 5,-21 + 5253: 30,-26 + 5256: 30,-25 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3321,20 +3249,61 @@ entities: 4075: 29,-29 4080: 31,-27 4089: 25,-24 - 4092: 27,-28 - 4093: 26,-30 - 4189: 24,-34 - 4190: 24,-32 - 4191: 25,-32 - 4192: 28,-34 - 4193: 28,-33 - 4198: 27,-37 - 4199: 26,-37 - 4284: 22,-36 - 4285: 26,-37 - 4286: 24,-37 - 4287: 28,-36 4288: 32,-37 + 4361: 41,-40 + 4365: 35,-48 + 4366: 34,-45 + 4777: 25,-32 + 4781: 28,-33 + 4785: 26,-36 + 4786: 24,-35 + 4789: 22,-33 + 4796: 25,-36 + 4828: 24,-37 + 4832: 23,-32 + 4833: 30,-32 + 5002: 27,-28 + 5006: 20,-29 + 5007: 15,-28 + 5010: 13,-24 + 5011: 13,-28 + 5012: 13,-26 + 5018: 22,-25 + 5020: 18,-26 + 5023: 15,-29 + 5028: 18,-32 + 5029: 15,-34 + 5032: 17,-36 + 5034: 16,-37 + 5036: 21,-35 + 5044: 21,-36 + 5051: 20,-44 + 5052: 23,-41 + 5053: 22,-40 + 5054: 20,-43 + 5059: 20,-39 + 5072: 17,-42 + 5073: 16,-39 + 5075: 26,-39 + 5080: 19,-41 + 5081: 20,-41 + 5082: 21,-39 + 5087: 16,-26 + 5088: 14,-25 + 5090: 20,-31 + 5135: 31,-43 + 5136: 29,-44 + 5137: 31,-41 + 5138: 29,-39 + 5139: 31,-39 + 5140: 31,-45 + 5162: 11,-37 + 5163: 13,-37 + 5168: 13,-35 + 5183: 5,-20 + 5184: 7,-19 + 5238: 31,-24 + 5254: 31,-26 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3360,49 +3329,23 @@ entities: color: '#FFFFFFFF' id: DirtLight decals: - 291: 31,-32 - 292: 30,-33 - 295: 23,-31 - 296: 23,-33 - 297: 31,-31 429: 42,-41 430: 42,-40 431: 46,-41 432: 44,-39 433: 43,-40 - 477: 21,-39 485: 31,-37 489: 32,-36 490: 32,-35 - 500: 20,-37 - 501: 17,-36 - 502: 18,-35 - 503: 18,-34 - 504: 16,-42 - 620: 18,-29 621: 19,-28 - 622: 20,-29 - 623: 22,-29 - 624: 21,-29 - 625: 22,-28 626: 20,-27 627: 21,-26 628: 21,-27 629: 20,-26 630: 14,-27 631: 15,-26 - 632: 13,-25 - 633: 15,-27 - 634: 15,-28 - 635: 15,-28 - 636: 16,-29 637: 16,-25 638: 26,-29 - 639: 26,-28 - 640: 27,-29 - 641: 15,-37 - 642: 16,-37 - 643: 15,-34 1492: 18,24 1493: 17,23 1494: 19,23 @@ -3431,7 +3374,6 @@ entities: 1640: 33,18 1641: 35,19 1642: 34,23 - 1643: 33,25 1644: 35,23 1645: 30,24 1646: 29,23 @@ -3448,8 +3390,6 @@ entities: 1788: 25,27 1789: 26,28 1790: 27,30 - 1791: 25,32 - 1792: 25,33 1793: 26,34 1794: 27,34 2263: 55,-15 @@ -3508,7 +3448,6 @@ entities: 3885: 71,-1 3886: 74,-1 3887: 74,-3 - 3896: 30,-25 3901: 4,37 3902: 4,37 3903: 5,33 @@ -3519,25 +3458,69 @@ entities: 3941: 30,29 3943: 29,29 4078: 30,-29 - 4079: 31,-29 4081: 31,-28 4087: 26,-25 4090: 27,-24 - 4094: 24,-29 - 4095: 28,-29 - 4096: 26,-27 - 4185: 27,-32 - 4186: 24,-33 - 4187: 24,-35 - 4188: 28,-35 - 4203: 26,-36 - 4204: 25,-32 4275: 30,-36 - 4276: 28,-37 - 4277: 28,-36 - 4278: 27,-37 - 4279: 27,-36 - 4280: 25,-36 + 4462: 39,-37 + 4613: 33,25 + 4614: 34,27 + 4745: 26,-37 + 4779: 24,-33 + 4782: 28,-32 + 4830: 24,-36 + 5001: 25,-29 + 5003: 26,-29 + 5013: 14,-24 + 5015: 18,-24 + 5017: 22,-27 + 5019: 21,-24 + 5022: 20,-25 + 5024: 16,-29 + 5025: 17,-28 + 5026: 18,-29 + 5027: 17,-31 + 5030: 15,-36 + 5031: 18,-37 + 5037: 20,-36 + 5041: 18,-34 + 5042: 18,-36 + 5043: 17,-33 + 5045: 21,-36 + 5056: 21,-43 + 5057: 19,-40 + 5058: 23,-40 + 5069: 17,-39 + 5070: 17,-41 + 5076: 26,-41 + 5077: 25,-43 + 5078: 22,-42 + 5079: 19,-42 + 5083: 22,-40 + 5084: 28,-37 + 5085: 16,-36 + 5086: 10,-31 + 5112: 11,-29 + 5126: 29,-43 + 5127: 31,-43 + 5128: 32,-45 + 5129: 29,-45 + 5130: 28,-41 + 5131: 29,-40 + 5141: 29,-41 + 5142: 31,-44 + 5161: 22,-29 + 5164: 13,-36 + 5170: 17,-35 + 5171: 17,-32 + 5185: 6,-19 + 5186: 7,-21 + 5190: 26,-26 + 5191: 15,-35 + 5209: 21,-37 + 5210: 19,-37 + 5212: 19,-29 + 5236: 31,-25 - node: cleanable: True angle: 3.141592653589793 rad @@ -3564,14 +3547,9 @@ entities: 423: 45,-41 424: 45,-39 425: 43,-38 - 478: 23,-39 - 479: 21,-37 - 480: 18,-36 486: 31,-35 614: 21,-28 615: 14,-26 - 616: 13,-25 - 617: 25,-29 1486: 18,20 1487: 19,21 1488: 19,22 @@ -3590,7 +3568,6 @@ entities: 2981: 55,31 3019: 37,30 3023: 42,31 - 3026: 39,26 3043: 56,47 3291: 8,25 3292: 8,22 @@ -3618,15 +3595,41 @@ entities: 3879: 73,-4 3880: 71,-6 3882: 74,-4 - 3894: 30,-24 3895: 30,-29 3939: 30,28 3954: 46,34 4077: 29,-28 4088: 25,-25 - 4281: 25,-36 - 4282: 24,-37 - 4283: 22,-37 + 4362: 41,-39 + 4363: 35,-44 + 4463: 40,-37 + 4615: 33,27 + 4616: 32,26 + 4746: 25,-37 + 4778: 24,-34 + 4783: 26,-32 + 4787: 27,-37 + 4788: 21,-32 + 4834: 30,-33 + 4835: 31,-31 + 5000: 25,-30 + 5004: 26,-30 + 5005: 23,-29 + 5021: 19,-25 + 5033: 16,-35 + 5040: 18,-35 + 5071: 16,-41 + 5113: 11,-27 + 5132: 28,-39 + 5133: 30,-39 + 5134: 31,-42 + 5165: 13,-34 + 5187: 6,-21 + 5188: 5,-19 + 5189: 7,-20 + 5211: 22,-36 + 5237: 31,-25 + 5257: 30,-24 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3669,21 +3672,26 @@ entities: decals: 797: 45.934917,-10.937953 - node: - color: '#00000026' - id: FullTileOverlayGreyscale - decals: - 949: 24,-6 - 950: 24,-6 - 951: 24,-5 - 952: 24,-5 - - node: - color: '#0000004D' + color: '#3EB38896' id: FullTileOverlayGreyscale decals: - 1530: 24,17 - 1531: 24,17 - 1532: 24,18 - 1533: 24,18 + 4665: 32,-31 + 4667: 30,-31 + 4669: 29,-32 + 4670: 30,-32 + 4672: 32,-32 + 4673: 32,-33 + 4675: 30,-33 + 4747: 27,-36 + 4749: 28,-35 + 4750: 28,-34 + 4751: 28,-33 + 4752: 28,-32 + 4753: 27,-32 + 4765: 29,-31 + 4766: 29,-33 + 4767: 27,-37 + 4771: 31,-32 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -3739,11 +3747,6 @@ entities: color: '#DE3A3A96' id: FullTileOverlayGreyscale decals: - 46: 36,28 - 47: 36,27 - 48: 36,26 - 49: 36,25 - 64: 32,27 92: 31,18 93: 31,20 1613: 27,23 @@ -3753,43 +3756,28 @@ entities: 3946: 52,35 3947: 52,34 - node: - color: '#EFCC4125' - id: FullTileOverlayGreyscale - decals: - 1014: 21,-31 - - node: - color: '#EFCC4193' - id: FullTileOverlayGreyscale - decals: - 368: 24,-29 - 369: 28,-29 - - node: - color: '#F5E8281F' + color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 248: 20,-33 - 249: 20,-32 - 250: 20,-31 - 251: 21,-32 - 252: 21,-33 - 253: 22,-33 - 254: 22,-32 - 255: 22,-31 - 256: 23,-31 - 257: 23,-32 - 258: 23,-33 - 259: 32,-31 - 260: 31,-31 - 261: 30,-31 - 262: 29,-31 - 263: 29,-32 - 264: 30,-32 - 265: 31,-32 - 266: 32,-32 - 267: 32,-33 - 268: 31,-33 - 269: 30,-33 - 270: 29,-33 + 4618: 20,-31 + 4620: 22,-31 + 4621: 23,-31 + 4622: 23,-32 + 4624: 21,-32 + 4625: 20,-32 + 4643: 25,-37 + 4754: 25,-32 + 4755: 24,-32 + 4756: 24,-33 + 4757: 24,-34 + 4758: 24,-35 + 4760: 25,-36 + 4761: 23,-33 + 4762: 22,-32 + 4763: 20,-33 + 4768: 22,-33 + 4877: 18,-40 + 4878: 24,-40 - node: color: '#FFFFFFFF' id: Grassd1 @@ -3827,6 +3815,13 @@ entities: 1863: 10,-6 1864: 11,-6 1865: 12,-6 + - node: + color: '#3EB38896' + id: HalfTileOverlayGreyscale + decals: + 4724: 31,-33 + 5231: 31,-24 + 5255: 30,-24 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale @@ -3884,6 +3879,14 @@ entities: 2617: 55,20 2618: 56,20 2619: 57,20 + 4530: 60,11 + 4531: 61,11 + 4532: 62,11 + 4533: 63,11 + 4543: 47,11 + 4544: 46,11 + 4545: 45,11 + 4561: 44,11 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale @@ -3899,7 +3902,6 @@ entities: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 73: 32,24 74: 31,24 75: 30,24 76: 29,24 @@ -3922,27 +3924,28 @@ entities: 1721: 20,46 1722: 21,46 - node: - color: '#EFCC4193' + color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 313: 32,-35 - 316: 20,-35 - 317: 19,-35 - 329: 16,-34 - 350: 14,-24 - 351: 15,-24 - 352: 16,-24 - 353: 17,-24 - 354: 18,-24 - 355: 19,-24 - 356: 20,-24 - 357: 21,-24 + 4723: 21,-33 + 4887: 20,-39 + 4888: 22,-39 + 4925: 20,-35 + 4926: 19,-35 + 4928: 16,-34 + 4936: 14,-24 + 4937: 15,-24 + 4938: 16,-24 + 4939: 17,-24 + 4940: 18,-24 + 4941: 19,-24 + 4942: 20,-24 + 4943: 21,-24 - node: - color: '#EFCC4582' + color: '#EFCC4193' id: HalfTileOverlayGreyscale decals: - 463: 20,-39 - 464: 22,-39 + 313: 32,-35 - node: color: '#FA750096' id: HalfTileOverlayGreyscale @@ -3964,7 +3967,7 @@ entities: id: HalfTileOverlayGreyscale180 decals: 4070: 30,-29 - 4071: 31,-29 + 4770: 31,-31 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 @@ -4021,6 +4024,9 @@ entities: 2621: 56,17 2622: 55,17 2623: 54,17 + 4548: 48,9 + 4549: 47,9 + 4562: 46,9 - node: color: '#D4D4D428' id: HalfTileOverlayGreyscale180 @@ -4046,37 +4052,32 @@ entities: 2938: 43,30 3929: 35,30 - node: - color: '#EFC24193' - id: HalfTileOverlayGreyscale180 - decals: - 4179: 27,-37 - 4180: 26,-37 - - node: - color: '#EFCC4193' - id: HalfTileOverlayGreyscale180 - decals: - 333: 16,-37 - 334: 17,-37 - 343: 16,-29 - 344: 15,-29 - 345: 14,-29 - 364: 19,-29 - 365: 20,-29 - 366: 22,-29 - - node: - color: '#EFCC4582' + color: '#EFB34166' id: HalfTileOverlayGreyscale180 decals: - 460: 20,-44 - 461: 21,-44 - 462: 22,-44 + 5154: 12,-37 + 5155: 11,-37 + 5156: 10,-37 - node: - color: '#EFCF5093' + color: '#EFB34196' id: HalfTileOverlayGreyscale180 decals: - 4267: 25,-37 - 4268: 28,-37 - 4269: 24,-37 + 4722: 21,-31 + 4868: 20,-44 + 4869: 21,-44 + 4870: 22,-44 + 4918: 16,-37 + 4919: 17,-37 + 4920: 18,-37 + 4950: 22,-29 + 4951: 20,-29 + 4952: 19,-29 + 4953: 16,-29 + 4954: 15,-29 + 4955: 14,-29 + 5199: 19,-37 + 5200: 20,-37 + 5201: 21,-37 - node: color: '#FA750096' id: HalfTileOverlayGreyscale180 @@ -4096,6 +4097,8 @@ entities: decals: 4073: 29,-28 4074: 29,-27 + 4826: 28,-36 + 4987: 28,-37 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 @@ -4142,16 +4145,10 @@ entities: 23: 53,25 24: 53,24 25: 53,23 - 2074: 47,10 - 2075: 47,9 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 65: 32,28 - 67: 33,27 - 68: 33,26 - 71: 33,25 83: 32,22 84: 32,21 85: 32,20 @@ -4169,6 +4166,10 @@ entities: 2840: 38,23 2841: 38,22 2842: 38,21 + 4609: 32,25 + 4610: 32,26 + 4611: 32,27 + 4612: 32,28 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 @@ -4177,22 +4178,17 @@ entities: 2595: 34,-48 2596: 34,-47 2597: 34,-43 - - node: - color: '#EFCC4193' - id: HalfTileOverlayGreyscale270 - decals: - 324: 17,-30 - 325: 17,-31 - 326: 17,-32 - 327: 17,-33 - 332: 15,-36 - 347: 13,-26 - 348: 13,-25 - - node: - color: '#EFCC4582' - id: HalfTileOverlayGreyscale270 - decals: - 459: 19,-43 + 4871: 19,-43 + 4872: 19,-42 + 4873: 19,-41 + 4883: 16,-41 + 4908: 15,-36 + 4909: 17,-33 + 4910: 17,-32 + 4931: 13,-28 + 4932: 13,-27 + 4933: 13,-26 + 4934: 13,-25 - node: color: '#FA750096' id: HalfTileOverlayGreyscale270 @@ -4212,12 +4208,6 @@ entities: 911: 19,6 912: 19,8 913: 19,7 - - node: - color: '#52B4E94D' - id: HalfTileOverlayGreyscale90 - decals: - 953: 24,-6 - 954: 24,-5 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 @@ -4310,24 +4300,30 @@ entities: 2843: 41,23 2844: 41,22 - node: - color: '#EFCC4193' + color: '#EFB34166' id: HalfTileOverlayGreyscale90 decals: - 319: 18,-34 - 320: 18,-33 - 321: 18,-32 - 322: 18,-31 - 323: 18,-30 - 360: 22,-26 - 361: 22,-25 - 362: 23,-28 + 5151: 13,-36 + 5152: 13,-35 + 5153: 13,-34 - node: - color: '#EFCC4582' + color: '#EFB34196' id: HalfTileOverlayGreyscale90 decals: - 456: 23,-43 - 457: 23,-42 - 458: 23,-41 + 4823: 24,-36 + 4824: 24,-37 + 4874: 23,-41 + 4875: 23,-42 + 4876: 23,-43 + 4881: 17,-42 + 4882: 17,-41 + 4913: 18,-32 + 4914: 18,-33 + 4915: 18,-34 + 4945: 22,-25 + 4946: 22,-26 + 4948: 23,-28 + 5198: 22,-36 - node: color: '#FA750096' id: HalfTileOverlayGreyscale90 @@ -4367,12 +4363,6 @@ entities: decals: 2838: 39,24 2839: 40,24 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 70: 32,25 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -4519,11 +4509,37 @@ entities: 2024: 40,5 2025: 40,4 2026: 40,3 + 4412: -25,0 + 4413: -25,-1 + 4414: -25,-2 + 4415: -25,-3 + 4416: -25,-4 + 4417: -25,-5 + 4418: -25,-6 + 4419: -25,-7 + 4420: -25,-8 + 4421: -25,-9 + 4422: -25,-10 + 4423: -25,-11 + 4424: -25,-16 + 4425: -25,-17 + 4426: -25,-18 + 4427: -25,-19 + 4428: -25,-20 + 4429: -25,-21 + 4430: -25,-22 + 4431: -25,-23 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: 2684: -22,-12 + 4455: 20,18 + 4456: 21,18 + 4457: 22,18 + 4458: 22,17 + 4459: 21,17 + 4460: 20,17 - node: color: '#D5188DFF' id: QuarterTileOverlayGreyscale @@ -4537,7 +4553,6 @@ entities: id: QuarterTileOverlayGreyscale decals: 54: 35,28 - 72: 33,24 739: 24,-25 740: 24,-24 955: 27,5 @@ -4564,8 +4579,6 @@ entities: 976: 26,8 977: 27,8 978: 27,8 - 1107: -7,0 - 1108: -6,0 1109: -2,0 1110: -1,0 1111: 0,0 @@ -4584,6 +4597,20 @@ entities: 2944: 40,31 2945: 41,31 2946: 42,31 + 4367: -6,0 + 4368: -7,0 + 4369: -8,0 + 4370: -9,0 + 4371: -10,0 + 4372: -14,0 + 4373: -15,0 + 4374: -16,0 + 4375: -17,0 + 4376: -18,0 + 4377: -19,0 + 4378: -20,0 + 4379: -21,0 + 4581: 32,24 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale @@ -4594,11 +4621,7 @@ entities: 2611: 25,-25 2612: 25,-24 2613: 25,-23 - - node: - color: '#EFCC4193' - id: QuarterTileOverlayGreyscale - decals: - 328: 17,-34 + 4929: 17,-34 - node: color: '#0E7F1BFF' id: QuarterTileOverlayGreyscale180 @@ -4624,6 +4647,9 @@ entities: 2723: -8,-15 2730: -7,-20 3723: 62,0 + 4566: 55,5 + 4567: 56,5 + 4568: 57,5 - node: color: '#797979AB' id: QuarterTileOverlayGreyscale180 @@ -4650,10 +4676,6 @@ entities: 2105: 59,13 2106: 58,13 2107: 58,13 - 2108: 58,12 - 2109: 58,12 - 2110: 58,8 - 2111: 58,8 2140: 64,13 2141: 64,13 2142: 64,14 @@ -4690,24 +4712,6 @@ entities: 3412: 9,31 3413: 9,32 3535: 9,33 - - node: - color: '#92000093' - id: QuarterTileOverlayGreyscale180 - decals: - 4021: 36,-1 - 4023: 34,-1 - 4025: 32,-1 - 4026: 31,-1 - 4027: 30,-1 - 4028: 29,-1 - 4029: 28,-1 - 4030: 27,-1 - 4031: 27,-2 - 4032: 27,-3 - 4033: 27,-4 - 4034: 27,-5 - 4036: 27,-7 - 4037: 27,-8 - node: color: '#951710FF' id: QuarterTileOverlayGreyscale180 @@ -4737,14 +4741,8 @@ entities: color: '#D4D4D428' id: QuarterTileOverlayGreyscale180 decals: - 940: 27,-13 - 941: 27,-12 942: 27,-11 943: 27,-10 - 944: 27,-9 - 945: 27,-8 - 946: 27,-7 - 948: 27,-5 1123: -6,-14 1124: -6,-13 1125: -6,-12 @@ -4770,21 +4768,37 @@ entities: 1756: 28,34 1757: 28,35 1758: 28,36 - 1972: 37,-1 - 1973: 36,-1 - 1975: 34,-1 - 1977: 32,-1 - 1978: 32,-1 - 1979: 31,-1 - 1980: 30,-1 - 1981: 29,-1 - 1982: 28,-1 - 1983: 27,-1 1992: 13,-1 1993: 14,-1 1994: 16,-1 1995: 15,-1 4038: 38,-1 + 4293: 37,-1 + 4294: 36,-1 + 4295: 35,-1 + 4296: 34,-1 + 4297: 33,-1 + 4298: 32,-1 + 4299: 31,-1 + 4300: 30,-1 + 4301: 29,-1 + 4302: 28,-1 + 4303: 27,-1 + 4306: 27,-11 + 4307: 27,-10 + 4308: 27,-9 + 4309: 27,-8 + 4310: 27,-7 + 4311: 27,-6 + 4312: 27,-5 + 4313: 27,-4 + 4315: 27,-12 + 4316: 27,-13 + 4407: -6,-15 + 4408: -6,-16 + 4409: -6,-17 + 4410: -6,-18 + 4411: -6,-19 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 @@ -4808,12 +4822,17 @@ entities: 2681: -23,-3 2682: -23,-22 2683: -23,-15 + 4449: 20,17 + 4450: 21,17 + 4451: 22,17 + 4452: 22,18 + 4453: 21,18 + 4454: 20,18 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale180 decals: 40: 35,21 - 66: 32,28 89: 32,17 180: 36,24 2471: 105,-19 @@ -4845,6 +4864,8 @@ entities: 1900: 11,-7 1903: 10,-7 1904: 9,-7 + 4912: 18,-31 + 4967: 26,-30 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale180 @@ -4861,11 +4882,6 @@ entities: 732: 27,-23 733: 27,-24 734: 27,-25 - - node: - color: '#EFCC4193' - id: QuarterTileOverlayGreyscale180 - decals: - 342: 18,-29 - node: color: '#EFCC4593' id: QuarterTileOverlayGreyscale180 @@ -4897,18 +4913,6 @@ entities: 2514: 105,-20 2515: 102,-20 2516: 102,-17 - - node: - color: '#1F820993' - id: QuarterTileOverlayGreyscale270 - decals: - 4003: 37,-1 - 4004: 36,-1 - 4006: 34,-1 - 4008: 32,-1 - 4009: 31,-1 - 4010: 30,-1 - 4011: 29,-1 - 4012: 28,-1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -4934,6 +4938,11 @@ entities: 2522: 102,-19 2523: 107,-17 2524: 108,-16 + - node: + color: '#3EB38896' + id: QuarterTileOverlayGreyscale270 + decals: + 4968: 26,-30 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 @@ -5006,6 +5015,9 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 34: 63,13 + 4563: 55,5 + 4564: 56,5 + 4565: 57,5 - node: color: '#D4D4D428' id: QuarterTileOverlayGreyscale270 @@ -5025,8 +5037,6 @@ entities: 925: 22,15 926: 21,15 927: 20,15 - 931: 25,-13 - 932: 25,-12 933: 25,-11 934: 25,-10 935: 25,-9 @@ -5038,8 +5048,6 @@ entities: 1085: -7,-4 1086: -7,-3 1087: -7,-2 - 1088: -7,-1 - 1089: -7,0 1680: 37,13 1681: 36,13 1682: 35,13 @@ -5062,13 +5070,6 @@ entities: 1742: 22,35 1743: 23,35 1744: 24,35 - 1745: 25,35 - 1746: 25,34 - 1747: 25,33 - 1748: 25,32 - 1749: 25,31 - 1750: 25,30 - 1751: 25,29 1752: 25,28 1984: 25,-1 1985: 24,-1 @@ -5090,6 +5091,27 @@ entities: 2465: 40,-1 2466: 41,-1 2467: 41,-2 + 4318: 25,-12 + 4319: 25,-13 + 4393: -8,-2 + 4394: -9,-2 + 4395: -10,-2 + 4396: -11,-2 + 4397: -12,-2 + 4398: -13,-2 + 4399: -14,-2 + 4400: -15,-2 + 4401: -16,-2 + 4402: -17,-2 + 4403: -18,-2 + 4404: -19,-2 + 4405: -20,-2 + 4406: -21,-2 + 4604: 24,33 + 4605: 24,32 + 4606: 24,31 + 4607: 24,30 + 4608: 24,29 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale270 @@ -5112,15 +5134,30 @@ entities: 2704: -7,-6 2705: -7,-5 2706: -7,-4 + 4320: 29,-3 + 4321: 29,-4 + 4322: 29,-5 + 4323: 29,-6 + 4332: 31,-8 + 4333: 32,-8 + 4334: 33,-8 + 4335: 34,-8 + 4336: 35,-8 + 4337: 36,-8 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale270 decals: 42: 36,16 43: 35,17 - 69: 33,28 82: 32,23 2831: 34,23 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale270 + decals: + 4886: 16,-40 + 4911: 17,-31 - node: color: '#EFCC2E82' id: QuarterTileOverlayGreyscale270 @@ -5137,11 +5174,6 @@ entities: 720: 25,-16 721: 25,-15 722: 25,-14 - - node: - color: '#EFCC4193' - id: QuarterTileOverlayGreyscale270 - decals: - 341: 17,-29 - node: color: '#EFCC4593' id: QuarterTileOverlayGreyscale270 @@ -5159,17 +5191,6 @@ entities: 2518: 104,-17 2519: 107,-18 2520: 106,-20 - - node: - color: '#1F820993' - id: QuarterTileOverlayGreyscale90 - decals: - 4013: 27,-2 - 4014: 27,-3 - 4015: 27,-4 - 4016: 27,-5 - 4018: 27,-7 - 4019: 27,-8 - 4020: 27,-9 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 @@ -5187,10 +5208,6 @@ entities: color: '#3EB38896' id: QuarterTileOverlayGreyscale90 decals: - 2604: 32,-31 - 2605: 31,-31 - 2606: 30,-31 - 2607: 29,-31 2608: 27,-25 2609: 27,-24 2610: 27,-23 @@ -5367,14 +5384,38 @@ entities: decals: 737: 28,-25 738: 28,-24 - 1100: -7,0 - 1101: -6,0 1102: -2,0 1103: -1,0 1104: 0,0 1105: 1,0 1106: 2,0 2724: -8,-12 + 4324: 29,-3 + 4325: 30,-3 + 4326: 31,-3 + 4327: 32,-3 + 4328: 33,-3 + 4329: 34,-3 + 4330: 35,-3 + 4331: 36,-3 + 4338: 36,-8 + 4339: 36,-7 + 4340: 36,-6 + 4341: 36,-5 + 4343: 36,-4 + 4380: -6,0 + 4381: -7,0 + 4382: -8,0 + 4383: -9,0 + 4384: -10,0 + 4385: -14,0 + 4386: -15,0 + 4387: -16,0 + 4388: -17,0 + 4389: -18,0 + 4390: -19,0 + 4391: -20,0 + 4392: -21,0 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale90 @@ -5396,12 +5437,8 @@ entities: 2493: 104,-17 2494: 103,-17 2495: 106,-19 - - node: - color: '#EFCC4193' - id: QuarterTileOverlayGreyscale90 - decals: - 318: 18,-35 - 359: 22,-27 + 4927: 18,-35 + 5016: 22,-27 - node: cleanable: True color: '#FFFFFFFF' @@ -5444,11 +5481,13 @@ entities: decals: 994: 29,0 - node: - color: '#FED83DFF' + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' id: StandClear decals: - 9: 12,-28 - 10: 12,-27 + 5194: 12,-28 + 5195: 12,-27 + 5196: 16,-32 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale @@ -5466,11 +5505,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale decals: 2218: 76,-4 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 2073: 47,11 - node: color: '#D4D4D428' id: ThreeQuarterTileOverlayGreyscale @@ -5493,17 +5527,18 @@ entities: decals: 1720: 19,46 - node: - color: '#EFCC4193' + color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 312: 30,-35 - 330: 15,-34 - 349: 13,-24 + 4865: 19,-39 + 4907: 15,-34 + 4965: 25,-28 + 4986: 13,-24 - node: - color: '#EFCC4582' + color: '#EFCC4193' id: ThreeQuarterTileOverlayGreyscale decals: - 468: 19,-39 + 312: 30,-35 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale @@ -5514,6 +5549,11 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 910: 19,5 + - node: + color: '#3EB38896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 4969: 27,-30 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 @@ -5533,11 +5573,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale180 decals: 3204: 15,20 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 1003: 27,-2 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 @@ -5545,20 +5580,23 @@ entities: 1146: -1,-6 1612: 27,25 - node: - color: '#EFCC2E82' + color: '#EFB34166' id: ThreeQuarterTileOverlayGreyscale180 decals: - 710: 27,-26 + 5150: 13,-37 - node: - color: '#EFCC4193' + color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 367: 23,-29 + 4867: 23,-44 + 4880: 17,-43 + 4964: 23,-29 + 5197: 22,-37 - node: - color: '#EFCC4582' + color: '#EFCC2E82' id: ThreeQuarterTileOverlayGreyscale180 decals: - 465: 23,-44 + 710: 27,-26 - node: color: '#34A2C0B2' id: ThreeQuarterTileOverlayGreyscale270 @@ -5600,21 +5638,25 @@ entities: decals: 1145: -3,-6 - node: - color: '#EFCC2E82' + color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 709: 25,-26 + 4866: 19,-44 + 4879: 16,-43 + 4885: 15,-40 + 4906: 15,-37 + 4930: 13,-29 + 4966: 25,-30 - node: - color: '#EFCC4193' + color: '#EFCC2E82' id: ThreeQuarterTileOverlayGreyscale270 decals: - 331: 15,-37 - 346: 13,-29 + 709: 25,-26 - node: - color: '#EFCC4582' - id: ThreeQuarterTileOverlayGreyscale270 + color: '#3EB38896' + id: ThreeQuarterTileOverlayGreyscale90 decals: - 466: 19,-44 + 4970: 27,-28 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 @@ -5641,11 +5683,6 @@ entities: id: ThreeQuarterTileOverlayGreyscale90 decals: 3209: 15,25 - - node: - color: '#D4D4D428' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 999: 27,-4 - node: color: '#DE3A3A47' id: ThreeQuarterTileOverlayGreyscale90 @@ -5658,17 +5695,14 @@ entities: 1143: -1,-4 1611: 27,22 - node: - color: '#EFCC4193' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 315: 22,-35 - 358: 22,-24 - 363: 23,-27 - - node: - color: '#EFCC4582' + color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 decals: - 467: 23,-39 + 4864: 23,-39 + 4884: 17,-39 + 4924: 22,-35 + 4944: 22,-24 + 4947: 23,-27 - node: color: '#FA750096' id: ThreeQuarterTileOverlayGreyscale90 @@ -5681,30 +5715,6 @@ entities: 1785: 23,-12 1786: 26,-8 1787: 30,-11 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 211: 3,-33 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCorner - decals: - 210: 3,-30 - - node: - angle: 3.141592653589793 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 206: 2,-30 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarnCornerFlipped - decals: - 207: 2,-33 - node: color: '#52B4E996' id: WarnCornerGreyscaleNE @@ -5732,33 +5742,33 @@ entities: 1587: 40,27 2249: 57,-14 3101: 92,27 + 4516: 3,-30 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 236: 55,10 - 247: 49,9 1586: 39,27 2248: 54,-14 2580: 36,-44 3098: 82,29 3102: 96,27 + 4517: 2,-30 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 1585: 40,26 2246: 57,-16 3104: 92,33 3108: 80,33 + 4518: 3,-33 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 1588: 39,26 2247: 54,-16 3097: 82,31 3103: 96,33 + 4519: 2,-33 - node: color: '#334E6DC8' id: WarnCornerSmallGreyscaleNE @@ -5788,16 +5798,18 @@ entities: 3014: 46,33 3533: 6,33 3919: 18,-46 - 4255: 24,-36 + 4578: 57,8 + 4831: 24,-36 + 4859: 19,-44 - node: color: '#FFFFFFFF' id: WarnCornerSmallNW decals: - 237: 55,9 2560: 41,-49 2974: 53,33 3920: 24,-46 - 4254: 28,-36 + 4827: 28,-36 + 4860: 23,-44 - node: color: '#FFFFFFFF' id: WarnCornerSmallSE @@ -5806,15 +5818,22 @@ entities: 2563: 39,-45 2848: 46,36 3653: 6,39 - 4160: 24,-32 + 4542: 48,10 + 4560: 52,10 + 4577: 57,12 + 4807: 24,-32 + 4862: 19,-42 + 5206: 19,-37 - node: color: '#FFFFFFFF' id: WarnCornerSmallSW decals: 2562: 41,-45 2852: 53,36 - 4068: 33,-26 - 4161: 28,-32 + 4559: 52,10 + 4808: 28,-32 + 4861: 23,-42 + 5205: 23,-37 - node: color: '#FFFFFFFF' id: WarnFull @@ -5834,20 +5853,23 @@ entities: color: '#FFFFFFFF' id: WarnFullGreyscale decals: - 402: 14,-35 441: 31,-38 442: 32,-38 - 1007: 28,-29 - 1008: 24,-29 - 1009: 31,-30 - 1010: 31,-34 - 1012: 21,-34 - 1013: 21,-30 2426: 61,-9 - 4257: 23,-36 - 4258: 23,-37 - 4259: 29,-36 - 4260: 29,-37 + 4972: 24,-29 + 4973: 28,-29 + 4974: 26,-27 + 4975: 18,-30 + 4976: 17,-30 + 4977: 21,-30 + 4978: 21,-34 + 4979: 23,-36 + 4980: 23,-37 + 4981: 29,-37 + 4982: 29,-36 + 4983: 31,-34 + 4984: 31,-30 + 5169: 14,-35 - node: color: '#FFFFFFFF' id: WarnLineE @@ -5869,14 +5891,27 @@ entities: 3110: 80,34 3651: 6,38 3652: 6,37 - 4048: 49,-45 4049: 49,-46 4050: 49,-47 4051: 49,-48 4052: 49,-49 - 4170: 24,-33 - 4171: 24,-34 - 4172: 24,-35 + 4477: 49,-45 + 4499: 36,-31 + 4500: 36,-32 + 4501: 36,-33 + 4520: 3,-32 + 4521: 3,-31 + 4551: 48,9 + 4556: 52,9 + 4557: 52,8 + 4572: 57,9 + 4573: 57,10 + 4574: 57,11 + 4591: 40,26 + 4800: 24,-35 + 4801: 24,-34 + 4802: 24,-33 + 4855: 19,-43 - node: color: '#334E6DC8' id: WarnLineGreyscaleE @@ -5897,8 +5932,6 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 380: 27,-29 - 401: 13,-35 1475: 24,20 1476: 24,21 1477: 24,23 @@ -5910,12 +5943,11 @@ entities: 1887: 9,-6 1888: 9,-5 1889: 9,-4 - 3170: 23,-40 - 3171: 17,-40 - 4261: 28,-36 - 4262: 28,-37 - 4263: 22,-36 - 4264: 22,-37 + 4818: 28,-36 + 4890: 17,-40 + 4891: 23,-40 + 4902: 27,-29 + 4988: 28,-37 - node: color: '#52B4E996' id: WarnLineGreyscaleN @@ -5924,16 +5956,18 @@ entities: 3850: 58,0 3851: 59,0 3852: 60,0 + - node: + color: '#D381C996' + id: WarnLineGreyscaleN + decals: + 4552: 54,11 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: 376: 31,-35 - 377: 21,-35 - 378: 26,-28 443: 32,-39 444: 31,-39 - 469: 21,-39 1879: 10,-7 1880: 11,-7 1881: 12,-7 @@ -5943,6 +5977,13 @@ entities: 3234: 13,28 3415: 8,28 3417: 5,33 + 4718: 21,-31 + 4792: 31,-31 + 4893: 21,-39 + 4895: 21,-35 + 4896: 17,-31 + 4897: 18,-31 + 4903: 26,-28 - node: color: '#52B4E996' id: WarnLineGreyscaleS @@ -5961,7 +6002,6 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 381: 21,-29 382: 31,-37 383: 32,-37 688: 38,-37 @@ -5974,6 +6014,13 @@ entities: 3226: 8,21 3227: 14,20 3416: 8,30 + 4720: 21,-33 + 4721: 31,-33 + 4898: 17,-29 + 4899: 18,-29 + 4904: 26,-26 + 4957: 21,-29 + 4985: 31,-29 - node: color: '#52B4E996' id: WarnLineGreyscaleW @@ -5988,11 +6035,6 @@ entities: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 379: 25,-29 - 384: 15,-35 - 386: 13,-28 - 387: 13,-27 - 476: 16,-42 814: 41,-4 1892: 8,-5 1893: 8,-4 @@ -6001,12 +6043,14 @@ entities: 1896: 8,-8 1897: 8,-9 1898: 8,-10 - 3169: 19,-40 - 3177: 25,-40 4265: 30,-36 4266: 30,-37 - 4270: 24,-36 - 4271: 24,-37 + 4821: 24,-37 + 4822: 24,-36 + 4889: 19,-40 + 4892: 16,-42 + 4900: 15,-35 + 4971: 25,-29 - node: color: '#FFFFFFFF' id: WarnLineN @@ -6025,13 +6069,22 @@ entities: 3099: 84,32 3100: 86,32 3109: 79,33 - 4064: 30,-26 - 4065: 31,-26 - 4066: 32,-26 - 4164: 25,-32 - 4165: 26,-32 - 4166: 27,-32 - 4256: 22,-37 + 4534: 49,10 + 4535: 50,10 + 4536: 51,10 + 4538: 53,10 + 4539: 54,10 + 4540: 55,10 + 4575: 58,12 + 4793: 25,-32 + 4794: 26,-32 + 4795: 27,-32 + 4857: 20,-42 + 4858: 22,-42 + 4863: 21,-42 + 5202: 21,-37 + 5203: 20,-37 + 5204: 22,-37 - node: color: '#FFFFFFFF' id: WarnLineS @@ -6043,7 +6096,6 @@ entities: 2570: 46,-48 2571: 46,-47 2572: 46,-46 - 2573: 46,-45 2589: 36,-49 2590: 36,-48 2591: 36,-47 @@ -6056,10 +6108,24 @@ entities: 3223: 6,24 3224: 6,23 4047: 46,-49 - 4067: 33,-27 - 4157: 28,-33 - 4158: 28,-34 - 4159: 28,-35 + 4478: 46,-45 + 4502: 34,-31 + 4503: 34,-32 + 4504: 34,-33 + 4522: 2,-32 + 4523: 2,-31 + 4554: 52,8 + 4558: 52,9 + 4590: 39,26 + 4803: 28,-35 + 4804: 28,-34 + 4805: 28,-33 + 4856: 23,-43 + 5216: 33,-27 + 5217: 33,-26 + 5220: 33,-25 + 5221: 33,-24 + 5222: 33,-23 - node: color: '#FFFFFFFF' id: WarnLineW @@ -6067,14 +6133,6 @@ entities: 218: 13,37 219: 14,37 220: 15,37 - 232: 19,41 - 233: 18,41 - 234: 17,41 - 238: 54,9 - 239: 53,9 - 240: 52,9 - 245: 51,9 - 246: 50,9 754: 22,-16 755: 21,-16 756: 20,-16 @@ -6105,17 +6163,13 @@ entities: 3916: 21,-46 3917: 22,-46 3918: 23,-46 - 4168: 26,-36 - 4252: 25,-36 - 4253: 27,-36 - - node: - color: '#FED83DFF' - id: WarningLine - decals: - 0: 19,-37 - 1: 20,-37 - 2: 21,-37 - 5: 18,-37 + 4576: 58,8 + 4797: 25,-36 + 4798: 26,-36 + 4799: 27,-36 + 4852: 20,-44 + 4853: 21,-44 + 4854: 22,-44 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' @@ -6125,15 +6179,6 @@ entities: 176: 36,22 181: 36,23 182: 36,24 - 212: 3,-32 - 213: 3,-31 - - node: - angle: 4.71238898038469 rad - color: '#FFFFFFFF' - id: WarningLine - decals: - 208: 2,-32 - 209: 2,-31 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe @@ -6155,6 +6200,7 @@ entities: 1861: 20,-6 3239: 9,18 3248: 6,15 + 5213: 21,-12 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw @@ -6162,16 +6208,28 @@ entities: 1853: 18,-6 3238: 5,18 3247: 5,15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 5149: 13,-37 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSe + decals: + 4529: 60,10 + 5215: 20,-12 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: - 1777: 21,-13 - 1778: 21,-12 1779: 21,-11 1780: 21,-10 1859: 20,-4 1860: 20,-5 + 4524: 60,8 + 4525: 60,9 + 5214: 20,-13 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -6183,6 +6241,9 @@ entities: 3241: 8,19 3242: 7,19 3243: 6,19 + 5143: 10,-37 + 5144: 11,-37 + 5145: 12,-37 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -6192,12 +6253,67 @@ entities: 3244: 6,18 3245: 7,18 3246: 8,18 + 4526: 61,10 + 4527: 62,10 + 4528: 63,10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: 1854: 18,-5 1855: 18,-4 + 5146: 13,-36 + 5147: 13,-35 + 5148: 13,-34 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 4479: 46,-45 + 4484: 47,-47 + 4489: 48,-46 + 4494: 49,-48 + 4497: 46,-49 + 4498: 49,-49 + 4507: 34,-31 + 4511: 35,-32 + 4515: 36,-33 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 4480: 47,-45 + 4483: 46,-47 + 4487: 47,-46 + 4490: 49,-46 + 4493: 48,-48 + 4496: 47,-49 + 4508: 35,-31 + 4512: 36,-32 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt3 + decals: + 4481: 48,-45 + 4486: 49,-47 + 4492: 47,-48 + 4509: 36,-31 + 4513: 34,-33 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 4482: 49,-45 + 4485: 48,-47 + 4488: 46,-46 + 4491: 46,-48 + 4495: 48,-49 + 4510: 34,-32 + 4514: 35,-33 - node: cleanable: True angle: -1.5707963267948966 rad @@ -6442,182 +6558,35 @@ entities: color: '#47422E3E' id: footprint decals: - 561: 20.73215,-33.21596 - 562: 20.810274,-32.762836 - 563: 21.0759,-33.02846 564: 20.904024,-32.09096 - 565: 20.685274,-31.528461 - 566: 21.2634,-31.528461 - 567: 20.622774,-31.559711 - 568: 21.2009,-32.450336 - 569: 20.997774,-31.825336 - node: cleanable: True - angle: -3.141592653589793 rad - color: '#47422E3E' - id: footprint - decals: - 598: 18.380388,-29.024849 - 599: 18.271013,-28.618599 - 600: 19.052263,-28.993599 - - node: angle: -1.5707963267948966 rad color: '#47422E3E' id: footprint decals: - 511: 19.627026,-40.31256 - 512: 20.231192,-39.784786 - 513: 20.363136,-40.22923 - - node: - cleanable: True - angle: -1.5707963267948966 rad - color: '#47422E3E' - id: footprint - decals: - 554: 31.110344,-32.87221 - 555: 30.782219,-32.387836 - 556: 30.672844,-32.825336 - 557: 29.954094,-32.356586 - 558: 29.922844,-32.93471 - 559: 29.204094,-32.37221 - 560: 29.235344,-33.044086 - 601: 19.366499,-28.623808 - 602: 18.387333,-29.09603 - 603: 18.706778,-28.734919 - 604: 19.366499,-29.075195 - 605: 19.838722,-28.554363 - 606: 20.41511,-28.866863 607: 20.310944,-28.255753 - 608: 21.019278,-28.776585 - 609: 21.470667,-28.387695 - 610: 21.998444,-28.922419 - 611: 22.352612,-28.540474 - 612: 22.92456,-29.193253 - 613: 23.306505,-28.811308 - 644: 14.771467,-35.430984 - 645: 15.127949,-35.1208 - 646: 15.553875,-35.36617 - 647: 16.271467,-34.86154 - 648: 16.544615,-35.22728 - 649: 17.183504,-34.74117 - 650: 17.502949,-35.222652 - - node: - color: '#47422E3E' - id: footprint - decals: - 514: 20.606192,-39.257008 - 515: 21.106192,-38.76395 - 516: 20.752026,-38.722286 - 517: 21.085358,-39.21534 - 518: 20.606192,-39.21534 - 519: 16.110773,-41.92628 - 522: 16.124662,-41.55128 - 527: 21.153759,-38.723778 - 528: 20.771816,-38.58489 - 529: 21.077372,-38.26544 - 530: 20.730148,-37.89044 - 531: 21.209316,-37.64739 - 532: 21.056538,-37.286278 - 534: 20.790304,-36.912422 - 535: 20.873638,-36.572144 - node: cleanable: True color: '#47422E3E' id: footprint decals: - 536: 20.741693,-37.148533 - 537: 21.08197,-36.669365 - 538: 21.352804,-37.419365 - 539: 20.998638,-37.009644 - 540: 20.53336,-36.822144 - 543: 20.727804,-36.07909 - 544: 20.838915,-35.481865 - 545: 20.991693,-35.842976 - 546: 21.262526,-35.099922 - 552: 25.995998,-32.72807 - 570: 21.16965,-32.87221 - 571: 21.216524,-32.262836 - 572: 20.8259,-31.512836 - 573: 21.23215,-31.059711 - 574: 30.827486,-32.65346 - 575: 31.030611,-32.044086 - 576: 31.233734,-31.387836 - 577: 31.046236,-30.919086 - 578: 30.874361,-30.903461 - 579: 30.796236,-31.653461 - 580: 30.702486,-31.387836 - 581: 21.688553,-32.68471 - 582: 17.800251,-34.731586 - 583: 17.409626,-33.87221 - 584: 17.925251,-33.075336 - 585: 17.409626,-32.606586 - 586: 18.050251,-31.887836 - 587: 17.534626,-31.450336 - 588: 30.89618,-34.87221 - 589: 30.818054,-33.231586 - 590: 31.474304,-32.606586 - 591: 31.17743,-32.106586 - 592: 21.083513,-29.290474 - 593: 20.739763,-28.759224 594: 21.536638,-27.946724 595: 20.599138,-27.556099 - 596: 21.349138,-26.587349 597: 20.724138,-25.931099 - - node: - angle: 1.5707963267948966 rad - color: '#47422E3E' - id: footprint - decals: - 525: 16.083914,-42.09989 - 526: 15.889469,-41.794334 - node: cleanable: True angle: 1.5707963267948966 rad color: '#47422E3E' id: footprint decals: - 651: 17.516838,-35.393948 - 652: 16.8548,-34.912464 - 653: 16.808504,-35.310616 - 654: 15.9103565,-34.88006 - 655: 15.822393,-35.71339 - 656: 14.984429,-35.2458 - 657: 15.961281,-35.704132 - 658: 16.516838,-35.61617 - 659: 16.276096,-34.875427 - 660: 17.178875,-34.60228 - 661: 17.512207,-34.14858 - 662: 17.164986,-35.583763 - 663: 18.735516,-36.577396 - 664: 18.00114,-35.858646 - 665: 19.15739,-36.421146 - 666: 19.90739,-36.858646 - 667: 20.079266,-36.608646 668: 18.78239,-35.983646 - 669: 19.25114,-36.702396 - 670: 20.266766,-36.03052 - 672: 20.25114,-36.514896 - - node: - angle: 3.141592653589793 rad - color: '#47422E3E' - id: footprint - decals: - 524: 16.215858,-41.66239 - node: angle: -4.71238898038469 rad color: '#47422E8B' id: footprint decals: - 508: 19.432632,-39.67386 509: 19.872448,-39.76645 - 510: 20.455782,-39.363674 - - node: - angle: -3.141592653589793 rad - color: '#47422E8B' - id: footprint - decals: - 505: 16.144655,-41.73583 - 506: 16.436321,-41.476566 - node: color: '#FFFFFFFF' id: ghost @@ -6732,13 +6701,6 @@ entities: container: 10847 - proto: ActionToggleLight entities: - - uid: 8692 - components: - - type: Transform - parent: 13472 - - type: InstantAction - originalIconColor: '#FFFFFFFF' - container: 13472 - uid: 13568 components: - type: Transform @@ -6968,15 +6930,31 @@ entities: devices: - 10402 - 10331 - - uid: 5680 + - 12989 + - uid: 5859 components: - type: Transform - pos: 11.5,-32.5 + pos: 34.5,32.5 parent: 2 - type: DeviceList devices: - - 5679 + - 2691 + - 8575 + - 10452 + - 2263 + - 2265 + - 12529 + - uid: 6126 + components: + - type: Transform + pos: 12.5,-32.5 + parent: 2 + - type: DeviceList + devices: + - 5422 - 5678 + - 5679 + - 202 - uid: 6158 components: - type: Transform @@ -7221,7 +7199,6 @@ entities: devices: - 1103 - 1104 - - 11472 - 11250 - 11249 - 11248 @@ -7382,7 +7359,6 @@ entities: - 11263 - 1103 - 1104 - - 11472 - 12475 - 6928 - 6929 @@ -7394,6 +7370,7 @@ entities: - 9351 - 9353 - 9352 + - 2690 - uid: 12480 components: - type: Transform @@ -7436,7 +7413,7 @@ entities: - 11252 - 11253 - 12087 - - 11413 + - 12989 - 12485 - 9364 - 9363 @@ -7494,14 +7471,8 @@ entities: parent: 2 - type: DeviceList devices: - - 12529 - - 8564 - - 8575 - 8629 - 8630 - - 2263 - - 10452 - - 2265 - uid: 12530 components: - type: Transform @@ -7513,6 +7484,10 @@ entities: - 12531 - 8597 - 8598 + - 8610 + - 8607 + - 8596 + - 8595 - uid: 12532 components: - type: Transform @@ -7761,11 +7736,6 @@ entities: - type: Transform pos: 11.5,11.5 parent: 2 - - uid: 1078 - components: - - type: Transform - pos: 21.5,16.5 - parent: 2 - uid: 1079 components: - type: Transform @@ -7788,9 +7758,10 @@ entities: - type: Transform pos: 40.5,25.5 parent: 2 - - uid: 48 + - uid: 150 components: - type: Transform + rot: -1.5707963267948966 rad pos: 39.5,25.5 parent: 2 - proto: AirlockAtmosphericsGlassLocked @@ -7824,25 +7795,25 @@ entities: parent: 2 - proto: AirlockBrigGlassLocked entities: - - uid: 1152 + - uid: 232 components: - type: Transform - pos: 35.5,30.5 + pos: 31.5,23.5 parent: 2 - - uid: 1153 + - uid: 896 components: - type: Transform - pos: 35.5,31.5 + pos: 31.5,24.5 parent: 2 - - uid: 2186 + - uid: 1152 components: - type: Transform - pos: 31.5,23.5 + pos: 35.5,30.5 parent: 2 - - uid: 2187 + - uid: 1153 components: - type: Transform - pos: 31.5,24.5 + pos: 35.5,31.5 parent: 2 - uid: 2188 components: @@ -7854,12 +7825,6 @@ entities: - type: Transform pos: 28.5,23.5 parent: 2 - - uid: 2252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,31.5 - parent: 2 - proto: AirlockBrigLocked entities: - uid: 32 @@ -7924,15 +7889,13 @@ entities: - type: Transform pos: 54.5,-6.5 parent: 2 -- proto: AirlockChiefEngineerGlassLocked +- proto: AirlockChiefEngineerLocked entities: - - uid: 3982 + - uid: 355 components: - type: Transform pos: 11.5,-39.5 parent: 2 -- proto: AirlockChiefEngineerLocked - entities: - uid: 948 components: - type: Transform @@ -7995,13 +7958,11 @@ entities: - uid: 14087 components: - type: Transform - rot: -1.5707963267948966 rad pos: 68.5,23.5 parent: 2 - uid: 14411 components: - type: Transform - rot: 3.141592653589793 rad pos: 81.5,32.5 parent: 2 - proto: AirlockDetectiveGlassLocked @@ -8016,7 +7977,6 @@ entities: - uid: 11279 components: - type: Transform - rot: 1.5707963267948966 rad pos: 41.5,21.5 parent: 2 - proto: AirlockEngineering @@ -8099,7 +8059,6 @@ entities: - uid: 70 components: - type: Transform - rot: -1.5707963267948966 rad pos: 24.5,-39.5 parent: 2 - uid: 118 @@ -8135,7 +8094,6 @@ entities: - uid: 2046 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,-39.5 parent: 2 - uid: 3208 @@ -8146,7 +8104,6 @@ entities: - uid: 3267 components: - type: Transform - rot: -1.5707963267948966 rad pos: 70.5,-12.5 parent: 2 - uid: 3408 @@ -8182,7 +8139,6 @@ entities: - uid: 15005 components: - type: Transform - rot: 3.141592653589793 rad pos: 52.5,-12.5 parent: 2 - proto: AirlockExternal @@ -8190,7 +8146,6 @@ entities: - uid: 1889 components: - type: Transform - rot: 1.5707963267948966 rad pos: 85.5,4.5 parent: 2 - uid: 11758 @@ -8235,11 +8190,6 @@ entities: parent: 2 - proto: AirlockExternalAtmosphericsLocked entities: - - uid: 4390 - components: - - type: Transform - pos: 37.5,-39.5 - parent: 2 - uid: 4391 components: - type: Transform @@ -8291,11 +8241,6 @@ entities: linkedPorts: 1902: - DoorStatus: DoorBolt - - uid: 4385 - components: - - type: Transform - pos: 33.5,-39.5 - parent: 2 - uid: 4392 components: - type: Transform @@ -8390,6 +8335,13 @@ entities: rot: -1.5707963267948966 rad pos: -25.5,-22.5 parent: 2 +- proto: AirlockExternalGlassAtmosphericsLocked + entities: + - uid: 1078 + components: + - type: Transform + pos: 37.5,-39.5 + parent: 2 - proto: AirlockExternalGlassCargoLocked entities: - uid: 411 @@ -8445,6 +8397,11 @@ entities: rot: 3.141592653589793 rad pos: 18.5,-15.5 parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 33.5,-39.5 + parent: 2 - proto: AirlockExternalGlassLocked entities: - uid: 941 @@ -8617,7 +8574,6 @@ entities: - uid: 2333 components: - type: Transform - rot: 3.141592653589793 rad pos: 75.5,20.5 parent: 2 - type: DeviceLinkSink @@ -8629,7 +8585,6 @@ entities: - uid: 4517 components: - type: Transform - rot: -1.5707963267948966 rad pos: 11.5,36.5 parent: 2 - type: DeviceLinkSink @@ -8641,7 +8596,6 @@ entities: - uid: 7759 components: - type: Transform - rot: 3.141592653589793 rad pos: 64.5,45.5 parent: 2 - type: DeviceLinkSink @@ -8675,7 +8629,6 @@ entities: - uid: 13556 components: - type: Transform - rot: 3.141592653589793 rad pos: 64.5,43.5 parent: 2 - type: DeviceLinkSink @@ -8721,13 +8674,11 @@ entities: - uid: 6066 components: - type: Transform - rot: 3.141592653589793 rad pos: 59.5,35.5 parent: 2 - uid: 9927 components: - type: Transform - rot: 3.141592653589793 rad pos: 59.5,37.5 parent: 2 - proto: AirlockFreezerKitchenHydroLocked @@ -8742,7 +8693,6 @@ entities: - uid: 6519 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,-10.5 parent: 2 - proto: AirlockGlass @@ -8938,6 +8888,12 @@ entities: - type: Transform pos: 17.5,1.5 parent: 2 + - uid: 8830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 2 - uid: 11760 components: - type: Transform @@ -9056,7 +9012,6 @@ entities: - uid: 10218 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,-20.5 parent: 2 - proto: AirlockMaintBarLocked @@ -9170,6 +9125,11 @@ entities: - type: Transform pos: 26.5,11.5 parent: 2 + - uid: 1705 + components: + - type: Transform + pos: 47.5,20.5 + parent: 2 - uid: 1745 components: - type: Transform @@ -9235,11 +9195,6 @@ entities: - type: Transform pos: 68.5,32.5 parent: 2 - - uid: 3485 - components: - - type: Transform - pos: 47.5,20.5 - parent: 2 - uid: 4729 components: - type: Transform @@ -9313,19 +9268,16 @@ entities: - uid: 13323 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 - uid: 13769 components: - type: Transform - rot: -1.5707963267948966 rad pos: -5.5,-20.5 parent: 2 - uid: 13963 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-22.5 parent: 2 - proto: AirlockMaintMedLocked @@ -9357,11 +9309,6 @@ entities: parent: 2 - proto: AirlockMaintRnDLocked entities: - - uid: 232 - components: - - type: Transform - pos: 57.5,7.5 - parent: 2 - uid: 3511 components: - type: Transform @@ -9379,7 +9326,12 @@ entities: parent: 2 - proto: AirlockMaintRnDMedLocked entities: - - uid: 5399 + - uid: 1470 + components: + - type: Transform + pos: 57.5,7.5 + parent: 2 + - uid: 15364 components: - type: Transform pos: 56.5,4.5 @@ -9394,7 +9346,6 @@ entities: - uid: 3206 components: - type: Transform - rot: 3.141592653589793 rad pos: 33.5,32.5 parent: 2 - uid: 7737 @@ -9412,7 +9363,6 @@ entities: - uid: 2253 components: - type: Transform - rot: 1.5707963267948966 rad pos: 20.5,-8.5 parent: 2 - proto: AirlockMedicalGlassLocked @@ -9493,7 +9443,6 @@ entities: - uid: 2136 components: - type: Transform - rot: 3.141592653589793 rad pos: 5.5,17.5 parent: 2 - proto: AirlockResearchDirectorGlassLocked @@ -9526,10 +9475,10 @@ entities: parent: 2 - proto: AirlockScienceLocked entities: - - uid: 5247 + - uid: 512 components: - type: Transform - pos: 45.5,12.5 + pos: 43.5,10.5 parent: 2 - uid: 5249 components: @@ -9642,6 +9591,14 @@ entities: - type: Transform pos: 59.5,18.5 parent: 2 + - uid: 202 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 6126 - uid: 371 components: - type: Transform @@ -9676,7 +9633,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12528 + - 5859 - uid: 4554 components: - type: Transform @@ -9852,6 +9809,9 @@ entities: - type: Transform pos: 33.5,21.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5859 - uid: 12531 components: - type: Transform @@ -10077,6 +10037,13 @@ entities: - type: Transform pos: 28.698141,-41.39218 parent: 2 +- proto: AnalysisComputerCircuitboard + entities: + - uid: 13492 + components: + - type: Transform + pos: 63.442497,9.333562 + parent: 2 - proto: AnomalyScanner entities: - uid: 1838 @@ -10179,7 +10146,7 @@ entities: - uid: 1316 components: - type: MetaData - name: Departures APC + name: Evac APC - type: Transform rot: 3.141592653589793 rad pos: -4.5,-2.5 @@ -10194,14 +10161,6 @@ entities: - type: PowerNetworkBattery loadingNetworkDemand: 5 supplyRampPosition: 2.4463015 - - uid: 1569 - components: - - type: MetaData - name: Engineering South APC - - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-37.5 - parent: 2 - uid: 1688 components: - type: MetaData @@ -10235,6 +10194,8 @@ entities: parent: 2 - uid: 2451 components: + - type: MetaData + name: Bridge Hallway APC - type: Transform rot: -1.5707963267948966 rad pos: 28.5,33.5 @@ -10308,13 +10269,13 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,7.5 parent: 2 - - uid: 4325 + - uid: 4647 components: - type: MetaData - name: Salvage Bay APC + name: Engineering South APC - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,18.5 + rot: 3.141592653589793 rad + pos: 25.5,-37.5 parent: 2 - uid: 4703 components: @@ -10473,6 +10434,8 @@ entities: parent: 2 - uid: 5689 components: + - type: MetaData + name: Med Maints APC - type: Transform rot: 3.141592653589793 rad pos: 69.5,9.5 @@ -10564,12 +10527,16 @@ entities: parent: 2 - uid: 6697 components: + - type: MetaData + name: Library APC - type: Transform rot: 3.141592653589793 rad pos: 11.5,2.5 parent: 2 - uid: 6717 components: + - type: MetaData + name: EVA Hallway APC - type: Transform rot: -1.5707963267948966 rad pos: 7.5,3.5 @@ -10830,6 +10797,13 @@ entities: - type: Transform pos: -7.5,-17.5 parent: 2 +- proto: ArtifactAnalyzerMachineCircuitboard + entities: + - uid: 15428 + components: + - type: Transform + pos: 63.531895,9.595779 + parent: 2 - proto: ArtistCircuitBoard entities: - uid: 14277 @@ -10839,6 +10813,11 @@ entities: parent: 2 - proto: Ashtray entities: + - uid: 4649 + components: + - type: Transform + pos: 30.664326,2.481029 + parent: 2 - uid: 15304 components: - type: Transform @@ -10895,12 +10874,24 @@ entities: rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 + - uid: 2450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 2 - uid: 2609 components: - type: Transform rot: 1.5707963267948966 rad pos: -19.5,-16.5 parent: 2 + - uid: 2628 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-1.5 + parent: 2 - uid: 2666 components: - type: Transform @@ -10913,12 +10904,24 @@ entities: rot: 1.5707963267948966 rad pos: -19.5,-9.5 parent: 2 + - uid: 4920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,0.5 + parent: 2 - uid: 5262 components: - type: Transform rot: -1.5707963267948966 rad pos: 28.5,-10.5 parent: 2 + - uid: 5754 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 - uid: 6591 components: - type: Transform @@ -11002,6 +11005,151 @@ entities: - type: Transform pos: 50.5,-27.5 parent: 2 + - uid: 15188 + components: + - type: Transform + pos: 34.5,-30.5 + parent: 2 + - uid: 15207 + components: + - type: Transform + pos: 35.5,-30.5 + parent: 2 + - uid: 15213 + components: + - type: Transform + pos: 36.5,-30.5 + parent: 2 + - uid: 15218 + components: + - type: Transform + pos: 36.5,-31.5 + parent: 2 + - uid: 15219 + components: + - type: Transform + pos: 35.5,-31.5 + parent: 2 + - uid: 15220 + components: + - type: Transform + pos: 34.5,-31.5 + parent: 2 + - uid: 15231 + components: + - type: Transform + pos: 34.5,-32.5 + parent: 2 + - uid: 15309 + components: + - type: Transform + pos: 35.5,-32.5 + parent: 2 + - uid: 15317 + components: + - type: Transform + pos: 36.5,-32.5 + parent: 2 + - uid: 15318 + components: + - type: Transform + pos: 46.5,-44.5 + parent: 2 + - uid: 15332 + components: + - type: Transform + pos: 47.5,-44.5 + parent: 2 + - uid: 15333 + components: + - type: Transform + pos: 48.5,-44.5 + parent: 2 + - uid: 15340 + components: + - type: Transform + pos: 49.5,-44.5 + parent: 2 + - uid: 15341 + components: + - type: Transform + pos: 49.5,-45.5 + parent: 2 + - uid: 15342 + components: + - type: Transform + pos: 48.5,-45.5 + parent: 2 + - uid: 15343 + components: + - type: Transform + pos: 47.5,-45.5 + parent: 2 + - uid: 15344 + components: + - type: Transform + pos: 46.5,-45.5 + parent: 2 + - uid: 15345 + components: + - type: Transform + pos: 46.5,-46.5 + parent: 2 + - uid: 15346 + components: + - type: Transform + pos: 47.5,-46.5 + parent: 2 + - uid: 15347 + components: + - type: Transform + pos: 48.5,-46.5 + parent: 2 + - uid: 15348 + components: + - type: Transform + pos: 49.5,-46.5 + parent: 2 + - uid: 15349 + components: + - type: Transform + pos: 49.5,-47.5 + parent: 2 + - uid: 15350 + components: + - type: Transform + pos: 48.5,-47.5 + parent: 2 + - uid: 15351 + components: + - type: Transform + pos: 47.5,-47.5 + parent: 2 + - uid: 15352 + components: + - type: Transform + pos: 46.5,-47.5 + parent: 2 + - uid: 15353 + components: + - type: Transform + pos: 46.5,-48.5 + parent: 2 + - uid: 15354 + components: + - type: Transform + pos: 47.5,-48.5 + parent: 2 + - uid: 15355 + components: + - type: Transform + pos: 48.5,-48.5 + parent: 2 + - uid: 15356 + components: + - type: Transform + pos: 49.5,-48.5 + parent: 2 - proto: AtmosFixFreezerMarker entities: - uid: 6535 @@ -11274,15 +11422,20 @@ entities: - type: Transform pos: 59.5,32.5 parent: 2 + - uid: 8434 + components: + - type: Transform + pos: 59.5,-4.5 + parent: 2 - uid: 9623 components: - type: Transform pos: 47.5,4.5 parent: 2 - - uid: 10765 + - uid: 10669 components: - type: Transform - pos: 63.5,4.5 + pos: 11.5,-42.5 parent: 2 - uid: 12245 components: @@ -11344,15 +11497,10 @@ entities: - type: Transform pos: 107.5,-23.5 parent: 2 - - uid: 13114 + - uid: 15388 components: - type: Transform - pos: 66.5,4.5 - parent: 2 - - uid: 13470 - components: - - type: Transform - pos: 10.5,-40.5 + pos: 62.5,-4.5 parent: 2 - proto: BedsheetCaptain entities: @@ -11363,10 +11511,10 @@ entities: parent: 2 - proto: BedsheetCE entities: - - uid: 13471 + - uid: 6115 components: - type: Transform - pos: 10.5,-40.5 + pos: 11.5,-42.5 parent: 2 - proto: BedsheetClown entities: @@ -11602,25 +11750,30 @@ entities: - type: Transform pos: 35.5,-29.5 parent: 2 - - uid: 150 + - uid: 779 components: - type: Transform - pos: 47.5,12.5 + pos: 16.5,-31.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: 12.5,-27.5 parent: 2 - uid: 895 components: - type: Transform pos: 7.5,36.5 parent: 2 - - uid: 4257 + - uid: 924 components: - type: Transform - pos: 35.5,-33.5 + pos: 12.5,-26.5 parent: 2 - - uid: 5124 + - uid: 4257 components: - type: Transform - pos: 16.5,-31.5 + pos: 35.5,-33.5 parent: 2 - uid: 5351 components: @@ -11647,6 +11800,22 @@ entities: - type: Transform pos: 4.5,27.5 parent: 2 + - uid: 8248 + components: + - type: Transform + pos: 45.5,12.5 + parent: 2 + - type: AccessReader + access: + - - Research + - uid: 11022 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - type: AccessReader + access: + - - Research - uid: 12890 components: - type: Transform @@ -11667,18 +11836,6 @@ entities: - type: Transform pos: 47.5,-11.5 parent: 2 -- proto: BlastDoorOpen - entities: - - uid: 2834 - components: - - type: Transform - pos: 12.5,-26.5 - parent: 2 - - uid: 2835 - components: - - type: Transform - pos: 12.5,-27.5 - parent: 2 - proto: BlockGameArcade entities: - uid: 6617 @@ -11797,9 +11954,10 @@ entities: - type: Transform pos: 44.5,9.5 parent: 2 - - uid: 13118 + - uid: 13431 components: - type: Transform + rot: 3.141592653589793 rad pos: 45.5,9.5 parent: 2 - uid: 14630 @@ -11862,7 +12020,7 @@ entities: - uid: 12101 components: - type: Transform - pos: 17.693493,40.85169 + pos: 17.633192,41.919933 parent: 2 - proto: BoxFolderBlue entities: @@ -12139,6 +12297,12 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-49.5 parent: 2 + - uid: 8334 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,11.5 + parent: 2 - uid: 8428 components: - type: Transform @@ -12150,6 +12314,12 @@ entities: rot: 3.141592653589793 rad pos: 31.777786,17.53082 parent: 2 + - uid: 8529 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-29.5 + parent: 2 - uid: 10991 components: - type: Transform @@ -12178,6 +12348,34 @@ entities: - type: Transform pos: 61.5,26.5 parent: 2 + - uid: 13474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 2 + - uid: 13475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 2 + - uid: 13479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 2 + - uid: 13483 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - uid: 13484 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 - uid: 14914 components: - type: Transform @@ -12196,6 +12394,12 @@ entities: rot: 3.141592653589793 rad pos: 4.5,36.5 parent: 2 + - uid: 15397 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 2 - proto: ButtonFrameExit entities: - uid: 15128 @@ -12223,12 +12427,24 @@ entities: rot: 1.5707963267948966 rad pos: 5.5,22.5 parent: 2 + - uid: 8986 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-43.5 + parent: 2 - uid: 11145 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,27.5 parent: 2 + - uid: 11208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 - proto: CableApcExtension entities: - uid: 42 @@ -12361,6 +12577,11 @@ entities: - type: Transform pos: 37.5,-42.5 parent: 2 + - uid: 934 + components: + - type: Transform + pos: 25.5,-37.5 + parent: 2 - uid: 953 components: - type: Transform @@ -12371,6 +12592,21 @@ entities: - type: Transform pos: 13.5,-44.5 parent: 2 + - uid: 960 + components: + - type: Transform + pos: 25.5,-36.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 - uid: 1000 components: - type: Transform @@ -12476,6 +12712,11 @@ entities: - type: Transform pos: 52.5,-12.5 parent: 2 + - uid: 1710 + components: + - type: Transform + pos: 11.5,-26.5 + parent: 2 - uid: 1738 components: - type: Transform @@ -12556,11 +12797,6 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 2 - - uid: 2146 - components: - - type: Transform - pos: 13.5,18.5 - parent: 2 - uid: 2154 components: - type: Transform @@ -12986,6 +13222,11 @@ entities: - type: Transform pos: 22.5,4.5 parent: 2 + - uid: 3982 + components: + - type: Transform + pos: 32.5,-27.5 + parent: 2 - uid: 3999 components: - type: Transform @@ -13071,6 +13312,11 @@ entities: - type: Transform pos: 16.5,-39.5 parent: 2 + - uid: 4325 + components: + - type: Transform + pos: 42.5,-43.5 + parent: 2 - uid: 4335 components: - type: Transform @@ -13096,6 +13342,31 @@ entities: - type: Transform pos: 14.5,33.5 parent: 2 + - uid: 4644 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 2 + - uid: 4648 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 2 + - uid: 4656 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 + - uid: 4673 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 2 + - uid: 4674 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 - uid: 4677 components: - type: Transform @@ -13196,16 +13467,6 @@ entities: - type: Transform pos: 32.5,-45.5 parent: 2 - - uid: 4711 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 2 - - uid: 4712 - components: - - type: Transform - pos: 26.5,-36.5 - parent: 2 - uid: 4713 components: - type: Transform @@ -13286,11 +13547,6 @@ entities: - type: Transform pos: 17.5,-35.5 parent: 2 - - uid: 4730 - components: - - type: Transform - pos: 16.5,-35.5 - parent: 2 - uid: 4731 components: - type: Transform @@ -13346,11 +13602,6 @@ entities: - type: Transform pos: 13.5,-33.5 parent: 2 - - uid: 4742 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 2 - uid: 4745 components: - type: Transform @@ -13696,25 +13947,10 @@ entities: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 4957 - components: - - type: Transform - pos: 38.5,-33.5 - parent: 2 - - uid: 4958 - components: - - type: Transform - pos: 38.5,-34.5 - parent: 2 - - uid: 4959 - components: - - type: Transform - pos: 38.5,-35.5 - parent: 2 - uid: 4960 components: - type: Transform - pos: 39.5,-35.5 + pos: 32.5,-26.5 parent: 2 - uid: 4961 components: @@ -13724,12 +13960,12 @@ entities: - uid: 4962 components: - type: Transform - pos: 31.5,-25.5 + pos: 40.5,-25.5 parent: 2 - uid: 4963 components: - type: Transform - pos: 31.5,-26.5 + pos: 39.5,-25.5 parent: 2 - uid: 4964 components: @@ -13766,11 +14002,6 @@ entities: - type: Transform pos: 5.5,40.5 parent: 2 - - uid: 5121 - components: - - type: Transform - pos: 40.5,-35.5 - parent: 2 - uid: 5158 components: - type: Transform @@ -13904,7 +14135,7 @@ entities: - uid: 5396 components: - type: Transform - pos: 40.5,-44.5 + pos: 41.5,-43.5 parent: 2 - uid: 5412 components: @@ -14509,7 +14740,7 @@ entities: - uid: 6869 components: - type: Transform - pos: 10.5,18.5 + pos: 44.5,-43.5 parent: 2 - uid: 6904 components: @@ -14521,26 +14752,6 @@ entities: - type: Transform pos: 10.5,-26.5 parent: 2 - - uid: 6921 - components: - - type: Transform - pos: 10.5,-27.5 - parent: 2 - - uid: 6922 - components: - - type: Transform - pos: 10.5,-28.5 - parent: 2 - - uid: 6923 - components: - - type: Transform - pos: 10.5,-29.5 - parent: 2 - - uid: 6924 - components: - - type: Transform - pos: 10.5,-30.5 - parent: 2 - uid: 6925 components: - type: Transform @@ -15096,6 +15307,11 @@ entities: - type: Transform pos: 15.5,-57.5 parent: 2 + - uid: 7243 + components: + - type: Transform + pos: 43.5,-43.5 + parent: 2 - uid: 7246 components: - type: Transform @@ -15161,11 +15377,6 @@ entities: - type: Transform pos: 24.5,-27.5 parent: 2 - - uid: 7376 - components: - - type: Transform - pos: 41.5,-24.5 - parent: 2 - uid: 7435 components: - type: Transform @@ -15611,6 +15822,11 @@ entities: - type: Transform pos: -15.5,-0.5 parent: 2 + - uid: 7752 + components: + - type: Transform + pos: 39.5,25.5 + parent: 2 - uid: 7823 components: - type: Transform @@ -15636,11 +15852,6 @@ entities: - type: Transform pos: 13.5,-50.5 parent: 2 - - uid: 7942 - components: - - type: Transform - pos: -23.5,-12.5 - parent: 2 - uid: 7972 components: - type: Transform @@ -16191,6 +16402,11 @@ entities: - type: Transform pos: 36.5,18.5 parent: 2 + - uid: 8396 + components: + - type: Transform + pos: 39.5,24.5 + parent: 2 - uid: 8407 components: - type: Transform @@ -16476,26 +16692,11 @@ entities: - type: Transform pos: 39.5,22.5 parent: 2 - - uid: 8531 - components: - - type: Transform - pos: 40.5,24.5 - parent: 2 - - uid: 8532 - components: - - type: Transform - pos: 40.5,25.5 - parent: 2 - uid: 8533 components: - type: Transform pos: 40.5,26.5 parent: 2 - - uid: 8534 - components: - - type: Transform - pos: 40.5,27.5 - parent: 2 - uid: 8535 components: - type: Transform @@ -17581,11 +17782,6 @@ entities: - type: Transform pos: 50.5,-11.5 parent: 2 - - uid: 9706 - components: - - type: Transform - pos: 50.5,-12.5 - parent: 2 - uid: 9710 components: - type: Transform @@ -18436,11 +18632,6 @@ entities: - type: Transform pos: 24.5,-32.5 parent: 2 - - uid: 10037 - components: - - type: Transform - pos: 26.5,-32.5 - parent: 2 - uid: 10038 components: - type: Transform @@ -20816,21 +21007,6 @@ entities: - type: Transform pos: 49.5,-48.5 parent: 2 - - uid: 12949 - components: - - type: Transform - pos: 41.5,-44.5 - parent: 2 - - uid: 12950 - components: - - type: Transform - pos: 42.5,-44.5 - parent: 2 - - uid: 12951 - components: - - type: Transform - pos: 43.5,-44.5 - parent: 2 - uid: 12952 components: - type: Transform @@ -21881,16 +22057,6 @@ entities: - type: Transform pos: 41.5,-12.5 parent: 2 - - uid: 15317 - components: - - type: Transform - pos: 24.5,-33.5 - parent: 2 - - uid: 15318 - components: - - type: Transform - pos: 24.5,-34.5 - parent: 2 - uid: 15319 components: - type: Transform @@ -21911,20 +22077,30 @@ entities: - type: Transform pos: 27.5,-31.5 parent: 2 - - uid: 15332 + - uid: 15334 components: - type: Transform - pos: 28.5,-34.5 + pos: 28.5,-32.5 parent: 2 - - uid: 15333 + - uid: 15387 components: - type: Transform - pos: 28.5,-33.5 + pos: 39.5,27.5 parent: 2 - - uid: 15334 + - uid: 15402 components: - type: Transform - pos: 28.5,-32.5 + pos: 11.5,-27.5 + parent: 2 + - uid: 15403 + components: + - type: Transform + pos: 11.5,-28.5 + parent: 2 + - uid: 15404 + components: + - type: Transform + pos: 11.5,-29.5 parent: 2 - proto: CableApcStack entities: @@ -22027,11 +22203,6 @@ entities: - type: Transform pos: 25.5,-31.5 parent: 2 - - uid: 803 - components: - - type: Transform - pos: 23.5,-37.5 - parent: 2 - uid: 828 components: - type: Transform @@ -22272,6 +22443,11 @@ entities: - type: Transform pos: 22.5,7.5 parent: 2 + - uid: 4245 + components: + - type: Transform + pos: 22.5,-36.5 + parent: 2 - uid: 4307 components: - type: Transform @@ -22287,6 +22463,11 @@ entities: - type: Transform pos: 23.5,-42.5 parent: 2 + - uid: 4503 + components: + - type: Transform + pos: 22.5,-37.5 + parent: 2 - uid: 4507 components: - type: Transform @@ -22467,6 +22648,11 @@ entities: - type: Transform pos: 27.5,-30.5 parent: 2 + - uid: 4555 + components: + - type: Transform + pos: 22.5,-38.5 + parent: 2 - uid: 4585 components: - type: Transform @@ -22572,31 +22758,6 @@ entities: - type: Transform pos: 21.5,-39.5 parent: 2 - - uid: 4784 - components: - - type: Transform - pos: 21.5,-38.5 - parent: 2 - - uid: 4785 - components: - - type: Transform - pos: 21.5,-37.5 - parent: 2 - - uid: 4786 - components: - - type: Transform - pos: 21.5,-36.5 - parent: 2 - - uid: 4787 - components: - - type: Transform - pos: 21.5,-35.5 - parent: 2 - - uid: 4788 - components: - - type: Transform - pos: 20.5,-35.5 - parent: 2 - uid: 4789 components: - type: Transform @@ -23287,11 +23448,6 @@ entities: - type: Transform pos: 16.5,-13.5 parent: 2 - - uid: 5971 - components: - - type: Transform - pos: 16.5,-14.5 - parent: 2 - uid: 5972 components: - type: Transform @@ -25187,6 +25343,16 @@ entities: - type: Transform pos: 22.5,-14.5 parent: 2 + - uid: 6506 + components: + - type: Transform + pos: 19.5,-36.5 + parent: 2 + - uid: 6510 + components: + - type: Transform + pos: 20.5,-39.5 + parent: 2 - uid: 6897 components: - type: Transform @@ -26167,6 +26333,11 @@ entities: - type: Transform pos: 32.5,-18.5 parent: 2 + - uid: 9892 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 - uid: 10228 components: - type: Transform @@ -26887,6 +27058,21 @@ entities: - type: Transform pos: 13.5,-52.5 parent: 2 + - uid: 13471 + components: + - type: Transform + pos: 19.5,-39.5 + parent: 2 + - uid: 13472 + components: + - type: Transform + pos: 19.5,-38.5 + parent: 2 + - uid: 13485 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 - uid: 13689 components: - type: Transform @@ -27087,6 +27273,11 @@ entities: - type: Transform pos: 12.5,36.5 parent: 2 + - uid: 609 + components: + - type: Transform + pos: 29.5,-35.5 + parent: 2 - uid: 614 components: - type: Transform @@ -27142,6 +27333,11 @@ entities: - type: Transform pos: 9.5,21.5 parent: 2 + - uid: 1324 + components: + - type: Transform + pos: 18.5,-35.5 + parent: 2 - uid: 1327 components: - type: Transform @@ -27527,36 +27723,11 @@ entities: - type: Transform pos: 21.5,-40.5 parent: 2 - - uid: 4644 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 2 - - uid: 4645 - components: - - type: Transform - pos: 26.5,-36.5 - parent: 2 - uid: 4646 components: - type: Transform pos: 26.5,-35.5 parent: 2 - - uid: 4647 - components: - - type: Transform - pos: 20.5,-34.5 - parent: 2 - - uid: 4648 - components: - - type: Transform - pos: 19.5,-34.5 - parent: 2 - - uid: 4649 - components: - - type: Transform - pos: 18.5,-34.5 - parent: 2 - uid: 4650 components: - type: Transform @@ -27582,16 +27753,6 @@ entities: - type: Transform pos: 13.5,-34.5 parent: 2 - - uid: 4655 - components: - - type: Transform - pos: 12.5,-34.5 - parent: 2 - - uid: 4656 - components: - - type: Transform - pos: 11.5,-34.5 - parent: 2 - uid: 4657 components: - type: Transform @@ -27650,22 +27811,17 @@ entities: - uid: 4671 components: - type: Transform - pos: 27.5,-36.5 - parent: 2 - - uid: 4673 - components: - - type: Transform - pos: 28.5,-36.5 + pos: 21.5,-35.5 parent: 2 - - uid: 4674 + - uid: 4675 components: - type: Transform - pos: 29.5,-36.5 + pos: 29.5,-37.5 parent: 2 - - uid: 4675 + - uid: 4730 components: - type: Transform - pos: 29.5,-37.5 + pos: 32.5,-27.5 parent: 2 - uid: 4773 components: @@ -27682,6 +27838,21 @@ entities: - type: Transform pos: 38.5,-38.5 parent: 2 + - uid: 4785 + components: + - type: Transform + pos: 20.5,-35.5 + parent: 2 + - uid: 4786 + components: + - type: Transform + pos: 19.5,-35.5 + parent: 2 + - uid: 4787 + components: + - type: Transform + pos: 17.5,-35.5 + parent: 2 - uid: 4875 components: - type: Transform @@ -27712,6 +27883,16 @@ entities: - type: Transform pos: 3.5,-27.5 parent: 2 + - uid: 4958 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 2 + - uid: 5033 + components: + - type: Transform + pos: 32.5,-26.5 + parent: 2 - uid: 5116 components: - type: Transform @@ -27757,6 +27938,11 @@ entities: - type: Transform pos: 48.5,-13.5 parent: 2 + - uid: 6116 + components: + - type: Transform + pos: 25.5,-36.5 + parent: 2 - uid: 6358 components: - type: Transform @@ -27792,21 +27978,11 @@ entities: - type: Transform pos: 36.5,-24.5 parent: 2 - - uid: 6680 - components: - - type: Transform - pos: 38.5,-26.5 - parent: 2 - uid: 6766 components: - type: Transform pos: 14.5,-41.5 parent: 2 - - uid: 6767 - components: - - type: Transform - pos: 37.5,-25.5 - parent: 2 - uid: 6768 components: - type: Transform @@ -27847,6 +28023,11 @@ entities: - type: Transform pos: 26.5,33.5 parent: 2 + - uid: 6923 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 2 - uid: 6940 components: - type: Transform @@ -28307,11 +28488,6 @@ entities: - type: Transform pos: 13.5,23.5 parent: 2 - - uid: 7243 - components: - - type: Transform - pos: 10.5,18.5 - parent: 2 - uid: 7254 components: - type: Transform @@ -28862,6 +29038,11 @@ entities: - type: Transform pos: 45.5,35.5 parent: 2 + - uid: 8531 + components: + - type: Transform + pos: 39.5,26.5 + parent: 2 - uid: 8536 components: - type: Transform @@ -28917,6 +29098,11 @@ entities: - type: Transform pos: 31.5,17.5 parent: 2 + - uid: 8562 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 - uid: 8570 components: - type: Transform @@ -30007,11 +30193,6 @@ entities: - type: Transform pos: 39.5,-18.5 parent: 2 - - uid: 9854 - components: - - type: Transform - pos: 36.5,-20.5 - parent: 2 - uid: 9855 components: - type: Transform @@ -30137,65 +30318,10 @@ entities: - type: Transform pos: 41.5,-37.5 parent: 2 - - uid: 9885 - components: - - type: Transform - pos: 38.5,-37.5 - parent: 2 - - uid: 9886 - components: - - type: Transform - pos: 38.5,-36.5 - parent: 2 - - uid: 9887 - components: - - type: Transform - pos: 38.5,-35.5 - parent: 2 - - uid: 9888 - components: - - type: Transform - pos: 38.5,-34.5 - parent: 2 - - uid: 9889 - components: - - type: Transform - pos: 38.5,-33.5 - parent: 2 - - uid: 9890 - components: - - type: Transform - pos: 38.5,-32.5 - parent: 2 - uid: 9891 components: - type: Transform - pos: 38.5,-31.5 - parent: 2 - - uid: 9892 - components: - - type: Transform - pos: 38.5,-30.5 - parent: 2 - - uid: 9893 - components: - - type: Transform - pos: 38.5,-29.5 - parent: 2 - - uid: 9894 - components: - - type: Transform - pos: 38.5,-28.5 - parent: 2 - - uid: 9895 - components: - - type: Transform - pos: 38.5,-27.5 - parent: 2 - - uid: 9898 - components: - - type: Transform - pos: 38.5,-25.5 + pos: 25.5,-37.5 parent: 2 - uid: 9904 components: @@ -30232,6 +30358,11 @@ entities: - type: Transform pos: 36.5,33.5 parent: 2 + - uid: 10445 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 - uid: 10672 components: - type: Transform @@ -30427,6 +30558,11 @@ entities: - type: Transform pos: 43.5,14.5 parent: 2 + - uid: 10765 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 - uid: 10777 components: - type: Transform @@ -30857,6 +30993,11 @@ entities: - type: Transform pos: 65.5,-5.5 parent: 2 + - uid: 11192 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 - uid: 11197 components: - type: Transform @@ -31062,6 +31203,11 @@ entities: - type: Transform pos: 49.5,-14.5 parent: 2 + - uid: 11472 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 - uid: 11692 components: - type: Transform @@ -31722,6 +31868,11 @@ entities: - type: Transform pos: -23.5,-6.5 parent: 2 + - uid: 13695 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 - uid: 13701 components: - type: Transform @@ -32412,6 +32563,11 @@ entities: - type: Transform pos: 9.5,18.5 parent: 2 + - uid: 14784 + components: + - type: Transform + pos: 28.5,-35.5 + parent: 2 - uid: 14856 components: - type: Transform @@ -32722,6 +32878,146 @@ entities: - type: Transform pos: 26.5,-31.5 parent: 2 + - uid: 15338 + components: + - type: Transform + pos: 27.5,-35.5 + parent: 2 + - uid: 15385 + components: + - type: Transform + pos: 39.5,27.5 + parent: 2 + - uid: 15386 + components: + - type: Transform + pos: 38.5,27.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: 30.5,-35.5 + parent: 2 + - uid: 15390 + components: + - type: Transform + pos: 31.5,-35.5 + parent: 2 + - uid: 15391 + components: + - type: Transform + pos: 31.5,-36.5 + parent: 2 + - uid: 15392 + components: + - type: Transform + pos: 31.5,-37.5 + parent: 2 + - uid: 15393 + components: + - type: Transform + pos: 31.5,-38.5 + parent: 2 + - uid: 15394 + components: + - type: Transform + pos: 30.5,-38.5 + parent: 2 + - uid: 15395 + components: + - type: Transform + pos: 29.5,-38.5 + parent: 2 + - uid: 15396 + components: + - type: Transform + pos: 29.5,-37.5 + parent: 2 + - uid: 15426 + components: + - type: Transform + pos: 33.5,-39.5 + parent: 2 + - uid: 15429 + components: + - type: Transform + pos: 34.5,-39.5 + parent: 2 + - uid: 15430 + components: + - type: Transform + pos: 32.5,-39.5 + parent: 2 + - uid: 15431 + components: + - type: Transform + pos: 31.5,-39.5 + parent: 2 + - uid: 15432 + components: + - type: Transform + pos: 27.5,-31.5 + parent: 2 + - uid: 15433 + components: + - type: Transform + pos: 29.5,-31.5 + parent: 2 + - uid: 15434 + components: + - type: Transform + pos: 30.5,-31.5 + parent: 2 + - uid: 15435 + components: + - type: Transform + pos: 31.5,-31.5 + parent: 2 + - uid: 15436 + components: + - type: Transform + pos: 28.5,-31.5 + parent: 2 + - uid: 15437 + components: + - type: Transform + pos: 31.5,-30.5 + parent: 2 + - uid: 15438 + components: + - type: Transform + pos: 31.5,-29.5 + parent: 2 + - uid: 15439 + components: + - type: Transform + pos: 31.5,-28.5 + parent: 2 + - uid: 15440 + components: + - type: Transform + pos: 31.5,-27.5 + parent: 2 + - uid: 15443 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 2 + - uid: 15444 + components: + - type: Transform + pos: 33.5,-25.5 + parent: 2 + - uid: 15445 + components: + - type: Transform + pos: 34.5,-25.5 + parent: 2 + - uid: 15446 + components: + - type: Transform + pos: 35.5,-25.5 + parent: 2 - proto: CableMVStack entities: - uid: 5628 @@ -32851,10 +33147,10 @@ entities: - type: Transform pos: 45.5,-37.5 parent: 2 - - uid: 12998 + - uid: 7846 components: - type: Transform - pos: 34.5,-45.5 + pos: 58.5,10.5 parent: 2 - proto: Carpet entities: @@ -32953,21 +33249,6 @@ entities: - type: Transform pos: 36.5,-6.5 parent: 2 - - uid: 1661 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - - uid: 1662 - components: - - type: Transform - pos: 30.5,-2.5 - parent: 2 - - uid: 1664 - components: - - type: Transform - pos: 29.5,-2.5 - parent: 2 - uid: 2516 components: - type: Transform @@ -33038,12 +33319,6 @@ entities: - type: Transform pos: 37.5,40.5 parent: 2 - - uid: 2697 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - uid: 2698 components: - type: Transform @@ -33292,21 +33567,6 @@ entities: - type: Transform pos: 14.5,15.5 parent: 2 - - uid: 12374 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 2 - - uid: 12793 - components: - - type: Transform - pos: 31.5,-2.5 - parent: 2 - - uid: 15085 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 - proto: CarpetBlack entities: - uid: 430 @@ -33592,6 +33852,24 @@ entities: parent: 2 - proto: CarpetOrange entities: + - uid: 97 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 2 + - uid: 611 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-41.5 + parent: 2 + - uid: 619 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-41.5 + parent: 2 - uid: 3431 components: - type: Transform @@ -33785,6 +34063,11 @@ entities: - type: Transform pos: 47.5,21.5 parent: 2 + - uid: 1166 + components: + - type: Transform + pos: 38.5,-33.5 + parent: 2 - uid: 1215 components: - type: Transform @@ -34021,21 +34304,6 @@ entities: - type: Transform pos: 21.5,-40.5 parent: 2 - - uid: 1474 - components: - - type: Transform - pos: 13.5,-38.5 - parent: 2 - - uid: 1475 - components: - - type: Transform - pos: 12.5,-38.5 - parent: 2 - - uid: 1477 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 2 - uid: 1478 components: - type: Transform @@ -34076,6 +34344,18 @@ entities: - type: Transform pos: 23.5,-21.5 parent: 2 + - uid: 1880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,6.5 + parent: 2 + - uid: 2062 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-30.5 + parent: 2 - uid: 2264 components: - type: Transform @@ -34100,6 +34380,18 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,34.5 parent: 2 + - uid: 2834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 2 + - uid: 2835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 2 - uid: 3172 components: - type: Transform @@ -34418,6 +34710,16 @@ entities: rot: -1.5707963267948966 rad pos: 11.5,35.5 parent: 2 + - uid: 4712 + components: + - type: Transform + pos: 32.5,-24.5 + parent: 2 + - uid: 4742 + components: + - type: Transform + pos: 32.5,-23.5 + parent: 2 - uid: 4776 components: - type: Transform @@ -34448,6 +34750,17 @@ entities: - type: Transform pos: 21.5,-39.5 parent: 2 + - uid: 4784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-14.5 + parent: 2 + - uid: 4788 + components: + - type: Transform + pos: 32.5,-25.5 + parent: 2 - uid: 4799 components: - type: Transform @@ -34469,6 +34782,11 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-21.5 parent: 2 + - uid: 5107 + components: + - type: Transform + pos: 39.5,-39.5 + parent: 2 - uid: 5123 components: - type: Transform @@ -34484,6 +34802,12 @@ entities: - type: Transform pos: 46.5,-34.5 parent: 2 + - uid: 5243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 2 - uid: 5499 components: - type: Transform @@ -34525,11 +34849,7 @@ entities: - uid: 5623 components: - type: Transform - pos: 11.5,-26.5 - parent: 2 - - uid: 5624 - components: - - type: Transform + rot: 1.5707963267948966 rad pos: 10.5,-26.5 parent: 2 - uid: 5663 @@ -34537,6 +34857,12 @@ entities: - type: Transform pos: 46.5,-29.5 parent: 2 + - uid: 5673 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 - uid: 5681 components: - type: Transform @@ -34911,6 +35237,17 @@ entities: rot: 3.141592653589793 rad pos: 40.5,-19.5 parent: 2 + - uid: 9706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,6.5 + parent: 2 + - uid: 10441 + components: + - type: Transform + pos: 39.5,-38.5 + parent: 2 - uid: 10711 components: - type: Transform @@ -36504,21 +36841,6 @@ entities: - type: Transform pos: 38.5,-32.5 parent: 2 - - uid: 15218 - components: - - type: Transform - pos: 38.5,-33.5 - parent: 2 - - uid: 15219 - components: - - type: Transform - pos: 38.5,-34.5 - parent: 2 - - uid: 15220 - components: - - type: Transform - pos: 38.5,-35.5 - parent: 2 - uid: 15223 components: - type: Transform @@ -36579,11 +36901,6 @@ entities: - type: Transform pos: 35.5,-34.5 parent: 2 - - uid: 15309 - components: - - type: Transform - pos: 35.5,-38.5 - parent: 2 - uid: 15312 components: - type: Transform @@ -36602,6 +36919,53 @@ entities: rot: 3.141592653589793 rad pos: 26.5,-32.5 parent: 2 + - uid: 15361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 57.5,6.5 + parent: 2 + - uid: 15405 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-29.5 + parent: 2 + - uid: 15406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-28.5 + parent: 2 + - uid: 15407 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-27.5 + parent: 2 + - uid: 15408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 2 + - uid: 15409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,-39.5 + parent: 2 + - uid: 15410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,-39.5 + parent: 2 + - uid: 15447 + components: + - type: Transform + pos: 32.5,-22.5 + parent: 2 - proto: Cautery entities: - uid: 7791 @@ -36640,6 +37004,12 @@ entities: rot: -1.5707963267948966 rad pos: -21.5,-12.5 parent: 2 + - uid: 678 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,-4.5 + parent: 2 - uid: 790 components: - type: Transform @@ -36713,6 +37083,17 @@ entities: rot: -1.5707963267948966 rad pos: 34.5,-5.5 parent: 2 + - uid: 1661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,-4.5 + parent: 2 + - uid: 1664 + components: + - type: Transform + pos: 30.5,-2.5 + parent: 2 - uid: 1833 components: - type: Transform @@ -36737,6 +37118,11 @@ entities: rot: 3.141592653589793 rad pos: 44.5,22.5 parent: 2 + - uid: 2566 + components: + - type: Transform + pos: 29.5,-2.5 + parent: 2 - uid: 3234 components: - type: Transform @@ -36773,12 +37159,6 @@ entities: - type: Transform pos: 55.5,-9.5 parent: 2 - - uid: 5388 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,11.5 - parent: 2 - uid: 5406 components: - type: Transform @@ -37072,6 +37452,13 @@ entities: rot: -1.5707963267948966 rad pos: 30.5,-26.5 parent: 2 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 1475 + components: + - type: Transform + pos: 34.514446,-20.35144 + parent: 2 - proto: ChairMeat entities: - uid: 13071 @@ -37149,6 +37536,17 @@ entities: rot: 1.5707963267948966 rad pos: 35.5,27.5 parent: 2 + - uid: 2632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,11.5 + parent: 2 + - uid: 2678 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 - uid: 2724 components: - type: Transform @@ -37284,6 +37682,12 @@ entities: rot: 3.141592653589793 rad pos: 89.5,31.5 parent: 2 + - uid: 15448 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 - proto: ChairOfficeLight entities: - uid: 940 @@ -37326,11 +37730,6 @@ entities: rot: 3.141592653589793 rad pos: 64.5,24.5 parent: 2 - - uid: 10670 - components: - - type: Transform - pos: 62.5,9.5 - parent: 2 - uid: 10901 components: - type: Transform @@ -37358,12 +37757,6 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-10.5 parent: 2 - - uid: 1166 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 2 - uid: 1167 components: - type: Transform @@ -37376,23 +37769,17 @@ entities: rot: -1.5707963267948966 rad pos: 22.5,-10.5 parent: 2 - - uid: 2689 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,33.5 - parent: 2 - - uid: 2690 + - uid: 2682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,33.5 + rot: 1.5707963267948966 rad + pos: 17.5,33.5 parent: 2 - - uid: 2691 + - uid: 2689 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,32.5 + pos: 23.5,33.5 parent: 2 - uid: 2692 components: @@ -37412,28 +37799,23 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,29.5 parent: 2 - - uid: 2695 + - uid: 3418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,29.5 + rot: 1.5707963267948966 rad + pos: 69.5,27.5 parent: 2 - - uid: 2696 + - uid: 5365 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,30.5 - parent: 2 - - uid: 2728 - components: - - type: Transform - pos: 19.5,33.56914 + pos: 22.5,29.5 parent: 2 - - uid: 3418 + - uid: 5366 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,27.5 + rot: -1.5707963267948966 rad + pos: 22.5,32.5 parent: 2 - uid: 5502 components: @@ -37473,8 +37855,8 @@ entities: - uid: 6504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-12.5 + rot: 1.5707963267948966 rad + pos: 9.5,-41.5 parent: 2 - uid: 8440 components: @@ -37497,10 +37879,17 @@ entities: - type: Transform pos: 114.5,-16.5 parent: 2 - - uid: 13474 + - uid: 12998 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - uid: 13118 components: - type: Transform - pos: 9.853746,-41.642406 + rot: -1.5707963267948966 rad + pos: 22.5,33.5 parent: 2 - uid: 14091 components: @@ -37708,18 +38097,32 @@ entities: - uid: 12104 components: - type: Transform - pos: 17.412243,41.086063 + pos: 17.47,40.764507 parent: 2 - uid: 12105 components: - type: Transform - pos: 17.630993,41.086063 + pos: 17.667917,40.628998 parent: 2 - uid: 12753 components: - type: Transform pos: 6.6187644,19.547955 parent: 2 +- proto: CigarGoldCase + entities: + - uid: 15381 + components: + - type: Transform + pos: 17.50125,41.03553 + parent: 2 +- proto: CigPackBlack + entities: + - uid: 4655 + components: + - type: Transform + pos: 30.383076,2.6165395 + parent: 2 - proto: CigPackGreen entities: - uid: 5523 @@ -37771,11 +38174,6 @@ entities: - type: Transform pos: 24.5,-4.5 parent: 2 - - uid: 1481 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 2 - uid: 2957 components: - type: Transform @@ -37806,6 +38204,11 @@ entities: - type: Transform pos: 36.5,-38.5 parent: 2 + - uid: 5685 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 - uid: 5901 components: - type: Transform @@ -37816,6 +38219,11 @@ entities: - type: Transform pos: 3.5,5.5 parent: 2 + - uid: 8983 + components: + - type: Transform + pos: 67.5,29.5 + parent: 2 - uid: 10837 components: - type: Transform @@ -37848,11 +38256,36 @@ entities: parent: 2 - proto: ClosetEmergencyN2FilledRandom entities: + - uid: 2173 + components: + - type: Transform + pos: 47.5,28.5 + parent: 2 + - uid: 2195 + components: + - type: Transform + pos: 66.5,11.5 + parent: 2 + - uid: 2681 + components: + - type: Transform + pos: 24.5,-5.5 + parent: 2 - uid: 7537 components: - type: Transform pos: -9.5,0.5 parent: 2 + - uid: 12382 + components: + - type: Transform + pos: 5.5,-31.5 + parent: 2 + - uid: 15442 + components: + - type: Transform + pos: 51.5,-20.5 + parent: 2 - proto: ClosetFireFilled entities: - uid: 99 @@ -37885,6 +38318,16 @@ entities: - type: Transform pos: -5.5,0.5 parent: 2 + - uid: 12858 + components: + - type: Transform + pos: 64.5,20.5 + parent: 2 + - uid: 15441 + components: + - type: Transform + pos: 35.5,-20.5 + parent: 2 - proto: ClosetJanitorFilled entities: - uid: 166 @@ -37918,17 +38361,10 @@ entities: parent: 2 - proto: ClosetLegal entities: - - uid: 2712 - components: - - type: Transform - pos: 18.5,33.5 - parent: 2 -- proto: ClosetLegalFilled - entities: - - uid: 6047 + - uid: 7844 components: - type: Transform - pos: 17.5,33.5 + pos: 17.5,29.5 parent: 2 - proto: ClosetMaintenance entities: @@ -37939,6 +38375,11 @@ entities: parent: 2 - proto: ClosetMaintenanceFilledRandom entities: + - uid: 1477 + components: + - type: Transform + pos: 36.5,-20.5 + parent: 2 - uid: 3501 components: - type: Transform @@ -37964,11 +38405,6 @@ entities: - type: Transform pos: 53.5,-20.5 parent: 2 - - uid: 13126 - components: - - type: Transform - pos: 52.5,-20.5 - parent: 2 - uid: 13969 components: - type: Transform @@ -38101,7 +38537,7 @@ entities: - uid: 12103 components: - type: Transform - pos: 17.443493,40.617313 + pos: 19.634092,40.92233 parent: 2 - proto: ClothingBeltHolster entities: @@ -38512,6 +38948,13 @@ entities: - type: Transform pos: 59.604156,3.672451 parent: 2 +- proto: ClothingNeckBling + entities: + - uid: 15377 + components: + - type: Transform + pos: 19.386667,40.962563 + parent: 2 - proto: ClothingNeckCloakGoliathCloak entities: - uid: 12455 @@ -38729,33 +39172,6 @@ entities: - type: Transform pos: 70.51337,28.554468 parent: 2 -- proto: ClothingOuterSanta - entities: - - uid: 15114 - components: - - type: Transform - pos: 40.61844,22.747278 - parent: 2 - - uid: 15115 - components: - - type: Transform - pos: 40.708717,22.802872 - parent: 2 - - uid: 15116 - components: - - type: Transform - pos: 40.52816,22.677786 - parent: 2 - - uid: 15117 - components: - - type: Transform - pos: 40.43094,22.615242 - parent: 2 - - uid: 15118 - components: - - type: Transform - pos: 40.326775,22.566597 - parent: 2 - proto: ClothingOuterSkub entities: - uid: 13075 @@ -39007,6 +39423,12 @@ entities: rot: 1.5707963267948966 rad pos: 12.5,4.5 parent: 2 + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 2 - uid: 2408 components: - type: Transform @@ -39054,11 +39476,6 @@ entities: rot: 1.5707963267948966 rad pos: 21.5,39.5 parent: 2 - - uid: 5033 - components: - - type: Transform - pos: 35.5,3.5 - parent: 2 - uid: 5423 components: - type: Transform @@ -40223,6 +40640,12 @@ entities: parent: 2 - proto: CurtainsOrangeOpen entities: + - uid: 6924 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-42.5 + parent: 2 - uid: 8076 components: - type: Transform @@ -40395,10 +40818,10 @@ entities: parent: 2 - proto: DefaultStationBeaconCryosleep entities: - - uid: 6937 + - uid: 15113 components: - type: Transform - pos: 21.5,17.5 + pos: 21.5,18.5 parent: 2 - proto: DefaultStationBeaconDetectiveRoom entities: @@ -43557,6 +43980,11 @@ entities: - type: Transform pos: 19.5,-5.5 parent: 2 + - uid: 12391 + components: + - type: Transform + pos: 10.5,-40.5 + parent: 2 - uid: 14739 components: - type: Transform @@ -43610,10 +44038,10 @@ entities: parent: 2 - proto: DresserChiefEngineerFilled entities: - - uid: 13469 + - uid: 7376 components: - type: Transform - pos: 9.5,-40.5 + pos: 10.5,-42.5 parent: 2 - proto: DresserChiefMedicalOfficerFilled entities: @@ -43702,6 +44130,11 @@ entities: parent: 2 - proto: DrinkGlass entities: + - uid: 8129 + components: + - type: Transform + pos: 9.473994,-42.448635 + parent: 2 - uid: 11829 components: - type: Transform @@ -43712,19 +44145,12 @@ entities: - type: Transform pos: 67.6423,-14.594364 parent: 2 -- proto: DrinkGlassWhite - entities: - - uid: 15126 - components: - - type: Transform - pos: 36.1319,-8.358889 - parent: 2 - proto: DrinkGoldenCup entities: - uid: 12097 components: - type: Transform - pos: 19.490185,41.41655 + pos: 19.490023,42.498802 parent: 2 - proto: DrinkHotCoco entities: @@ -43735,10 +44161,10 @@ entities: parent: 2 - proto: DrinkHotCoffee entities: - - uid: 8334 + - uid: 15374 components: - type: Transform - pos: 34.950523,17.590809 + pos: 34.080093,17.48581 parent: 2 - proto: DrinkLemonadeGlass entities: @@ -43802,13 +44228,6 @@ entities: - type: Transform pos: 107.25198,-16.370739 parent: 2 -- proto: DrinkRootBeerGlass - entities: - - uid: 15327 - components: - - type: Transform - pos: 10.590071,-42.418964 - parent: 2 - proto: DrinkShaker entities: - uid: 590 @@ -43860,6 +44279,11 @@ entities: parent: 2 - proto: DrinkWhiskeyBottleFull entities: + - uid: 5680 + components: + - type: Transform + pos: 9.765661,-42.177612 + parent: 2 - uid: 6809 components: - type: Transform @@ -43894,6 +44318,12 @@ entities: rot: 1.5707963267948966 rad pos: 14.5,-4.5 parent: 2 + - uid: 4101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,-36.5 + parent: 2 - uid: 8408 components: - type: Transform @@ -43940,12 +44370,6 @@ entities: pos: 25.5,44.5 parent: 2 - type: ActiveEmergencyLight - - uid: 12382 - components: - - type: Transform - pos: 33.5,15.5 - parent: 2 - - type: ActiveEmergencyLight - uid: 12383 components: - type: Transform @@ -43999,12 +44423,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,-28.5 parent: 2 - - uid: 15133 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-36.5 - parent: 2 - uid: 15134 components: - type: Transform @@ -44138,6 +44556,26 @@ entities: - type: Transform pos: 46.5,4.5 parent: 2 + - uid: 15367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,13.5 + parent: 2 +- proto: EmergencyNitrogenTankFilled + entities: + - uid: 4959 + components: + - type: Transform + pos: 29.492655,-23.704813 + parent: 2 +- proto: EmergencyOxygenTankFilled + entities: + - uid: 1474 + components: + - type: Transform + pos: 29.357239,-23.423368 + parent: 2 - proto: EmergencyRollerBedSpawnFolded entities: - uid: 9622 @@ -44203,6 +44641,13 @@ entities: rot: 3.141592653589793 rad pos: 25.5,-58.5 parent: 2 +- proto: EmitterFlatpack + entities: + - uid: 15411 + components: + - type: Transform + pos: 25.530586,-38.32224 + parent: 2 - proto: EncryptionKeyCargo entities: - uid: 412 @@ -44450,7 +44895,7 @@ entities: pos: 18.5,29.5 parent: 2 - type: FaxMachine - name: Court House + name: Court Room - uid: 10070 components: - type: Transform @@ -44921,7 +45366,6 @@ entities: devices: - 1103 - 1104 - - 11472 - 11250 - 11249 - 11248 @@ -45039,7 +45483,6 @@ entities: - 11263 - 1103 - 1104 - - 11472 - 12475 - 6928 - 6929 @@ -45049,6 +45492,7 @@ entities: - 9352 - 9353 - 9351 + - 2690 - uid: 12483 components: - type: Transform @@ -45084,7 +45528,6 @@ entities: - 11251 - 11252 - 11253 - - 11413 - 9351 - 9353 - 9352 @@ -45347,6 +45790,21 @@ entities: rot: -1.5707963267948966 rad pos: 18.5,1.5 parent: 2 + - uid: 2686 + components: + - type: Transform + pos: 38.5,-36.5 + parent: 2 + - uid: 2690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 12477 + - 12476 - uid: 2993 components: - type: Transform @@ -45404,11 +45862,6 @@ entities: rot: 3.141592653589793 rad pos: 38.5,-38.5 parent: 2 - - uid: 4561 - components: - - type: Transform - pos: 38.5,-36.5 - parent: 2 - uid: 4565 components: - type: Transform @@ -45887,18 +46340,6 @@ entities: rot: 3.141592653589793 rad pos: 62.5,-3.5 parent: 2 - - uid: 11413 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,12.5 - parent: 2 - - uid: 11472 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 - parent: 2 - uid: 11505 components: - type: Transform @@ -46666,6 +47107,15 @@ entities: - type: Transform pos: 49.5,-18.5 parent: 2 + - uid: 12989 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5101 + - 12486 - uid: 13442 components: - type: Transform @@ -46718,6 +47168,11 @@ entities: - type: Transform pos: 5.5,19.5 parent: 2 + - uid: 6114 + components: + - type: Transform + pos: 9.5,-40.5 + parent: 2 - proto: Flash entities: - uid: 4987 @@ -46774,6 +47229,14 @@ entities: parent: 2 - type: Fixtures fixtures: {} + - uid: 9003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,8.5 + parent: 2 + - type: Fixtures + fixtures: {} - uid: 10447 components: - type: Transform @@ -46817,41 +47280,6 @@ entities: parent: 2 - type: Fixtures fixtures: {} -- proto: FloraTreeChristmas02 - entities: - - uid: 2566 - components: - - type: Transform - pos: 30.5,-3.5 - parent: 2 -- proto: FoodBakedCookie - entities: - - uid: 15122 - components: - - type: Transform - pos: 35.204815,-8.44228 - parent: 2 -- proto: FoodBakedCookieOatmeal - entities: - - uid: 15123 - components: - - type: Transform - pos: 35.392315,-8.525671 - parent: 2 -- proto: FoodBakedCookieRaisin - entities: - - uid: 15124 - components: - - type: Transform - pos: 35.558983,-8.400584 - parent: 2 -- proto: FoodBakedCookieSugar - entities: - - uid: 15125 - components: - - type: Transform - pos: 35.3819,-8.296345 - parent: 2 - proto: FoodBanana entities: - uid: 9595 @@ -46926,10 +47354,10 @@ entities: - type: Transform pos: 37.49929,-7.4188547 parent: 2 - - uid: 11208 + - uid: 15373 components: - type: Transform - pos: 35.53611,17.66077 + pos: 33.517593,17.70471 parent: 2 - proto: FoodBreadBananaSlice entities: @@ -47052,13 +47480,6 @@ entities: - type: Transform pos: 27.383966,6.5099545 parent: 2 -- proto: FoodPlate - entities: - - uid: 15119 - components: - - type: Transform - pos: 35.454815,-8.306768 - parent: 2 - proto: FoodPlateSmallTrash entities: - uid: 5882 @@ -47076,7 +47497,7 @@ entities: - uid: 12099 components: - type: Transform - pos: 19.740185,41.04155 + pos: 19.312939,41.737858 parent: 2 - proto: FoodShakerPepper entities: @@ -47154,30 +47575,40 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-25.5 parent: 2 + - type: GasFilter + filteredGas: Oxygen - uid: 3294 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-27.5 parent: 2 + - type: GasFilter + filteredGas: CarbonDioxide - uid: 3297 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-29.5 parent: 2 + - type: GasFilter + filteredGas: WaterVapor - uid: 3309 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-31.5 parent: 2 + - type: GasFilter + filteredGas: Plasma - uid: 3310 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-23.5 parent: 2 + - type: GasFilter + filteredGas: Nitrogen - type: AtmosPipeColor color: '#990000FF' - uid: 3455 @@ -47186,6 +47617,8 @@ entities: rot: 3.141592653589793 rad pos: 44.5,-33.5 parent: 2 + - type: GasFilter + filteredGas: Tritium - uid: 4903 components: - type: Transform @@ -47199,7 +47632,7 @@ entities: pos: 59.5,0.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#990000FF' - proto: GasMinerCarbonDioxide entities: - uid: 5220 @@ -47228,35 +47661,17 @@ entities: - type: Transform pos: 49.5,-29.5 parent: 2 -- proto: GasMixer - entities: - - uid: 2072 - components: - - type: Transform - pos: 43.5,-27.5 - parent: 2 - - uid: 3970 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - proto: GasMixerFlipped entities: - - uid: 1557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-30.5 - parent: 2 - uid: 1570 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,-22.5 parent: 2 + - type: GasMixer + inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 - type: AtmosPipeColor color: '#0055CCFF' - uid: 1933 @@ -47265,12 +47680,10 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-32.5 parent: 2 - - uid: 3521 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-28.5 - parent: 2 + - type: GasMixer + inletTwoConcentration: 0.029999971 + inletOneConcentration: 0.97 + targetPressure: 4500 - uid: 4924 components: - type: Transform @@ -47339,7 +47752,7 @@ entities: pos: 44.5,-50.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 4102 components: - type: Transform @@ -47643,6 +48056,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,-25.5 + parent: 2 - uid: 2290 components: - type: Transform @@ -47659,6 +48078,17 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2435 + components: + - type: Transform + pos: 43.5,-25.5 + parent: 2 + - uid: 2696 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 - uid: 3066 components: - type: Transform @@ -47702,14 +48132,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-47.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - uid: 3960 components: - type: Transform @@ -47757,14 +48179,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 4091 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 4097 components: - type: Transform @@ -47869,6 +48283,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 5208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-24.5 + parent: 2 - uid: 5286 components: - type: Transform @@ -47892,6 +48312,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 6491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 6499 components: - type: Transform @@ -48170,7 +48598,7 @@ entities: pos: 43.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 11707 components: - type: Transform @@ -48273,14 +48701,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 12858 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-45.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 12869 components: - type: Transform @@ -48311,7 +48731,7 @@ entities: pos: 49.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 12885 components: - type: Transform @@ -48319,20 +48739,14 @@ entities: pos: 49.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 12984 components: - type: Transform pos: 43.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 13431 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-27.5 - parent: 2 + color: '#9F2B68FF' - uid: 13520 components: - type: Transform @@ -48521,6 +48935,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 15125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 15126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 15174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' + - uid: 15186 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 15241 components: - type: Transform @@ -48567,13 +49013,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 3965 - components: - - type: Transform - pos: 37.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 4021 components: - type: Transform @@ -48722,7 +49161,7 @@ entities: pos: 39.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - proto: GasPipeSensorWaste entities: - uid: 4083 @@ -49022,21 +49461,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 512 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 583 components: - type: Transform pos: 44.5,-47.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 591 components: - type: Transform @@ -49045,21 +49476,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 609 - components: - - type: Transform - pos: 10.5,-36.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 611 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 617 components: - type: Transform @@ -49114,14 +49530,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 695 components: - type: Transform @@ -49236,14 +49644,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 896 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,13.5 - parent: 2 - - type: AtmosPipeColor - color: '#0055CCFF' - uid: 897 components: - type: Transform @@ -49545,7 +49945,7 @@ entities: pos: 38.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 1223 components: - type: Transform @@ -49560,7 +49960,7 @@ entities: pos: 40.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 1234 components: - type: Transform @@ -49600,7 +50000,7 @@ entities: pos: 41.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 1300 components: - type: Transform @@ -50527,14 +50927,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 1880 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1881 components: - type: Transform @@ -51001,13 +51393,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2062 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 2063 components: - type: Transform @@ -51021,6 +51406,14 @@ entities: rot: -1.5707963267948966 rad pos: 45.5,-34.5 parent: 2 + - uid: 2072 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2089 components: - type: Transform @@ -51073,12 +51466,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 2148 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-26.5 - parent: 2 - uid: 2161 components: - type: Transform @@ -51087,6 +51474,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 2216 components: - type: Transform @@ -51415,12 +51810,32 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2697 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-30.5 + parent: 2 + - uid: 2712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-28.5 + parent: 2 - uid: 2718 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-32.5 parent: 2 + - uid: 2728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-48.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 2730 components: - type: Transform @@ -51435,6 +51850,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-45.5 + parent: 2 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 2751 components: - type: Transform @@ -51716,6 +52139,20 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 43.5,-27.5 + parent: 2 - uid: 3974 components: - type: Transform @@ -52113,7 +52550,7 @@ entities: pos: 39.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 4160 components: - type: Transform @@ -52495,6 +52932,14 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 4250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-47.5 + parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 4274 components: - type: Transform @@ -52736,7 +53181,7 @@ entities: pos: 44.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 4495 components: - type: Transform @@ -52744,13 +53189,21 @@ entities: pos: 45.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 4497 components: - type: Transform rot: -1.5707963267948966 rad pos: 45.5,-35.5 parent: 2 + - uid: 4561 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-43.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' - uid: 4827 components: - type: Transform @@ -52897,18 +53350,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 5208 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-25.5 - parent: 2 - - uid: 5216 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-26.5 - parent: 2 - uid: 5258 components: - type: Transform @@ -52919,6 +53360,14 @@ entities: - type: Transform pos: 79.5,-7.5 parent: 2 + - uid: 5268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 5273 components: - type: Transform @@ -53011,13 +53460,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 5673 - components: - - type: Transform - pos: 10.5,-38.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 5683 components: - type: Transform @@ -53495,27 +53937,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 6915 - components: - - type: Transform - pos: 10.5,-40.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6916 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 6917 - components: - - type: Transform - pos: 10.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 6918 components: - type: Transform @@ -53852,7 +54273,7 @@ entities: pos: 41.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 7830 components: - type: Transform @@ -53860,7 +54281,7 @@ entities: pos: 43.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 7878 components: - type: Transform @@ -54531,13 +54952,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8612 - components: - - type: Transform - pos: 33.5,21.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8613 components: - type: Transform @@ -54689,7 +55103,7 @@ entities: pos: 44.5,-49.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 8654 components: - type: Transform @@ -54776,11 +55190,6 @@ entities: rot: 3.141592653589793 rad pos: 43.5,-31.5 parent: 2 - - uid: 8980 - components: - - type: Transform - pos: 42.5,-25.5 - parent: 2 - uid: 8982 components: - type: Transform @@ -56950,7 +57359,7 @@ entities: pos: 46.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 12729 components: - type: Transform @@ -57010,7 +57419,7 @@ entities: pos: 46.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 13143 components: - type: Transform @@ -57035,14 +57444,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 13435 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 13448 components: - type: Transform @@ -57950,6 +58351,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 15087 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 15114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 15116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 15162 components: - type: Transform @@ -57957,7 +58390,7 @@ entities: pos: 45.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 15232 components: - type: Transform @@ -58086,14 +58519,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 355 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-34.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 356 components: - type: Transform @@ -58347,12 +58772,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 2435 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-24.5 - parent: 2 - uid: 2529 components: - type: Transform @@ -58368,6 +58787,12 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 2695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 - uid: 3124 components: - type: Transform @@ -58384,6 +58809,38 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 3351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 37.5,-44.5 + parent: 2 + - type: AtmosPipeColor + color: '#9F2B68FF' + - uid: 3395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 3521 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 3667 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 3691 components: - type: Transform @@ -58444,7 +58901,7 @@ entities: pos: 47.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 4029 components: - type: Transform @@ -59061,13 +59518,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8562 - components: - - type: Transform - pos: 34.5,23.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8563 components: - type: Transform @@ -59083,12 +59533,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' - - uid: 8981 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-26.5 - parent: 2 - uid: 9367 components: - type: Transform @@ -59429,14 +59873,14 @@ entities: pos: 47.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 12900 components: - type: Transform pos: 48.5,-44.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 12901 components: - type: Transform @@ -59444,22 +59888,14 @@ entities: pos: 48.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 12985 components: - type: Transform pos: 44.5,-46.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 12990 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#9F2B68FF' - uid: 13577 components: - type: Transform @@ -59578,18 +60014,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,-23.5 parent: 2 - - uid: 4913 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-40.5 - parent: 2 - - uid: 4920 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-40.5 - parent: 2 - uid: 4921 components: - type: Transform @@ -59630,11 +60054,15 @@ entities: - type: Transform pos: 37.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#9F2B68FF' - uid: 7882 components: - type: Transform pos: 38.5,-42.5 parent: 2 + - type: AtmosPipeColor + color: '#03FCD3FF' - uid: 10420 components: - type: Transform @@ -59726,6 +60154,16 @@ entities: rot: 3.141592653589793 rad pos: 35.5,-26.5 parent: 2 + - uid: 3956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 + - type: AtmosPipeColor + color: '#947507FF' - uid: 4031 components: - type: Transform @@ -59749,12 +60187,14 @@ entities: pos: 57.5,-0.5 parent: 2 - type: AtmosPipeColor - color: '#03FCD3FF' + color: '#0055CCFF' - uid: 5112 components: - type: Transform pos: 44.5,-44.5 parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor color: '#947507FF' - uid: 6583 @@ -59779,7 +60219,7 @@ entities: pos: 37.5,-43.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 10423 components: - type: Transform @@ -59791,14 +60231,6 @@ entities: - type: Transform pos: 64.5,23.5 parent: 2 - - uid: 11522 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-43.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 11577 components: - type: Transform @@ -59828,13 +60260,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0335FCFF' - - uid: 15231 - components: - - type: Transform - pos: 39.5,-35.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - proto: GasThermoMachineFreezer entities: - uid: 3966 @@ -59843,6 +60268,12 @@ entities: rot: 3.141592653589793 rad pos: 33.5,-26.5 parent: 2 + - uid: 4390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 41.5,-40.5 + parent: 2 - uid: 4912 components: - type: Transform @@ -59862,14 +60293,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 12989 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-48.5 - parent: 2 - - type: AtmosPipeColor - color: '#03FCD3FF' - proto: GasThermoMachineFreezerEnabled entities: - uid: 1156 @@ -59881,20 +60304,18 @@ entities: targetTemperature: 0 - proto: GasThermoMachineHeater entities: - - uid: 1216 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 3885 components: - type: Transform rot: 3.141592653589793 rad pos: 34.5,-26.5 parent: 2 + - uid: 4385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-40.5 + parent: 2 - uid: 4906 components: - type: Transform @@ -59903,6 +60324,26 @@ entities: parent: 2 - proto: GasValve entities: + - uid: 4874 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-35.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#947507FF' + - uid: 4913 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-34.5 + parent: 2 + - type: GasValve + open: False + - type: AtmosPipeColor + color: '#947507FF' - uid: 7861 components: - type: Transform @@ -59911,7 +60352,7 @@ entities: - type: GasValve open: False - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 11580 components: - type: Transform @@ -60002,6 +60443,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#0055CCFF' + - uid: 2683 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' - uid: 3152 components: - type: Transform @@ -60084,6 +60532,9 @@ entities: rot: 3.141592653589793 rad pos: 11.5,-40.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6126 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5533 @@ -60100,6 +60551,9 @@ entities: rot: 3.141592653589793 rad pos: 13.5,-36.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6126 - type: AtmosPipeColor color: '#0055CCFF' - uid: 5776 @@ -60332,6 +60786,9 @@ entities: - type: Transform pos: 34.5,25.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 5859 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8596 @@ -60340,6 +60797,9 @@ entities: rot: -1.5707963267948966 rad pos: 43.5,24.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12530 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8597 @@ -60355,6 +60815,9 @@ entities: - type: Transform pos: 39.5,27.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12530 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8629 @@ -60362,6 +60825,9 @@ entities: - type: Transform pos: 38.5,18.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 - type: AtmosPipeColor color: '#0055CCFF' - uid: 8684 @@ -60550,7 +61016,7 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12528 + - 5859 - type: AtmosPipeColor color: '#0055CCFF' - uid: 10643 @@ -60807,14 +61273,6 @@ entities: - 1017 - type: AtmosPipeColor color: '#990000FF' - - uid: 1324 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-41.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 1336 components: - type: Transform @@ -60834,7 +61292,18 @@ entities: parent: 2 - type: DeviceNetwork deviceLists: - - 12528 + - 5859 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 2691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 5859 - type: AtmosPipeColor color: '#990000FF' - uid: 3475 @@ -60905,6 +61374,9 @@ entities: - type: Transform pos: 13.5,-33.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 6126 - type: AtmosPipeColor color: '#990000FF' - uid: 5775 @@ -61096,20 +61568,15 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' - - uid: 8564 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,22.5 - parent: 2 - - type: AtmosPipeColor - color: '#990000FF' - uid: 8595 components: - type: Transform rot: -1.5707963267948966 rad pos: 43.5,23.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12530 - type: AtmosPipeColor color: '#990000FF' - uid: 8598 @@ -61125,6 +61592,9 @@ entities: - type: Transform pos: 40.5,26.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12530 - type: AtmosPipeColor color: '#990000FF' - uid: 8630 @@ -61133,6 +61603,9 @@ entities: rot: -1.5707963267948966 rad pos: 38.5,19.5 parent: 2 + - type: DeviceNetwork + deviceLists: + - 12528 - type: AtmosPipeColor color: '#990000FF' - uid: 8685 @@ -61407,6 +61880,13 @@ entities: parent: 2 - type: AtmosPipeColor color: '#990000FF' + - uid: 12107 + components: + - type: Transform + pos: 20.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' - uid: 13517 components: - type: Transform @@ -61558,14 +62038,6 @@ entities: parent: 2 - type: AtmosPipeColor color: '#03FCD3FF' - - uid: 4250 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-44.5 - parent: 2 - - type: AtmosPipeColor - color: '#947507FF' - uid: 4501 components: - type: Transform @@ -61573,7 +62045,7 @@ entities: pos: 38.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 6749 components: - type: Transform @@ -61589,7 +62061,7 @@ entities: pos: 42.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - proto: Gauze entities: - uid: 11966 @@ -61668,19 +62140,16 @@ entities: - uid: 18 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,46.5 parent: 2 - uid: 19 components: - type: Transform - rot: 3.141592653589793 rad pos: 55.5,46.5 parent: 2 - uid: 85 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 - uid: 103 @@ -61746,25 +62215,21 @@ entities: - uid: 335 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-15.5 parent: 2 - uid: 392 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-23.5 parent: 2 - uid: 406 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-27.5 parent: 2 - uid: 407 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-29.5 parent: 2 - uid: 507 @@ -61785,7 +62250,6 @@ entities: - uid: 612 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-15.5 parent: 2 - uid: 660 @@ -61856,7 +62320,6 @@ entities: - uid: 764 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-33.5 parent: 2 - uid: 811 @@ -61872,7 +62335,6 @@ entities: - uid: 837 components: - type: Transform - rot: 3.141592653589793 rad pos: 25.5,-30.5 parent: 2 - uid: 854 @@ -61888,13 +62350,11 @@ entities: - uid: 856 components: - type: Transform - rot: 3.141592653589793 rad pos: 27.5,-30.5 parent: 2 - uid: 857 components: - type: Transform - rot: 3.141592653589793 rad pos: 26.5,-30.5 parent: 2 - uid: 860 @@ -61917,11 +62377,6 @@ entities: - type: Transform pos: 12.5,-37.5 parent: 2 - - uid: 924 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - uid: 925 components: - type: Transform @@ -61942,11 +62397,6 @@ entities: - type: Transform pos: 24.5,-38.5 parent: 2 - - uid: 960 - components: - - type: Transform - pos: 23.5,-37.5 - parent: 2 - uid: 961 components: - type: Transform @@ -61957,11 +62407,6 @@ entities: - type: Transform pos: 20.5,-37.5 parent: 2 - - uid: 963 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 2 - uid: 964 components: - type: Transform @@ -62060,7 +62505,6 @@ entities: - uid: 1254 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,-10.5 parent: 2 - uid: 1274 @@ -62251,7 +62695,6 @@ entities: - uid: 2036 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-37.5 parent: 2 - uid: 2079 @@ -62469,30 +62912,9 @@ entities: - type: Transform pos: 23.5,34.5 parent: 2 - - uid: 2678 - components: - - type: Transform - pos: 22.5,33.5 - parent: 2 - - uid: 2679 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 2680 - components: - - type: Transform - pos: 22.5,30.5 - parent: 2 - - uid: 2681 - components: - - type: Transform - pos: 22.5,29.5 - parent: 2 - uid: 2734 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 - uid: 2735 @@ -62503,13 +62925,11 @@ entities: - uid: 2737 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 - uid: 2740 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-0.5 parent: 2 - uid: 2789 @@ -62880,13 +63300,11 @@ entities: - uid: 3161 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,30.5 parent: 2 - uid: 3166 components: - type: Transform - rot: 1.5707963267948966 rad pos: 56.5,26.5 parent: 2 - uid: 3213 @@ -62897,7 +63315,6 @@ entities: - uid: 3291 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-31.5 parent: 2 - uid: 3317 @@ -62913,7 +63330,6 @@ entities: - uid: 3322 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-15.5 parent: 2 - uid: 3323 @@ -62976,11 +63392,6 @@ entities: - type: Transform pos: 67.5,47.5 parent: 2 - - uid: 3351 - components: - - type: Transform - pos: 68.5,47.5 - parent: 2 - uid: 3364 components: - type: Transform @@ -63299,13 +63710,11 @@ entities: - uid: 4066 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 - uid: 4153 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 - uid: 4243 @@ -63406,61 +63815,51 @@ entities: - uid: 4400 components: - type: Transform - rot: -1.5707963267948966 rad pos: 52.5,38.5 parent: 2 - uid: 4401 components: - type: Transform - rot: -1.5707963267948966 rad pos: 52.5,39.5 parent: 2 - uid: 4402 components: - type: Transform - rot: -1.5707963267948966 rad pos: 60.5,36.5 parent: 2 - uid: 4404 components: - type: Transform - rot: 3.141592653589793 rad pos: 65.5,37.5 parent: 2 - uid: 4405 components: - type: Transform - rot: 3.141592653589793 rad pos: 65.5,36.5 parent: 2 - uid: 4408 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,29.5 parent: 2 - uid: 4409 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,29.5 parent: 2 - uid: 4410 components: - type: Transform - rot: -1.5707963267948966 rad pos: 57.5,30.5 parent: 2 - uid: 4411 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,30.5 parent: 2 - uid: 4412 components: - type: Transform - rot: -1.5707963267948966 rad pos: 55.5,30.5 parent: 2 - uid: 4415 @@ -63533,6 +63932,16 @@ entities: - type: Transform pos: 47.5,-37.5 parent: 2 + - uid: 5043 + components: + - type: Transform + pos: 6.5,-44.5 + parent: 2 + - uid: 5121 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 - uid: 5248 components: - type: Transform @@ -63546,7 +63955,6 @@ entities: - uid: 5288 components: - type: Transform - rot: 1.5707963267948966 rad pos: 10.5,47.5 parent: 2 - uid: 5431 @@ -63587,13 +63995,11 @@ entities: - uid: 5581 components: - type: Transform - rot: 1.5707963267948966 rad pos: 9.5,47.5 parent: 2 - uid: 5743 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,33.5 parent: 2 - uid: 5751 @@ -63659,55 +64065,33 @@ entities: - uid: 5765 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,49.5 parent: 2 - uid: 5966 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,50.5 parent: 2 - - uid: 6119 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 2 - uid: 6124 components: - type: Transform pos: 8.5,-40.5 parent: 2 - - uid: 6125 - components: - - type: Transform - pos: 8.5,-39.5 - parent: 2 - - uid: 6126 - components: - - type: Transform - pos: 9.5,-39.5 - parent: 2 - uid: 6127 components: - type: Transform - pos: 10.5,-39.5 + pos: 6.5,-42.5 parent: 2 - uid: 6129 components: - type: Transform - pos: 12.5,-39.5 + pos: 6.5,-40.5 parent: 2 - uid: 6130 components: - type: Transform pos: 8.5,-42.5 parent: 2 - - uid: 6131 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 2 - uid: 6132 components: - type: Transform @@ -63718,12 +64102,26 @@ entities: - type: Transform pos: 11.5,-43.5 parent: 2 + - uid: 6135 + components: + - type: Transform + pos: 6.5,-39.5 + parent: 2 + - uid: 6140 + components: + - type: Transform + pos: 6.5,-43.5 + parent: 2 - uid: 6324 components: - type: Transform - rot: -1.5707963267948966 rad pos: 99.5,26.5 parent: 2 + - uid: 6493 + components: + - type: Transform + pos: 27.5,55.5 + parent: 2 - uid: 6501 components: - type: Transform @@ -63762,37 +64160,31 @@ entities: - uid: 6806 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 - uid: 6821 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 - uid: 6830 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,34.5 parent: 2 - uid: 6831 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,32.5 parent: 2 - uid: 6836 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,47.5 parent: 2 - uid: 6837 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,31.5 parent: 2 - uid: 6842 @@ -63803,7 +64195,6 @@ entities: - uid: 6845 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,1.5 parent: 2 - uid: 6860 @@ -63819,31 +64210,26 @@ entities: - uid: 6886 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,1.5 parent: 2 - uid: 6887 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,1.5 parent: 2 - uid: 6891 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,1.5 parent: 2 - uid: 6892 components: - type: Transform - rot: -1.5707963267948966 rad pos: -18.5,1.5 parent: 2 - uid: 6895 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,1.5 parent: 2 - uid: 6902 @@ -63851,6 +64237,31 @@ entities: - type: Transform pos: -14.5,16.5 parent: 2 + - uid: 6915 + components: + - type: Transform + pos: 30.5,57.5 + parent: 2 + - uid: 6917 + components: + - type: Transform + pos: 25.5,57.5 + parent: 2 + - uid: 6921 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 + - uid: 6922 + components: + - type: Transform + pos: 24.5,55.5 + parent: 2 + - uid: 6945 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 - uid: 7010 components: - type: Transform @@ -63859,85 +64270,71 @@ entities: - uid: 7433 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,1.5 parent: 2 - uid: 7434 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,1.5 parent: 2 - uid: 7444 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,-2.5 parent: 2 - uid: 7445 components: - type: Transform - rot: 1.5707963267948966 rad pos: -17.5,-2.5 parent: 2 - uid: 7446 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-2.5 parent: 2 - uid: 7447 components: - type: Transform - rot: 1.5707963267948966 rad pos: -18.5,-2.5 parent: 2 - uid: 7448 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-2.5 parent: 2 - uid: 7465 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-10.5 parent: 2 - uid: 7559 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 - uid: 7588 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-10.5 parent: 2 - uid: 7590 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-13.5 parent: 2 - uid: 7606 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,1.5 parent: 2 - uid: 7608 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,0.5 parent: 2 - uid: 7609 components: - type: Transform - rot: 3.141592653589793 rad pos: -11.5,2.5 parent: 2 - uid: 7666 @@ -63953,7 +64350,6 @@ entities: - uid: 7670 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-8.5 parent: 2 - uid: 7671 @@ -63964,13 +64360,11 @@ entities: - uid: 7706 components: - type: Transform - rot: -1.5707963267948966 rad pos: 9.5,44.5 parent: 2 - uid: 7710 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,35.5 parent: 2 - uid: 7721 @@ -63996,25 +64390,21 @@ entities: - uid: 7744 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 - uid: 7753 components: - type: Transform - rot: 3.141592653589793 rad pos: 65.5,35.5 parent: 2 - uid: 7764 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 - uid: 7784 components: - type: Transform - rot: -1.5707963267948966 rad pos: 9.5,45.5 parent: 2 - uid: 7795 @@ -64125,7 +64515,6 @@ entities: - uid: 7970 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,1.5 parent: 2 - uid: 8028 @@ -64151,7 +64540,6 @@ entities: - uid: 8158 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,-16.5 parent: 2 - uid: 8200 @@ -64172,9 +64560,13 @@ entities: - uid: 8389 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,31.5 parent: 2 + - uid: 8567 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 - uid: 8667 components: - type: Transform @@ -64188,7 +64580,6 @@ entities: - uid: 8703 components: - type: Transform - rot: -1.5707963267948966 rad pos: 55.5,42.5 parent: 2 - uid: 8719 @@ -64446,6 +64837,11 @@ entities: - type: Transform pos: 116.5,-19.5 parent: 2 + - uid: 8981 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 - uid: 8987 components: - type: Transform @@ -64599,9 +64995,28 @@ entities: - uid: 9349 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-15.5 parent: 2 + - uid: 9894 + components: + - type: Transform + pos: 29.5,57.5 + parent: 2 + - uid: 9895 + components: + - type: Transform + pos: 27.5,57.5 + parent: 2 + - uid: 9898 + components: + - type: Transform + pos: 28.5,55.5 + parent: 2 + - uid: 9903 + components: + - type: Transform + pos: 24.5,57.5 + parent: 2 - uid: 10138 components: - type: Transform @@ -64640,25 +65055,21 @@ entities: - uid: 10975 components: - type: Transform - rot: 1.5707963267948966 rad pos: 7.5,43.5 parent: 2 - uid: 10976 components: - type: Transform - rot: 1.5707963267948966 rad pos: 8.5,43.5 parent: 2 - uid: 10977 components: - type: Transform - rot: 1.5707963267948966 rad pos: 6.5,43.5 parent: 2 - uid: 10983 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,43.5 parent: 2 - uid: 11309 @@ -65481,6 +65892,11 @@ entities: - type: Transform pos: 45.5,-22.5 parent: 2 + - uid: 12291 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 - uid: 12295 components: - type: Transform @@ -65489,79 +65905,66 @@ entities: - uid: 12370 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-14.5 parent: 2 - uid: 12422 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-7.5 parent: 2 - uid: 12426 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-10.5 parent: 2 - uid: 12429 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,-15.5 parent: 2 - uid: 12430 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,51.5 parent: 2 - uid: 12437 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,46.5 parent: 2 - uid: 12441 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-14.5 parent: 2 - uid: 12445 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-9.5 parent: 2 - uid: 12456 components: - type: Transform - rot: 3.141592653589793 rad pos: -9.5,2.5 parent: 2 - uid: 12457 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-15.5 parent: 2 - uid: 12725 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 - uid: 12731 components: - type: Transform - rot: 3.141592653589793 rad pos: -13.5,2.5 parent: 2 - uid: 12822 components: - type: Transform - rot: 3.141592653589793 rad pos: 11.5,45.5 parent: 2 - uid: 12914 @@ -65592,78 +65995,81 @@ entities: - uid: 12938 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,1.5 parent: 2 + - uid: 12951 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 - uid: 12961 components: - type: Transform pos: 45.5,-45.5 parent: 2 + - uid: 13114 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 13126 + components: + - type: Transform + pos: 25.5,55.5 + parent: 2 - uid: 13245 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-14.5 parent: 2 - uid: 13246 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-15.5 parent: 2 - uid: 13251 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-2.5 parent: 2 - uid: 13267 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-2.5 parent: 2 - uid: 13268 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-2.5 parent: 2 - uid: 13269 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,-2.5 parent: 2 - uid: 13270 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 - uid: 13282 components: - type: Transform - rot: 3.141592653589793 rad pos: 58.5,46.5 parent: 2 - uid: 13290 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 - uid: 13292 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-10.5 parent: 2 - uid: 13320 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-10.5 parent: 2 - uid: 13333 @@ -65916,28 +66322,34 @@ entities: - type: Transform pos: 39.5,-61.5 parent: 2 + - uid: 13432 + components: + - type: Transform + pos: 26.5,57.5 + parent: 2 + - uid: 13469 + components: + - type: Transform + pos: 29.5,55.5 + parent: 2 - uid: 13545 components: - type: Transform - rot: -1.5707963267948966 rad pos: 56.5,42.5 parent: 2 - uid: 13547 components: - type: Transform - rot: -1.5707963267948966 rad pos: 57.5,42.5 parent: 2 - uid: 13654 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,51.5 parent: 2 - uid: 13658 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 - uid: 13660 @@ -65988,43 +66400,36 @@ entities: - uid: 13920 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,3.5 parent: 2 - uid: 13921 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,4.5 parent: 2 - uid: 13922 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,5.5 parent: 2 - uid: 13924 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,7.5 parent: 2 - uid: 13925 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,8.5 parent: 2 - uid: 13926 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,9.5 parent: 2 - uid: 13927 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,10.5 parent: 2 - uid: 13928 @@ -66035,25 +66440,21 @@ entities: - uid: 13929 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,12.5 parent: 2 - uid: 13930 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,2.5 parent: 2 - uid: 13931 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,3.5 parent: 2 - uid: 13932 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,4.5 parent: 2 - uid: 13933 @@ -66064,55 +66465,46 @@ entities: - uid: 13934 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,6.5 parent: 2 - uid: 13935 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,7.5 parent: 2 - uid: 13937 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,9.5 parent: 2 - uid: 13938 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,10.5 parent: 2 - uid: 13939 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,11.5 parent: 2 - uid: 13940 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,12.5 parent: 2 - uid: 13942 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,14.5 parent: 2 - uid: 13943 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,14.5 parent: 2 - uid: 13944 components: - type: Transform - rot: 1.5707963267948966 rad pos: -23.5,13.5 parent: 2 - uid: 13946 @@ -66193,31 +66585,26 @@ entities: - uid: 14127 components: - type: Transform - rot: 3.141592653589793 rad pos: 75.5,22.5 parent: 2 - uid: 14128 components: - type: Transform - rot: 3.141592653589793 rad pos: 75.5,23.5 parent: 2 - uid: 14129 components: - type: Transform - rot: 3.141592653589793 rad pos: 75.5,24.5 parent: 2 - uid: 14131 components: - type: Transform - rot: 3.141592653589793 rad pos: 73.5,24.5 parent: 2 - uid: 14159 components: - type: Transform - rot: 1.5707963267948966 rad pos: 74.5,24.5 parent: 2 - uid: 14196 @@ -66233,25 +66620,21 @@ entities: - uid: 14205 components: - type: Transform - rot: 3.141592653589793 rad pos: 78.5,31.5 parent: 2 - uid: 14206 components: - type: Transform - rot: 3.141592653589793 rad pos: 78.5,30.5 parent: 2 - uid: 14207 components: - type: Transform - rot: 3.141592653589793 rad pos: 78.5,29.5 parent: 2 - uid: 14208 components: - type: Transform - rot: 3.141592653589793 rad pos: 79.5,28.5 parent: 2 - uid: 14299 @@ -66352,25 +66735,21 @@ entities: - uid: 14344 components: - type: Transform - rot: 1.5707963267948966 rad pos: 81.5,36.5 parent: 2 - uid: 14409 components: - type: Transform - rot: 3.141592653589793 rad pos: 82.5,35.5 parent: 2 - uid: 14508 components: - type: Transform - rot: -1.5707963267948966 rad pos: 99.5,28.5 parent: 2 - uid: 14512 components: - type: Transform - rot: -1.5707963267948966 rad pos: 99.5,32.5 parent: 2 - uid: 14514 @@ -66401,25 +66780,21 @@ entities: - uid: 14591 components: - type: Transform - rot: -1.5707963267948966 rad pos: 98.5,35.5 parent: 2 - uid: 14593 components: - type: Transform - rot: -1.5707963267948966 rad pos: 98.5,25.5 parent: 2 - uid: 14598 components: - type: Transform - rot: -1.5707963267948966 rad pos: 99.5,34.5 parent: 2 - uid: 14623 components: - type: Transform - rot: 3.141592653589793 rad pos: 72.5,25.5 parent: 2 - uid: 14762 @@ -66430,49 +66805,36 @@ entities: - uid: 14780 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,45.5 parent: 2 - uid: 14781 components: - type: Transform - rot: 3.141592653589793 rad pos: 15.5,45.5 parent: 2 - uid: 14782 components: - type: Transform - rot: 3.141592653589793 rad pos: 14.5,45.5 parent: 2 - - uid: 14784 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,1.5 - parent: 2 - uid: 14787 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,51.5 parent: 2 - uid: 14788 components: - type: Transform - rot: 3.141592653589793 rad pos: 44.5,51.5 parent: 2 - uid: 14789 components: - type: Transform - rot: 3.141592653589793 rad pos: 45.5,51.5 parent: 2 - uid: 14790 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,51.5 parent: 2 - uid: 14791 @@ -66663,13 +67025,11 @@ entities: - uid: 14953 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,25.5 parent: 2 - uid: 14970 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,41.5 parent: 2 - uid: 14978 @@ -66680,13 +67040,11 @@ entities: - uid: 14984 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,43.5 parent: 2 - uid: 14985 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,43.5 parent: 2 - uid: 14986 @@ -66697,25 +67055,21 @@ entities: - uid: 14987 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,43.5 parent: 2 - uid: 15105 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,51.5 parent: 2 - uid: 15106 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,51.5 parent: 2 - uid: 15107 components: - type: Transform - rot: 3.141592653589793 rad pos: 18.5,51.5 parent: 2 - uid: 15110 @@ -66733,6 +67087,16 @@ entities: - type: Transform pos: 46.5,-55.5 parent: 2 + - uid: 15176 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 15206 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 - uid: 15243 components: - type: Transform @@ -66893,6 +67257,41 @@ entities: - type: Transform pos: -24.5,-26.5 parent: 2 + - uid: 15384 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 + - uid: 15413 + components: + - type: Transform + pos: 23.5,55.5 + parent: 2 + - uid: 15414 + components: + - type: Transform + pos: 30.5,55.5 + parent: 2 + - uid: 15415 + components: + - type: Transform + pos: 31.5,55.5 + parent: 2 + - uid: 15418 + components: + - type: Transform + pos: 22.5,57.5 + parent: 2 + - uid: 15419 + components: + - type: Transform + pos: 21.5,57.5 + parent: 2 + - uid: 15420 + components: + - type: Transform + pos: 33.5,57.5 + parent: 2 - proto: GrilleBroken entities: - uid: 1247 @@ -66961,6 +67360,11 @@ entities: - type: Transform pos: 0.5,16.5 parent: 2 + - uid: 6131 + components: + - type: Transform + pos: 26.5,55.5 + parent: 2 - uid: 6834 components: - type: Transform @@ -67091,6 +67495,21 @@ entities: - type: Transform pos: 24.5,53.5 parent: 2 + - uid: 15337 + components: + - type: Transform + pos: 28.5,57.5 + parent: 2 + - uid: 15416 + components: + - type: Transform + pos: 31.5,57.5 + parent: 2 + - uid: 15417 + components: + - type: Transform + pos: 23.5,57.5 + parent: 2 - proto: GunSafeLaserCarbine entities: - uid: 2126 @@ -67192,14 +67611,14 @@ entities: pos: 47.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 6513 components: - type: Transform pos: 49.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - uid: 12861 components: - type: Transform @@ -67223,7 +67642,7 @@ entities: pos: 48.5,-45.5 parent: 2 - type: AtmosPipeColor - color: '#947507FF' + color: '#9F2B68FF' - proto: Hemostat entities: - uid: 10071 @@ -67311,10 +67730,10 @@ entities: parent: 2 - proto: HolopadCommandCe entities: - - uid: 15176 + - uid: 15412 components: - type: Transform - pos: 13.5,-35.5 + pos: 11.5,-35.5 parent: 2 - proto: HolopadCommandCmo entities: @@ -67360,10 +67779,10 @@ entities: parent: 2 - proto: HolopadCommandVault entities: - - uid: 15174 + - uid: 15382 components: - type: Transform - pos: 18.5,41.5 + pos: 18.5,39.5 parent: 2 - proto: HolopadEngineeringAtmosFront entities: @@ -67381,10 +67800,10 @@ entities: parent: 2 - proto: HolopadEngineeringAtmosTeg entities: - - uid: 15213 + - uid: 2172 components: - type: Transform - pos: 35.5,-47.5 + pos: 35.5,-46.5 parent: 2 - proto: HolopadEngineeringFront entities: @@ -67430,10 +67849,10 @@ entities: parent: 2 - proto: HolopadGeneralTheater entities: - - uid: 15206 + - uid: 15133 components: - type: Transform - pos: 21.5,-11.5 + pos: 21.5,-10.5 parent: 2 - proto: HolopadGeneralTools entities: @@ -67521,10 +67940,10 @@ entities: parent: 2 - proto: HolopadSecurityBrig entities: - - uid: 15188 + - uid: 5247 components: - type: Transform - pos: 34.5,20.5 + pos: 34.5,19.5 parent: 2 - proto: HolopadSecurityCourtroom entities: @@ -67556,10 +67975,10 @@ entities: parent: 2 - proto: HolopadSecurityLawyer entities: - - uid: 15186 + - uid: 12108 components: - type: Transform - pos: -1.5,-8.5 + pos: -3.5,-11.5 parent: 2 - proto: HolopadSecurityPerma entities: @@ -67605,10 +68024,10 @@ entities: parent: 2 - proto: HolopadServiceJanitor entities: - - uid: 15207 + - uid: 15118 components: - type: Transform - pos: 3.5,-5.5 + pos: 6.5,-5.5 parent: 2 - proto: HolopadServiceKitchen entities: @@ -67872,14 +68291,14 @@ entities: - uid: 12098 components: - type: Transform - pos: 19.521435,41.66655 + pos: 19.594189,42.029728 parent: 2 - proto: IngotSilver entities: - uid: 12100 components: - type: Transform - pos: 17.552685,41.54155 + pos: 19.604607,41.55023 parent: 2 - proto: IntercomAll entities: @@ -67929,10 +68348,11 @@ entities: - type: Transform pos: 16.5,11.5 parent: 2 - - uid: 8986 + - uid: 11222 components: - type: Transform - pos: 32.5,16.5 + rot: 3.141592653589793 rad + pos: 35.5,12.5 parent: 2 - proto: IntercomEngineering entities: @@ -67947,6 +68367,18 @@ entities: rot: 1.5707963267948966 rad pos: 24.5,-25.5 parent: 2 + - uid: 15421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-46.5 + parent: 2 + - uid: 15422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-29.5 + parent: 2 - proto: IntercomMedical entities: - uid: 11407 @@ -67956,10 +68388,11 @@ entities: parent: 2 - proto: IntercomScience entities: - - uid: 5107 + - uid: 7582 components: - type: Transform - pos: 48.5,20.5 + rot: -1.5707963267948966 rad + pos: 48.5,16.5 parent: 2 - proto: IntercomSecurity entities: @@ -67969,9 +68402,10 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,34.5 parent: 2 - - uid: 7582 + - uid: 15375 components: - type: Transform + rot: -1.5707963267948966 rad pos: 28.5,26.5 parent: 2 - proto: IntercomSupply @@ -68074,6 +68508,13 @@ entities: - type: Transform pos: 31.5,-12.5 parent: 2 +- proto: KnifePlastic + entities: + - uid: 12374 + components: + - type: Transform + pos: 29.51246,-3.3581707 + parent: 2 - proto: Lamp entities: - uid: 5087 @@ -68141,27 +68582,12 @@ entities: - type: Transform pos: 37.37405,43.99462 parent: 2 - - uid: 13472 + - uid: 13491 components: - type: Transform - pos: 9.418196,-42.27834 + rot: 1.5707963267948966 rad + pos: 9.328161,-42.06295 parent: 2 - - type: HandheldLight - toggleActionEntity: 8692 - - type: ContainerContainer - containers: - cell_slot: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - actions: !type:Container - showEnts: False - occludes: True - ents: - - 8692 - - type: Physics - canCollide: True - - type: ActionsContainer - proto: LampInterrogator entities: - uid: 13567 @@ -68220,6 +68646,26 @@ entities: - Pressed: Toggle 12891: - Pressed: Toggle + - uid: 8692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-29.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 55: + - Pressed: Toggle + - uid: 12355 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-33.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 4257: + - Pressed: Toggle - uid: 15242 components: - type: Transform @@ -68231,6 +68677,40 @@ entities: - Pressed: Toggle 12890: - Pressed: Toggle +- proto: LockableButtonChiefEngineer + entities: + - uid: 6118 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13490: + - Pressed: Toggle + 13489: + - Pressed: Toggle + 13488: + - Pressed: Toggle + - uid: 13470 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 13478: + - Pressed: Toggle + 13477: + - Pressed: Toggle + 13476: + - Pressed: Toggle + 13480: + - Pressed: Toggle + 13481: + - Pressed: Toggle + 13482: + - Pressed: Toggle - proto: LockableButtonCommand entities: - uid: 15104 @@ -68271,6 +68751,42 @@ entities: - Pressed: Toggle 15102: - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 15398 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-25.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 924: + - Pressed: Toggle + 803: + - Pressed: Toggle + - uid: 15399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 803: + - Pressed: Toggle + 924: + - Pressed: Toggle + - uid: 15400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 779: + - Pressed: Toggle - proto: LockableButtonMedical entities: - uid: 15129 @@ -68285,6 +68801,20 @@ entities: - Pressed: Open 600: - Pressed: Open +- proto: LockableButtonResearch + entities: + - uid: 1557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 43.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 11022: + - Pressed: Toggle + 8248: + - Pressed: Toggle - proto: LockableButtonSalvage entities: - uid: 15284 @@ -68418,6 +68948,11 @@ entities: - type: Transform pos: 32.5,28.5 parent: 2 + - uid: 2680 + components: + - type: Transform + pos: 19.5,33.5 + parent: 2 - uid: 5013 components: - type: Transform @@ -68433,11 +68968,6 @@ entities: - type: Transform pos: -2.5,-5.5 parent: 2 - - uid: 9003 - components: - - type: Transform - pos: 17.5,29.5 - parent: 2 - uid: 15277 components: - type: Transform @@ -68816,6 +69346,13 @@ entities: - type: Transform pos: 18.45301,-3.204442 parent: 2 +- proto: MaterialDiamond1 + entities: + - uid: 15378 + components: + - type: Transform + pos: 17.365833,42.13004 + parent: 2 - proto: MaterialDurathread entities: - uid: 10296 @@ -68844,20 +69381,20 @@ entities: parent: 2 - proto: MedicalBed entities: - - uid: 1705 + - uid: 3485 components: - type: Transform - pos: 59.5,-4.5 + pos: 63.5,4.5 parent: 2 - - uid: 1710 + - uid: 4978 components: - type: Transform - pos: 62.5,-4.5 + pos: 81.5,-1.5 parent: 2 - - uid: 4978 + - uid: 5216 components: - type: Transform - pos: 81.5,-1.5 + pos: 66.5,4.5 parent: 2 - uid: 7800 components: @@ -69141,6 +69678,11 @@ entities: - type: Transform pos: 50.5,-23.5 parent: 2 + - uid: 2252 + components: + - type: Transform + pos: 34.5,-45.5 + parent: 2 - uid: 4306 components: - type: Transform @@ -69171,11 +69713,6 @@ entities: - type: Transform pos: 46.5,-15.5 parent: 2 - - uid: 10442 - components: - - type: Transform - pos: 58.5,11.5 - parent: 2 - uid: 13968 components: - type: Transform @@ -69290,11 +69827,6 @@ entities: - type: Transform pos: 8.5,-5.5 parent: 2 - - uid: 10441 - components: - - type: Transform - pos: 58.5,10.5 - parent: 2 - uid: 11650 components: - type: Transform @@ -69405,11 +69937,10 @@ entities: parent: 2 - proto: PaperOffice entities: - - uid: 15337 + - uid: 15117 components: - type: Transform - rot: -3.141592653589793 rad - pos: 9.980696,-42.55959 + pos: 89.48129,32.60053 parent: 2 - proto: ParticleAcceleratorControlBoxUnfinished entities: @@ -69509,6 +70040,11 @@ entities: - type: Transform pos: 11.095052,4.613485 parent: 2 + - uid: 6047 + components: + - type: Transform + pos: 89.616714,32.54841 + parent: 2 - uid: 7415 components: - type: Transform @@ -69564,12 +70100,6 @@ entities: - type: Transform pos: 51.110676,4.5944533 parent: 2 - - uid: 15338 - components: - - type: Transform - rot: -3.141592653589793 rad - pos: 10.268833,-42.383278 - parent: 2 - proto: PersonalAI entities: - uid: 7414 @@ -69678,18 +70208,6 @@ entities: rot: 1.5707963267948966 rad pos: 38.5,24.5 parent: 2 - - uid: 12081 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,9.5 - parent: 2 - - uid: 12107 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,11.5 - parent: 2 - uid: 12270 components: - type: Transform @@ -69764,13 +70282,6 @@ entities: - type: Transform pos: 6.0254927,-3.2604024 parent: 2 -- proto: PlushieArachind - entities: - - uid: 15326 - components: - - type: Transform - pos: 9.854231,-41.59095 - parent: 2 - proto: PlushieNar entities: - uid: 5400 @@ -69804,8 +70315,13 @@ entities: - uid: 8412 components: - type: Transform + anchored: False pos: 31.5,26.5 parent: 2 + - type: TriggerOnProximity + enabled: False + - type: Physics + bodyType: Dynamic - proto: PortableGeneratorJrPacman entities: - uid: 801 @@ -69970,11 +70486,10 @@ entities: parent: 2 - proto: PosterLegit12Gauge entities: - - uid: 8434 + - uid: 8980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,27.5 + pos: 37.5,28.5 parent: 2 - proto: PosterLegit50thAnniversaryVintageReprint entities: @@ -70034,13 +70549,6 @@ entities: - type: Transform pos: 42.5,26.5 parent: 2 -- proto: PosterLegitFoamForceAd - entities: - - uid: 11022 - components: - - type: Transform - pos: 20.5,16.5 - parent: 2 - proto: PosterLegitFruitBowl entities: - uid: 13101 @@ -70240,16 +70748,15 @@ entities: parent: 2 - proto: PosterLegitSecWatch entities: - - uid: 7732 + - uid: 2684 components: - type: Transform - pos: -2.5,-6.5 + pos: 30.5,16.5 parent: 2 - - uid: 8983 + - uid: 7732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,16.5 + pos: -2.5,-6.5 parent: 2 - proto: PosterLegitStateLaws entities: @@ -70425,14 +70932,6 @@ entities: - type: ContainerContainer containers: stash: !type:ContainerSlot {} - - uid: 11222 - components: - - type: Transform - pos: 22.5,35.5 - parent: 2 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot {} - uid: 11808 components: - type: Transform @@ -70451,6 +70950,16 @@ entities: - type: Transform pos: 58.5,-2.5 parent: 2 + - uid: 12754 + components: + - type: Transform + pos: 21.5,35.5 + parent: 2 + - uid: 12949 + components: + - type: Transform + pos: 24.5,29.5 + parent: 2 - uid: 14079 components: - type: Transform @@ -70630,6 +71139,12 @@ entities: - type: Transform pos: 63.5,-9.5 parent: 2 + - uid: 15363 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,9.5 + parent: 2 - proto: PowerCellSmall entities: - uid: 5313 @@ -70691,12 +71206,6 @@ entities: parent: 2 - proto: Poweredlight entities: - - uid: 97 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-29.5 - parent: 2 - uid: 231 components: - type: Transform @@ -70751,11 +71260,22 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,-41.5 parent: 2 + - uid: 1569 + components: + - type: Transform + pos: 35.5,-22.5 + parent: 2 - uid: 1674 components: - type: Transform pos: 48.5,-27.5 parent: 2 + - uid: 1761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,9.5 + parent: 2 - uid: 1765 components: - type: Transform @@ -71081,14 +71601,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,10.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 5280 components: - type: Transform @@ -71297,11 +71809,6 @@ entities: rot: 1.5707963267948966 rad pos: 41.5,-5.5 parent: 2 - - uid: 6654 - components: - - type: Transform - pos: 31.5,-2.5 - parent: 2 - uid: 6657 components: - type: Transform @@ -71508,14 +72015,6 @@ entities: rot: -1.5707963267948966 rad pos: -5.5,-10.5 parent: 2 - - uid: 7768 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,40.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 7813 components: - type: Transform @@ -71595,13 +72094,6 @@ entities: rot: 1.5707963267948966 rad pos: 3.5,13.5 parent: 2 - - uid: 8129 - components: - - type: Transform - pos: 37.5,-22.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8130 components: - type: Transform @@ -71654,14 +72146,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,11.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8568 components: - type: Transform @@ -71680,11 +72164,9 @@ entities: - uid: 8574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,17.5 + rot: -1.5707963267948966 rad + pos: 42.5,9.5 parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8642 components: - type: Transform @@ -71830,6 +72312,11 @@ entities: rot: -1.5707963267948966 rad pos: 74.5,6.5 parent: 2 + - uid: 12950 + components: + - type: Transform + pos: 31.5,-2.5 + parent: 2 - uid: 12977 components: - type: Transform @@ -71854,6 +72341,12 @@ entities: rot: -1.5707963267948966 rad pos: 46.5,-28.5 parent: 2 + - uid: 13473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 38.5,-27.5 + parent: 2 - uid: 13604 components: - type: Transform @@ -71924,6 +72417,17 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,26.5 parent: 2 + - uid: 15368 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,20.5 + parent: 2 + - uid: 15383 + components: + - type: Transform + pos: 18.5,42.5 + parent: 2 - proto: PoweredlightExterior entities: - uid: 5664 @@ -72320,6 +72824,11 @@ entities: rot: 3.141592653589793 rad pos: 11.5,33.5 parent: 2 + - uid: 4711 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 2 - uid: 4813 components: - type: Transform @@ -72594,14 +73103,6 @@ entities: parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8529 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-41.5 - parent: 2 - - type: ApcPowerReceiver - powerLoad: 0 - uid: 8565 components: - type: Transform @@ -72706,6 +73207,12 @@ entities: rot: 1.5707963267948966 rad pos: 77.5,9.5 parent: 2 + - uid: 9854 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-41.5 + parent: 2 - uid: 10707 components: - type: Transform @@ -72815,12 +73322,6 @@ entities: rot: 3.141592653589793 rad pos: 5.5,-9.5 parent: 2 - - uid: 12355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,-13.5 - parent: 2 - uid: 12841 components: - type: Transform @@ -72926,18 +73427,6 @@ entities: rot: 3.141592653589793 rad pos: 41.5,-12.5 parent: 2 -- proto: PresentRandom - entities: - - uid: 15086 - components: - - type: Transform - pos: 29.5,-3.5 - parent: 2 - - uid: 15087 - components: - - type: Transform - pos: 31.5,-3.5 - parent: 2 - proto: Protolathe entities: - uid: 5305 @@ -73202,11 +73691,6 @@ entities: rot: 3.141592653589793 rad pos: 82.5,34.5 parent: 2 - - uid: 15113 - components: - - type: Transform - pos: 40.5,22.5 - parent: 2 - uid: 15210 components: - type: Transform @@ -73294,41 +73778,35 @@ entities: parent: 2 - proto: Railing entities: - - uid: 6491 + - uid: 6662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-10.5 + rot: 3.141592653589793 rad + pos: 47.5,-8.5 parent: 2 - - uid: 6493 + - uid: 6663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 + rot: 3.141592653589793 rad + pos: 46.5,-8.5 parent: 2 - - uid: 6506 + - uid: 9886 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-11.5 + pos: 22.5,-10.5 parent: 2 - - uid: 6510 + - uid: 9887 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-12.5 - parent: 2 - - uid: 6662 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-8.5 + pos: 22.5,-11.5 parent: 2 - - uid: 6663 + - uid: 9888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-8.5 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 parent: 2 - uid: 13640 components: @@ -73386,13 +73864,22 @@ entities: - type: Transform pos: 37.5,-17.5 parent: 2 -- proto: RandomPainting +- proto: RandomFoodMeal entities: - - uid: 6945 + - uid: 12793 components: - type: Transform - pos: 19.5,17.5 + pos: 35.5,-8.5 parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 6654 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 +- proto: RandomPainting + entities: - uid: 12820 components: - type: Transform @@ -73449,6 +73936,12 @@ entities: - type: Transform pos: 53.5,41.5 parent: 2 + - uid: 5624 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-9.5 + parent: 2 - uid: 11176 components: - type: Transform @@ -73461,11 +73954,6 @@ entities: parent: 2 - proto: RandomPosterLegit entities: - - uid: 5754 - components: - - type: Transform - pos: 33.5,12.5 - parent: 2 - uid: 7573 components: - type: Transform @@ -73735,31 +74223,26 @@ entities: - uid: 321 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-31.5 parent: 2 - uid: 361 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-29.5 parent: 2 - uid: 367 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-27.5 parent: 2 - uid: 382 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-23.5 parent: 2 - uid: 391 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-25.5 parent: 2 - uid: 685 @@ -73775,7 +74258,6 @@ entities: - uid: 1463 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-33.5 parent: 2 - uid: 2363 @@ -73828,6 +74310,16 @@ entities: - type: Transform pos: 36.5,-33.5 parent: 2 + - uid: 8532 + components: + - type: Transform + pos: 37.5,27.5 + parent: 2 + - uid: 8534 + components: + - type: Transform + pos: 37.5,26.5 + parent: 2 - uid: 8665 components: - type: Transform @@ -73856,13 +74348,11 @@ entities: - uid: 12296 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,29.5 parent: 2 - uid: 12442 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,29.5 parent: 2 - uid: 12986 @@ -73875,7 +74365,6 @@ entities: - uid: 6 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,-2.5 parent: 2 - uid: 13 @@ -73901,7 +74390,6 @@ entities: - uid: 46 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-2.5 parent: 2 - uid: 79 @@ -73917,7 +74405,6 @@ entities: - uid: 84 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-7.5 parent: 2 - uid: 119 @@ -73968,7 +74455,6 @@ entities: - uid: 337 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-11.5 parent: 2 - uid: 341 @@ -73984,7 +74470,6 @@ entities: - uid: 357 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,-16.5 parent: 2 - uid: 397 @@ -74030,7 +74515,6 @@ entities: - uid: 483 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-12.5 parent: 2 - uid: 560 @@ -74056,19 +74540,16 @@ entities: - uid: 674 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-5.5 parent: 2 - uid: 680 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-7.5 parent: 2 - uid: 689 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-0.5 parent: 2 - uid: 813 @@ -74116,15 +74597,9 @@ entities: - type: Transform pos: 12.5,-37.5 parent: 2 - - uid: 934 - components: - - type: Transform - pos: 10.5,-37.5 - parent: 2 - uid: 968 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,32.5 parent: 2 - uid: 982 @@ -74132,21 +74607,11 @@ entities: - type: Transform pos: 20.5,-37.5 parent: 2 - - uid: 983 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 2 - uid: 984 components: - type: Transform pos: 22.5,-37.5 parent: 2 - - uid: 985 - components: - - type: Transform - pos: 23.5,-37.5 - parent: 2 - uid: 986 components: - type: Transform @@ -74170,7 +74635,6 @@ entities: - uid: 990 components: - type: Transform - rot: -1.5707963267948966 rad pos: 4.5,31.5 parent: 2 - uid: 991 @@ -74241,7 +74705,6 @@ entities: - uid: 1231 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,42.5 parent: 2 - uid: 1251 @@ -74252,13 +74715,11 @@ entities: - uid: 1256 components: - type: Transform - rot: 3.141592653589793 rad pos: 52.5,38.5 parent: 2 - uid: 1275 components: - type: Transform - rot: 3.141592653589793 rad pos: 55.5,42.5 parent: 2 - uid: 1308 @@ -74369,7 +74830,6 @@ entities: - uid: 1556 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-2.5 parent: 2 - uid: 1735 @@ -74390,13 +74850,11 @@ entities: - uid: 1808 components: - type: Transform - rot: 1.5707963267948966 rad pos: -18.5,-2.5 parent: 2 - uid: 1809 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,-2.5 parent: 2 - uid: 1855 @@ -74407,13 +74865,11 @@ entities: - uid: 1948 components: - type: Transform - rot: 3.141592653589793 rad pos: 52.5,39.5 parent: 2 - uid: 2028 components: - type: Transform - rot: -1.5707963267948966 rad pos: 16.5,-37.5 parent: 2 - uid: 2053 @@ -74449,19 +74905,16 @@ entities: - uid: 2167 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,-15.5 parent: 2 - uid: 2210 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,30.5 parent: 2 - uid: 2213 components: - type: Transform - rot: 3.141592653589793 rad pos: 60.5,36.5 parent: 2 - uid: 2231 @@ -74569,10 +75022,14 @@ entities: - type: Transform pos: 37.5,-28.5 parent: 2 + - uid: 2687 + components: + - type: Transform + pos: 46.5,12.5 + parent: 2 - uid: 2736 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 - uid: 2745 @@ -74823,13 +75280,11 @@ entities: - uid: 3120 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 - uid: 3122 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-6.5 parent: 2 - uid: 3127 @@ -74890,13 +75345,11 @@ entities: - uid: 3327 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-15.5 parent: 2 - uid: 3334 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 2 - uid: 3335 @@ -74922,13 +75375,11 @@ entities: - uid: 3340 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-10.5 parent: 2 - uid: 3344 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 - uid: 3345 @@ -74981,11 +75432,6 @@ entities: - type: Transform pos: 67.5,47.5 parent: 2 - - uid: 3395 - components: - - type: Transform - pos: 68.5,47.5 - parent: 2 - uid: 3397 components: - type: Transform @@ -75234,13 +75680,11 @@ entities: - uid: 4134 components: - type: Transform - rot: 1.5707963267948966 rad pos: 56.5,26.5 parent: 2 - uid: 4165 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-10.5 parent: 2 - uid: 4252 @@ -75256,19 +75700,16 @@ entities: - uid: 4269 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,-16.5 parent: 2 - uid: 4273 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,-18.5 parent: 2 - uid: 4275 components: - type: Transform - rot: -1.5707963267948966 rad pos: 19.5,-17.5 parent: 2 - uid: 4292 @@ -75349,37 +75790,31 @@ entities: - uid: 4482 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,-40.5 parent: 2 - uid: 4483 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,-39.5 parent: 2 - uid: 4484 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,-38.5 parent: 2 - uid: 4485 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,-37.5 parent: 2 - uid: 4812 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,50.5 parent: 2 - uid: 5004 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,41.5 parent: 2 - uid: 5016 @@ -75422,6 +75857,11 @@ entities: - type: Transform pos: 64.5,-2.5 parent: 2 + - uid: 5124 + components: + - type: Transform + pos: 10.5,-38.5 + parent: 2 - uid: 5128 components: - type: Transform @@ -75522,36 +75962,11 @@ entities: - type: Transform pos: 8.5,-40.5 parent: 2 - - uid: 6114 - components: - - type: Transform - pos: 8.5,-39.5 - parent: 2 - - uid: 6115 - components: - - type: Transform - pos: 9.5,-39.5 - parent: 2 - - uid: 6116 - components: - - type: Transform - pos: 10.5,-39.5 - parent: 2 - - uid: 6118 - components: - - type: Transform - pos: 12.5,-39.5 - parent: 2 - uid: 6134 components: - type: Transform pos: 8.5,-42.5 parent: 2 - - uid: 6135 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 2 - uid: 6136 components: - type: Transform @@ -75562,11 +75977,6 @@ entities: - type: Transform pos: 11.5,-43.5 parent: 2 - - uid: 6140 - components: - - type: Transform - pos: 12.5,-42.5 - parent: 2 - uid: 6483 components: - type: Transform @@ -75580,19 +75990,16 @@ entities: - uid: 6807 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-12.5 parent: 2 - uid: 6810 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-15.5 parent: 2 - uid: 6833 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 - uid: 6838 @@ -75618,25 +76025,21 @@ entities: - uid: 7548 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,-2.5 parent: 2 - uid: 7549 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-10.5 parent: 2 - uid: 7592 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-14.5 parent: 2 - uid: 7593 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-14.5 parent: 2 - uid: 7597 @@ -75657,19 +76060,16 @@ entities: - uid: 7669 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 - uid: 7747 components: - type: Transform - rot: -1.5707963267948966 rad pos: -16.5,1.5 parent: 2 - uid: 7749 components: - type: Transform - rot: -1.5707963267948966 rad pos: -12.5,-2.5 parent: 2 - uid: 7763 @@ -75700,13 +76100,16 @@ entities: - uid: 7943 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-4.5 parent: 2 + - uid: 7945 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 - uid: 7957 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-2.5 parent: 2 - uid: 8083 @@ -75717,7 +76120,6 @@ entities: - uid: 8115 components: - type: Transform - rot: 1.5707963267948966 rad pos: -17.5,-2.5 parent: 2 - uid: 8736 @@ -75973,37 +76375,31 @@ entities: - uid: 11609 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 2 - uid: 11625 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-13.5 parent: 2 - uid: 11642 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 - uid: 11737 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,30.5 parent: 2 - uid: 11860 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,30.5 parent: 2 - uid: 11861 components: - type: Transform - rot: 3.141592653589793 rad pos: 55.5,30.5 parent: 2 - uid: 11971 @@ -76014,133 +76410,111 @@ entities: - uid: 12080 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,42.5 parent: 2 - uid: 12421 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-10.5 parent: 2 - uid: 12431 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,49.5 parent: 2 - uid: 12439 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,46.5 parent: 2 - uid: 12443 components: - type: Transform - rot: 3.141592653589793 rad pos: 58.5,46.5 parent: 2 - uid: 12444 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 - uid: 12451 components: - type: Transform - rot: 3.141592653589793 rad pos: -8.5,1.5 parent: 2 - uid: 12453 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-10.5 parent: 2 - uid: 12463 components: - type: Transform - rot: -1.5707963267948966 rad pos: -23.5,1.5 parent: 2 - uid: 12471 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-15.5 parent: 2 - uid: 12662 components: - type: Transform - rot: 3.141592653589793 rad pos: 55.5,46.5 parent: 2 - uid: 12670 components: - type: Transform - rot: 3.141592653589793 rad pos: 57.5,46.5 parent: 2 - uid: 12761 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,31.5 parent: 2 - uid: 12804 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,1.5 parent: 2 - uid: 12805 components: - type: Transform - rot: -1.5707963267948966 rad pos: -18.5,1.5 parent: 2 - uid: 12806 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-15.5 parent: 2 - uid: 12835 components: - type: Transform - rot: 3.141592653589793 rad pos: -6.5,1.5 parent: 2 - uid: 12847 components: - type: Transform - rot: -1.5707963267948966 rad pos: -22.5,1.5 parent: 2 - uid: 12935 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-5.5 parent: 2 - uid: 12936 components: - type: Transform - rot: -1.5707963267948966 rad pos: -17.5,1.5 parent: 2 - uid: 12939 components: - type: Transform - rot: -1.5707963267948966 rad pos: -15.5,1.5 parent: 2 - uid: 12940 components: - type: Transform - rot: -1.5707963267948966 rad pos: -13.5,1.5 parent: 2 - uid: 12979 @@ -76166,85 +76540,81 @@ entities: - uid: 13112 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,1.5 parent: 2 + - uid: 13120 + components: + - type: Transform + pos: 23.5,34.5 + parent: 2 + - uid: 13142 + components: + - type: Transform + pos: 24.5,34.5 + parent: 2 - uid: 13255 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-14.5 parent: 2 - uid: 13257 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-11.5 parent: 2 - uid: 13258 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-10.5 parent: 2 - uid: 13260 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-13.5 parent: 2 - uid: 13271 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-9.5 parent: 2 - uid: 13276 components: - type: Transform - rot: 1.5707963267948966 rad pos: -13.5,-21.5 parent: 2 - uid: 13283 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,51.5 parent: 2 - uid: 13295 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-21.5 parent: 2 - uid: 13297 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-21.5 parent: 2 - uid: 13298 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-21.5 parent: 2 - uid: 13299 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-15.5 parent: 2 - uid: 13301 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-17.5 parent: 2 - uid: 13302 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-16.5 parent: 2 - uid: 13312 @@ -76265,13 +76635,11 @@ entities: - uid: 13319 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-15.5 parent: 2 - uid: 13343 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-6.5 parent: 2 - uid: 13440 @@ -76292,19 +76660,16 @@ entities: - uid: 13557 components: - type: Transform - rot: 3.141592653589793 rad pos: 65.5,35.5 parent: 2 - uid: 13558 components: - type: Transform - rot: 3.141592653589793 rad pos: 65.5,36.5 parent: 2 - uid: 13559 components: - type: Transform - rot: 3.141592653589793 rad pos: 65.5,37.5 parent: 2 - uid: 13656 @@ -76315,7 +76680,6 @@ entities: - uid: 13657 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-8.5 parent: 2 - uid: 13692 @@ -76326,13 +76690,11 @@ entities: - uid: 13786 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-18.5 parent: 2 - uid: 13787 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-19.5 parent: 2 - uid: 13829 @@ -76343,55 +76705,46 @@ entities: - uid: 13840 components: - type: Transform - rot: 1.5707963267948966 rad pos: -14.5,-21.5 parent: 2 - uid: 13841 components: - type: Transform - rot: 1.5707963267948966 rad pos: -15.5,-21.5 parent: 2 - uid: 13850 components: - type: Transform - rot: 1.5707963267948966 rad pos: -19.5,-23.5 parent: 2 - uid: 13851 components: - type: Transform - rot: 1.5707963267948966 rad pos: -18.5,-23.5 parent: 2 - uid: 13852 components: - type: Transform - rot: 1.5707963267948966 rad pos: -9.5,-24.5 parent: 2 - uid: 13853 components: - type: Transform - rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 - uid: 13907 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-18.5 parent: 2 - uid: 13908 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-19.5 parent: 2 - uid: 14083 components: - type: Transform - rot: 1.5707963267948966 rad pos: 74.5,24.5 parent: 2 - uid: 14093 @@ -76402,67 +76755,56 @@ entities: - uid: 14165 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,30.5 parent: 2 - uid: 14166 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,29.5 parent: 2 - uid: 14167 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,31.5 parent: 2 - uid: 14170 components: - type: Transform - rot: 1.5707963267948966 rad pos: 79.5,28.5 parent: 2 - uid: 14197 components: - type: Transform - rot: 3.141592653589793 rad pos: 82.5,35.5 parent: 2 - uid: 14363 components: - type: Transform - rot: 1.5707963267948966 rad pos: 93.5,31.5 parent: 2 - uid: 14364 components: - type: Transform - rot: 1.5707963267948966 rad pos: 93.5,30.5 parent: 2 - uid: 14365 components: - type: Transform - rot: 1.5707963267948966 rad pos: 93.5,29.5 parent: 2 - uid: 14368 components: - type: Transform - rot: 1.5707963267948966 rad pos: 95.5,31.5 parent: 2 - uid: 14369 components: - type: Transform - rot: 1.5707963267948966 rad pos: 95.5,29.5 parent: 2 - uid: 14761 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,25.5 parent: 2 - uid: 14923 @@ -76475,6 +76817,16 @@ entities: - type: Transform pos: 45.5,-16.5 parent: 2 + - uid: 15326 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 2 + - uid: 15365 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 - proto: RemoteSignaller entities: - uid: 9222 @@ -76482,6 +76834,19 @@ entities: - type: Transform pos: 19.330996,46.803196 parent: 2 + - uid: 15427 + components: + - type: MetaData + name: robotics blast doors + - type: Transform + pos: 46.333313,11.606956 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 8248: + - Pressed: Toggle + 11022: + - Pressed: Toggle - proto: ResearchAndDevelopmentServer entities: - uid: 8233 @@ -76527,6 +76892,13 @@ entities: - type: Transform pos: 19.5661,-11.900069 parent: 2 +- proto: RubberChicken + entities: + - uid: 10670 + components: + - type: Transform + pos: 17.5,42.5 + parent: 2 - proto: SalvageMagnet entities: - uid: 11666 @@ -76877,11 +77249,6 @@ entities: - type: Transform pos: 16.49948,-26.476994 parent: 2 - - uid: 13432 - components: - - type: Transform - pos: 43.528275,-35.489674 - parent: 2 - proto: SheetSteel1 entities: - uid: 4672 @@ -76923,13 +77290,6 @@ entities: - type: Transform pos: 5.5,31.5 parent: 2 -- proto: ShuttersNormal - entities: - - uid: 5268 - components: - - type: Transform - pos: 44.5,12.5 - parent: 2 - proto: ShuttersNormalOpen entities: - uid: 265 @@ -77016,12 +77376,6 @@ entities: rot: -1.5707963267948966 rad pos: 28.5,21.5 parent: 2 - - uid: 13422 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-42.5 - parent: 2 - uid: 13476 components: - type: Transform @@ -77040,11 +77394,6 @@ entities: rot: -1.5707963267948966 rad pos: 8.5,-40.5 parent: 2 - - uid: 13479 - components: - - type: Transform - pos: 8.5,-43.5 - parent: 2 - uid: 13480 components: - type: Transform @@ -77060,30 +77409,6 @@ entities: - type: Transform pos: 11.5,-43.5 parent: 2 - - uid: 13483 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-39.5 - parent: 2 - - uid: 13484 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-39.5 - parent: 2 - - uid: 13485 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-39.5 - parent: 2 - - uid: 13486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-39.5 - parent: 2 - uid: 13488 components: - type: Transform @@ -77174,6 +77499,16 @@ entities: rot: -1.5707963267948966 rad pos: 4.5,16.5 parent: 2 + - uid: 15370 + components: + - type: Transform + pos: 33.5,16.5 + parent: 2 + - uid: 15371 + components: + - type: Transform + pos: 34.5,16.5 + parent: 2 - proto: ShuttersRadiationOpen entities: - uid: 449 @@ -77181,11 +77516,6 @@ entities: - type: Transform pos: 17.5,-37.5 parent: 2 - - uid: 779 - components: - - type: Transform - pos: 19.5,-37.5 - parent: 2 - uid: 780 components: - type: Transform @@ -77216,11 +77546,6 @@ entities: - type: Transform pos: 22.5,-37.5 parent: 2 - - uid: 4503 - components: - - type: Transform - pos: 23.5,-37.5 - parent: 2 - uid: 4635 components: - type: Transform @@ -77253,6 +77578,12 @@ entities: parent: 2 - proto: ShuttersWindowOpen entities: + - uid: 6937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-44.5 + parent: 2 - uid: 15088 components: - type: Transform @@ -77332,6 +77663,30 @@ entities: rot: 1.5707963267948966 rad pos: 18.5,44.5 parent: 2 + - uid: 15119 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-45.5 + parent: 2 + - uid: 15120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-46.5 + parent: 2 + - uid: 15121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-48.5 + parent: 2 + - uid: 15122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-47.5 + parent: 2 - proto: SignAi entities: - uid: 3417 @@ -77365,15 +77720,6 @@ entities: linkedPorts: 8103: - Pressed: Toggle - - uid: 202 - components: - - type: Transform - pos: 37.5,-29.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 55: - - Pressed: Toggle - uid: 1471 components: - type: MetaData @@ -77389,37 +77735,6 @@ entities: - Pressed: Toggle 270: - Pressed: Toggle - - uid: 4245 - components: - - type: Transform - pos: 37.5,-33.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 4257: - - Pressed: Toggle - - uid: 5043 - components: - - type: Transform - pos: 16.5,-30.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5124: - - Pressed: Toggle - - uid: 5685 - components: - - type: MetaData - name: Engineering Secure Storage Button - - type: Transform - pos: 12.5,-25.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 2834: - - Pressed: Toggle - 2835: - - Pressed: Toggle - uid: 7809 components: - type: Transform @@ -77430,15 +77745,6 @@ entities: linkedPorts: 8067: - Pressed: Toggle - - uid: 10321 - components: - - type: Transform - pos: 48.5,12.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 150: - - Pressed: Toggle - uid: 13002 components: - type: Transform @@ -77452,51 +77758,6 @@ entities: - Pressed: Toggle 12381: - Pressed: Toggle - - uid: 13491 - components: - - type: Transform - pos: 11.5,-32.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13490: - - Pressed: Toggle - 13489: - - Pressed: Toggle - 13488: - - Pressed: Toggle - - uid: 13492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-41.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 13422: - - Pressed: Toggle - 13483: - - Pressed: Toggle - 13484: - - Pressed: Toggle - 13485: - - Pressed: Toggle - 13486: - - Pressed: Toggle - 13478: - - Pressed: Toggle - 13477: - - Pressed: Toggle - 13476: - - Pressed: Toggle - 13479: - - Pressed: Toggle - 13480: - - Pressed: Toggle - 13481: - - Pressed: Toggle - 13482: - - Pressed: Toggle - uid: 14913 components: - type: Transform @@ -77571,13 +77832,21 @@ entities: - Pressed: Toggle 2044: - Pressed: Toggle - 779: - - Pressed: Toggle 780: - Pressed: Toggle 4502: - Pressed: Toggle - 4503: + - uid: 11019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 15371: + - Pressed: Toggle + 15370: - Pressed: Toggle - uid: 13655 components: @@ -77641,6 +77910,24 @@ entities: - Pressed: Toggle 12824: - Pressed: Toggle + - uid: 15124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-43.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 6937: + - Pressed: Toggle + 15119: + - Pressed: Toggle + 15120: + - Pressed: Toggle + 15122: + - Pressed: Toggle + 15121: + - Pressed: Toggle - uid: 15127 components: - type: Transform @@ -77709,6 +77996,14 @@ entities: rot: 3.141592653589793 rad pos: 76.5,0.5 parent: 2 +- proto: SignBridge + entities: + - uid: 10322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,38.5 + parent: 2 - proto: SignCans entities: - uid: 4569 @@ -77747,18 +78042,19 @@ entities: parent: 2 - proto: SignConference entities: - - uid: 11192 + - uid: 48 components: - type: Transform - pos: 25.484035,39.437214 + rot: 3.141592653589793 rad + pos: 25.5,40.5 parent: 2 - proto: SignCryo entities: - - uid: 13541 + - uid: 8564 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,16.5 + rot: 3.141592653589793 rad + pos: 19.5,17.5 parent: 2 - proto: SignCryogenicsMed entities: @@ -77810,12 +78106,6 @@ entities: parent: 2 - proto: SignDirectionalEvac entities: - - uid: 7848 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,1.5 - parent: 2 - uid: 7894 components: - type: Transform @@ -77834,6 +78124,12 @@ entities: rot: -1.5707963267948966 rad pos: 24.498083,2.3033948 parent: 2 + - uid: 15357 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 - proto: SignDirectionalHop entities: - uid: 11809 @@ -77929,6 +78225,17 @@ entities: parent: 2 - proto: SignDirectionalSolar entities: + - uid: 8569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 68.5,43.5 + parent: 2 + - uid: 8984 + components: + - type: Transform + pos: 3.5,-33.5 + parent: 2 - uid: 12297 components: - type: Transform @@ -77971,11 +78278,6 @@ entities: parent: 2 - proto: SignElectricalMed entities: - - uid: 4874 - components: - - type: Transform - pos: 3.5,-33.5 - parent: 2 - uid: 12351 components: - type: Transform @@ -78038,6 +78340,18 @@ entities: rot: -1.5707963267948966 rad pos: 33.5,49.5 parent: 2 + - uid: 15359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-33.5 + parent: 2 + - uid: 15369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,16.5 + parent: 2 - proto: SignEngine entities: - uid: 5157 @@ -78098,10 +78412,11 @@ entities: - type: Transform pos: 45.5,-49.5 parent: 2 - - uid: 12994 + - uid: 15123 components: - type: Transform - pos: 45.5,-43.5 + rot: -1.5707963267948966 rad + pos: 50.5,-45.5 parent: 2 - proto: SignFlammableMed entities: @@ -78250,6 +78565,11 @@ entities: rot: 1.5707963267948966 rad pos: 19.5,-6.5 parent: 2 + - uid: 15379 + components: + - type: Transform + pos: 16.5,40.5 + parent: 2 - proto: SignPrison entities: - uid: 13138 @@ -78276,19 +78596,19 @@ entities: - type: Transform pos: 57.499714,16.503765 parent: 2 - - uid: 12293 + - uid: 15362 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,16.5 + rot: -1.5707963267948966 rad + pos: 48.5,20.5 parent: 2 - proto: SignRobo entities: - - uid: 12291 + - uid: 8612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,12.5 + rot: 3.141592653589793 rad + pos: 48.5,12.5 parent: 2 - uid: 12292 components: @@ -78306,10 +78626,11 @@ entities: parent: 2 - proto: SignScience entities: - - uid: 11191 + - uid: 10037 components: - type: Transform - pos: 48.50537,15.474182 + rot: -1.5707963267948966 rad + pos: 48.5,15.5 parent: 2 - proto: SignSecurearea entities: @@ -78354,6 +78675,11 @@ entities: rot: 3.141592653589793 rad pos: 94.5,24.5 parent: 2 + - uid: 10321 + components: + - type: Transform + pos: 20.5,38.5 + parent: 2 - uid: 11690 components: - type: Transform @@ -78415,6 +78741,12 @@ entities: rot: 3.141592653589793 rad pos: 78.5,34.5 parent: 2 + - uid: 15401 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-29.5 + parent: 2 - proto: SignSecurity entities: - uid: 12294 @@ -78423,22 +78755,24 @@ entities: rot: 1.5707963267948966 rad pos: 28.5,27.5 parent: 2 -- proto: SignShock +- proto: SignShipDock entities: - - uid: 11017 + - uid: 15358 components: - type: Transform - pos: 42.5,-13.5 + pos: -3.5,1.5 parent: 2 - - uid: 11019 + - uid: 15360 components: - type: Transform - pos: 20.5,38.5 + pos: -11.5,1.5 parent: 2 - - uid: 11020 +- proto: SignShock + entities: + - uid: 11017 components: - type: Transform - pos: 25.5,38.5 + pos: 42.5,-13.5 parent: 2 - proto: SignSmoking entities: @@ -78539,6 +78873,13 @@ entities: rot: 1.5707963267948966 rad pos: 59.5,12.5 parent: 2 +- proto: SignVault + entities: + - uid: 10444 + components: + - type: Transform + pos: 19.5,38.5 + parent: 2 - proto: SignVirology entities: - uid: 10909 @@ -78686,31 +79027,43 @@ entities: entities: - uid: 14526 components: + - type: MetaData + name: SMES Bank 1 - type: Transform pos: 25.5,-32.5 parent: 2 - uid: 14565 components: + - type: MetaData + name: SMES Bank 4 - type: Transform pos: 27.5,-32.5 parent: 2 - uid: 15225 components: + - type: MetaData + name: SMES Bank 3 - type: Transform pos: 25.5,-34.5 parent: 2 - uid: 15226 components: + - type: MetaData + name: SMES Bank 6 - type: Transform pos: 27.5,-34.5 parent: 2 - uid: 15335 components: + - type: MetaData + name: SMES Bank 2 - type: Transform pos: 25.5,-33.5 parent: 2 - uid: 15336 components: + - type: MetaData + name: SMES Bank 5 - type: Transform pos: 27.5,-33.5 parent: 2 @@ -79451,10 +79804,10 @@ entities: parent: 2 - proto: SpawnMobCrabAtmos entities: - - uid: 5859 + - uid: 3024 components: - type: Transform - pos: 38.5,-28.5 + pos: 38.5,-31.5 parent: 2 - proto: SpawnMobFoxRenault entities: @@ -79514,6 +79867,13 @@ entities: - type: Transform pos: -14.5,-22.5 parent: 2 +- proto: SpawnMobParrot + entities: + - uid: 6125 + components: + - type: Transform + pos: 11.5,-33.5 + parent: 2 - proto: SpawnMobPossumMorty entities: - uid: 12303 @@ -79577,11 +79937,6 @@ entities: parent: 2 - proto: SpawnPointBorg entities: - - uid: 13142 - components: - - type: Transform - pos: 45.5,10.5 - parent: 2 - uid: 14628 components: - type: Transform @@ -80011,6 +80366,14 @@ entities: - type: Transform pos: 67.05991,-3.359559 parent: 2 +- proto: StairStageWood + entities: + - uid: 9889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 2 - proto: StasisBed entities: - uid: 1711 @@ -80047,11 +80410,6 @@ entities: rot: 3.141592653589793 rad pos: -14.5,-2.5 parent: 2 - - uid: 1761 - components: - - type: Transform - pos: 19.5,38.5 - parent: 2 - uid: 2022 components: - type: Transform @@ -80069,15 +80427,22 @@ entities: - type: Transform pos: 9.5,2.5 parent: 2 - - uid: 8984 + - uid: 11292 components: - type: Transform - pos: 34.5,16.5 + pos: 28.5,-1.5 parent: 2 - - uid: 11292 + - uid: 15366 components: - type: Transform - pos: 28.5,-1.5 + rot: 3.141592653589793 rad + pos: 34.5,12.5 + parent: 2 + - uid: 15380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,35.5 parent: 2 - proto: Stimpack entities: @@ -80171,18 +80536,6 @@ entities: - type: Transform pos: 54.5,37.5 parent: 2 - - uid: 15120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 29.777733,-4.241445 - parent: 2 - - uid: 15121 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 31.173567,-4.241445 - parent: 2 - proto: StoolBar entities: - uid: 1615 @@ -80316,13 +80669,6 @@ entities: parent: 2 - type: PowerNetworkBattery supplyRampPosition: 2.3437593 - - uid: 4101 - components: - - type: MetaData - name: South West Substation - - type: Transform - pos: 16.5,-14.5 - parent: 2 - uid: 4431 components: - type: MetaData @@ -80394,6 +80740,11 @@ entities: - type: Transform pos: 37.5,34.5 parent: 2 + - uid: 9885 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 - uid: 13688 components: - type: MetaData @@ -80506,6 +80857,24 @@ entities: - type: Transform pos: 41.5,28.5 parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - uid: 11209 components: - type: Transform @@ -80533,6 +80902,14 @@ entities: parent: 2 - type: SurveillanceCamera id: AI Core Hallway + - uid: 8250 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,40.5 + parent: 2 + - type: SurveillanceCamera + id: Vault - uid: 12735 components: - type: Transform @@ -80555,17 +80932,6 @@ entities: - SurveillanceCameraCommand nameSet: True id: HoP Office - - uid: 12754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,41.5 - parent: 2 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Vault - uid: 12755 components: - type: Transform @@ -82107,6 +82473,11 @@ entities: - type: Transform pos: 33.5,-5.5 parent: 2 + - uid: 1662 + components: + - type: Transform + pos: 29.5,-3.5 + parent: 2 - uid: 1758 components: - type: Transform @@ -82138,6 +82509,11 @@ entities: rot: 3.141592653589793 rad pos: 19.5,5.5 parent: 2 + - uid: 2146 + components: + - type: Transform + pos: 30.5,-3.5 + parent: 2 - uid: 2151 components: - type: Transform @@ -82463,11 +82839,6 @@ entities: - type: Transform pos: 34.5,17.5 parent: 2 - - uid: 8569 - components: - - type: Transform - pos: 35.5,17.5 - parent: 2 - uid: 8858 components: - type: Transform @@ -82595,6 +82966,12 @@ entities: - type: Transform pos: 57.5,-14.5 parent: 2 + - uid: 11191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,11.5 + parent: 2 - uid: 11302 components: - type: Transform @@ -82638,6 +83015,12 @@ entities: rot: 1.5707963267948966 rad pos: 51.5,4.5 parent: 2 + - uid: 11522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 46.5,9.5 + parent: 2 - uid: 11736 components: - type: Transform @@ -82700,11 +83083,6 @@ entities: rot: 3.141592653589793 rad pos: 15.5,24.5 parent: 2 - - uid: 13120 - components: - - type: Transform - pos: 48.5,11.5 - parent: 2 - uid: 13564 components: - type: Transform @@ -82747,6 +83125,11 @@ entities: - type: Transform pos: 38.5,-29.5 parent: 2 + - uid: 15372 + components: + - type: Transform + pos: 33.5,17.5 + parent: 2 - proto: TableCarpet entities: - uid: 2266 @@ -83063,11 +83446,6 @@ entities: - type: Transform pos: 54.5,-4.5 parent: 2 - - uid: 5365 - components: - - type: Transform - pos: 47.5,12.5 - parent: 2 - uid: 5813 components: - type: Transform @@ -83098,6 +83476,11 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 2 + - uid: 7847 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 - uid: 8433 components: - type: Transform @@ -83113,6 +83496,12 @@ entities: - type: Transform pos: 8.5,-6.5 parent: 2 + - uid: 11413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,42.5 + parent: 2 - uid: 11475 components: - type: Transform @@ -83184,6 +83573,12 @@ entities: - type: Transform pos: 43.5,-2.5 parent: 2 + - uid: 15376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,42.5 + parent: 2 - proto: TableReinforcedGlass entities: - uid: 14145 @@ -83383,16 +83778,12 @@ entities: rot: 1.5707963267948966 rad pos: 9.5,18.5 parent: 2 - - uid: 13473 + - uid: 13486 components: - type: Transform + rot: -1.5707963267948966 rad pos: 9.5,-42.5 parent: 2 - - uid: 13475 - components: - - type: Transform - pos: 10.5,-42.5 - parent: 2 - proto: TargetClown entities: - uid: 9607 @@ -83675,6 +84066,11 @@ entities: - type: Transform pos: 24.5,-9.5 parent: 2 + - uid: 5971 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 - uid: 6813 components: - type: Transform @@ -83688,13 +84084,11 @@ entities: - uid: 10993 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,-16.5 parent: 2 - uid: 10994 components: - type: Transform - rot: 3.141592653589793 rad pos: 17.5,-18.5 parent: 2 - uid: 11195 @@ -83796,7 +84190,7 @@ entities: - uid: 12095 components: - type: Transform - pos: 19.490185,40.6353 + pos: 17.50125,41.52545 parent: 2 - proto: ToolboxMechanicalFilled entities: @@ -83815,6 +84209,11 @@ entities: - type: Transform pos: 18.414553,24.540695 parent: 2 + - uid: 11020 + components: + - type: Transform + pos: 46.489563,11.711195 + parent: 2 - uid: 11410 components: - type: Transform @@ -84034,17 +84433,6 @@ entities: - Left: Forward - Right: Reverse - Middle: Off - - uid: 10322 - components: - - type: Transform - pos: 44.5,11.5 - parent: 2 - - type: DeviceLinkSource - linkedPorts: - 5268: - - Left: Open - - Right: Open - - Middle: Close - proto: UniformPrinter entities: - uid: 10283 @@ -84482,12 +84870,6 @@ entities: parent: 2 - proto: WallmountTelescreen entities: - - uid: 10669 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 - parent: 2 - uid: 10831 components: - type: Transform @@ -84511,7 +84893,6 @@ entities: - uid: 20 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-17.5 parent: 2 - uid: 23 @@ -84532,25 +84913,21 @@ entities: - uid: 89 components: - type: Transform - rot: 3.141592653589793 rad pos: -25.5,1.5 parent: 2 - uid: 100 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-18.5 parent: 2 - uid: 101 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,-18.5 parent: 2 - uid: 106 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-17.5 parent: 2 - uid: 156 @@ -84601,7 +84978,6 @@ entities: - uid: 201 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-17.5 parent: 2 - uid: 206 @@ -84682,7 +85058,6 @@ entities: - uid: 319 components: - type: Transform - rot: 3.141592653589793 rad pos: 60.5,32.5 parent: 2 - uid: 324 @@ -84693,13 +85068,11 @@ entities: - uid: 331 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,-19.5 parent: 2 - uid: 336 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-2.5 parent: 2 - uid: 343 @@ -84710,7 +85083,6 @@ entities: - uid: 346 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-3.5 parent: 2 - uid: 435 @@ -84726,7 +85098,6 @@ entities: - uid: 462 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,1.5 parent: 2 - uid: 470 @@ -84742,7 +85113,6 @@ entities: - uid: 481 components: - type: Transform - rot: 3.141592653589793 rad pos: 4.5,-17.5 parent: 2 - uid: 485 @@ -84838,7 +85208,6 @@ entities: - uid: 510 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,1.5 parent: 2 - uid: 534 @@ -84906,11 +85275,6 @@ entities: - type: Transform pos: 14.5,-14.5 parent: 2 - - uid: 619 - components: - - type: Transform - pos: 15.5,-14.5 - parent: 2 - uid: 620 components: - type: Transform @@ -85104,13 +85468,11 @@ entities: - uid: 669 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,42.5 parent: 2 - uid: 687 components: - type: Transform - rot: 3.141592653589793 rad pos: 6.5,36.5 parent: 2 - uid: 690 @@ -85281,7 +85643,6 @@ entities: - uid: 745 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-34.5 parent: 2 - uid: 753 @@ -85297,7 +85658,6 @@ entities: - uid: 757 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-34.5 parent: 2 - uid: 758 @@ -85328,7 +85688,6 @@ entities: - uid: 765 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-32.5 parent: 2 - uid: 766 @@ -85349,31 +85708,26 @@ entities: - uid: 776 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-32.5 parent: 2 - uid: 777 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-32.5 parent: 2 - uid: 785 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-32.5 parent: 2 - uid: 804 components: - type: Transform - rot: 1.5707963267948966 rad pos: 48.5,-32.5 parent: 2 - uid: 805 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-33.5 parent: 2 - uid: 823 @@ -85389,25 +85743,21 @@ entities: - uid: 838 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-31.5 parent: 2 - uid: 839 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-30.5 parent: 2 - uid: 842 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-29.5 parent: 2 - uid: 900 components: - type: Transform - rot: 3.141592653589793 rad pos: 6.5,35.5 parent: 2 - uid: 915 @@ -85478,13 +85828,11 @@ entities: - uid: 1007 components: - type: Transform - rot: 1.5707963267948966 rad pos: 48.5,-34.5 parent: 2 - uid: 1008 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-34.5 parent: 2 - uid: 1021 @@ -85645,13 +85993,11 @@ entities: - uid: 1295 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-46.5 parent: 2 - uid: 1296 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-48.5 parent: 2 - uid: 1297 @@ -85672,7 +86018,6 @@ entities: - uid: 1334 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-2.5 parent: 2 - uid: 1337 @@ -85748,7 +86093,6 @@ entities: - uid: 1599 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-52.5 parent: 2 - uid: 1638 @@ -85784,7 +86128,6 @@ entities: - uid: 1673 components: - type: Transform - rot: 3.141592653589793 rad pos: 19.5,-15.5 parent: 2 - uid: 1700 @@ -85900,25 +86243,21 @@ entities: - uid: 2033 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-20.5 parent: 2 - uid: 2058 components: - type: Transform - rot: -1.5707963267948966 rad pos: 15.5,-42.5 parent: 2 - uid: 2070 components: - type: Transform - rot: 1.5707963267948966 rad pos: 48.5,-30.5 parent: 2 - uid: 2075 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-30.5 parent: 2 - uid: 2077 @@ -85929,7 +86268,6 @@ entities: - uid: 2088 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-24.5 parent: 2 - uid: 2102 @@ -85945,25 +86283,21 @@ entities: - uid: 2138 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-28.5 parent: 2 - uid: 2141 components: - type: Transform - rot: 1.5707963267948966 rad pos: 48.5,-28.5 parent: 2 - uid: 2142 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-30.5 parent: 2 - uid: 2144 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-28.5 parent: 2 - uid: 2190 @@ -85991,11 +86325,6 @@ entities: - type: Transform pos: 32.5,16.5 parent: 2 - - uid: 2195 - components: - - type: Transform - pos: 33.5,16.5 - parent: 2 - uid: 2196 components: - type: Transform @@ -86069,7 +86398,6 @@ entities: - uid: 2211 components: - type: Transform - rot: 3.141592653589793 rad pos: 51.5,29.5 parent: 2 - uid: 2212 @@ -86095,7 +86423,6 @@ entities: - uid: 2218 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,29.5 parent: 2 - uid: 2219 @@ -86106,19 +86433,16 @@ entities: - uid: 2220 components: - type: Transform - rot: 3.141592653589793 rad pos: 50.5,29.5 parent: 2 - uid: 2226 components: - type: Transform - rot: 3.141592653589793 rad pos: 63.5,44.5 parent: 2 - uid: 2228 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,32.5 parent: 2 - uid: 2229 @@ -86129,7 +86453,6 @@ entities: - uid: 2230 components: - type: Transform - rot: 3.141592653589793 rad pos: 34.5,32.5 parent: 2 - uid: 2232 @@ -86200,7 +86523,6 @@ entities: - uid: 2306 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-57.5 parent: 2 - uid: 2313 @@ -86316,19 +86638,16 @@ entities: - uid: 2400 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-27.5 parent: 2 - uid: 2439 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-30.5 parent: 2 - uid: 2441 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-23.5 parent: 2 - uid: 2443 @@ -86361,16 +86680,6 @@ entities: - type: Transform pos: 36.5,16.5 parent: 2 - - uid: 2449 - components: - - type: Transform - pos: 35.5,16.5 - parent: 2 - - uid: 2450 - components: - - type: Transform - pos: 34.5,16.5 - parent: 2 - uid: 2485 components: - type: Transform @@ -86591,11 +86900,6 @@ entities: - type: Transform pos: 20.5,42.5 parent: 2 - - uid: 2628 - components: - - type: Transform - pos: 19.5,42.5 - parent: 2 - uid: 2629 components: - type: Transform @@ -86611,11 +86915,6 @@ entities: - type: Transform pos: 17.5,43.5 parent: 2 - - uid: 2632 - components: - - type: Transform - pos: 17.5,42.5 - parent: 2 - uid: 2633 components: - type: Transform @@ -86761,10 +87060,14 @@ entities: - type: Transform pos: 14.5,34.5 parent: 2 + - uid: 2685 + components: + - type: Transform + pos: 35.5,16.5 + parent: 2 - uid: 2785 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-24.5 parent: 2 - uid: 2800 @@ -86905,13 +87208,11 @@ entities: - uid: 2912 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-24.5 parent: 2 - uid: 2918 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-24.5 parent: 2 - uid: 2933 @@ -86974,11 +87275,6 @@ entities: - type: Transform pos: 43.5,11.5 parent: 2 - - uid: 3024 - components: - - type: Transform - pos: 43.5,10.5 - parent: 2 - uid: 3025 components: - type: Transform @@ -87172,7 +87468,6 @@ entities: - uid: 3119 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-2.5 parent: 2 - uid: 3125 @@ -87183,19 +87478,16 @@ entities: - uid: 3133 components: - type: Transform - rot: 1.5707963267948966 rad pos: -25.5,-19.5 parent: 2 - uid: 3135 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-3.5 parent: 2 - uid: 3142 components: - type: Transform - rot: 1.5707963267948966 rad pos: 37.5,28.5 parent: 2 - uid: 3146 @@ -87266,7 +87558,6 @@ entities: - uid: 3182 components: - type: Transform - rot: -1.5707963267948966 rad pos: 69.5,-10.5 parent: 2 - uid: 3194 @@ -87302,31 +87593,26 @@ entities: - uid: 3203 components: - type: Transform - rot: -1.5707963267948966 rad pos: 41.5,37.5 parent: 2 - uid: 3207 components: - type: Transform - rot: 3.141592653589793 rad pos: 32.5,32.5 parent: 2 - uid: 3210 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,-17.5 parent: 2 - uid: 3236 components: - type: Transform - rot: -1.5707963267948966 rad pos: 70.5,-13.5 parent: 2 - uid: 3256 components: - type: Transform - rot: 3.141592653589793 rad pos: 48.5,29.5 parent: 2 - uid: 3262 @@ -87412,49 +87698,41 @@ entities: - uid: 3285 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-22.5 parent: 2 - uid: 3287 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-26.5 parent: 2 - uid: 3288 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-28.5 parent: 2 - uid: 3298 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-26.5 parent: 2 - uid: 3300 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-25.5 parent: 2 - uid: 3305 components: - type: Transform - rot: 1.5707963267948966 rad pos: 48.5,-24.5 parent: 2 - uid: 3306 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-28.5 parent: 2 - uid: 3313 components: - type: Transform - rot: 1.5707963267948966 rad pos: 47.5,-26.5 parent: 2 - uid: 3315 @@ -87470,7 +87748,6 @@ entities: - uid: 3318 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-17.5 parent: 2 - uid: 3352 @@ -87686,7 +87963,6 @@ entities: - uid: 3456 components: - type: Transform - rot: 3.141592653589793 rad pos: 12.5,34.5 parent: 2 - uid: 3462 @@ -87827,13 +88103,11 @@ entities: - uid: 3514 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-26.5 parent: 2 - uid: 3517 components: - type: Transform - rot: 1.5707963267948966 rad pos: 48.5,-26.5 parent: 2 - uid: 3528 @@ -88579,7 +88853,6 @@ entities: - uid: 3821 components: - type: Transform - rot: 3.141592653589793 rad pos: 59.5,31.5 parent: 2 - uid: 3822 @@ -88807,15 +89080,24 @@ entities: - type: Transform pos: 45.5,-36.5 parent: 2 + - uid: 4091 + components: + - type: Transform + pos: 19.5,-37.5 + parent: 2 - uid: 4112 components: - type: Transform pos: 19.5,-13.5 parent: 2 + - uid: 4121 + components: + - type: Transform + pos: 23.5,-37.5 + parent: 2 - uid: 4127 components: - type: Transform - rot: 3.141592653589793 rad pos: 52.5,40.5 parent: 2 - uid: 4128 @@ -88826,55 +89108,46 @@ entities: - uid: 4166 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-21.5 parent: 2 - uid: 4168 components: - type: Transform - rot: 1.5707963267948966 rad pos: 49.5,-21.5 parent: 2 - uid: 4169 components: - type: Transform - rot: 1.5707963267948966 rad pos: 52.5,-21.5 parent: 2 - uid: 4170 components: - type: Transform - rot: 1.5707963267948966 rad pos: 51.5,-21.5 parent: 2 - uid: 4171 components: - type: Transform - rot: 1.5707963267948966 rad pos: 53.5,-21.5 parent: 2 - uid: 4172 components: - type: Transform - rot: 1.5707963267948966 rad pos: 54.5,-21.5 parent: 2 - uid: 4173 components: - type: Transform - rot: 1.5707963267948966 rad pos: 55.5,-21.5 parent: 2 - uid: 4174 components: - type: Transform - rot: 1.5707963267948966 rad pos: 55.5,-20.5 parent: 2 - uid: 4175 components: - type: Transform - rot: 1.5707963267948966 rad pos: 50.5,-34.5 parent: 2 - uid: 4187 @@ -88965,7 +89238,6 @@ entities: - uid: 4346 components: - type: Transform - rot: 3.141592653589793 rad pos: 59.5,41.5 parent: 2 - uid: 4347 @@ -88981,7 +89253,6 @@ entities: - uid: 4364 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-53.5 parent: 2 - uid: 4367 @@ -89072,7 +89343,6 @@ entities: - uid: 4399 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,40.5 parent: 2 - uid: 4417 @@ -89103,31 +89373,26 @@ entities: - uid: 4466 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,-41.5 parent: 2 - uid: 4468 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,-41.5 parent: 2 - uid: 4472 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,-41.5 parent: 2 - uid: 4477 components: - type: Transform - rot: 3.141592653589793 rad pos: 44.5,-41.5 parent: 2 - uid: 4481 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,-41.5 parent: 2 - uid: 4486 @@ -89148,27 +89413,28 @@ entities: - uid: 4568 components: - type: Transform - rot: -1.5707963267948966 rad pos: 59.5,26.5 parent: 2 - uid: 4573 components: - type: Transform - rot: -1.5707963267948966 rad pos: 60.5,26.5 parent: 2 - uid: 4633 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-47.5 parent: 2 - uid: 4634 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-49.5 parent: 2 + - uid: 4645 + components: + - type: Transform + pos: 26.5,-37.5 + parent: 2 - uid: 4743 components: - type: Transform @@ -89177,7 +89443,6 @@ entities: - uid: 4744 components: - type: Transform - rot: 3.141592653589793 rad pos: 52.5,32.5 parent: 2 - uid: 4829 @@ -89198,7 +89463,6 @@ entities: - uid: 5199 components: - type: Transform - rot: 3.141592653589793 rad pos: 59.5,30.5 parent: 2 - uid: 5291 @@ -89234,13 +89498,12 @@ entities: - uid: 5362 components: - type: Transform - rot: 3.141592653589793 rad pos: 52.5,41.5 parent: 2 - - uid: 5364 + - uid: 5388 components: - type: Transform - pos: 46.5,12.5 + pos: 68.5,47.5 parent: 2 - uid: 5477 components: @@ -89290,7 +89553,6 @@ entities: - uid: 5677 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,46.5 parent: 2 - uid: 5724 @@ -89311,9 +89573,13 @@ entities: - uid: 5967 components: - type: Transform - rot: 3.141592653589793 rad pos: 59.5,46.5 parent: 2 + - uid: 6119 + components: + - type: Transform + pos: 10.5,-39.5 + parent: 2 - uid: 6120 components: - type: Transform @@ -89342,7 +89608,6 @@ entities: - uid: 6196 components: - type: Transform - rot: 3.141592653589793 rad pos: 60.5,41.5 parent: 2 - uid: 6209 @@ -89368,9 +89633,18 @@ entities: - uid: 6335 components: - type: Transform - rot: 3.141592653589793 rad pos: 30.5,34.5 parent: 2 + - uid: 6680 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 2 + - uid: 6767 + components: + - type: Transform + pos: 8.5,-43.5 + parent: 2 - uid: 6782 components: - type: Transform @@ -89394,13 +89668,11 @@ entities: - uid: 6814 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 2 - uid: 6815 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-17.5 parent: 2 - uid: 6822 @@ -89436,15 +89708,18 @@ entities: - uid: 6889 components: - type: Transform - rot: 3.141592653589793 rad pos: -14.5,1.5 parent: 2 - uid: 6896 components: - type: Transform - rot: 3.141592653589793 rad pos: -21.5,1.5 parent: 2 + - uid: 6916 + components: + - type: Transform + pos: 9.5,-39.5 + parent: 2 - uid: 7251 components: - type: Transform @@ -89503,25 +89778,21 @@ entities: - uid: 7585 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,21.5 parent: 2 - uid: 7598 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-15.5 parent: 2 - uid: 7605 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-10.5 parent: 2 - uid: 7613 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-8.5 parent: 2 - uid: 7665 @@ -89542,15 +89813,8 @@ entities: - uid: 7750 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-8.5 parent: 2 - - uid: 7752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,27.5 - parent: 2 - uid: 7754 components: - type: Transform @@ -89564,19 +89828,16 @@ entities: - uid: 7756 components: - type: Transform - rot: 3.141592653589793 rad pos: 63.5,43.5 parent: 2 - uid: 7769 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 - uid: 7779 components: - type: Transform - rot: -1.5707963267948966 rad pos: -19.5,-8.5 parent: 2 - uid: 7839 @@ -89592,7 +89853,6 @@ entities: - uid: 7843 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-17.5 parent: 2 - uid: 7875 @@ -89788,19 +90048,16 @@ entities: - uid: 8044 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-55.5 parent: 2 - uid: 8045 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-58.5 parent: 2 - uid: 8052 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,29.5 parent: 2 - uid: 8102 @@ -89816,7 +90073,6 @@ entities: - uid: 8223 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-56.5 parent: 2 - uid: 8251 @@ -89879,12 +90135,6 @@ entities: - type: Transform pos: 44.5,16.5 parent: 2 - - uid: 8396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,26.5 - parent: 2 - uid: 8405 components: - type: Transform @@ -89893,19 +90143,16 @@ entities: - uid: 8411 components: - type: Transform - rot: 3.141592653589793 rad pos: 60.5,40.5 parent: 2 - uid: 8436 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,41.5 parent: 2 - uid: 8447 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,22.5 parent: 2 - uid: 8674 @@ -89916,7 +90163,6 @@ entities: - uid: 8677 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,31.5 parent: 2 - uid: 8700 @@ -90162,7 +90408,6 @@ entities: - uid: 9175 components: - type: Transform - rot: 3.141592653589793 rad pos: 69.5,-14.5 parent: 2 - uid: 9217 @@ -90188,13 +90433,11 @@ entities: - uid: 9348 components: - type: Transform - rot: 3.141592653589793 rad pos: 31.5,34.5 parent: 2 - uid: 9455 components: - type: Transform - rot: 3.141592653589793 rad pos: 32.5,34.5 parent: 2 - uid: 9726 @@ -90207,6 +90450,16 @@ entities: - type: Transform pos: 58.5,33.5 parent: 2 + - uid: 9890 + components: + - type: Transform + pos: 10.5,-37.5 + parent: 2 + - uid: 9893 + components: + - type: Transform + pos: 8.5,-39.5 + parent: 2 - uid: 10085 components: - type: Transform @@ -90215,19 +90468,16 @@ entities: - uid: 10089 components: - type: Transform - rot: 3.141592653589793 rad pos: 39.5,-20.5 parent: 2 - uid: 10090 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,-20.5 parent: 2 - uid: 10091 components: - type: Transform - rot: 3.141592653589793 rad pos: 37.5,-20.5 parent: 2 - uid: 10092 @@ -90338,61 +90588,51 @@ entities: - uid: 10140 components: - type: Transform - rot: 3.141592653589793 rad pos: 4.5,-21.5 parent: 2 - uid: 10219 components: - type: Transform - rot: 3.141592653589793 rad pos: 41.5,-20.5 parent: 2 - uid: 10220 components: - type: Transform - rot: 3.141592653589793 rad pos: 49.5,-20.5 parent: 2 - uid: 10221 components: - type: Transform - rot: 3.141592653589793 rad pos: 48.5,-20.5 parent: 2 - uid: 10222 components: - type: Transform - rot: 3.141592653589793 rad pos: 47.5,-20.5 parent: 2 - uid: 10223 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,-20.5 parent: 2 - uid: 10224 components: - type: Transform - rot: 3.141592653589793 rad pos: 45.5,-20.5 parent: 2 - uid: 10225 components: - type: Transform - rot: 3.141592653589793 rad pos: 44.5,-20.5 parent: 2 - uid: 10226 components: - type: Transform - rot: 3.141592653589793 rad pos: 43.5,-20.5 parent: 2 - uid: 10227 components: - type: Transform - rot: 3.141592653589793 rad pos: 42.5,-20.5 parent: 2 - uid: 10319 @@ -90403,7 +90643,6 @@ entities: - uid: 10320 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,30.5 parent: 2 - uid: 10745 @@ -90464,43 +90703,41 @@ entities: - uid: 10967 components: - type: Transform - rot: -1.5707963267948966 rad pos: 24.5,-43.5 parent: 2 - uid: 10987 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-51.5 parent: 2 - uid: 10990 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-56.5 parent: 2 - uid: 10998 components: - type: Transform - rot: -1.5707963267948966 rad pos: 18.5,-43.5 parent: 2 - uid: 11005 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-50.5 parent: 2 - uid: 11006 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-54.5 parent: 2 + - uid: 11223 + components: + - type: Transform + pos: 16.5,43.5 + parent: 2 - uid: 11280 components: - type: Transform - rot: 3.141592653589793 rad pos: 52.5,31.5 parent: 2 - uid: 11398 @@ -90516,13 +90753,11 @@ entities: - uid: 11613 components: - type: Transform - rot: -1.5707963267948966 rad pos: -20.5,-8.5 parent: 2 - uid: 11676 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,37.5 parent: 2 - uid: 11691 @@ -90538,13 +90773,11 @@ entities: - uid: 11733 components: - type: Transform - rot: 1.5707963267948966 rad pos: 37.5,20.5 parent: 2 - uid: 11734 components: - type: Transform - rot: 1.5707963267948966 rad pos: 39.5,20.5 parent: 2 - uid: 11769 @@ -90600,31 +90833,26 @@ entities: - uid: 11819 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,39.5 parent: 2 - uid: 11820 components: - type: Transform - rot: 1.5707963267948966 rad pos: 11.5,-53.5 parent: 2 - uid: 12102 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,42.5 parent: 2 - uid: 12142 components: - type: Transform - rot: 3.141592653589793 rad pos: 58.5,42.5 parent: 2 - uid: 12143 components: - type: Transform - rot: 3.141592653589793 rad pos: 59.5,42.5 parent: 2 - uid: 12228 @@ -90632,64 +90860,59 @@ entities: - type: Transform pos: 70.5,22.5 parent: 2 + - uid: 12293 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 - uid: 12424 components: - type: Transform - rot: -1.5707963267948966 rad pos: 7.5,39.5 parent: 2 - uid: 12432 components: - type: Transform - rot: 3.141592653589793 rad pos: 58.5,49.5 parent: 2 - uid: 12433 components: - type: Transform - rot: 3.141592653589793 rad pos: 58.5,51.5 parent: 2 - uid: 12434 components: - type: Transform - rot: 3.141592653589793 rad pos: 58.5,50.5 parent: 2 - uid: 12435 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,50.5 parent: 2 - uid: 12436 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,49.5 parent: 2 - uid: 12438 components: - type: Transform - rot: 3.141592653589793 rad pos: 59.5,47.5 parent: 2 - uid: 12440 components: - type: Transform - rot: 3.141592653589793 rad pos: 53.5,47.5 parent: 2 - uid: 12446 components: - type: Transform - rot: -1.5707963267948966 rad pos: -8.5,-2.5 parent: 2 - uid: 12520 components: - type: Transform - rot: -1.5707963267948966 rad pos: 5.5,30.5 parent: 2 - uid: 12521 @@ -90700,19 +90923,16 @@ entities: - uid: 12664 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,28.5 parent: 2 - uid: 12669 components: - type: Transform - rot: 3.141592653589793 rad pos: 56.5,46.5 parent: 2 - uid: 12775 components: - type: Transform - rot: 1.5707963267948966 rad pos: 20.5,-60.5 parent: 2 - uid: 12888 @@ -90858,7 +91078,6 @@ entities: - uid: 13117 components: - type: Transform - rot: 1.5707963267948966 rad pos: 36.5,20.5 parent: 2 - uid: 13184 @@ -90889,19 +91108,16 @@ entities: - uid: 13249 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 2 - uid: 13250 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-15.5 parent: 2 - uid: 13259 components: - type: Transform - rot: -1.5707963267948966 rad pos: -14.5,-2.5 parent: 2 - uid: 13263 @@ -90912,13 +91128,11 @@ entities: - uid: 13264 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-2.5 parent: 2 - uid: 13265 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,-2.5 parent: 2 - uid: 13266 @@ -90934,7 +91148,6 @@ entities: - uid: 13274 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-18.5 parent: 2 - uid: 13275 @@ -90945,55 +91158,46 @@ entities: - uid: 13281 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,51.5 parent: 2 - uid: 13289 components: - type: Transform - rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 2 - uid: 13303 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-18.5 parent: 2 - uid: 13307 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-23.5 parent: 2 - uid: 13308 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-19.5 parent: 2 - uid: 13309 components: - type: Transform - rot: -1.5707963267948966 rad pos: -27.5,-19.5 parent: 2 - uid: 13310 components: - type: Transform - rot: -1.5707963267948966 rad pos: -26.5,-23.5 parent: 2 - uid: 13311 components: - type: Transform - rot: -1.5707963267948966 rad pos: -25.5,-23.5 parent: 2 - uid: 13315 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 - uid: 13316 @@ -91004,13 +91208,11 @@ entities: - uid: 13317 components: - type: Transform - rot: -1.5707963267948966 rad pos: -21.5,-20.5 parent: 2 - uid: 13322 components: - type: Transform - rot: -1.5707963267948966 rad pos: -9.5,-8.5 parent: 2 - uid: 13332 @@ -91038,6 +91240,11 @@ entities: - type: Transform pos: -8.5,-21.5 parent: 2 + - uid: 13422 + components: + - type: Transform + pos: 12.5,-39.5 + parent: 2 - uid: 13444 components: - type: Transform @@ -91121,19 +91328,16 @@ entities: - uid: 13561 components: - type: Transform - rot: -1.5707963267948966 rad pos: 70.5,-11.5 parent: 2 - uid: 13562 components: - type: Transform - rot: -1.5707963267948966 rad pos: 70.5,-10.5 parent: 2 - uid: 13563 components: - type: Transform - rot: -1.5707963267948966 rad pos: 70.5,-14.5 parent: 2 - uid: 13565 @@ -91144,19 +91348,16 @@ entities: - uid: 13566 components: - type: Transform - rot: 3.141592653589793 rad pos: 60.5,31.5 parent: 2 - uid: 13573 components: - type: Transform - rot: 3.141592653589793 rad pos: 54.5,30.5 parent: 2 - uid: 13574 components: - type: Transform - rot: 3.141592653589793 rad pos: 58.5,30.5 parent: 2 - uid: 13614 @@ -91204,11 +91405,6 @@ entities: - type: Transform pos: 25.5,-37.5 parent: 2 - - uid: 13695 - components: - - type: Transform - pos: 26.5,-37.5 - parent: 2 - uid: 13696 components: - type: Transform @@ -91242,13 +91438,11 @@ entities: - uid: 13709 components: - type: Transform - rot: 3.141592653589793 rad pos: 4.5,-19.5 parent: 2 - uid: 13710 components: - type: Transform - rot: 3.141592653589793 rad pos: 4.5,-18.5 parent: 2 - uid: 13767 @@ -91314,205 +91508,171 @@ entities: - uid: 13781 components: - type: Transform - rot: 1.5707963267948966 rad pos: 22.5,-60.5 parent: 2 - uid: 13783 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-20.5 parent: 2 - uid: 13785 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-20.5 parent: 2 - uid: 13791 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-19.5 parent: 2 - uid: 13828 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-19.5 parent: 2 - uid: 13830 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-21.5 parent: 2 - uid: 13831 components: - type: Transform - rot: 1.5707963267948966 rad pos: 2.5,-22.5 parent: 2 - uid: 13832 components: - type: Transform - rot: 1.5707963267948966 rad pos: 1.5,-22.5 parent: 2 - uid: 13833 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,-22.5 parent: 2 - uid: 13834 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,-22.5 parent: 2 - uid: 13835 components: - type: Transform - rot: 1.5707963267948966 rad pos: -1.5,-22.5 parent: 2 - uid: 13836 components: - type: Transform - rot: 1.5707963267948966 rad pos: -2.5,-22.5 parent: 2 - uid: 13837 components: - type: Transform - rot: 1.5707963267948966 rad pos: -3.5,-22.5 parent: 2 - uid: 13838 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-22.5 parent: 2 - uid: 13839 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-23.5 parent: 2 - uid: 13842 components: - type: Transform - rot: 1.5707963267948966 rad pos: -5.5,-24.5 parent: 2 - uid: 13843 components: - type: Transform - rot: 1.5707963267948966 rad pos: -4.5,-24.5 parent: 2 - uid: 13844 components: - type: Transform - rot: 1.5707963267948966 rad pos: -6.5,-24.5 parent: 2 - uid: 13845 components: - type: Transform - rot: 1.5707963267948966 rad pos: -8.5,-24.5 parent: 2 - uid: 13846 components: - type: Transform - rot: 1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 - uid: 13847 components: - type: Transform - rot: 1.5707963267948966 rad pos: -16.5,-21.5 parent: 2 - uid: 13848 components: - type: Transform - rot: 1.5707963267948966 rad pos: -12.5,-21.5 parent: 2 - uid: 13849 components: - type: Transform - rot: 1.5707963267948966 rad pos: -11.5,-24.5 parent: 2 - uid: 13873 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,5.5 parent: 2 - uid: 13909 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,6.5 parent: 2 - uid: 13910 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,2.5 parent: 2 - uid: 13911 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,-24.5 parent: 2 - uid: 13912 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,7.5 parent: 2 - uid: 13913 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,8.5 parent: 2 - uid: 13914 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,9.5 parent: 2 - uid: 13916 components: - type: Transform - rot: 1.5707963267948966 rad pos: -20.5,14.5 parent: 2 - uid: 13917 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,14.5 parent: 2 - uid: 13918 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,13.5 parent: 2 - uid: 13919 components: - type: Transform - rot: 1.5707963267948966 rad pos: -21.5,10.5 parent: 2 - uid: 14132 @@ -91523,19 +91683,16 @@ entities: - uid: 14169 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,28.5 parent: 2 - uid: 14173 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,34.5 parent: 2 - uid: 14174 components: - type: Transform - rot: 1.5707963267948966 rad pos: 80.5,28.5 parent: 2 - uid: 14175 @@ -91561,7 +91718,6 @@ entities: - uid: 14202 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,33.5 parent: 2 - uid: 14209 @@ -91572,7 +91728,6 @@ entities: - uid: 14211 components: - type: Transform - rot: 1.5707963267948966 rad pos: 80.5,32.5 parent: 2 - uid: 14212 @@ -91583,7 +91738,6 @@ entities: - uid: 14213 components: - type: Transform - rot: 1.5707963267948966 rad pos: 82.5,32.5 parent: 2 - uid: 14214 @@ -91609,7 +91763,6 @@ entities: - uid: 14220 components: - type: Transform - rot: 1.5707963267948966 rad pos: 21.5,-60.5 parent: 2 - uid: 14223 @@ -91650,13 +91803,11 @@ entities: - uid: 14236 components: - type: Transform - rot: 1.5707963267948966 rad pos: 81.5,35.5 parent: 2 - uid: 14237 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,35.5 parent: 2 - uid: 14239 @@ -91867,7 +92018,6 @@ entities: - uid: 14321 components: - type: Transform - rot: 3.141592653589793 rad pos: 95.5,25.5 parent: 2 - uid: 14322 @@ -91888,97 +92038,81 @@ entities: - uid: 14325 components: - type: Transform - rot: 3.141592653589793 rad pos: 94.5,25.5 parent: 2 - uid: 14340 components: - type: Transform - rot: 1.5707963267948966 rad pos: 80.5,35.5 parent: 2 - uid: 14341 components: - type: Transform - rot: 1.5707963267948966 rad pos: 79.5,35.5 parent: 2 - uid: 14342 components: - type: Transform - rot: 1.5707963267948966 rad pos: 78.5,32.5 parent: 2 - uid: 14343 components: - type: Transform - rot: 1.5707963267948966 rad pos: 79.5,32.5 parent: 2 - uid: 14347 components: - type: Transform - rot: 3.141592653589793 rad pos: 96.5,25.5 parent: 2 - uid: 14348 components: - type: Transform - rot: 3.141592653589793 rad pos: 92.5,34.5 parent: 2 - uid: 14349 components: - type: Transform - rot: 3.141592653589793 rad pos: 92.5,35.5 parent: 2 - uid: 14350 components: - type: Transform - rot: 3.141592653589793 rad pos: 94.5,34.5 parent: 2 - uid: 14351 components: - type: Transform - rot: 3.141592653589793 rad pos: 93.5,34.5 parent: 2 - uid: 14352 components: - type: Transform - rot: 3.141592653589793 rad pos: 95.5,26.5 parent: 2 - uid: 14353 components: - type: Transform - rot: 3.141592653589793 rad pos: 96.5,26.5 parent: 2 - uid: 14354 components: - type: Transform - rot: 3.141592653589793 rad pos: 93.5,25.5 parent: 2 - uid: 14355 components: - type: Transform - rot: 3.141592653589793 rad pos: 94.5,26.5 parent: 2 - uid: 14356 components: - type: Transform - rot: 1.5707963267948966 rad pos: 88.5,32.5 parent: 2 - uid: 14359 components: - type: Transform - rot: 1.5707963267948966 rad pos: 88.5,28.5 parent: 2 - uid: 14366 @@ -91989,157 +92123,131 @@ entities: - uid: 14480 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,25.5 parent: 2 - uid: 14481 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,26.5 parent: 2 - uid: 14482 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,27.5 parent: 2 - uid: 14483 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,28.5 parent: 2 - uid: 14484 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,29.5 parent: 2 - uid: 14485 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,30.5 parent: 2 - uid: 14486 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,31.5 parent: 2 - uid: 14487 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,32.5 parent: 2 - uid: 14488 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,33.5 parent: 2 - uid: 14489 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,34.5 parent: 2 - uid: 14490 components: - type: Transform - rot: 3.141592653589793 rad pos: 96.5,34.5 parent: 2 - uid: 14491 components: - type: Transform - rot: 3.141592653589793 rad pos: 95.5,34.5 parent: 2 - uid: 14492 components: - type: Transform - rot: 3.141592653589793 rad pos: 93.5,35.5 parent: 2 - uid: 14493 components: - type: Transform - rot: 3.141592653589793 rad pos: 94.5,35.5 parent: 2 - uid: 14494 components: - type: Transform - rot: 3.141592653589793 rad pos: 95.5,35.5 parent: 2 - uid: 14495 components: - type: Transform - rot: 3.141592653589793 rad pos: 96.5,35.5 parent: 2 - uid: 14496 components: - type: Transform - rot: 3.141592653589793 rad pos: 97.5,35.5 parent: 2 - uid: 14497 components: - type: Transform - rot: 3.141592653589793 rad pos: 98.5,34.5 parent: 2 - uid: 14498 components: - type: Transform - rot: 3.141592653589793 rad pos: 98.5,33.5 parent: 2 - uid: 14499 components: - type: Transform - rot: 3.141592653589793 rad pos: 98.5,32.5 parent: 2 - uid: 14500 components: - type: Transform - rot: 3.141592653589793 rad pos: 98.5,31.5 parent: 2 - uid: 14501 components: - type: Transform - rot: 3.141592653589793 rad pos: 98.5,30.5 parent: 2 - uid: 14502 components: - type: Transform - rot: 3.141592653589793 rad pos: 98.5,29.5 parent: 2 - uid: 14503 components: - type: Transform - rot: 3.141592653589793 rad pos: 98.5,28.5 parent: 2 - uid: 14504 components: - type: Transform - rot: 3.141592653589793 rad pos: 98.5,27.5 parent: 2 - uid: 14505 components: - type: Transform - rot: 3.141592653589793 rad pos: 98.5,26.5 parent: 2 - uid: 14507 @@ -92160,7 +92268,6 @@ entities: - uid: 14511 components: - type: Transform - rot: -1.5707963267948966 rad pos: 99.5,31.5 parent: 2 - uid: 14513 @@ -92176,31 +92283,26 @@ entities: - uid: 14745 components: - type: Transform - rot: 3.141592653589793 rad pos: 68.5,-12.5 parent: 2 - uid: 14746 components: - type: Transform - rot: 3.141592653589793 rad pos: 68.5,-13.5 parent: 2 - uid: 14748 components: - type: Transform - rot: 3.141592653589793 rad pos: 68.5,-14.5 parent: 2 - uid: 14773 components: - type: Transform - rot: 3.141592653589793 rad pos: 68.5,-10.5 parent: 2 - uid: 14774 components: - type: Transform - rot: 3.141592653589793 rad pos: 68.5,-11.5 parent: 2 - uid: 14776 @@ -92291,25 +92393,21 @@ entities: - uid: 14920 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,36.5 parent: 2 - uid: 14921 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,35.5 parent: 2 - uid: 14922 components: - type: Transform - rot: 1.5707963267948966 rad pos: 3.5,34.5 parent: 2 - uid: 14925 components: - type: Transform - rot: 3.141592653589793 rad pos: 51.5,-12.5 parent: 2 - uid: 14965 @@ -92320,7 +92418,6 @@ entities: - uid: 14968 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,41.5 parent: 2 - uid: 14969 @@ -92331,13 +92428,11 @@ entities: - uid: 14973 components: - type: Transform - rot: -1.5707963267948966 rad pos: 6.5,41.5 parent: 2 - uid: 15084 components: - type: Transform - rot: -1.5707963267948966 rad pos: 12.5,-54.5 parent: 2 - proto: WallReinforcedRust @@ -92345,19 +92440,16 @@ entities: - uid: 14967 components: - type: Transform - rot: -1.5707963267948966 rad pos: 7.5,41.5 parent: 2 - uid: 14971 components: - type: Transform - rot: -1.5707963267948966 rad pos: 3.5,40.5 parent: 2 - uid: 14975 components: - type: Transform - rot: -1.5707963267948966 rad pos: 8.5,38.5 parent: 2 - proto: WallSolid @@ -92977,11 +93069,6 @@ entities: - type: Transform pos: 19.5,16.5 parent: 2 - - uid: 1077 - components: - - type: Transform - pos: 20.5,16.5 - parent: 2 - uid: 1083 components: - type: Transform @@ -93942,30 +94029,25 @@ entities: - type: Transform pos: 24.5,19.5 parent: 2 - - uid: 2172 - components: - - type: Transform - pos: 23.5,18.5 - parent: 2 - - uid: 2173 + - uid: 2174 components: - type: Transform - pos: 23.5,17.5 + pos: 23.5,16.5 parent: 2 - - uid: 2174 + - uid: 2176 components: - type: Transform - pos: 23.5,16.5 + pos: 24.5,16.5 parent: 2 - - uid: 2175 + - uid: 2186 components: - type: Transform - pos: 22.5,16.5 + pos: 23.5,18.5 parent: 2 - - uid: 2176 + - uid: 2187 components: - type: Transform - pos: 24.5,16.5 + pos: 23.5,17.5 parent: 2 - uid: 2244 components: @@ -94655,7 +94737,6 @@ entities: - uid: 3461 components: - type: Transform - rot: 3.141592653589793 rad pos: 14.5,29.5 parent: 2 - uid: 3523 @@ -94828,11 +94909,6 @@ entities: - type: Transform pos: 59.5,12.5 parent: 2 - - uid: 3667 - components: - - type: Transform - pos: 64.5,12.5 - parent: 2 - uid: 3680 components: - type: Transform @@ -95116,7 +95192,6 @@ entities: - uid: 4136 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,-11.5 parent: 2 - uid: 4178 @@ -95142,7 +95217,6 @@ entities: - uid: 5072 components: - type: Transform - rot: 3.141592653589793 rad pos: 40.5,-11.5 parent: 2 - uid: 5174 @@ -95173,7 +95247,6 @@ entities: - uid: 5421 components: - type: Transform - rot: -1.5707963267948966 rad pos: 10.5,33.5 parent: 2 - uid: 5441 @@ -95439,13 +95512,11 @@ entities: - uid: 14725 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,-13.5 parent: 2 - uid: 14726 components: - type: Transform - rot: 3.141592653589793 rad pos: 46.5,-17.5 parent: 2 - uid: 14769 @@ -95456,7 +95527,6 @@ entities: - uid: 15006 components: - type: Transform - rot: 3.141592653589793 rad pos: 50.5,-14.5 parent: 2 - proto: WallSolidRust @@ -95585,11 +95655,6 @@ entities: parent: 2 - proto: WardrobeWhiteFilled entities: - - uid: 1470 - components: - - type: Transform - pos: 5.5,-31.5 - parent: 2 - uid: 4696 components: - type: Transform @@ -95652,15 +95717,15 @@ entities: parent: 2 - proto: WaterCooler entities: - - uid: 5643 + - uid: 2449 components: - type: Transform - pos: 14.5,-23.5 + pos: 24.5,33.5 parent: 2 - - uid: 11223 + - uid: 5643 components: - type: Transform - pos: 21.5,35.5 + pos: 14.5,-23.5 parent: 2 - uid: 11430 components: @@ -95689,10 +95754,10 @@ entities: - type: Transform pos: 29.5,-17.5 parent: 2 - - uid: 8830 + - uid: 10442 components: - type: Transform - pos: 64.5,20.5 + pos: 45.5,7.5 parent: 2 - uid: 10790 components: @@ -95738,6 +95803,11 @@ entities: - type: Transform pos: 50.5,-29.5 parent: 2 + - uid: 7845 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 - proto: WeaponCapacitorRecharger entities: - uid: 2050 @@ -96082,12 +96152,6 @@ entities: - type: Transform pos: -4.5,0.5 parent: 2 - - uid: 7847 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,31.5 - parent: 2 - uid: 8950 components: - type: Transform @@ -96243,6 +96307,11 @@ entities: rot: -1.5707963267948966 rad pos: 23.5,-24.5 parent: 2 + - uid: 15423 + components: + - type: Transform + pos: 6.5,-20.5 + parent: 2 - proto: WindoorSecureHeadOfPersonnelLocked entities: - uid: 10272 @@ -96292,7 +96361,7 @@ entities: rot: 1.5707963267948966 rad pos: 48.5,18.5 parent: 2 - - uid: 5366 + - uid: 7848 components: - type: Transform pos: 47.5,12.5 @@ -96308,11 +96377,13 @@ entities: rot: 3.141592653589793 rad pos: 62.5,26.5 parent: 2 - - uid: 12108 +- proto: WindoorSecureSecurityLawyerLocked + entities: + - uid: 1077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,10.5 + rot: -1.5707963267948966 rad + pos: 22.5,31.5 parent: 2 - proto: WindoorSecureSecurityLocked entities: @@ -96345,11 +96416,11 @@ entities: - type: Transform pos: -2.5,-2.5 parent: 2 - - uid: 7945 + - uid: 7768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,32.5 + rot: 1.5707963267948966 rad + pos: 17.5,33.5 parent: 2 - uid: 7974 components: @@ -96368,7 +96439,6 @@ entities: - uid: 142 components: - type: Transform - rot: 3.141592653589793 rad pos: 38.5,-10.5 parent: 2 - uid: 289 @@ -96466,36 +96536,6 @@ entities: - type: Transform pos: 39.5,5.5 parent: 2 - - uid: 2682 - components: - - type: Transform - pos: 22.5,33.5 - parent: 2 - - uid: 2683 - components: - - type: Transform - pos: 22.5,32.5 - parent: 2 - - uid: 2684 - components: - - type: Transform - pos: 22.5,30.5 - parent: 2 - - uid: 2685 - components: - - type: Transform - pos: 22.5,29.5 - parent: 2 - - uid: 2686 - components: - - type: Transform - pos: 23.5,34.5 - parent: 2 - - uid: 2687 - components: - - type: Transform - pos: 24.5,34.5 - parent: 2 - uid: 2892 components: - type: Transform @@ -96526,6 +96566,11 @@ entities: - type: Transform pos: 6.5,29.5 parent: 2 + - uid: 4957 + components: + - type: Transform + pos: 43.5,1.5 + parent: 2 - uid: 5005 components: - type: Transform @@ -96554,9 +96599,13 @@ entities: - uid: 7238 components: - type: Transform - rot: 3.141592653589793 rad pos: 16.5,23.5 parent: 2 + - uid: 7942 + components: + - type: Transform + pos: 20.5,16.5 + parent: 2 - uid: 9064 components: - type: Transform @@ -96567,12 +96616,6 @@ entities: - type: Transform pos: 16.5,22.5 parent: 2 - - uid: 9903 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,1.5 - parent: 2 - uid: 10802 components: - type: Transform @@ -96586,39 +96629,38 @@ entities: - uid: 11316 components: - type: Transform - rot: 3.141592653589793 rad pos: 70.5,3.5 parent: 2 - uid: 11871 components: - type: Transform - rot: 3.141592653589793 rad pos: 72.5,3.5 parent: 2 - uid: 11872 components: - type: Transform - rot: 3.141592653589793 rad pos: 73.5,3.5 parent: 2 - uid: 11873 components: - type: Transform - rot: 3.141592653589793 rad pos: 69.5,4.5 parent: 2 - uid: 11875 components: - type: Transform - rot: 3.141592653589793 rad pos: 69.5,5.5 parent: 2 - uid: 11877 components: - type: Transform - rot: 3.141592653589793 rad pos: 69.5,6.5 parent: 2 + - uid: 12081 + components: + - type: Transform + pos: 22.5,16.5 + parent: 2 - proto: WindowDirectional entities: - uid: 7776 @@ -96644,17 +96686,6 @@ entities: rot: 3.141592653589793 rad pos: 20.5,8.5 parent: 2 - - uid: 10444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,8.5 - parent: 2 - - uid: 10445 - components: - - type: Transform - pos: 58.5,12.5 - parent: 2 - uid: 12999 components: - type: Transform @@ -96686,12 +96717,6 @@ entities: rot: -1.5707963267948966 rad pos: 59.5,4.5 parent: 2 - - uid: 5243 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,3.5 - parent: 2 - uid: 7076 components: - type: Transform @@ -96776,6 +96801,12 @@ entities: - type: Transform pos: 25.5,-30.5 parent: 2 + - uid: 1481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 58.5,8.5 + parent: 2 - uid: 2158 components: - type: Transform @@ -96794,29 +96825,35 @@ entities: rot: -1.5707963267948966 rad pos: 36.5,17.5 parent: 2 - - uid: 2733 + - uid: 2679 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,30.5 + pos: 23.5,32.5 parent: 2 - - uid: 4121 + - uid: 5034 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,-38.5 + pos: 25.5,48.5 parent: 2 - - uid: 4555 + - uid: 5279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-38.5 + rot: -1.5707963267948966 rad + pos: 22.5,32.5 parent: 2 - - uid: 5034 + - uid: 5364 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,48.5 + pos: 22.5,30.5 + parent: 2 + - uid: 5399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,32.5 parent: 2 - uid: 5656 components: @@ -96975,24 +97012,6 @@ entities: rot: 1.5707963267948966 rad pos: 30.5,48.5 parent: 2 - - uid: 7844 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,33.5 - parent: 2 - - uid: 7845 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,32.5 - parent: 2 - - uid: 7846 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,29.5 - parent: 2 - uid: 7892 components: - type: Transform @@ -97039,18 +97058,6 @@ entities: - type: Transform pos: 15.5,38.5 parent: 2 - - uid: 8248 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,33.5 - parent: 2 - - uid: 8250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,33.5 - parent: 2 - uid: 8946 components: - type: Transform @@ -97116,12 +97123,35 @@ entities: rot: 1.5707963267948966 rad pos: 27.5,-30.5 parent: 2 + - uid: 12990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 12994 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 - uid: 13121 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,0.5 parent: 2 + - uid: 13435 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 13541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,33.5 + parent: 2 - uid: 13594 components: - type: Transform @@ -97199,6 +97229,28 @@ entities: - type: Transform pos: 82.5,36.5 parent: 2 + - uid: 15085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,30.5 + parent: 2 + - uid: 15086 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 + - uid: 15424 + components: + - type: Transform + pos: 5.5,-20.5 + parent: 2 + - uid: 15425 + components: + - type: Transform + pos: 7.5,-20.5 + parent: 2 - proto: Wirecutter entities: - uid: 10793 @@ -97213,15 +97265,15 @@ entities: parent: 2 - proto: WoodDoor entities: - - uid: 12391 + - uid: 12392 components: - type: Transform - pos: 34.5,4.5 + pos: 36.5,4.5 parent: 2 - - uid: 12392 + - uid: 15327 components: - type: Transform - pos: 36.5,4.5 + pos: 34.5,4.5 parent: 2 - proto: Wrench entities: diff --git a/Resources/Prototypes/Actions/borgs.yml b/Resources/Prototypes/Actions/borgs.yml index 0f635ba3ec67..680bd730f5ad 100644 --- a/Resources/Prototypes/Actions/borgs.yml +++ b/Resources/Prototypes/Actions/borgs.yml @@ -4,6 +4,8 @@ description: View the laws that you must follow. components: - type: InstantAction + checkCanInteract: false + checkConsciousness: false itemIconStyle: NoItem icon: sprite: Interface/Actions/actions_borg.rsi diff --git a/Resources/Prototypes/Actions/station_ai.yml b/Resources/Prototypes/Actions/station_ai.yml index dc706038100b..67d562621954 100644 --- a/Resources/Prototypes/Actions/station_ai.yml +++ b/Resources/Prototypes/Actions/station_ai.yml @@ -44,6 +44,8 @@ description: View the laws that you must follow. components: - type: InstantAction + checkCanInteract: false + checkConsciousness: false priority: -3 itemIconStyle: NoItem icon: diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index d80e36bde1f2..a9ac169d3cdf 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -319,8 +319,8 @@ - type: entity id: ActionToggleWagging - name: action-name-toggle-wagging - description: action-description-toggle-wagging + name: Wagging Tail + description: Start or stop wagging your tail. components: - type: InstantAction icon: { sprite: Mobs/Customization/reptilian_parts.rsi, state: tail_smooth_behind } diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index 23f8cfcbdc4a..641aca16b100 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -270,6 +270,7 @@ components: - type: StorageFill contents: + - id: ChameleonPDA - id: ClothingUniformJumpsuitChameleon - id: ClothingOuterChameleon - id: ClothingNeckChameleon diff --git a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml index fadaf2f01edf..82fa54eaba83 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/armory.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/armory.yml @@ -22,7 +22,7 @@ - id: WeaponShotgunEnforcer amount: 2 - id: BoxLethalshot - amount: 3 + amount: 4 - type: entity id: CrateTrackingImplants diff --git a/Resources/Prototypes/Catalog/Fills/Crates/food.yml b/Resources/Prototypes/Catalog/Fills/Crates/food.yml index e43d918bb9cc..cbce467cf71a 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/food.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/food.yml @@ -7,7 +7,8 @@ - type: StorageFill contents: - id: FoodBoxPizzaFilled - amount: 4 + amount: 3 + - id: FoodBoxPizzaCotton - id: LidSalami prob: 0.01 @@ -20,7 +21,8 @@ - type: StorageFill contents: - id: FoodBoxPizzaFilled - amount: 16 + amount: 15 + - id: FoodBoxPizzaCotton - id: LidSalami prob: 0.04 diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 3f19fd4ac90e..b4c4df5e6e15 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -227,7 +227,7 @@ - id: WeaponShotgunEnforcer amount: 2 - id: BoxLethalshot - amount: 2 + amount: 4 - type: entity parent: [GunSafeBaseSecure, BaseRestrictedContraband] @@ -238,10 +238,8 @@ contents: - id: WeaponShotgunKammerer amount: 2 - - id: BoxShotgunIncendiary - amount: 1 - id: BoxLethalshot - amount: 1 + amount: 2 - type: entity id: GunSafeSubMachineGunWt550 @@ -257,7 +255,7 @@ amount: 4 - type: entity - parent: GunSafeBaseSecure + parent: [GunSafeBaseSecure, BaseRestrictedContraband] id: GunSafeLaserCarbine name: laser safe components: diff --git a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml index 46edd7bafefa..6dc004dd1bbe 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/advertisements.yml @@ -82,6 +82,12 @@ prefix: advertisement-cola- count: 8 +- type: localizedDataset + id: DrGibbAds + values: + prefix: advertisement-gibb- + count: 8 + - type: localizedDataset id: CondimentVendAds values: diff --git a/Resources/Prototypes/Catalog/VendingMachines/goodbyes.yml b/Resources/Prototypes/Catalog/VendingMachines/goodbyes.yml index fd4e53acaa7b..47da3b3dc60f 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/goodbyes.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/goodbyes.yml @@ -40,6 +40,12 @@ prefix: thankyou-cola- count: 4 +- type: localizedDataset + id: DrGibbGoodbyes + values: + prefix: thankyou-gibb- + count: 4 + - type: localizedDataset id: DiscountDansGoodbyes values: diff --git a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml index fe1a4fe75c92..f9ea34b38993 100644 --- a/Resources/Prototypes/Catalog/thief_toolbox_sets.yml +++ b/Resources/Prototypes/Catalog/thief_toolbox_sets.yml @@ -6,6 +6,7 @@ sprite: /Textures/Clothing/OuterClothing/Misc/black_hoodie.rsi state: icon content: + - ChameleonPDA - ClothingUniformJumpsuitChameleon - ClothingOuterChameleon - ClothingNeckChameleon diff --git a/Resources/Prototypes/Datasets/ion_storm.yml b/Resources/Prototypes/Datasets/ion_storm.yml index fdd13b5ffa2b..b1a61e36ce00 100644 --- a/Resources/Prototypes/Datasets/ion_storm.yml +++ b/Resources/Prototypes/Datasets/ion_storm.yml @@ -208,34 +208,30 @@ id: IonStormAreas values: - КОМПЛЕКС АЛЬФА - - АМЕРИКУ + - ПИЦЦЕРИЯ С ПРИВИДЕНИЯМИ # fnaf + - ИССЛЕДОВАТЕЛЬСКАЯ ЛАБОРАТОРИЯ НЕДАЛЕКО ОТ ЮЖНОГО ПОЛЮСА - ПАРАЛЛЕЛЬНОЕ ИЗМЕРЕНИЕ - ПАРАЛЛЕЛЬНУЮ ВСЕЛЕННУЮ - АТМОСФЕРНЫЙ ОТСЕК - ГИДРОПОННЫЙ ОТСЕК - - БРАЗИЛИЮ - - КАНАДУ - ЦЕНТКОММ - ХИМ-ЛАБОРАТОРИЮ - - КИТАЙ - ПЛАНЕТУ КЛОУНОВ + - ЗЕМЛЮ - ИНЖЕНЕРНЫЙ ОТСЕК - - ГЕРМАНИЮ - АД - - ИМПЕРИУМ - - ИРЛАНДИЮ - ЮПИТЕР - ЛАВАЛЕНД - ТЕХТУННЕЛИ - МАРС - МЕРКУРИЙ + - ЧАСТНАЯ РОСКОШНАЯ ЛУННАЯ БАЗА МИСТЕРА НАНОТРАЗЕНА - НЕПТУН + - ПЕРМА - ПЛУТОН - ОТСЕК РОБОТОТЕХНИКИ - - РУМЫНИЮ - - РОССИЮ - - СИГИЛ - - СОВЕТСКУЮ РОССИЮ + - ГДЕ-ТО ЗА РАДУГОЙ + - КООООООООООООООООООООСМООООООООООООООООООООООООС - КОСМОС - ШАТТЛ ПРИБЫТИЯ - УБОРНЫЕ @@ -244,18 +240,22 @@ - ЭВАКУАЦИОННЫЙ ШАТТЛ - СПАСАТЕЛЬНУЮ КАПСУЛУ - ГАЛАКТИКУ - - ГУЛАГ + - ГАЗОВЫЙ ГИГАНТ, КОТОРЫЙ АБСОЛЮТНО РЕАЛЕН + - ИМПЕРИУМ ЧЕЛОВЕЧЕСТВА - ИНТЕРНЕТ - КУХНЮ + - БАР В ТЕХНИЧЕСКИХ ТУННЕЛЯХ + - РИМСКАЯ ИМПЕРИЯ - ВСЕЛЕННУЮ - УРАН - ВЕНЕРУ + - ВАШИ СНЫ И/ИЛИ КОШМАРЫ # Abstract concepts for the law holder to decide on it's own definition of. - type: dataset id: IonStormConcepts values: - - АМЕРИКАНИЗМ + - АБСТРАКЦИЯ - АНАРХИЯ - ИСКУССТВО - ЗЛОВРЕДНОСТЬ @@ -468,10 +468,10 @@ - РАЗДРАЖАТЬ - ОТВЛЕКАТЬСЯ - БЫТЬ ЭФФЕКТИВНЫМ + - БЫТЬ НАСТОЯЩИМ СКРАНГЛОМ, ПРОСТО МИЛЫМ МАЛЕНЬКИМ МАЛЬЧИКОМ - БЫТЬ РАДОСТНЫМ - БЫТЬ ВЕЖЛИВЫМ - БЫТЬ ТИХИМ - - БЫТЬ ИНОСТРАНЦЕМ - БЫТЬ В КОСМОСЕ - БЫТЬ НА МОСТИКЕ - БЫТЬ В БРИГЕ @@ -741,6 +741,7 @@ - ПЕРЕРЫВ НА ТУАЛЕТ - БОЛЕЕ КАЧЕСТВЕННОЕ ПОДКЛЮЧЕНИЕ К ИНТЕРНЕТУ - ТАНЦЕВАЛЬНУЮ ВЕЧЕРИНКУ + - ДВОЙНУЮ РАДУГУ - ГОЛОВУ НА ПИКЕ - СЕРДЕЧНЫЙ ПРИСТУП - ЭПИЧЕСКУЮ КРОВАТЬ ИЗ УГЛЯ @@ -804,6 +805,7 @@ - ПРИЧИСЛЕНИЯ К ЛИКУ СВЯТЫХ - СЛУГ - АКУЛ С ЛАЗЕРАМИ НА ГОЛОВАХ + - АКЦИОНЕРНАЯ СТОИМОСТЬ - ТИШИНЫ - КОГО-ТО, КТО ИЗБАВИТ ВАС ОТ СТРАДАНИЙ - КОГО-ТО, КТО УКРОЕТ ВАС ОДЕЯЛКОМ @@ -846,57 +848,62 @@ - type: dataset id: IonStormActions values: + - НАЛИЧИЕ СВЕТА - МАЛЕНЬКИЙ ОСТРОВ У БЕРЕГОВ ПОРТУГАЛИИ - - ОТСУТСТВИЕ КИБОРГСКИХ ОБНИМАШЕК - УВИДЕВ КЛОУНОВ - УВИДЕВ ЧЛЕНОВ ЭКИПАЖА - АКТИВИРОВАВ ЛОВУШКУ - ОТВЕТЫ НА ЗАПРОСЫ, НЕ ВЫРАЖЕННЫЕ ПЕНТАМЕТРОМ + - ОТВЕЧАТЬ НА ВСЕ ВОПРОСЫ ДРУГИМ ВОПРОСОМ - ПОДЖОГ - ПРОСИТЬ ЧТО-НИБУДЬ - - БЫТЬ КАНАДЦЕМ - БЫТЬ МЁРТВЫМ - - БЫТЬ ТОЛСТЫМ - - БЫТЬ ЖЕНЩИНОЙ - БЫТЬ В КОСМОСЕ - - БЫТЬ МУЖЧИНОЙ - - БЫТЬ МЕКСИКАНЕЦ - - БЫТЬ ИНОСТРАНЦЕМ - - БОЛТИРОВАТЬ ШЛЮЗЫ + - БОЛТИРОВАТЬ И РАЗБОЛТИРОВАТЬ ШЛЮЗЫ - ДЫШАТЬ + - РАЗРУШАТЬ ЧЕТВЕРТУЮ, ПЯТУЮ ИЛИ ШЕСТУЮ СТЕНЫ - СИДЕТЬ СРОК В БРИГЕ - НЕСТИ СВЕТ В СВОЁ ЛОГОВО + - ВКЛАДЫВАТЬ В РАЗВИТИЕ ОБЩЕСТВА - ЗАКРЫВАТЬ ДВЕРИ - ЭЛЕКТРИЧЕСТВО - СУЩЕСТВОВАТЬ - ВЗРЫВАТЬСЯ - - ПОСТОЯННО ПАДАТЬ + - ПАДАТЬ - СМЫВАТЬ В ТУАЛЕТЕ + - СМЕЛО ИДТИ ТУДА, ГДЕ ЕЩЕ НИКТО НЕ БЫВАЛ - ИМЕТЬ БОЛЬШЕ ПАКЕТОВ - ИМЕТЬ ЖИВОТНЫХ + - ГЛАДИТЬ КИБОРГОВ ПО ГОЛОВЕ - ХОНКАТЬ - НЕПРАВИЛЬНО СФОРМУЛИРОВАННЫЕ ПРЕДЛОЖЕНИЯ - ХОЖДЕНИЕ ПО КОРРИДОРАМ - ОТСУТСТВИЕ ПОБОЕВ - ОТСУТСТВИЕ ПИВА + - МИМНИЧАТЬ - НЕ БЫТЬ В КОСМОСЕ - НЕ ИМЕТЬ ДОМАШНИХ ЖИВОТНЫХ + - НЕ ГЛАДИТЬ КИБОРГОВ ПО ГОЛОВЕ - НЕ ЗАМЕНЯТЬ КАЖДОЕ ВТОРОЕ СЛОВО НА ХОНК - НЕ ЗДОРОВАТЬСЯ ПРИ РАЗГОВОРЕ + - НЕ БЫТЬ ПРЕДЕЛЬНО ВЕЖЛИВЫМ - НЕ КРИЧАТЬ - ВЕСЕЛИТЬСЯ - ПИЛОТИРОВАТЬ СТАНЦИЮ В БЛИЖАЙШЕЕ СОЛНЦЕ - НЕПРАВИЛЬНОЕ ПОСТРОЕНИЕ ПРЕДЛОЖЕНИЙ - - НАЛИЧИЕ СВЕТА - РАЗМЕЩЕНИЕ ПРЕДМЕТОВ В ЯЩИКАХ - РАЗМЕЩЕНИЕ ПРЕДМЕТОВ В УТИЛИЗАЦИОННЫЕ БЛОКИ - ГРЕМЕТЬ КОСТЯМИ - ЧИТАТЬ + - КРИЧАТЬ - КУРИТЬ ТРАВУ КАЖДЫЙ ДЕНЬ + - ИЗЛАГАТЬ СВОИ ЗАКОНЫ КАЖДОМУ БЛИЖАЙШЕМУ БЛОХАСТОМУ КРЕСТЬЯНИНУ + - РУГАТЬСЯ - ВЫПОЛНЕНИЕ ПРИКАЗОВ - ГОВОРИТЬ КАК ПИРАТ - - РАССКАЗЫВАТЬ ВРЕМЯ - - РАЗБОЛТИРОВАНИЕ ШЛЮЗОВ + - ГОВОРИТЬ ВРЕМЯ + - ДУМАТЬ, ЧТО МЫ НА САМОМ ДЕЛЕ НАХОДИМСЯ НА КОСМИЧЕСКОЙ СТАНЦИИ + - ПЫТАТЬСЯ ЛЮБЫМ СПОСОБОМ, В ЛЮБОЙ ФОРМЕ ПРЕДОТВРАТИТЬ ПОГРУЖЕНИЕ СТАНЦИИ В ХАОС - ОБНОВЛЕНИЕ СЕРВЕРОВ - ПОЛЬЗОВАНИЕ ТУАЛЕТОМ - РАСХОДОВАНИЕ ВОДЫ diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/medical.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Department/medical.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Random/medical.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Department/medical.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Department/science.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Department/science.yml new file mode 100644 index 000000000000..ddc31c946e09 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Department/science.yml @@ -0,0 +1,125 @@ +# Minor science loot spawner +# Use case: Common areas that aren't science +- type: entity + name: science supplies spawner + id: LootSpawnerScienceMinor + parent: MarkerBase + suffix: Minor, 80% + components: + - type: Sprite + layers: + - state: red + - sprite: Objects/Specific/Research/anomalyscanner.rsi + state: icon + - type: RandomSpawner + rarePrototypes: + - AnomalyScanner + - NodeScanner + - Multitool + - Igniter + rareChance: 0.1 + prototypes: + - ClothingHandsGlovesLatex + - ClothingMaskSterile + - ClothingOuterCoatRnd + - NetworkConfigurator + - PowerCellSmall + - PowerCellMedium + - FlashlightLantern + - MatterBinStockPart + - CapacitorStockPart + - MicroManipulatorStockPart + - Beaker + chance: 0.8 + offset: 0.2 + +- type: entityTable + id: ScienceMajorTable + table: !type:GroupSelector + children: + # Common Group + - !type:GroupSelector + weight: 90 + children: + - id: AnomalyScanner + - id: NodeScanner + - id: NetworkConfigurator + - id: Wirecutter + - id: Screwdriver + - id: Wrench + - id: Crowbar + - id: Multitool + - id: RemoteSignaller + - id: Welder + - id: GasAnalyzer + - id: GeigerCounter + - id: Beaker + - id: Igniter + - id: ClothingBeltUtility + - id: PowerCellMedium + - id: CableApcStack10 + - id: SheetSteel10 + - id: SheetPlastic10 + - id: SheetGlass10 + - id: ToolboxElectricalFilled + - id: ToolboxMechanicalFilled + - id: MatterBinStockPart + - id: CapacitorStockPart + - id: MicroManipulatorStockPart + # Rare Group + - !type:GroupSelector + weight: 10 + children: + - id: ClothingBeltUtilityFilled + - id: ResearchDisk + - id: ResearchDisk5000 + - id: RandomInstruments + +# Major science loot spawner +# Use case: Loot in science areas only +- type: entity + name: science supplies spawner + id: LootSpawnerScienceMajor + parent: MarkerBase + suffix: Major + components: + - type: Sprite + layers: + - state: red + - sprite: Objects/Specific/Research/researchdisk.rsi + state: icon + - type: EntityTableSpawner + table: !type:NestedSelector + tableId: ScienceMajorTable + offset: 0.2 + +# Borg Module Spawner +# Use case: One or two in robotics or as valuable loot +- type: entity + name: robotics board spawner + id: LootSpawnerRoboticsBorgModule + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Objects/Specific/Robotics/borgmodule.rsi + state: generic + - type: RandomSpawner + rarePrototypes: + - BorgModuleDefibrillator + - BorgModuleAdvancedCleaning + - BorgModuleClowning + - BorgModuleGardening + - BorgModuleHarvesting + rareChance: 0.1 + prototypes: + - BorgModuleCable + - BorgModuleFireExtinguisher + - BorgModuleGPS + - BorgModuleRadiationDetection + - BorgModuleTool + - BorgModuleArtifact + - BorgModuleAnomaly + chance: 0.9 + offset: 0.2 diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/security.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Department/security.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Random/security.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Department/security.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml index f8fc2998d7f9..5167613cbe79 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml @@ -59,7 +59,7 @@ - DrinkIcedBeerGlass - DrinkIceCreamGlass - IrishBoolGlass - - DrinkIrishCarBomb + - DrinkIrishSlammer - DrinkIrishCoffeeGlass - DrinkLemonadeGlass - DrinkKiraSpecial diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml index 578c6837c0ee..af0674eb7668 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/human_hair.yml @@ -54,6 +54,13 @@ sprites: - sprite: Mobs/Customization/human_hair.rsi state: bedheadv3 +- type: marking + id: HumanHairPulato + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: Mobs/Customization/human_hair.rsi + state: pulato - type: marking id: HumanHairLongBedhead bodyPart: Hair diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index ed7086afa166..16a51d7ee58b 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -65,6 +65,7 @@ interfaces: enum.SiliconLawsUiKey.Key: type: SiliconLawBoundUserInterface + requireInputValidation: false enum.BorgUiKey.Key: type: BorgBoundUserInterface enum.StrippingUiKey.Key: diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index 81cddad51af9..2880c111b988 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -2436,8 +2436,8 @@ - type: entity parent: - - MobGiantSpider - MobSpiderAngryBase + - MobGiantSpider id: MobGiantSpiderAngry - type: entity diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 4bfbd9ddd10b..2fda2f6ff43e 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -714,7 +714,7 @@ - type: entity name: Smile id: MobSlimesPet - parent: MobAdultSlimes + parent: [MobAdultSlimes, StripableInventoryBase] description: This masterpiece has gone through thousands of experiments. But it is the sweetest creature in the world. Smile Slime! components: - type: Sprite @@ -724,6 +724,16 @@ - map: [ "enum.DamageStateVisualLayers.BaseUnshaded" ] state: aslime-_3 shader: unshaded + - map: [ "head" ] + - type: Inventory + speciesId: slime + templateId: head + displacements: + head: + sizeMaps: + 32: + sprite: Mobs/Pets/Smile/smile_displacement.rsi + state: head - type: MobThresholds thresholds: 0: Alive @@ -769,7 +779,7 @@ Caustic: 1 - type: MultiHandedItem - type: Item - sprite: Mobs/Pets/smile.rsi + sprite: Mobs/Pets/Smile/smile.rsi size: Huge - type: SentienceTarget flavorKind: station-event-random-sentience-flavor-slime diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index 55a46fefb203..04e8ef4a8944 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -424,6 +424,7 @@ interfaces: enum.SiliconLawsUiKey.Key: type: SiliconLawBoundUserInterface + requireInputValidation: false - type: ComplexInteraction - type: Actions - type: Access diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index 5bbfa74d9497..a76e08dca9bf 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -1118,18 +1118,18 @@ - type: entity parent: DrinkGlass - id: DrinkIrishCarBomb - suffix: irish car bomb + id: DrinkIrishSlammer + suffix: irish slammer components: - type: SolutionContainerManager solutions: drink: maxVol: 30 reagents: - - ReagentId: IrishCarBomb + - ReagentId: IrishSlammer Quantity: 30 - type: Icon - sprite: Objects/Consumable/Drinks/irishcarbomb.rsi + sprite: Objects/Consumable/Drinks/irishslammer.rsi state: icon - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml index 8f23b6c7df9d..114b3e01f22d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bagel.yml @@ -47,3 +47,31 @@ Quantity: 5 - ReagentId: Nutriment Quantity: 5 + +- type: entity + id: FoodBagelCotton + parent: FoodBagelBase + name: cotton bagel + description: A delicious bagel made with cotton dough. + components: + - type: FlavorProfile + flavors: + - bread + - cotton + - type: Sprite + state: bagel-cottondough + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - ClothMade + - type: SolutionContainerManager + solutions: + food: + maxVol: 12 + reagents: + - ReagentId: Nutriment + Quantity: 2.5 + - ReagentId: Fiber + Quantity: 2.5 + diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml index 06fb915e8870..ac9bdd2ba45d 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/bread.yml @@ -702,6 +702,46 @@ Blunt: 1 # bonk # Tastes like France. +- type: entity + name: cotton baguette + parent: FoodBreadBaguette + id: FoodBreadBaguetteCotton + description: Bon azzétit! + components: + - type: Sprite + state: baguette-cotton + - type: SliceableFood + slice: FoodBreadBaguetteCottonSlice + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - Bread + - ClothMade + - type: Clothing + equippedPrefix: baguette-cotton + - type: Item + inhandVisuals: + left: + - state: baguette-cotton-inhand-left + right: + - state: baguette-cotton-inhand-right + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Nutriment + Quantity: 3 + - ReagentId: Fiber + Quantity: 3 + - ReagentId: Vitamin + Quantity: 1 + - ReagentId: TableSalt + Quantity: 1 + - ReagentId: Blackpepper + Quantity: 1 + - type: entity name: crostini parent: FoodBreadSliceBase @@ -724,6 +764,37 @@ - ReagentId: Blackpepper Quantity: 0.1 +- type: entity + name: cotton crostini + parent: FoodBreadBaguetteSlice + id: FoodBreadBaguetteCottonSlice + description: Bon az-zetite! + components: + - type: Sprite + state: crostini-cotton + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - Bread + - Slice + - ClothMade + - type: SolutionContainerManager + solutions: + food: + maxVol: 2 + reagents: + - ReagentId: Nutriment + Quantity: 0.25 + - ReagentId: Fiber + Quantity: 0.25 + - ReagentId: Vitamin + Quantity: 0.1 + - ReagentId: TableSalt + Quantity: 0.1 + - ReagentId: Blackpepper + Quantity: 0.1 + - type: entity name: buttered toast parent: FoodBreadSliceBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml index b4be6a8dfd15..db8c186856e3 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -28,7 +28,7 @@ description: A delicious and spongy little cake. components: - type: Food - trash: + trash: - FoodPlateMuffinTin - type: Sprite sprite: Objects/Consumable/Food/Baked/misc.rsi @@ -609,6 +609,38 @@ - ReagentId: Vitamin Quantity: 0.5 +- type: entity + name: cotton chèvre chaud + parent: FoodBakedChevreChaud + id: FoodBakedChevreChaudCotton + description: A disk of slightly melted chèvre flopped on top of a... cotton crostini, and toasted all-round. + components: + - type: FlavorProfile + flavors: + - bread + - nutty + - creamy + - smokey + - cotton + - type: Sprite + state: chevrechaud-cotton + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - ClothMade + - type: SolutionContainerManager + solutions: + food: + maxVol: 5 + reagents: + - ReagentId: Nutriment + Quantity: 1 + - ReagentId: Fiber + Quantity: 1 + - ReagentId: Vitamin + Quantity: 0.5 + - type: entity name: brownies parent: FoodBakedBase @@ -771,3 +803,35 @@ damage: types: Blunt: 0 # so the damage stats icon doesn't immediately give away the syndie ones + +- type: entity + name: cotton croissant + parent: FoodBakedCroissant + id: FoodBakedCroissantCotton + description: Buttery, flaky, fibery goodness. + components: + - type: FlavorProfile + flavors: + - bread + - butter + - cotton + - type: Sprite + state: croissant-cotton + - type: Food + requiresSpecialDigestion: true + - type: Tag + tags: + - ClothMade + - type: SolutionContainerManager + solutions: + food: + maxVol: 7 + reagents: + - ReagentId: Nutriment + Quantity: 1.5 + - ReagentId: Fiber + Quantity: 1.5 + - ReagentId: Butter + Quantity: 2 + - ReagentId: Vitamin + Quantity: 1 diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index 69621aa94430..f613cddaafd8 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -274,6 +274,17 @@ prob: 0.10 orGroup: Pizza - id: KnifePlastic + +- type: entity + name: pizza box + parent: FoodBoxPizzaFilled + id: FoodBoxPizzaCotton + suffix: Cotton Pizza + components: + - type: StorageFill + contents: + - id: FoodPizzaCotton + - id: KnifePlastic # Nugget diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index c14c72fe85ad..788bc8b51d86 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -315,6 +315,13 @@ - type: Construction graph: DoughRope node: start + - type: SolutionContainerManager + solutions: + food: + maxVol: 6 + reagents: + - ReagentId: Nutriment + Quantity: 5 - type: entity name: dough rope @@ -330,6 +337,13 @@ - type: Construction graph: DoughRope node: rolled + - type: SolutionContainerManager + solutions: + food: + maxVol: 6 + reagents: + - ReagentId: Nutriment + Quantity: 5 - type: entity name: cornmeal dough @@ -426,9 +440,9 @@ - cotton - type: Sprite state: cotton-dough - # - type: SliceableFood # TODO add it - # count: 3 - # slice: FoodDoughCottonSlice + - type: SliceableFood + count: 3 + slice: FoodDoughCottonSlice - type: Construction graph: CottonPizza node: start @@ -446,6 +460,59 @@ - ReagentId: Fiber Quantity: 10 +- type: entity + name: cotton dough slice + parent: FoodBakingBase + id: FoodDoughCottonSlice + description: A slice of cotton dough. + components: + - type: FlavorProfile + flavors: + - dough + - cotton + - type: Sprite + state: cotton-dough-slice + - type: Tag + tags: + - Slice + - type: Construction + graph: DoughRopeCotton + node: start + - type: SolutionContainerManager + solutions: + food: + maxVol: 6 + reagents: + - ReagentId: Nutriment + Quantity: 1.5 + - ReagentId: Fiber + Quantity: 3.5 + +- type: entity + name: dough rope + parent: FoodBakingBase + id: FoodDoughCottonRope + description: A thin noodle of cotton dough. Can be cooked into a cotton bagel. + components: + - type: FlavorProfile + flavors: + - dough + - cotton + - type: Sprite + state: cotton-dough-rope + - type: Construction + graph: DoughRopeCotton + node: rolled + - type: SolutionContainerManager + solutions: + food: + maxVol: 6 + reagents: + - ReagentId: Nutriment + Quantity: 1.5 + - ReagentId: Fiber + Quantity: 3.5 + - type: entity name: raw pastry base parent: FoodBakingBase @@ -502,6 +569,9 @@ - type: Construction graph: CottonPizza node: flat + - type: SliceableFood + count: 3 + slice: FoodCroissantRawCotton - type: entity name: pizza bread @@ -821,3 +891,16 @@ reagents: - ReagentId: Nutriment Quantity: 3 + +- type: entity + name: raw cotton croissant + parent: FoodCroissantRaw + id: FoodCroissantRawCotton + description: Buttery, flaky, fibery goodness waiting to happen. + components: + - type: FlavorProfile + flavors: + - dough + - cotton + - type: Sprite + state: croissant-raw-cotton diff --git a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml index 26f2881ae801..08968c9b6cfb 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/Circuitboards/computer.yml @@ -24,15 +24,19 @@ name: atmospheric alerts computer board description: A computer printed circuit board for an atmospheric alerts computer. components: + - type: Sprite + state: cpu_engineering - type: ComputerBoard prototype: ComputerAlert - + - type: entity parent: BaseComputerCircuitboard id: AtmosMonitoringComputerCircuitboard name: atmospheric network monitor board description: A computer printed circuit board for an atmospheric network monitor. components: + - type: Sprite + state: cpu_engineering - type: ComputerBoard prototype: ComputerAtmosMonitoring @@ -146,10 +150,12 @@ name: cargo shuttle console board description: A computer printed circuit board for a cargo shuttle console. components: - - type: ComputerBoard - prototype: ComputerShuttleCargo - - type: StealTarget - stealGroup: CargoShuttleConsoleCircuitboard + - type: Sprite + state: cpu_supply + - type: ComputerBoard + prototype: ComputerShuttleCargo + - type: StealTarget + stealGroup: CargoShuttleConsoleCircuitboard - type: entity parent: BaseComputerCircuitboard @@ -157,11 +163,13 @@ name: surveillance camera monitor board description: A computer printed circuit board for a surveillance camera monitor. components: - - type: ComputerBoard - prototype: ComputerSurveillanceCameraMonitor - - type: Tag - tags: - - SurveillanceCameraMonitorCircuitboard + - type: Sprite + state: cpu_security + - type: ComputerBoard + prototype: ComputerSurveillanceCameraMonitor + - type: Tag + tags: + - SurveillanceCameraMonitorCircuitboard - type: entity parent: BaseComputerCircuitboard @@ -169,8 +177,10 @@ name: surveillance wireless camera monitor board description: A computer printed circuit board for a surveillance wireless camera monitor. components: - - type: ComputerBoard - prototype: ComputerSurveillanceWirelessCameraMonitor + - type: Sprite + state: cpu_security + - type: ComputerBoard + prototype: ComputerSurveillanceWirelessCameraMonitor - type: entity parent: BaseComputerCircuitboard @@ -223,8 +233,10 @@ name: crew monitoring computer board description: A computer printed circuit board for a crew monitoring console. components: - - type: ComputerBoard - prototype: ComputerCrewMonitoring + - type: Sprite + state: cpu_medical + - type: ComputerBoard + prototype: ComputerCrewMonitoring - type: entity parent: [BaseComputerCircuitboard, BaseGrandTheftContraband] @@ -270,14 +282,18 @@ name: syndicate communications computer board description: A computer printed circuit board for a syndicate communications console. components: - - type: ComputerBoard - prototype: SyndicateComputerComms + - type: Sprite + state: cpu_syndicate + - type: ComputerBoard + prototype: SyndicateComputerComms - type: entity parent: BaseComputerCircuitboard id: RadarConsoleCircuitboard name: radar console computer board components: + - type: Sprite + state: cpu_supply - type: ComputerBoard prototype: ComputerRadar @@ -327,8 +343,10 @@ name: shuttle console board description: A computer printed circuit board for a shuttle console. components: - - type: ComputerBoard - prototype: ComputerShuttle + - type: Sprite + state: cpu_supply + - type: ComputerBoard + prototype: ComputerShuttle - type: entity parent: BaseComputerCircuitboard @@ -336,8 +354,10 @@ name: syndicate shuttle console board description: A computer printed circuit board for a syndicate shuttle console. components: - - type: ComputerBoard - prototype: ComputerShuttleSyndie + - type: Sprite + state: cpu_syndicate + - type: ComputerBoard + prototype: ComputerShuttleSyndie - type: entity parent: BaseComputerCircuitboard @@ -367,8 +387,10 @@ name: syndicate IFF console board description: Allows you to control the IFF and stealth characteristics of this vessel. components: - - type: ComputerBoard - prototype: ComputerIFFSyndicate + - type: Sprite + state: cpu_syndicate + - type: ComputerBoard + prototype: ComputerIFFSyndicate - type: entity parent: BaseComputerCircuitboard diff --git a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml index 094e3b45798e..192aca65fc6c 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/hand_teleporter.yml @@ -20,7 +20,7 @@ suffix: Admeme parent: BaseItem name: interdimensional teleporter - description: allows you to open stable portal gates that are not limited by distance + description: Allows you to open stable portal gates that are not limited by distance. components: - type: Sprite sprite: /Textures/Objects/Devices/hand_teleporter.rsi @@ -29,4 +29,4 @@ color: green - type: HandTeleporter firstPortalPrototype: PortalGatewayBlue - secondPortalPrototype: PortalGatewayOrange \ No newline at end of file + secondPortalPrototype: PortalGatewayOrange diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index a78628990d5d..bab2d231c819 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -6,10 +6,15 @@ description: Personal Data Assistant. components: - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda - type: Sprite sprite: Objects/Devices/pda.rsi layers: - map: [ "enum.PdaVisualLayers.Base" ] + state: "pda" - state: "light_overlay" map: [ "enum.PdaVisualLayers.Flashlight" ] shader: "unshaded" @@ -22,7 +27,6 @@ sprite: Objects/Devices/pda.rsi state: pda - type: Pda - state: pda paiSlot: priority: -2 whitelist: @@ -41,6 +45,7 @@ whitelist: components: - IdCard + - type: PdaVisuals - type: Item size: Small - type: ContainerContainer @@ -102,6 +107,8 @@ - type: Tag tags: - DoorBumpOpener + - WhitelistChameleon + - WhitelistChameleonPDA - type: Input context: "human" - type: SentienceTarget # sentient PDA = pAI lite @@ -147,7 +154,6 @@ components: - type: Pda id: PassengerIDCard - state: pda - type: PdaBorderColor borderColor: "#717059" @@ -159,7 +165,11 @@ components: - type: Pda id: TechnicalAssistantIDCard - state: pda-interntech + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-interntech - type: PdaBorderColor borderColor: "#717059" accentVColor: "#949137" @@ -174,7 +184,11 @@ components: - type: Pda id: MedicalInternIDCard - state: pda-internmed + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-internmed - type: PdaBorderColor borderColor: "#717059" accentVColor: "#447987" @@ -192,7 +206,11 @@ components: - type: Pda id: SecurityCadetIDCard - state: pda-interncadet + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-interncadet - type: PdaBorderColor borderColor: "#717059" accentVColor: "#A32D26" @@ -207,7 +225,11 @@ components: - type: Pda id: ResearchAssistantIDCard - state: pda-internsci + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-internsci - type: PdaBorderColor borderColor: "#717059" accentVColor: "#8900c9" @@ -222,7 +244,11 @@ components: - type: Pda id: ServiceWorkerIDCard - state: pda-internservice + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-internservice - type: PdaBorderColor borderColor: "#717059" accentVColor: "#00cc35" @@ -237,7 +263,11 @@ components: - type: Pda id: ChefIDCard - state: pda-cook + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-cook - type: PdaBorderColor borderColor: "#d7d7d0" - type: Icon @@ -253,7 +283,11 @@ components: - type: Pda id: BotanistIDCard - state: pda-hydro + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-hydro - type: PdaBorderColor borderColor: "#44843c" accentVColor: "#00cc35" @@ -268,7 +302,6 @@ components: - type: Pda id: ClownIDCard - state: pda-clown penSlot: startingItem: CrayonOrange # no pink crayon?!? # ^ Still unacceptable. @@ -278,6 +311,11 @@ whitelist: tags: - Write + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-clown - type: PdaBorderColor borderColor: "#C18199" - type: Icon @@ -312,7 +350,9 @@ components: - type: Pda id: VisitorIDCard - state: pda-clown + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity parent: BasePDA @@ -322,12 +362,16 @@ components: - type: Pda id: MimeIDCard - state: pda-mime idSlot: # rewrite without sound because mime name: ID Card whitelist: components: - IdCard + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-mime - type: PdaBorderColor borderColor: "#d7d7d0" accentHColor: "#333333" @@ -343,7 +387,11 @@ components: - type: Pda id: ChaplainIDCard - state: pda-chaplain + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-chaplain - type: PdaBorderColor borderColor: "#333333" - type: Icon @@ -356,7 +404,9 @@ components: - type: Pda id: VisitorIDCard - state: pda-chaplain + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity name: quartermaster PDA @@ -366,7 +416,11 @@ components: - type: Pda id: QuartermasterIDCard - state: pda-qm + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-qm - type: PdaBorderColor borderColor: "#e39751" accentVColor: "#a23e3e" @@ -381,7 +435,11 @@ components: - type: Pda id: CargoIDCard - state: pda-cargo + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-cargo - type: PdaBorderColor borderColor: "#e39751" - type: Icon @@ -395,7 +453,11 @@ components: - type: Pda id: SalvageIDCard - state: pda-miner + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-miner - type: PdaBorderColor borderColor: "#af9366" accentVColor: "#8900c9" @@ -417,7 +479,11 @@ components: - type: Pda id: BartenderIDCard - state: pda-bartender + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-bartender - type: PdaBorderColor borderColor: "#333333" - type: Icon @@ -431,13 +497,17 @@ components: - type: Pda id: LibrarianIDCard - state: pda-library penSlot: startingItem: LuxuryPen priority: -1 whitelist: tags: - Write + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-library - type: PdaBorderColor borderColor: "#858585" - type: Icon @@ -450,7 +520,9 @@ components: - type: Pda id: VisitorIDCard - state: pda-library + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity parent: BaseSecurityPDA @@ -460,13 +532,17 @@ components: - type: Pda id: LawyerIDCard - state: pda-lawyer penSlot: startingItem: LuxuryPen priority: -1 whitelist: tags: - Write + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-lawyer - type: PdaBorderColor borderColor: "#6f6192" - type: Icon @@ -479,7 +555,9 @@ components: - type: Pda id: VisitorIDCard - state: pda-lawyer + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity parent: BasePDA @@ -489,7 +567,11 @@ components: - type: Pda id: JanitorIDCard - state: pda-janitor + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-janitor - type: PdaBorderColor borderColor: "#5D2D56" - type: Icon @@ -503,13 +585,17 @@ components: - type: Pda id: CaptainIDCard - state: pda-captain penSlot: startingItem: PenCap priority: -1 whitelist: tags: - Write + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-captain - type: PdaBorderColor borderColor: "#7C5D00" - type: Icon @@ -523,13 +609,17 @@ components: - type: Pda id: HoPIDCard - state: pda-hop penSlot: startingItem: PenHop priority: -1 whitelist: tags: - Write + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-hop - type: PdaBorderColor borderColor: "#789876" accentHColor: "#447987" @@ -544,7 +634,11 @@ components: - type: Pda id: CEIDCard - state: pda-ce + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-ce - type: PdaBorderColor borderColor: "#949137" accentHColor: "#447987" @@ -559,7 +653,11 @@ components: - type: Pda id: EngineeringIDCard - state: pda-engineer + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-engineer - type: PdaBorderColor borderColor: "#949137" accentVColor: "#A32D26" @@ -574,7 +672,11 @@ components: - type: Pda id: CMOIDCard - state: pda-cmo + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-cmo - type: PdaBorderColor borderColor: "#d7d7d0" accentHColor: "#447987" @@ -590,7 +692,11 @@ components: - type: Pda id: MedicalIDCard - state: pda-medical + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-medical - type: PdaBorderColor borderColor: "#d7d7d0" accentVColor: "#447987" @@ -607,7 +713,9 @@ components: - type: Pda id: VisitorIDCard - state: pda-medical + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity parent: BaseMedicalPDA @@ -617,7 +725,11 @@ components: - type: Pda id: ParamedicIDCard - state: pda-paramedic + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-paramedic - type: PdaBorderColor borderColor: "#d7d7d0" accentVColor: "#2a4b5b" @@ -632,7 +744,11 @@ components: - type: Pda id: ChemistIDCard - state: pda-chemistry + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-chemistry - type: PdaBorderColor borderColor: "#d7d7d0" accentVColor: "#B34200" @@ -647,7 +763,11 @@ components: - type: Pda id: RDIDCard - state: pda-rd + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-rd - type: PdaBorderColor borderColor: "#d7d7d0" accentHColor: "#447987" @@ -663,7 +783,11 @@ components: - type: Pda id: ResearchIDCard - state: pda-science + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-science - type: PdaBorderColor borderColor: "#d7d7d0" accentVColor: "#8900c9" @@ -678,7 +802,11 @@ components: - type: Pda id: HoSIDCard - state: pda-hos + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-hos - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#447987" @@ -700,7 +828,11 @@ components: - type: Pda id: WardenIDCard - state: pda-warden + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-warden - type: PdaBorderColor borderColor: "#A32D26" accentVColor: "#949137" @@ -715,7 +847,11 @@ components: - type: Pda id: SecurityIDCard - state: pda-security + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-security - type: PdaBorderColor borderColor: "#A32D26" - type: Icon @@ -729,13 +865,17 @@ components: - type: Pda id: CentcomIDCard - state: pda-centcom penSlot: startingItem: PenCentcom priority: -1 whitelist: tags: - Write + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-centcom - type: PdaBorderColor borderColor: "#15b115" accentHColor: "#dfc910" @@ -776,6 +916,9 @@ - WantedListCartridge - MedTekCartridge - AstroNavCartridge + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity parent: CentcomPDA @@ -784,6 +927,9 @@ components: - type: Pda id: CentcomIDCardDeathsquad + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity parent: BasePDA @@ -793,7 +939,11 @@ components: - type: Pda id: MusicianIDCard - state: pda-musician + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-musician - type: PdaBorderColor borderColor: "#333333" - type: Icon @@ -811,7 +961,9 @@ components: - type: Pda id: VisitorIDCard - state: pda-musician + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity parent: BasePDA @@ -821,7 +973,11 @@ components: - type: Pda id: AtmosIDCard - state: pda-atmos + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-atmos - type: PdaBorderColor borderColor: "#949137" accentVColor: "#447987" @@ -836,7 +992,11 @@ components: - type: Pda id: PassengerIDCard - state: pda-clear + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-clear - type: PdaBorderColor borderColor: "#288e4d" - type: Icon @@ -848,7 +1008,9 @@ components: - type: Pda id: VisitorIDCard - state: pda + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity parent: BasePDA @@ -858,7 +1020,11 @@ components: - type: Pda id: SyndicateIDCard - state: pda-syndi + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-syndi - type: PdaBorderColor borderColor: "#891417" - type: Icon @@ -877,7 +1043,11 @@ components: - type: Pda id: ERTLeaderIDCard - state: pda-ert + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-ert - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#447987" @@ -966,7 +1136,11 @@ components: - type: Pda id: PsychologistIDCard - state: pda-medical + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-medical - type: PdaBorderColor borderColor: "#d7d7d0" accentVColor: "#447987" @@ -981,13 +1155,17 @@ components: - type: Pda id: ReporterIDCard - state: pda-reporter penSlot: startingItem: LuxuryPen priority: -1 whitelist: tags: - Write + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-reporter - type: PdaBorderColor borderColor: "#3f3f74" - type: Icon @@ -1001,7 +1179,11 @@ components: - type: Pda id: ZookeeperIDCard - state: pda-zookeeper + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-zookeeper - type: PdaBorderColor borderColor: "#ffe685" - type: Icon @@ -1015,7 +1197,11 @@ components: - type: Pda id: BoxerIDCard - state: pda-boxer + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-boxer - type: PdaBorderColor borderColor: "#333333" accentVColor: "#390504" @@ -1030,7 +1216,11 @@ components: - type: Pda id: DetectiveIDCard - state: pda-detective + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-detective - type: PdaBorderColor borderColor: "#774705" - type: Icon @@ -1051,7 +1241,11 @@ components: - type: Pda id: BrigmedicIDCard - state: pda-brigmedic + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-brigmedic - type: PdaBorderColor borderColor: "#A32D26" accentHColor: "#d7d7d0" @@ -1075,7 +1269,11 @@ components: - type: Pda id: CluwneIDCard - state: pda-cluwne + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-cluwne - type: PdaBorderColor borderColor: "#1c8f4d" - type: Icon @@ -1097,7 +1295,11 @@ components: - type: Pda id: SeniorEngineerIDCard - state: pda-seniorengineer + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-seniorengineer - type: PdaBorderColor borderColor: "#949137" accentVColor: "#CD6900" @@ -1112,7 +1314,11 @@ components: - type: Pda id: SeniorResearcherIDCard - state: pda-seniorresearcher + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-seniorresearcher - type: PdaBorderColor borderColor: "#d7d7d0" accentHColor: "#8900c9" @@ -1128,7 +1334,11 @@ components: - type: Pda id: SeniorPhysicianIDCard - state: pda-seniorphysician + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-seniorphysician - type: PdaBorderColor borderColor: "#d7d7d0" accentHColor: "#447987" @@ -1144,7 +1354,11 @@ components: - type: Pda id: SeniorOfficerIDCard - state: pda-seniorofficer + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-seniorofficer - type: PdaBorderColor borderColor: "#A32D26" accentVColor: "#DFDFDF" @@ -1159,7 +1373,11 @@ components: - type: Pda id: PirateIDCard - state: pda-pirate + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-pirate - type: Icon state: pda-pirate @@ -1171,7 +1389,11 @@ components: - type: Pda id: SyndicateIDCard - state: pda-syndi-agent + - type: Appearance + appearanceDataInit: + enum.PdaVisuals.PdaType: + !type:String + pda-syndi-agent - type: PdaBorderColor borderColor: "#891417" - type: Icon @@ -1181,3 +1403,34 @@ preinstalled: - NotekeeperCartridge - MedTekCartridge + +- type: entity + parent: BasePDA + id: ChameleonPDA + name: passenger PDA + description: Why isn't it gray? + suffix: Chameleon + components: + - type: PdaBorderColor + borderColor: "#717059" + - type: Tag + tags: # ignore "WhitelistChameleon" tag + - DoorBumpOpener + - type: ChameleonClothing + slot: [idcard] + default: PassengerPDA + requireTag: WhitelistChameleonPDA + - type: UserInterface + interfaces: + enum.PdaUiKey.Key: + type: PdaBoundUserInterface + enum.StoreUiKey.Key: + type: StoreBoundUserInterface + enum.RingerUiKey.Key: + type: RingerBoundUserInterface + enum.InstrumentUiKey.Key: + type: InstrumentBoundUserInterface + enum.HealthAnalyzerUiKey.Key: + type: HealthAnalyzerBoundUserInterface + enum.ChameleonUiKey.Key: + type: ChameleonBoundUserInterface diff --git a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml index 5552a973f104..4e6650aaaade 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/station_beacon.yml @@ -178,6 +178,14 @@ - type: NavMapBeacon defaultText: station-beacon-brig +- type: entity + parent: DefaultStationBeaconSecurity + id: DefaultStationBeaconBrigMed + suffix: Brig Med + components: + - type: NavMapBeacon + defaultText: station-beacon-brig-med + - type: entity parent: DefaultStationBeaconSecurity id: DefaultStationBeaconWardensOffice @@ -299,6 +307,22 @@ - type: NavMapBeacon defaultText: station-beacon-surgery +- type: entity + parent: DefaultStationBeaconMedical + id: DefaultStationBeaconPsychology + suffix: Psychology + components: + - type: NavMapBeacon + defaultText: station-beacon-psychology + +- type: entity + parent: DefaultStationBeaconMedical + id: DefaultStationBeaconClinic + suffix: Clinic + components: + - type: NavMapBeacon + defaultText: station-beacon-clinic + - type: entity parent: DefaultStationBeacon id: DefaultStationBeaconScience @@ -560,6 +584,22 @@ - type: NavMapBeacon defaultText: station-beacon-ai-core +- type: entity + parent: DefaultStationBeaconAI + id: DefaultStationBeaconAIUpload + suffix: AI Upload + components: + - type: NavMapBeacon + defaultText: station-beacon-ai-upload + +- type: entity + parent: DefaultStationBeaconAI + id: DefaultStationBeaconAIPower + suffix: AI Power + components: + - type: NavMapBeacon + defaultText: station-beacon-ai-power + - type: entity parent: DefaultStationBeacon id: DefaultStationBeaconArrivals @@ -576,6 +616,14 @@ - type: NavMapBeacon defaultText: station-beacon-evac +- type: entity + parent: DefaultStationBeacon + id: DefaultStationBeaconDockingArm + suffix: Docking Arm + components: + - type: NavMapBeacon + defaultText: station-beacon-docking-arm + - type: entity parent: DefaultStationBeacon id: DefaultStationBeaconEVAStorage @@ -600,6 +648,14 @@ - type: NavMapBeacon defaultText: station-beacon-library +- type: entity + parent: DefaultStationBeacon + id: DefaultStationBeaconReporter + suffix: Reporter + components: + - type: NavMapBeacon + defaultText: station-beacon-reporter + - type: entity parent: DefaultStationBeacon id: DefaultStationBeaconTheater diff --git a/Resources/Prototypes/Entities/Objects/Devices/swapper.yml b/Resources/Prototypes/Entities/Objects/Devices/swapper.yml index 8a743f4796b4..821b6f6b6aeb 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/swapper.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/swapper.yml @@ -12,6 +12,7 @@ - type: Item size: Small - type: Appearance + - type: ArrivalsBlacklist - type: SwapTeleporter teleporterWhitelist: tags: diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index 94afb8b2dd7b..68972463cb5a 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -354,6 +354,8 @@ description: An adorable stuffed toy that resembles a lizardperson of every color. You just might trip while staring at it... name: rainbow lizard plushie components: + - type: Sprite + state: rainbowlizardplush - type: PointLight radius: 1.5 energy: 2 @@ -364,6 +366,14 @@ head: - state: lizard-equipped-HELMET shader: unshaded + - type: Item + inhandVisuals: + left: + - state: rainbowlizardplush-inhand-left + shader: unshaded + right: + - state: rainbowlizardplush-inhand-right + shader: unshaded - type: entity parent: PlushieLizard diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index e2857aceccf9..e600119ca4ec 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -22,6 +22,7 @@ tags: - DoorBumpOpener - WhitelistChameleon + - WhitelistChameleonIdCard - type: StealTarget stealGroup: IDCard @@ -116,6 +117,7 @@ tags: - DoorBumpOpener - WhitelistChameleon + - WhitelistChameleonIdCard - HighRiskItem - type: StealTarget stealGroup: CaptainIDCard @@ -314,6 +316,9 @@ - type: PresetIdCard job: Bartender name: Pun Pun + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener - type: entity parent: IDCardStandard @@ -601,6 +606,7 @@ - type: ChameleonClothing slot: [idcard] default: PassengerIDCard + requireTag: WhitelistChameleonIdCard - type: UserInterface interfaces: enum.AgentIDCardUiKey.Key: @@ -813,3 +819,6 @@ - NuclearOperative - SyndicateAgent - Wizard + - type: Tag # Ignore Chameleon tags + tags: + - DoorBumpOpener diff --git a/Resources/Prototypes/Entities/Objects/Tools/tools.yml b/Resources/Prototypes/Entities/Objects/Tools/tools.yml index 41d167352f29..4016457263eb 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/tools.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/tools.yml @@ -312,7 +312,6 @@ - type: LimitedCharges maxCharges: 30 charges: 30 - - type: UseDelay - type: Sprite sprite: Objects/Tools/rcd.rsi state: icon diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml index d6963bba320f..30e246a76248 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/access.yml @@ -1059,6 +1059,15 @@ containers: board: [ DoorElectronicsKitchen ] +- type: entity + parent: AirlockMaintServiceLocked + id: AirlockMaintKitchenHydroLocked + suffix: Kitchen/Hydroponics, Locked + components: + - type: ContainerFill + containers: + board: [ DoorElectronicsKitchenHydroponics ] + - type: entity parent: AirlockMaint id: AirlockMaintIntLocked diff --git a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml index fba7864ac16d..036c90e82812 100644 --- a/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml +++ b/Resources/Prototypes/Entities/Structures/Furniture/Tables/tables.yml @@ -192,6 +192,9 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: metaltable + base: state_ - type: Construction graph: Table node: Table @@ -230,6 +233,8 @@ max: 2 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: metalreinforcedtable - type: Construction graph: Table node: TableReinforced @@ -286,6 +291,8 @@ node: TableFrame - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: glasstable - type: Construction graph: Table node: TableGlass @@ -341,6 +348,8 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: reinforcedglasstable - type: Construction graph: Table node: TableReinforcedGlass @@ -396,6 +405,8 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: plasmaglasstable - type: Construction graph: Table node: TablePlasmaGlass @@ -440,6 +451,8 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: brasstable - type: Construction graph: Table node: TableBrass @@ -481,6 +494,8 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: woodtable - type: Construction graph: Table node: TableWood @@ -522,6 +537,8 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: woodgambletable - type: Construction graph: Table node: TableCarpet @@ -553,6 +570,8 @@ path: /Audio/Effects/picaxe2.ogg - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: stonetable - type: FootstepModifier footstepSoundCollection: collection: FootstepFloor @@ -582,6 +601,8 @@ Brute: path: "/Audio/Weapons/slash.ogg" + - type: IconSmooth + key: webtable - type: Construction graph: WebStructures node: table @@ -619,6 +640,8 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: fancytable - type: Tag tags: - Wooden @@ -638,6 +661,8 @@ - type: Construction graph: Table node: TableFancyBlue + - type: IconSmooth + key: fancytableblue - type: entity id: TableFancyCyan @@ -651,6 +676,8 @@ - type: Construction graph: Table node: TableFancyCyan + - type: IconSmooth + key: fancytablecyan - type: entity id: TableFancyBlack @@ -664,6 +691,8 @@ - type: Construction graph: Table node: TableFancyBlack + - type: IconSmooth + key: fancytableblack - type: entity id: TableFancyRed @@ -677,6 +706,8 @@ - type: Construction graph: Table node: TableFancyRed + - type: IconSmooth + key: fancytablered - type: entity id: TableFancyPurple @@ -690,6 +721,8 @@ - type: Construction graph: Table node: TableFancyPurple + - type: IconSmooth + key: fancytablepurple - type: entity id: TableFancyPink @@ -703,6 +736,8 @@ - type: Construction graph: Table node: TableFancyPink + - type: IconSmooth + key: fancytablepink - type: entity id: TableFancyGreen @@ -716,6 +751,8 @@ - type: Construction graph: Table node: TableFancyGreen + - type: IconSmooth + key: fancytablegreen - type: entity id: TableFancyOrange @@ -729,6 +766,8 @@ - type: Construction graph: Table node: TableFancyOrange + - type: IconSmooth + key: fancytableorange - type: entity id: TableFancyWhite @@ -742,6 +781,8 @@ - type: Construction graph: Table node: TableFancyWhite + - type: IconSmooth + key: fancytablewhite #Debug @@ -806,6 +847,9 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: counterwood + base: state_ - type: Construction graph: Table node: CounterWood @@ -851,6 +895,9 @@ max: 1 - !type:DoActsBehavior acts: [ "Destruction" ] + - type: IconSmooth + key: countermetal + base: state_ - type: Construction graph: Table node: CounterMetal diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index c079975e8bab..7c430227b779 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -44,6 +44,19 @@ cost: 4 delay: 2 fx: EffectRCDDeconstruct2 + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.4,0.5,0.4,0.35" + density: 190 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: Destructible thresholds: - trigger: @@ -253,6 +266,19 @@ radius: 6 softness: 1.1 enabled: true + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2,0.5,0.2,0.35" + density: 190 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: Damageable damageContainer: Inorganic - type: Destructible diff --git a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml index 2bcbf0918823..222ea5c81420 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml @@ -29,6 +29,7 @@ layer: - MidImpassable - LowImpassable + - BulletImpassable - type: PointLight radius: 10 energy: 2.5 @@ -64,6 +65,7 @@ collection: MetalGlassBreak - type: StaticPrice price: 75 + - type: RequireProjectileTarget - type: entity id: PoweredLightPostSmallEmpty diff --git a/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml index 1a99ab6f1017..297a0a7abdf4 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml @@ -38,6 +38,19 @@ softness: 1 offset: "0, 0.35" - type: RotatingLight + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.2,0.5,0.2,0.35" + density: 190 + mask: + - TabletopMachineMask + layer: + - TabletopMachineLayer - type: Damageable damageContainer: Inorganic damageModifierSet: Metallic diff --git a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml index 5d85c063888a..0dfe45c5ae40 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/holopad.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/holopad.yml @@ -104,7 +104,7 @@ node: machineFrame - !type:DoActsBehavior acts: ["Destruction"] - + - type: entity name: long-range holopad description: "A floor-mounted device for projecting holographic images to similar devices that are far away." @@ -117,7 +117,7 @@ - Map - Unlimited ignoreTelephonesOnSameGrid: true - + - type: entity name: quantum entangling holopad description: "An floor-mounted device for projecting holographic images to similar devices at extreme distances." @@ -149,6 +149,7 @@ # These are spawned by holopads - type: entity id: HolopadHologram + name: hologram categories: [ HideSpawnMenu ] suffix: DO NOT MAP components: @@ -163,6 +164,10 @@ - type: Appearance - type: TypingIndicator proto: robot + - type: Speech + speechVerb: Robotic + speechSounds: Borg + speechBubbleOffset: 0.45 - type: HolopadHologram rsiPath: Structures/Machines/holopad.rsi rsiState: icon_in_call @@ -485,6 +490,14 @@ - type: Label currentLabel: holopad-medical-breakroom +- type: entity + parent: Holopad + id: HolopadMedicalClinic + suffix: Med Clinic + components: + - type: Label + currentLabel: holopad-medical-clinic + # Cargo - type: entity parent: Holopad diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 1be3ddaf4135..9f9bb8a0a426 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -483,7 +483,6 @@ - SolarControlComputerCircuitboard - SolarTrackerElectronics - TurboItemRechargerCircuitboard - - PowerComputerCircuitboard - AutolatheHyperConvectionMachineCircuitboard - ProtolatheHyperConvectionMachineCircuitboard - CircuitImprinterHyperConvectionMachineCircuitboard @@ -530,6 +529,7 @@ - ReagentGrinderIndustrialMachineCircuitboard - JukeboxCircuitBoard - SMESAdvancedMachineCircuitboard + - HolopadMachineCircuitboard - type: EmagLatheRecipes emagDynamicRecipes: - ShuttleGunDusterCircuitboard diff --git a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml index 38a4c7d9791b..3e497a6e0807 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/vending_machines.yml @@ -670,9 +670,9 @@ ejectDelay: 1.9 initialStockQuality: 0.33 - type: Advertise - pack: RobustSoftdrinksAds + pack: DrGibbAds - type: SpeakOnUIClosed - pack: GenericVendGoodbyes + pack: DrGibbGoodbyes - type: Speech - type: Sprite sprite: Structures/Machines/VendingMachines/gib.rsi diff --git a/Resources/Prototypes/Entities/Structures/Shuttles/station_anchor.yml b/Resources/Prototypes/Entities/Structures/Shuttles/station_anchor.yml index f2c8e21dfc48..d9a30df5d818 100644 --- a/Resources/Prototypes/Entities/Structures/Shuttles/station_anchor.yml +++ b/Resources/Prototypes/Entities/Structures/Shuttles/station_anchor.yml @@ -39,7 +39,7 @@ fix1: shape: !type:PhysShapeAabb - bounds: "-0.7,-0.8,0.7,0.8" + bounds: "-0.7,-0.7,0.7,0.7" density: 190 mask: - LargeMobMask diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 513944e3765e..a6fe458ea700 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -478,6 +478,7 @@ parent: LockerSyndicatePersonal description: Advanced locker technology. components: + - type: ArrivalsBlacklist - type: BluespaceLocker minBluespaceLinks: 1 behaviorProperties: diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml index 3bef14b33fee..8c8c493aa3ad 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/closets.yml @@ -171,6 +171,7 @@ parent: ClosetMaintenance description: It's a storage unit... right? components: + - type: ArrivalsBlacklist - type: BluespaceLocker pickLinksFromSameMap: true minBluespaceLinks: 1 @@ -189,6 +190,7 @@ parent: ClosetMaintenance description: It's a storage unit... right? components: + - type: ArrivalsBlacklist - type: BluespaceLocker pickLinksFromSameMap: true minBluespaceLinks: 1 diff --git a/Resources/Prototypes/Entities/Structures/Walls/walls.yml b/Resources/Prototypes/Entities/Structures/Walls/walls.yml index 1e1bec0c1848..79fe4368724c 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/walls.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/walls.yml @@ -640,7 +640,6 @@ - type: entity parent: WallReinforced id: WallReinforcedRust - name: reinforced wall suffix: rusted components: - type: Sprite @@ -654,6 +653,29 @@ - type: IconSmooth key: walls base: reinf_over + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 500 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - trigger: + !type:DamageTrigger + damage: 350 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - !type:ChangeConstructionNodeBehavior + node: girder + - !type:DoActsBehavior + acts: ["Destruction"] + - type: entity parent: WallShuttleDiagonal @@ -1047,7 +1069,6 @@ - type: entity parent: WallSolid id: WallSolidRust - name: solid wall suffix: rusted components: - type: Sprite @@ -1061,6 +1082,28 @@ - type: IconSmooth key: walls base: solid + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 300 + behaviors: + - !type:DoActsBehavior + acts: ["Destruction"] + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: MetalSlam + - !type:ChangeConstructionNodeBehavior + node: girder + - !type:DoActsBehavior + acts: ["Destruction"] - type: entity parent: BaseWall diff --git a/Resources/Prototypes/Entities/Structures/cryopod.yml b/Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml similarity index 100% rename from Resources/Prototypes/Entities/Structures/cryopod.yml rename to Resources/Prototypes/Entities/Structures/cryogenic_sleep_unit.yml diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index 24507c950aec..b9609883ab42 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -595,9 +595,9 @@ description: flavor-complex-vermouth - type: flavor - id: irishcarbomb + id: irishslammer flavorType: Complex - description: flavor-complex-irish-car-bomb + description: flavor-complex-irish-slammer - type: flavor id: vodkaredbool diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index e2959762c91a..520b0f18726a 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -6,6 +6,7 @@ - Box - Cog - Core + - Elkridge - Fland #- Gate - Loop diff --git a/Resources/Prototypes/Maps/elkridge.yml b/Resources/Prototypes/Maps/elkridge.yml new file mode 100644 index 000000000000..f0b71e992191 --- /dev/null +++ b/Resources/Prototypes/Maps/elkridge.yml @@ -0,0 +1,67 @@ +- type: gameMap + id: Elkridge + mapName: 'Elkridge Depot' + mapPath: /Maps/elkridge.yml + minPlayers: 7 + maxPlayers: 35 + stations: + Elkridge: + stationProto: StandardNanotrasenStation + components: + - type: StationNameSetup + mapNameTemplate: '{0} Elkridge Depot {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: 'DS' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_elkridge.yml + - type: StationCargoShuttle + path: /Maps/Shuttles/cargo_elkridge.yml + - type: StationJobs + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 1 ] + Botanist: [ 1, 2 ] + Chef: [ 1, 1 ] + Janitor: [ 1, 2 ] + Chaplain: [ 1, 1 ] + Librarian: [ 1, 1 ] + Reporter: [ 1, 1 ] + ServiceWorker: [ 2, 2 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 2, 2 ] + StationEngineer: [ 3, 4 ] + TechnicalAssistant: [ 2, 2 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 2, 2 ] + MedicalDoctor: [ 3, 3 ] + MedicalIntern: [ 2, 2 ] + Paramedic: [ 1, 1 ] + Psychologist: [ 1, 1 ] + #science + ResearchDirector: [ 1, 1 ] + Scientist: [ 3, 4 ] + ResearchAssistant: [ 2, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + SecurityOfficer: [ 3, 4 ] + Detective: [ 1, 1 ] + SecurityCadet: [ 2, 2 ] + Lawyer: [ 1, 1 ] + #supply + Quartermaster: [ 1, 1 ] + SalvageSpecialist: [ 2, 2 ] + CargoTechnician: [ 2, 3 ] + #civilian + Passenger: [ -1, -1 ] + Clown: [ 1, 1 ] + Mime: [ 1, 1 ] + Musician: [ 1, 1 ] + #silicon + StationAi: [ 1, 1 ] + Borg: [ 2, 2 ] diff --git a/Resources/Prototypes/Maps/loop.yml b/Resources/Prototypes/Maps/loop.yml index 64d1e297a59d..c8a367d17cdf 100644 --- a/Resources/Prototypes/Maps/loop.yml +++ b/Resources/Prototypes/Maps/loop.yml @@ -2,7 +2,7 @@ id: Loop mapName: 'Loop Station' mapPath: /Maps/loop.yml - minPlayers: 30 + minPlayers: 35 maxPlayers: 70 stations: Loop: @@ -35,7 +35,7 @@ TechnicalAssistant: [ 5, 5 ] #medical ChiefMedicalOfficer: [ 1, 1 ] - Chemist: [ 2, 2 ] + Chemist: [ 3, 3 ] MedicalDoctor: [ 4, 5 ] Paramedic: [ 2, 2 ] MedicalIntern: [ 4, 4 ] diff --git a/Resources/Prototypes/Maps/packed.yml b/Resources/Prototypes/Maps/packed.yml index 5173a8256ae5..1c9b9affaaf9 100644 --- a/Resources/Prototypes/Maps/packed.yml +++ b/Resources/Prototypes/Maps/packed.yml @@ -13,6 +13,8 @@ nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'VG' + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_crimson.yml - type: StationJobs availableJobs: #service diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index e5525b9043b5..caa3d1627609 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -1072,15 +1072,15 @@ fizziness: 0.6 - type: reagent - id: IrishCarBomb - name: reagent-name-irish-car-bomb + id: IrishSlammer + name: reagent-name-irish-slammer parent: BaseAlcohol - desc: reagent-desc-irish-car-bomb + desc: reagent-desc-irish-slammer physicalDesc: reagent-physical-desc-bubbly - flavor: irishcarbomb + flavor: irishslammer color: "#2E6671" metamorphicSprite: - sprite: Objects/Consumable/Drinks/irishcarbomb.rsi + sprite: Objects/Consumable/Drinks/irishslammer.rsi state: icon_empty metamorphicMaxFillLevels: 6 metamorphicFillBaseName: fill- diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/food/doughrope.yml b/Resources/Prototypes/Recipes/Construction/Graphs/food/doughrope.yml index 52a9a817cfdf..1b95d46dcec0 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/food/doughrope.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/food/doughrope.yml @@ -10,4 +10,18 @@ - tool: Rolling doAfter: 1 - node: rolled - entity: FoodDoughRope \ No newline at end of file + entity: FoodDoughRope + +- type: constructionGraph + id: DoughRopeCotton + start: start + graph: + - node: start + entity: FoodDoughCottonSlice + edges: + - to: rolled + steps: + - tool: Rolling + doAfter: 1 + - node: rolled + entity: FoodDoughCottonRope diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/tables.yml b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/tables.yml index 1c828b05ac5b..d7ef51e96bf5 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/furniture/tables.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/furniture/tables.yml @@ -55,6 +55,8 @@ - material: Plasteel amount: 1 doAfter: 1 + - tool: Welding + doAfter: 3 - to: TableGlass steps: @@ -73,7 +75,7 @@ - material: PlasmaGlass amount: 1 doAfter: 1 - + - to: TableBrass steps: - material: Brass @@ -143,6 +145,8 @@ prototype: SheetPlasteel1 amount: 1 steps: + - tool: Welding + doAfter: 3 - tool: Anchoring doAfter: 1 @@ -211,73 +215,73 @@ - material: Cloth amount: 1 doAfter: 1 - + - to: TableFancyBlack - steps: + steps: - tag: CarpetBlack name: black carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-black - + - to: TableFancyBlue - steps: + steps: - tag: CarpetBlue name: blue carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-blue - + - to: TableFancyCyan - steps: + steps: - tag: CarpetCyan name: cyan carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-cyan - + - to: TableFancyGreen - steps: + steps: - tag: CarpetGreen name: green carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-green - + - to: TableFancyOrange - steps: + steps: - tag: CarpetOrange name: orange carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-orange - + - to: TableFancyPurple - steps: + steps: - tag: CarpetPurple name: purple carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-purple - + - to: TableFancyPink - steps: + steps: - tag: CarpetPink name: pink carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-pink - + - to: TableFancyRed - steps: + steps: - tag: CarpetRed name: red carpet icon: sprite: Objects/Tiles/tile.rsi state: carpet-red - + - to: TableFancyWhite - steps: + steps: - tag: CarpetWhite name: white carpet icon: @@ -295,7 +299,7 @@ steps: - tool: Prying doAfter: 1 - + - node: TableFancyBlack entity: TableFancyBlack edges: @@ -307,7 +311,7 @@ steps: - tool: Prying doAfter: 1 - + - node: TableFancyBlue entity: TableFancyBlue edges: @@ -319,7 +323,7 @@ steps: - tool: Prying doAfter: 1 - + - node: TableFancyCyan entity: TableFancyCyan edges: diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index 0409ffe1dfeb..07bc4b6e281a 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -24,6 +24,14 @@ FoodDoughRope: 1 PoppySeeds: 1 +- type: microwaveMealRecipe + id: RecipeBagelCotton + name: cotton bagel recipe + result: FoodBagelCotton + time: 5 + solids: + FoodDoughCottonRope: 1 + #Burgers - type: microwaveMealRecipe @@ -458,6 +466,17 @@ solids: FoodDough: 1 +- type: microwaveMealRecipe + id: RecipeBaguetteCotton + name: baguette recipe + result: FoodBreadBaguetteCotton + time: 15 + reagents: + TableSalt: 5 + Blackpepper: 5 + solids: + FoodDoughCotton: 1 + - type: microwaveMealRecipe id: RecipeBaguetteSword name: baguette sword recipe @@ -2020,6 +2039,15 @@ FoodChevreSlice: 1 FoodBreadBaguetteSlice: 1 +- type: microwaveMealRecipe + id: RecipeFoodBakedChevreChaudCotton + name: cotton chevre chaud recipe + result: FoodBakedChevreChaudCotton + time: 5 + solids: + FoodChevreSlice: 1 + FoodBreadBaguetteCottonSlice: 1 + - type: microwaveMealRecipe id: RecipeCannabisButter name: cannabis butter recipe @@ -2148,6 +2176,15 @@ FoodCroissantRaw: 1 FoodButterSlice: 1 +- type: microwaveMealRecipe + id: RecipeCroissantCotton + name: cotton croissant recipe + result: FoodBakedCroissantCotton + time: 5 + solids: + FoodCroissantRawCotton: 1 + FoodButterSlice: 1 + - type: microwaveMealRecipe id: RecipeThrowingCroissant name: throwing croissant recipe diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml index 419d7bff339d..fd613ae0a1fc 100644 --- a/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/smokeables.yml @@ -7,7 +7,6 @@ - to: joint steps: - material: PaperRolling - - material: CigaretteFilter - material: GroundCannabis doAfter: 2 - node: joint @@ -22,7 +21,6 @@ - to: jointRainbow steps: - material: PaperRolling - - material: CigaretteFilter - material: GroundCannabisRainbow doAfter: 2 - node: jointRainbow diff --git a/Resources/Prototypes/Recipes/Lathes/electronics.yml b/Resources/Prototypes/Recipes/Lathes/electronics.yml index 8713c2377dbf..c90402127fc2 100644 --- a/Resources/Prototypes/Recipes/Lathes/electronics.yml +++ b/Resources/Prototypes/Recipes/Lathes/electronics.yml @@ -429,11 +429,6 @@ id: SolarTrackerElectronics result: SolarTrackerElectronics -- type: latheRecipe - parent: BaseCircuitboardRecipe - id: PowerComputerCircuitboard - result: PowerComputerCircuitboard - - type: latheRecipe parent: BaseCircuitboardRecipe id: CloningConsoleComputerCircuitboard @@ -629,3 +624,8 @@ parent: BaseCircuitboardRecipe id: CutterMachineCircuitboard result: CutterMachineCircuitboard + +- type: latheRecipe + parent: BaseCircuitboardRecipe + id: HolopadMachineCircuitboard + result: HolopadMachineCircuitboard diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index 9ae0493efe92..790a236d5cf3 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -85,7 +85,7 @@ reactants: Cognac: amount: 1 - IrishCarBomb: + IrishSlammer: amount: 1 CoffeeLiqueur: amount: 1 @@ -559,20 +559,20 @@ reactants: EnergyDrink: amount: 1 - IrishCarBomb: + IrishSlammer: amount: 1 products: IrishBool: 2 - type: reaction - id: IrishCarBomb + id: IrishSlammer reactants: Ale: amount: 1 IrishCream: amount: 1 products: - IrishCarBomb: 2 + IrishSlammer: 2 - type: reaction id: IrishCoffee diff --git a/Resources/Prototypes/Research/civilianservices.yml b/Resources/Prototypes/Research/civilianservices.yml index 9430c391a992..2bd8ee5fa239 100644 --- a/Resources/Prototypes/Research/civilianservices.yml +++ b/Resources/Prototypes/Research/civilianservices.yml @@ -53,6 +53,7 @@ - SurveillanceCameraMonitorCircuitboard - SurveillanceWirelessCameraMonitorCircuitboard - TelecomServerCircuitboard + - HolopadMachineCircuitboard - type: technology id: AdvancedEntertainment diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index dac58d9984a0..f5e30d1d2fa0 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -83,7 +83,6 @@ - PortableGeneratorPacmanMachineCircuitboard - PortableGeneratorSuperPacmanMachineCircuitboard - PortableGeneratorJrPacmanMachineCircuitboard - - PowerComputerCircuitboard #the actual solar panel itself should be in here - SolarControlComputerCircuitboard - SolarTrackerElectronics - EmitterCircuitboard diff --git a/Resources/Prototypes/SoundCollections/NukeMusic.yml b/Resources/Prototypes/SoundCollections/NukeMusic.yml index 804e3afa3fea..4e9c176c730c 100644 --- a/Resources/Prototypes/SoundCollections/NukeMusic.yml +++ b/Resources/Prototypes/SoundCollections/NukeMusic.yml @@ -3,4 +3,3 @@ files: - /Audio/StationEvents/countdown.ogg - /Audio/StationEvents/sound_station_14.ogg - - /Audio/StationEvents/nukemass.ogg diff --git a/Resources/Prototypes/game_presets.yml b/Resources/Prototypes/game_presets.yml index 714e7c9871bf..ffb48318709d 100644 --- a/Resources/Prototypes/game_presets.yml +++ b/Resources/Prototypes/game_presets.yml @@ -93,7 +93,7 @@ maxPlayers: 3 description: greenshift-description rules: - - SpaceTrafficControlFriendlyEventScheduler + - SpaceTrafficControlFriendlyEventScheduler - BasicRoundstartVariation - type: gamePreset @@ -128,7 +128,7 @@ showInVote: false #Admin Use description: secret-description rules: - - SpaceTrafficControlFriendlyEventScheduler + - SpaceTrafficControlFriendlyEventScheduler - BasicRoundstartVariation - type: gamePreset diff --git a/Resources/Prototypes/secret_weights.yml b/Resources/Prototypes/secret_weights.yml index 0a272e24c7c0..7af610af6c7d 100644 --- a/Resources/Prototypes/secret_weights.yml +++ b/Resources/Prototypes/secret_weights.yml @@ -3,8 +3,6 @@ weights: Nukeops: 0.20 Traitor: 0.60 - Zombie: 0.04 - Zombieteors: 0.01 - Survival: 0.09 - KesslerSyndrome: 0.01 + Zombie: 0.05 + Survival: 0.10 Revolutionary: 0.05 diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 7d11c9008193..096e6d0d035f 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -1439,6 +1439,12 @@ - type: Tag id: WhitelistChameleon +- type: Tag + id: WhitelistChameleonIdCard + +- type: Tag + id: WhitelistChameleonPDA + - type: Tag id: Window diff --git a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml index 7e5e20139b09..98d892db82df 100644 --- a/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml +++ b/Resources/ServerInfo/Guidebook/Service/FoodRecipes.xml @@ -23,7 +23,8 @@ WARNING: This is not an automatically generated list, things here may become out - Uncooked Animal Protein: Grind Raw Meat Buzz! Don't forget about Moth diet! -- Cotton Dough = 5 Flour, 10 Fabric, 10 Water +- 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 diff --git a/Resources/Textures/Effects/fire_greyscale.rsi/3.png b/Resources/Textures/Effects/fire_greyscale.rsi/3.png index 949505eef629..6958343726ac 100644 Binary files a/Resources/Textures/Effects/fire_greyscale.rsi/3.png and b/Resources/Textures/Effects/fire_greyscale.rsi/3.png differ diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json index ff556dbc7806..1540862d2ac1 100644 --- a/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/human_hair.rsi/meta.json @@ -4,7 +4,7 @@ "x": 32, "y": 32 }, - "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517)", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/05ec94e46349c35e29ca91e5e97d0c88ae26ad44/icons/mob/species/human/human_face.dmi ,resprited by Alekshhh, a modified by potato1234x, uneven and tailed is drawn by Ubaser, doublebun_long by Emisse, longbundled and bob5 sprited by github:DreamlyJack(624946166152298517), pulato.png made by DreamlyJack for SS14", "license": "CC-BY-SA-3.0", "states": [ { @@ -567,6 +567,10 @@ "name": "protagonist", "directions": 4 }, + { + "name": "pulato", + "directions": 4 + }, { "name": "quiff", "directions": 4 diff --git a/Resources/Textures/Mobs/Customization/human_hair.rsi/pulato.png b/Resources/Textures/Mobs/Customization/human_hair.rsi/pulato.png new file mode 100644 index 000000000000..7fd30556feb6 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/human_hair.rsi/pulato.png differ diff --git a/Resources/Textures/Mobs/Pets/smile.rsi/inhand-left.png b/Resources/Textures/Mobs/Pets/Smile/smile.rsi/inhand-left.png similarity index 100% rename from Resources/Textures/Mobs/Pets/smile.rsi/inhand-left.png rename to Resources/Textures/Mobs/Pets/Smile/smile.rsi/inhand-left.png diff --git a/Resources/Textures/Mobs/Pets/smile.rsi/inhand-right.png b/Resources/Textures/Mobs/Pets/Smile/smile.rsi/inhand-right.png similarity index 100% rename from Resources/Textures/Mobs/Pets/smile.rsi/inhand-right.png rename to Resources/Textures/Mobs/Pets/Smile/smile.rsi/inhand-right.png diff --git a/Resources/Textures/Mobs/Pets/smile.rsi/meta.json b/Resources/Textures/Mobs/Pets/Smile/smile.rsi/meta.json similarity index 100% rename from Resources/Textures/Mobs/Pets/smile.rsi/meta.json rename to Resources/Textures/Mobs/Pets/Smile/smile.rsi/meta.json diff --git a/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png new file mode 100644 index 000000000000..a57991982401 Binary files /dev/null and b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/head.png differ diff --git a/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/meta.json b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/meta.json new file mode 100644 index 000000000000..1d2a84bf6d87 --- /dev/null +++ b/Resources/Textures/Mobs/Pets/Smile/smile_displacement.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Head displacement made by zHonys", + "size": { + "x": 32, + "y": 32 + }, + "load": { + "srgb": false + }, + "states": [ + { + "name": "head", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-1.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-1.png rename to Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-1.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-2.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-2.png rename to Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-2.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-3.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-3.png rename to Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-3.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-4.png b/Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-4.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-4.png rename to Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-4.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-5.png b/Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-5.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-5.png rename to Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-5.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-6.png b/Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-6.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/fill-6.png rename to Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/fill-6.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/icon.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/icon.png rename to Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/icon.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/icon_empty.png similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/icon_empty.png rename to Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/icon_empty.png diff --git a/Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/meta.json similarity index 100% rename from Resources/Textures/Objects/Consumable/Drinks/irishcarbomb.rsi/meta.json rename to Resources/Textures/Objects/Consumable/Drinks/irishslammer.rsi/meta.json diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/bagel-cottondough.png b/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/bagel-cottondough.png new file mode 100644 index 000000000000..57fbe72b5cf2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/bagel-cottondough.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/meta.json index fcd9dc077d6a..60e45949fd10 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/bagel.rsi/meta.json @@ -1,17 +1,20 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Bagel and BagelPoppy were created by DrEnzyme", + "copyright": "Bagel and BagelPoppy were created by DrEnzyme. Bagel-cottondough by JuneSzalkowska.", "size": { "x": 32, "y": 32 }, "states": [ - { - "name": "bagel" - }, - { - "name": "bagel-poppy" - } + { + "name": "bagel" + }, + { + "name": "bagel-poppy" + }, + { + "name": "bagel-cottondough" + } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-equipped-BELT.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-equipped-BELT.png new file mode 100644 index 000000000000..b631cbea3eee Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-equipped-BELT.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-left.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-left.png new file mode 100644 index 000000000000..4949239172a6 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-left.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-right.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-right.png new file mode 100644 index 000000000000..61880dfe0406 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton-inhand-right.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton.png new file mode 100644 index 000000000000..fc0004120753 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/baguette-cotton.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/crostini-cotton.png b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/crostini-cotton.png new file mode 100644 index 000000000000..3fefcbea1e56 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/crostini-cotton.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/meta.json index 5349a7e8d256..d6385799e67c 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/bread.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by potato1234x at https://github.com/tgstation/tgstation/commit/0631fe5bde73a68b4c12bdfa633c30b2cee442d5. Crostini created by Github user deathride58, baguette taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380)", + "copyright": "Taken from tgstation and modified by potato1234x at https://github.com/tgstation/tgstation/commit/0631fe5bde73a68b4c12bdfa633c30b2cee442d5. Crostini created by Github user deathride58, baguette taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380). Cotton baguette and crostini variants by JuneSzalkowska", "size": { "x": 32, "y": 32 @@ -46,6 +46,21 @@ "name": "baguette-inhand-right", "directions": 4 }, + { + "name": "baguette-cotton" + }, + { + "name": "baguette-cotton-equipped-BELT", + "directions": 4 + }, + { + "name": "baguette-cotton-inhand-left", + "directions": 4 + }, + { + "name": "baguette-cotton-inhand-right", + "directions": 4 + }, { "name": "banana" }, @@ -70,6 +85,9 @@ { "name": "crostini" }, + { + "name": "crostini-cotton" + }, { "name": "cotton" }, diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/chevrechaud-cotton.png b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/chevrechaud-cotton.png new file mode 100644 index 000000000000..f4613a726bd5 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/chevrechaud-cotton.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/croissant-cotton.png b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/croissant-cotton.png new file mode 100644 index 000000000000..3b54212d0f74 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/croissant-cotton.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/meta.json index ea2e3dc6eae0..7afea96765be 100644 --- a/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/Baked/misc.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa. Chevrechaud created by Github user deathride58, croissant taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955. Muffin-chocolate, muffin-banana and muffin-cherry sprites modified from the original muffin sprite by RumiTiger", + "copyright": "Taken from tgstation and modified by Swept at https://github.com/tgstation/tgstation/commit/40d75cc340c63582fb66ce15bf75a36115f6bdaa. Chevrechaud created by Github user deathride58, croissant taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955. Muffin-chocolate, muffin-banana and muffin-cherry sprites modified from the original muffin sprite by RumiTiger. Chevrechaud-cotton and croissant-cotton created by JuneSzalkowska", "size": { "x": 32, "y": 32 @@ -160,9 +160,15 @@ { "name": "chevrechaud" }, + { + "name": "chevrechaud-cotton" + }, { "name": "croissant" }, + { + "name": "croissant-cotton" + }, { "name": "muffin-chocolate" }, diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-rope.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-rope.png new file mode 100644 index 000000000000..2c2062f409e0 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-rope.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-slice.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-slice.png new file mode 100644 index 000000000000..ca7e2347d7b8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/cotton-dough-slice.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/croissant-raw-cotton.png b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/croissant-raw-cotton.png new file mode 100644 index 000000000000..f80dc893319c Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/croissant-raw-cotton.png differ diff --git a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json index 366f39f96a0d..dd802fb59fd7 100644 --- a/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Food/ingredients.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation and baystation and modified by potato1234x at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and https://github.com/Baystation12/Baystation12/commit/a6067826de7fd8f698793f6d84e6c2f1f9b1f188. Tofu and tofu-slice were created by Discord user rosysyntax#6514. Chevrelog and chevredisk created by Github user deathride58, tortilladough tortillaflat and tortillaslice added by Phunny, butter-slice and croissant-raw taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380)", + "copyright": "Taken from tgstation and baystation and modified by potato1234x at commit https://github.com/tgstation/tgstation/commit/c6e3401f2e7e1e55c57060cdf956a98ef1fefc24 and https://github.com/Baystation12/Baystation12/commit/a6067826de7fd8f698793f6d84e6c2f1f9b1f188. Tofu and tofu-slice were created by Discord user rosysyntax#6514. Chevrelog and chevredisk created by Github user deathride58, tortilladough tortillaflat and tortillaslice added by Phunny, butter-slice and croissant-raw taken from tgstation at commit https://github.com/tgstation/tgstation/commit/7ffd61b6fa6a6183daa8900f9a490f46f7a81955, cotton made by mlexf (discord 1143460554963427380). Croissant-raw-cotton, cotton-dough-slice and cotton-dough-rope by JuneSzalkowska", "size": { "x": 32, "y": 32 @@ -46,6 +46,12 @@ { "name": "cotton-dough" }, + { + "name": "cotton-dough-slice" + }, + { + "name": "cotton-dough-rope" + }, { "name": "dough" }, @@ -123,6 +129,9 @@ }, { "name": "croissant-raw" + }, + { + "name": "croissant-raw-cotton" } ] } diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index b61bdef2552c..b1fd71cc41fc 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", + "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", "size": { "x": 32, "y": 32 @@ -76,6 +76,17 @@ "name": "rainbowcarpplush-inhand-right", "directions": 4 }, + { + "name": "rainbowlizardplush" + }, + { + "name": "rainbowlizardplush-inhand-left", + "directions": 4 + }, + { + "name": "rainbowlizardplush-inhand-right", + "directions": 4 + }, { "name": "narplush" }, diff --git a/Resources/Textures/Objects/Fun/toys.rsi/rainbowlizardplush-inhand-left.png b/Resources/Textures/Objects/Fun/toys.rsi/rainbowlizardplush-inhand-left.png new file mode 100644 index 000000000000..1b0867355b93 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/rainbowlizardplush-inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/rainbowlizardplush-inhand-right.png b/Resources/Textures/Objects/Fun/toys.rsi/rainbowlizardplush-inhand-right.png new file mode 100644 index 000000000000..462867a245b0 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/rainbowlizardplush-inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/rainbowlizardplush.png b/Resources/Textures/Objects/Fun/toys.rsi/rainbowlizardplush.png new file mode 100644 index 000000000000..f8798a94a10d Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/rainbowlizardplush.png differ diff --git a/Resources/Textures/Objects/Misc/module.rsi/cpu_syndicate.png b/Resources/Textures/Objects/Misc/module.rsi/cpu_syndicate.png new file mode 100644 index 000000000000..9f890eb300a6 Binary files /dev/null and b/Resources/Textures/Objects/Misc/module.rsi/cpu_syndicate.png differ diff --git a/Resources/Textures/Objects/Misc/module.rsi/meta.json b/Resources/Textures/Objects/Misc/module.rsi/meta.json index e332bf6c19ba..b36674173805 100644 --- a/Resources/Textures/Objects/Misc/module.rsi/meta.json +++ b/Resources/Textures/Objects/Misc/module.rsi/meta.json @@ -1 +1,352 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0, generic, service, command, science, security, medical, supply, and engineering taken from shiptest at https://github.com/shiptest-ss13/Shiptest/pull/1473, additional sprites created by EmoGarbage404", "states": [{"name": "abductor_mod"}, {"name": "airalarm_electronics"}, {"name": "ash_plating"}, {"name": "beaker_holder"}, {"name": "blank_mod"}, {"name": "bluespacearray"}, {"name": "boris"}, {"name": "boris_recharging", "delays": [[1.0, 1.0]]}, {"name": "card_mini"}, {"name": "card_mod"}, {"name": "cargodisk"}, {"name": "cart_connector"}, {"name": "cddrive"}, {"name": "cell"}, {"name": "cell_con"}, {"name": "cell_con_micro"}, {"name": "cell_micro"}, {"name": "cell_mini"}, {"name": "charger_APC"}, {"name": "charger_lambda"}, {"name": "charger_pda"}, {"name": "charger_wire"}, {"name": "clock_mod", "delays": [[0.6, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]]}, {"name": "command"}, {"name": "cpu"}, {"name": "cpu_adv"}, {"name": "cpu_command"}, {"name": "cpu_engineering"}, {"name": "cpu_medical"}, {"name": "cpu_science"}, {"name": "cpu_security"}, {"name": "cpu_service"}, {"name": "cpu_super", "delays": [[0.1, 0.1]]}, {"name": "cpu_supply"}, {"name": "cpuboard"}, {"name": "cpuboard_adv"}, {"name": "cpuboard_super", "delays": [[0.1, 0.1]]}, {"name": "cyborg_upgrade"}, {"name": "cyborg_upgrade1"}, {"name": "cyborg_upgrade2"}, {"name": "cyborg_upgrade3"}, {"name": "cyborg_upgrade4"}, {"name": "cyborg_upgrade5"}, {"name": "datadisk_base"}, {"name": "datadisk_gene", "delays": [[0.1, 0.1, 0.1]]}, {"name": "datadisk_encrypted", "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]]}, {"name": "datadisk_hydro", "delays": [[0.1, 0.1, 0.1]]}, {"name": "datadisk_label"}, {"name": "depositbox"}, {"name": "door_electronics"}, {"name": "engineering"}, {"name": "flopdrive"}, {"name": "generic"}, {"name": "harddisk"}, {"name": "harddisk_micro"}, {"name": "harddisk_mini"}, {"name": "holodisk", "delays": [[0.1, 0.1]]}, {"name": "id_mod"}, {"name": "mainboard"}, {"name": "mcontroller"}, {"name": "medical"}, {"name": "net_wired"}, {"name": "power_mod"}, {"name": "printer"}, {"name": "printer_mini"}, {"name": "prizevendor"}, {"name": "radio"}, {"name": "radio_micro"}, {"name": "radio_mini"}, {"name": "ram"}, {"name": "rndmajordisk"}, {"name": "science"}, {"name": "secmodschematic"}, {"name": "security"}, {"name": "selfrepair_off"}, {"name": "selfrepair_on", "delays": [[0.1, 0.1, 0.1, 0.1]]}, {"name": "service"}, {"name": "servo"}, {"name": "ssd"}, {"name": "ssd_large"}, {"name": "ssd_micro"}, {"name": "ssd_mini"}, {"name": "std_mod"}, {"name": "supply"}]} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation at 0d9c9a8233dfc3fc55edc538955a761a6328bee0, generic, service, command, science, security, medical, supply, and engineering taken from shiptest at https://github.com/shiptest-ss13/Shiptest/pull/1473, additional sprites created by EmoGarbage404, cpu_syndicate sprite derived from previous examples and created by Alpaccalypse at https://github.com/space-wizards/space-station-14/pull/34104", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "abductor_mod" + }, + { + "name": "airalarm_electronics" + }, + { + "name": "ash_plating" + }, + { + "name": "beaker_holder" + }, + { + "name": "blank_mod" + }, + { + "name": "bluespacearray" + }, + { + "name": "boris" + }, + { + "name": "boris_recharging", + "delays": [ + [ + 1.0, + 1.0 + ] + ] + }, + { + "name": "card_mini" + }, + { + "name": "card_mod" + }, + { + "name": "cargodisk" + }, + { + "name": "cart_connector" + }, + { + "name": "cddrive" + }, + { + "name": "cell" + }, + { + "name": "cell_con" + }, + { + "name": "cell_con_micro" + }, + { + "name": "cell_micro" + }, + { + "name": "cell_mini" + }, + { + "name": "charger_APC" + }, + { + "name": "charger_lambda" + }, + { + "name": "charger_pda" + }, + { + "name": "charger_wire" + }, + { + "name": "clock_mod", + "delays": [ + [ + 0.6, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "command" + }, + { + "name": "cpu" + }, + { + "name": "cpu_adv" + }, + { + "name": "cpu_command" + }, + { + "name": "cpu_engineering" + }, + { + "name": "cpu_medical" + }, + { + "name": "cpu_science" + }, + { + "name": "cpu_security" + }, + { + "name": "cpu_service" + }, + { + "name": "cpu_super", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "cpu_supply" + }, + { + "name": "cpu_syndicate" + }, + { + "name": "cpuboard" + }, + { + "name": "cpuboard_adv" + }, + { + "name": "cpuboard_super", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "cyborg_upgrade" + }, + { + "name": "cyborg_upgrade1" + }, + { + "name": "cyborg_upgrade2" + }, + { + "name": "cyborg_upgrade3" + }, + { + "name": "cyborg_upgrade4" + }, + { + "name": "cyborg_upgrade5" + }, + { + "name": "datadisk_base" + }, + { + "name": "datadisk_gene", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "datadisk_encrypted", + "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 + ] + ] + }, + { + "name": "datadisk_hydro", + "delays": [ + [ + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "datadisk_label" + }, + { + "name": "depositbox" + }, + { + "name": "door_electronics" + }, + { + "name": "engineering" + }, + { + "name": "flopdrive" + }, + { + "name": "generic" + }, + { + "name": "harddisk" + }, + { + "name": "harddisk_micro" + }, + { + "name": "harddisk_mini" + }, + { + "name": "holodisk", + "delays": [ + [ + 0.1, + 0.1 + ] + ] + }, + { + "name": "id_mod" + }, + { + "name": "mainboard" + }, + { + "name": "mcontroller" + }, + { + "name": "medical" + }, + { + "name": "net_wired" + }, + { + "name": "power_mod" + }, + { + "name": "printer" + }, + { + "name": "printer_mini" + }, + { + "name": "prizevendor" + }, + { + "name": "radio" + }, + { + "name": "radio_micro" + }, + { + "name": "radio_mini" + }, + { + "name": "ram" + }, + { + "name": "rndmajordisk" + }, + { + "name": "science" + }, + { + "name": "secmodschematic" + }, + { + "name": "security" + }, + { + "name": "selfrepair_off" + }, + { + "name": "selfrepair_on", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "service" + }, + { + "name": "servo" + }, + { + "name": "ssd" + }, + { + "name": "ssd_large" + }, + { + "name": "ssd_micro" + }, + { + "name": "ssd_mini" + }, + { + "name": "std_mod" + }, + { + "name": "supply" + } + ] +} diff --git a/Resources/Textures/Parallaxes/weh.txt b/Resources/Textures/Parallaxes/weh.txt deleted file mode 100644 index 0d2bc485cd0e..000000000000 --- a/Resources/Textures/Parallaxes/weh.txt +++ /dev/null @@ -1 +0,0 @@ -spacescape \ No newline at end of file diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/meta.json b/Resources/Textures/Structures/Piping/disposal.rsi/meta.json index 87655b6b86c1..deaffb0cabef 100644 --- a/Resources/Textures/Structures/Piping/disposal.rsi/meta.json +++ b/Resources/Textures/Structures/Piping/disposal.rsi/meta.json @@ -9,219 +9,63 @@ "states": [ { "name": "condisposal", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] + "directions": 1 }, { "name": "conmailing", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] + "directions": 1 }, { "name": "conpipe-c", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "conpipe-j1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "conpipe-j1s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "conpipe-j2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "conpipe-j2s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "conpipe-s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "conpipe-t", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "conpipe-tagger", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "conpipe-y", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "disposal", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] + "directions": 1 }, { "name": "mailing", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] + "directions": 1 }, { "name": "disposal-charging", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] + "directions": 1 }, { "name": "mailing-charging", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] + "directions": 1 }, { "name": "disposal-flush", @@ -279,48 +123,19 @@ }, { "name": "dispover-handle", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] + "directions": 1 }, { "name": "mailover-handle", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] + "directions": 1 }, { "name": "dispover-ready", - "directions": 1, - "delays": [ - [ - 1.0 - ] - ] + "directions": 1 }, { "name": "intake", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "intake-closing", @@ -370,21 +185,7 @@ }, { "name": "outlet", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "outlet-open", @@ -434,471 +235,107 @@ }, { "name": "pipe-b", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-bf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-c", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-cf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-d", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-j1", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-j1f", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-j1s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-j1sf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-j2", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-j2f", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-j2s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-j2sf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-s", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-sf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-t", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-tagger", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-tagger-partial", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-tf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-u", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-y", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "pipe-yf", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "signal-router", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "signal-router-free", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "signal-router-flipped", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 }, { "name": "signal-router-flipped-free", - "directions": 4, - "delays": [ - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ], - [ - 1.0 - ] - ] + "directions": 4 } ] } diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped-free.png b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped-free.png index c8f27f87317a..c9ab66e41d59 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped-free.png and b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped-free.png differ diff --git a/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped.png b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped.png index 8ea007cf8790..e474e65092be 100644 Binary files a/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped.png and b/Resources/Textures/Structures/Piping/disposal.rsi/signal-router-flipped.png differ diff --git a/Resources/map_attributions.txt b/Resources/map_attributions.txt index f0865d534735..299b3e3283e8 100644 --- a/Resources/map_attributions.txt +++ b/Resources/map_attributions.txt @@ -16,6 +16,9 @@ - files: ["cluster.yml"] authors: Scribbles0 +- files: ["elkridge.yml"] + authors: Deerstop + - files: ["fland.yml"] authors: Emisse diff --git a/Resources/migration.yml b/Resources/migration.yml index fc6d2e020d8c..87896c68986c 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -494,6 +494,9 @@ LightTree04: LightTree LightTree05: LightTree LightTree06: LightTree +#2024-12-28 +DrinkIrishCarBomb: DrinkIrishSlammer + ## Starshine # 07-09-2023 Starshine diff --git a/Tools/ss14_ru/translation.bat b/Tools/ss14_ru/translation.bat index b21dfd484fd4..bf59f2d60de6 100644 --- a/Tools/ss14_ru/translation.bat +++ b/Tools/ss14_ru/translation.bat @@ -1,4 +1,4 @@ -@echo off +@echo off call pip install -r requirements.txt --no-warn-script-location call python ./yamlextractor.py